@font-face {
	font-family: "Bebas Neue";
	src: url("../fonts/BebasNeue-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Bebas Neue";
	src: url("../fonts/BebasNeue-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Lato";
	src: url("../fonts/Lato-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--fv-green: #30582e;
	--fv-green-dark: #2e572c;
	--fv-green-deep: #203f20;
	--fv-green-soft: #eef4ec;
	--fv-black: #111011;
	--fv-charcoal: #1f1f1f;
	--fv-bg: #eef4ec;
	--fv-cream: #f3e3d0;
	--fv-burgundy: #6d302c;
	--fv-white: #fff;
	--fv-line: rgba(17, 16, 17, 0.14);
	--fv-muted: #5f655f;
	--fv-radius: 8px;
	--fv-shadow: 0 16px 44px rgba(17, 16, 17, 0.08);
	--fv-heading: "Arial Narrow", "Aptos Narrow", "Roboto Condensed", Arial, sans-serif;
	--fv-body: "Lato", Arial, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	letter-spacing: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: linear-gradient(180deg, var(--fv-green-soft), #f3f3ef);
	color: var(--fv-black);
	font-family: var(--fv-body);
	font-size: 16px;
	line-height: 1.55;
	animation: forevervault-page-in 140ms ease-out;
}

@keyframes forevervault-page-in {
	from {
		opacity: 0.01;
	}
	to {
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	body {
		animation: none;
	}
}

img {
	max-width: 100%;
	height: auto;
}

picture {
	display: block;
}

a {
	color: var(--fv-green);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--fv-black);
}

:focus-visible {
	outline: 3px solid var(--fv-green);
	outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.55em;
	color: var(--fv-black);
	font-family: var(--fv-heading);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
	text-transform: uppercase;
}

h1 {
	font-size: clamp(2.25rem, 3.8vw, 3.5rem);
}

h2 {
	font-size: clamp(1.75rem, 2.8vw, 2rem);
}

h3 {
	font-size: 1.55rem;
}

p {
	margin: 0 0 1.1em;
}

.container {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.container.narrow {
	width: min(820px, calc(100% - 40px));
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
	top: 12px;
	left: 12px;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: var(--fv-green-deep);
	color: var(--fv-white);
	clip: auto;
	text-decoration: none;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(238, 244, 236, 0.96);
	border-bottom: 1px solid rgba(48, 88, 46, 0.18);
	backdrop-filter: blur(14px);
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
	min-height: 76px;
}

.site-branding {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	width: auto;
	min-width: 0;
	color: var(--fv-black);
	text-decoration: none;
}

.site-branding .brand-tile {
	display: grid;
	place-items: center;
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	overflow: hidden;
	background: var(--fv-white);
	border: 1px solid rgba(48, 88, 46, 0.22);
	border-radius: var(--fv-radius);
}

.site-branding img {
	display: block;
	width: 38px;
	height: 38px;
	object-fit: contain;
}

.site-branding .custom-logo {
	width: auto;
	height: auto;
	max-width: 174px;
	max-height: 62px;
}

.site-branding strong {
	font-family: var(--fv-heading);
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.primary-menu,
.footer-menu,
.social-links {
	display: flex;
	gap: 24px;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu {
	justify-content: flex-end;
	flex-wrap: wrap;
}

.primary-menu a {
	color: var(--fv-black);
	font-weight: 700;
	font-size: 0.92rem;
	text-decoration: none;
}

.primary-menu a:hover {
	color: var(--fv-green);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--fv-line);
	border-radius: var(--fv-radius);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
	display: block;
	width: 20px;
	height: 2px;
	margin-inline: auto;
	background: var(--fv-black);
	content: "";
}

.menu-toggle-lines::before {
	transform: translateY(-7px);
}

.menu-toggle-lines::after {
	transform: translateY(5px);
}

.button,
.header-cta,
.wp-block-button__link,
button,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--fv-green);
	border-radius: 6px;
	background: var(--fv-green);
	color: var(--fv-white);
	font-family: var(--fv-body);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.1;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.header-cta:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
	background: var(--fv-green-deep);
	border-color: var(--fv-green-deep);
	color: var(--fv-white);
}

.button.secondary {
	background: transparent;
	color: var(--fv-green);
}

.button.secondary:hover {
	background: var(--fv-green);
	color: var(--fv-white);
}

.button.light {
	background: var(--fv-white);
	border-color: var(--fv-white);
	color: var(--fv-green-dark);
}

.button.outline-light {
	background: transparent;
	border-color: var(--fv-bg);
	color: var(--fv-bg);
}

.button.outline-light:hover {
	background: var(--fv-white);
	border-color: var(--fv-white);
	color: var(--fv-green-dark);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.button-row.centered {
	justify-content: center;
}

.home-main {
	padding: 32px 0 0;
}

.home-frame {
	width: min(1260px, calc(100% - 40px));
	margin: 0 auto;
	overflow: hidden;
	background: var(--fv-bg);
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.home-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(64px, 8vw, 118px) 0 clamp(118px, 11vw, 164px);
	background: var(--fv-green);
	color: var(--fv-white);
	text-align: center;
	border-radius: var(--fv-radius);
}

.home-hero::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(32, 63, 32, 0.22), rgba(32, 63, 32, 0.72)), radial-gradient(circle at 50% 18%, rgba(48, 88, 46, 0.1), rgba(32, 63, 32, 0.68) 72%);
	content: "";
	pointer-events: none;
}

.hero-art {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0.58;
}

.hero-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-art picture {
	width: 100%;
	height: 100%;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
	align-items: center;
	gap: clamp(36px, 8vw, 110px);
}

.hero-centered {
	position: relative;
	z-index: 2;
	display: grid;
	justify-items: center;
	max-width: 760px;
}

.hero-copy {
	max-width: 720px;
}

.eyebrow {
	margin-bottom: 18px;
	color: var(--fv-green);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero-subtitle,
.trust-strip p {
	color: var(--fv-muted);
	font-size: clamp(1.2rem, 2vw, 1.45rem);
	line-height: 1.55;
}

.home-hero h1,
.home-hero .eyebrow,
.home-hero .hero-subtitle {
	color: var(--fv-bg);
}

.home-hero h1 {
	max-width: 760px;
	margin-inline: auto;
	font-size: clamp(2.6rem, 4.8vw, 4.2rem);
	line-height: 1.05;
	white-space: nowrap;
}

.hero-emblem {
	display: grid;
	place-items: center;
	width: 118px;
	height: 118px;
	margin-bottom: 28px;
	background: var(--fv-white);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--fv-radius);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.hero-emblem img {
	width: 68px;
	max-height: 88px;
	object-fit: contain;
}

.hero-mark {
	display: flex;
	justify-content: center;
	padding: 34px;
	background: var(--fv-white);
	border: 1px solid var(--fv-line);
	border-radius: var(--fv-radius);
	box-shadow: var(--fv-shadow);
}

.hero-mark img {
	width: min(360px, 78vw);
}

.pricing-overlap {
	position: relative;
	z-index: 2;
	margin-top: -84px;
	padding: 0 0 clamp(58px, 7vw, 92px);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: clamp(18px, 3vw, 34px);
	align-items: stretch;
}

.editable-area.full-width {
	grid-column: 1 / -1;
}

.pricing-card {
	display: grid;
	gap: 14px;
	justify-items: center;
	padding: 34px 28px 28px;
	background: var(--fv-white);
	border: 1px solid rgba(48, 88, 46, 0.18);
	border-radius: var(--fv-radius);
	box-shadow: var(--fv-shadow);
	text-align: center;
}

.pricing-card:nth-child(2) {
	transform: translateY(-18px);
	border-top: 5px solid var(--fv-green);
}

.plan-icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 1px solid rgba(48, 88, 46, 0.26);
	border-radius: var(--fv-radius);
	background: var(--fv-green-soft);
	color: var(--fv-green);
	font-family: var(--fv-heading);
	font-size: 2rem;
	line-height: 1;
}

.plan-icon img {
	width: 34px;
	height: 42px;
	object-fit: contain;
}

.pricing-card h2 {
	margin: 0;
	font-family: var(--fv-body);
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: none;
}

.plan-price {
	margin: 0;
	font-size: clamp(2.5rem, 4vw, 3.6rem);
	font-weight: 700;
	line-height: 1;
}

.plan-context {
	margin: -4px 0 0;
	color: var(--fv-muted);
	font-size: 0.92rem;
}

.pricing-card ul {
	display: grid;
	gap: 8px;
	width: 100%;
	padding: 0;
	margin: 8px 0 10px;
	list-style: none;
	color: var(--fv-muted);
	font-size: 0.94rem;
}

.pricing-card li::before {
	color: var(--fv-green);
	content: "+ ";
	font-weight: 700;
}

.pricing-trial {
	margin: 8px 0 10px;
	padding: 12px 14px;
	border: 1px solid rgba(48, 88, 46, .18);
	border-radius: 8px;
	background: var(--fv-green-soft);
	color: var(--fv-green);
	font-weight: 700;
	line-height: 1.45;
}

.section {
	padding: clamp(70px, 8vw, 110px) 0;
}

.section.soft {
	background: var(--fv-white);
	border-block: 1px solid rgba(48, 88, 46, 0.14);
}

.section.dark {
	background: linear-gradient(135deg, var(--fv-green), var(--fv-green-deep));
	color: var(--fv-white);
}

.section.dark h2,
.section.dark .eyebrow,
.section.dark p {
	color: var(--fv-white);
}

.trust-strip {
	padding: 34px 0;
	background: var(--fv-green-deep);
	color: var(--fv-white);
}

.trust-strip p {
	margin: 0;
	color: var(--fv-white);
	text-align: center;
}

.two-column {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(28px, 6vw, 80px);
	align-items: start;
}

.brand-promise-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(30px, 6vw, 78px);
	align-items: center;
}

.brand-promise-image {
	position: relative;
	margin: 0;
	overflow: hidden;
	background: var(--fv-green-deep);
	border: 1px solid rgba(48, 88, 46, 0.18);
	border-radius: var(--fv-radius);
	box-shadow: var(--fv-shadow);
}

.brand-promise-image::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(48, 88, 46, 0.08), rgba(17, 16, 17, 0.04));
	content: "";
	pointer-events: none;
}

.brand-promise-image img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.brand-promise-copy {
	max-width: 620px;
}

.promise-points {
	display: grid;
	gap: 12px;
	padding: 0;
	margin: 24px 0 0;
	list-style: none;
}

.promise-points li {
	position: relative;
	padding-left: 30px;
	font-weight: 700;
}

.promise-points li::before {
	position: absolute;
	top: 0.45em;
	left: 0;
	width: 14px;
	height: 14px;
	background: var(--fv-green);
	border-radius: 999px;
	box-shadow: 0 0 0 6px rgba(48, 88, 46, 0.12);
	content: "";
}

.section-heading {
	max-width: 780px;
	margin-bottom: 38px;
}

.section-heading.center {
	margin-inline: auto;
	text-align: center;
}

.card-grid,
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.testimonial-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.post-card,
.sidebar .widget,
blockquote,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	padding: 28px;
	background: var(--fv-green-soft);
	border: 1px solid rgba(48, 88, 46, 0.16);
	border-radius: var(--fv-radius);
	box-shadow: var(--fv-shadow);
}

.feature-card p,
blockquote p {
	color: var(--fv-muted);
}

.feature-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 32px;
}

.feature-list span {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 14px;
	background: var(--fv-green);
	border: 1px solid var(--fv-green);
	border-radius: var(--fv-radius);
	color: var(--fv-white);
	font-weight: 700;
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.steps {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.steps li {
	display: grid;
	gap: 10px;
	min-height: 230px;
	padding: 24px;
	background: var(--fv-white);
	border: 1px solid rgba(48, 88, 46, 0.16);
	border-radius: var(--fv-radius);
	font-weight: 400;
}

.step-icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin-bottom: 8px;
	background: var(--fv-green);
	border-radius: var(--fv-radius);
	color: var(--fv-bg);
	box-shadow: 0 16px 34px rgba(48, 88, 46, 0.24);
}

.step-icon svg {
	width: 34px;
	height: 34px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.3;
}

.steps .step-number {
	display: block;
	color: var(--fv-green);
	font-family: var(--fv-heading);
	font-size: 2.6rem;
	line-height: 0.9;
}

.steps strong {
	display: block;
	color: var(--fv-black);
	font-size: 1.02rem;
	line-height: 1.2;
}

.steps em {
	display: block;
	color: var(--fv-muted);
	font-size: 0.95rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
}

blockquote {
	margin: 0;
}

.testimonial-slider {
	position: relative;
	max-width: 840px;
	margin-inline: auto;
}

.testimonial-track {
	position: relative;
	min-height: 320px;
}

.testimonial-slide {
	position: absolute;
	inset: 0;
	display: grid;
	align-content: center;
	gap: 20px;
	padding: clamp(32px, 5vw, 56px);
	background: var(--fv-green-soft);
	border: 1px solid rgba(48, 88, 46, 0.2);
	border-radius: var(--fv-radius);
	box-shadow: var(--fv-shadow);
	opacity: 0;
	transform: translateX(24px) scale(0.98);
	transition: opacity 220ms ease, transform 220ms ease;
	pointer-events: none;
}

.testimonial-slide.is-active {
	opacity: 1;
	transform: translateX(0) scale(1);
	pointer-events: auto;
}

.testimonial-mark {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	background: var(--fv-green);
	border-radius: 999px;
	color: var(--fv-bg);
	font-family: var(--fv-heading);
	font-size: 1.5rem;
	line-height: 1;
}

.testimonial-slide p {
	margin: 0;
	color: var(--fv-black);
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	font-weight: 400;
	line-height: 1.45;
}

.testimonial-slide footer {
	display: grid;
	gap: 2px;
}

.testimonial-slide footer span {
	color: var(--fv-muted);
	font-size: 0.94rem;
}

.testimonial-controls {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 22px;
}

.slider-button {
	min-height: 40px;
	padding: 9px 14px;
	background: var(--fv-white);
	color: var(--fv-green);
}

cite {
	display: block;
	color: var(--fv-green);
	font-style: normal;
	font-weight: 700;
}

.faq-list {
	border-top: 1px solid var(--fv-line);
}

details {
	border-bottom: 1px solid var(--fv-line);
}

summary {
	padding: 20px 0;
	font-weight: 700;
	cursor: pointer;
}

details p {
	color: var(--fv-muted);
}

.final-cta {
	background: var(--fv-green);
	color: var(--fv-white);
	text-align: center;
}

.final-cta h2 {
	color: var(--fv-white);
}

.page-hero {
	padding: clamp(58px, 8vw, 95px) 0;
	background: var(--fv-white);
	border-bottom: 1px solid var(--fv-line);
}

.page-hero.compact {
	padding: 58px 0;
}

.entry-content,
.posts-list,
.woocommerce-main {
	padding-block: 54px;
}

.entry-content > * {
	max-width: 100%;
}

.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 42px;
	align-items: start;
}

.posts-list {
	display: grid;
	gap: 24px;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 12px;
	color: var(--fv-muted);
	font-size: 0.9rem;
}

.post-card h2 a {
	color: var(--fv-black);
	text-decoration: none;
}

.text-link {
	font-weight: 700;
}

.featured-image {
	margin: 34px 0;
}

.featured-image img,
.post-card-image img {
	border-radius: var(--fv-radius);
}

.site-footer {
	background: var(--fv-green-deep);
	color: var(--fv-white);
}

.site-footer a,
.site-footer p,
.site-footer h2 {
	color: var(--fv-white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr));
	gap: 30px;
	padding: 58px 0;
}

.footer-brand .site-branding {
	margin-bottom: 20px;
	color: var(--fv-white);
}

.footer-brand .site-branding .brand-tile {
	background: var(--fv-white);
	border-color: rgba(255, 255, 255, 0.22);
}

.footer-menu,
.social-links {
	display: grid;
	gap: 10px;
}

.footer-menu a,
.social-links a {
	text-decoration: none;
}

.footer-bottom {
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
	margin: 0;
	font-size: 0.92rem;
}

input,
select,
textarea {
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	background: var(--fv-white);
	border: 1px solid #d2cfc5;
	border-radius: 6px;
	color: var(--fv-black);
	font: inherit;
}

textarea {
	min-height: 140px;
}

.search-form {
	display: flex;
	gap: 10px;
	align-items: flex-end;
}

.search-form label {
	flex: 1;
}

.woocommerce-main {
	background: var(--fv-green-soft);
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	border-radius: var(--fv-radius);
	background: var(--fv-green);
	color: var(--fv-white);
	font-weight: 700;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: var(--fv-green-deep);
	color: var(--fv-white);
}

.woocommerce div.product .product_title,
.woocommerce-products-header__title {
	font-family: var(--fv-heading);
	font-size: clamp(3rem, 5vw, 5rem);
}

.woocommerce .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--fv-green);
	font-weight: 700;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-top-color: var(--fv-green);
	background: var(--fv-white);
	color: var(--fv-black);
}

.woocommerce-checkout #payment {
	background: var(--fv-white);
	border: 1px solid var(--fv-line);
	border-radius: var(--fv-radius);
}

.woocommerce table.shop_table,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
	border-color: var(--fv-line);
	border-radius: var(--fv-radius);
}

.elementor-page .entry-content,
.forevervault-elementor-template .entry-content {
	width: 100%;
	max-width: none;
	padding: 0;
}

@media (max-width: 980px) {
	.header-inner {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.primary-navigation,
	.header-cta {
		display: none;
	}

	.primary-navigation.is-open {
		display: block;
		grid-column: 1 / -1;
		width: 100%;
	}

	.primary-menu {
		display: grid;
		gap: 12px;
		padding: 18px 0 24px;
		justify-content: stretch;
	}

	.hero-grid,
	.two-column,
	.brand-promise-grid,
	.content-layout,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.card-grid,
	.testimonial-grid,
	.benefit-grid,
	.pricing-grid,
	.steps {
		grid-template-columns: 1fr 1fr;
	}

	.pricing-card:nth-child(2) {
		transform: none;
	}

	.brand-promise-copy {
		max-width: none;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16px;
	}

	.container,
	.container.narrow {
		width: min(100% - 28px, 1180px);
	}

	.home-hero,
	.section {
		padding-block: 54px;
	}

	.card-grid,
	.testimonial-grid,
	.benefit-grid,
	.pricing-grid,
	.steps {
		grid-template-columns: 1fr;
	}

	.home-main {
		padding-top: 20px;
	}

	.home-frame {
		width: min(100% - 24px, 1260px);
	}

	.home-hero {
		padding-bottom: 116px;
	}

	.home-hero h1 {
		white-space: normal;
	}

	.hero-mark {
		padding: 22px;
	}

	.testimonial-track {
		min-height: 430px;
	}

	.button-row,
	.search-form {
		display: grid;
	}
}
