:root {
	--green-950: #102f25;
	--green-900: #173f31;
	--green-800: #1f513d;
	--green-700: #2e674e;
	--green-600: #3c7c5f;
	--green-100: #e8f0eb;
	--green-050: #f3f7f4;
	--gold: #d8b04e;
	--ink: #1c2723;
	--muted: #5f6965;
	--line: #d9dfdb;
	--paper: #ffffff;
	--soft: #f7f7f5;
	--shadow: 0 18px 55px rgba(16, 47, 37, 0.12);
	--shadow-small: 0 8px 28px rgba(16, 47, 37, 0.08);
	--radius: 14px;
	--radius-large: 22px;
	--container: 1180px;
	--header-height: 90px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-950); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { width: 1.25em; height: 1.25em; fill: currentColor; flex: 0 0 auto; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 860px); }
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
	position: fixed; left: 16px; top: 12px; z-index: 9999;
	transform: translateY(-160%); background: #fff; color: var(--green-950);
	padding: 10px 14px; border-radius: 8px; box-shadow: var(--shadow-small);
}
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, h4 { margin: 0 0 .6em; line-height: 1.12; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.1em; }
ul { margin-top: 0; }

.eyebrow {
	margin: 0 0 12px;
	color: var(--green-700);
	font-size: .77rem;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 46px;
	padding: 11px 20px;
	border: 1px solid transparent;
	border-radius: 7px;
	font-weight: 750;
	line-height: 1.2;
	text-decoration: none;
	transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, button:focus-visible {
	outline: 3px solid rgba(216, 176, 78, .7);
	outline-offset: 3px;
}
.button--whatsapp { background: var(--green-800); color: #fff; box-shadow: 0 8px 22px rgba(31, 81, 61, .18); }
.button--whatsapp:hover { background: var(--green-950); color: #fff; }
.button--outline { border-color: var(--green-700); color: var(--green-900); background: rgba(255,255,255,.88); }
.button--outline:hover { background: var(--green-050); color: var(--green-950); }
.button--outline-light { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.button--outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.button--dark { background: var(--green-900); color: #fff; }
.button--dark:hover { background: var(--green-950); color: #fff; }
.button--full { width: 100%; }

.site-header {
	position: sticky; top: 0; z-index: 1000;
	background: rgba(255,255,255,.96);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(16,47,37,.08);
}
.site-header__inner {
	display: grid;
	grid-template-columns: 156px 1fr auto;
	align-items: center;
	gap: 24px;
	min-height: var(--header-height);
}
.site-branding { min-width: 0; }
.site-logo__fallback, .custom-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.site-logo__fallback img, .custom-logo {
	width: 105px;
	height: 74px;
	object-fit: contain;
	border-radius: 7px;
}
.primary-navigation { justify-self: center; }
.primary-navigation .menu {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2.3vw, 34px);
	list-style: none;
	margin: 0;
	padding: 0;
}
.primary-navigation a {
	position: relative;
	color: #2f3935;
	font-size: .79rem;
	font-weight: 750;
	letter-spacing: .04em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}
.primary-navigation a::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: -10px;
	height: 2px;
	background: var(--green-700);
	transform: scaleX(0);
	transition: transform .2s ease;
}
.primary-navigation a:hover::after,
.primary-navigation .current-menu-item > a::after,
.primary-navigation .current_page_item > a::after { transform: scaleX(1); }
.header-whatsapp { min-height: 43px; padding-inline: 16px; font-size: .86rem; }
.menu-toggle { display: none; background: transparent; border: 0; padding: 10px; }
.menu-toggle__bars { display: grid; gap: 5px; width: 27px; }
.menu-toggle__bars span { display: block; height: 2px; width: 100%; background: var(--green-950); border-radius: 4px; transition: transform .2s ease, opacity .2s ease; }

.hero {
	position: relative;
	min-height: 560px;
	overflow: hidden;
	background: #f1eee8;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: contain; object-position: right center; }
.hero::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 38%, rgba(255,255,255,.54) 58%, rgba(255,255,255,0) 80%);
}
.hero__inner { position: relative; z-index: 2; min-height: 560px; display: flex; align-items: center; }
.hero__content { width: min(590px, 58%); padding: 58px 0 42px; }
.hero h1 { font-size: clamp(2.6rem, 4.6vw, 4.4rem); max-width: 700px; color: #10221c; }
.hero__lead { font-size: clamp(1.12rem, 2vw, 1.38rem); line-height: 1.45; color: #38413d; }
.check-list { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 7px; }
.check-list li { display: flex; align-items: flex-start; gap: 9px; }
.check-list svg { color: var(--green-700); margin-top: .18em; }
.check-list--large { gap: 12px; margin-top: 24px; }
.check-list--large li { font-size: 1.03rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__actions--center { justify-content: center; }
.hero__assurance { display: flex; align-items: center; gap: 8px; margin-top: 20px; font-size: .9rem; color: #46504c; }
.hero__assurance svg { color: var(--green-700); }
.experience-badge {
	position: absolute;
	right: 1%;
	top: 40px;
	width: 142px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: linear-gradient(145deg, #183f31, #285f48);
	border: 2px solid rgba(255,255,255,.35);
	box-shadow: 0 16px 40px rgba(16,47,37,.24);
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1.3;
}
.experience-badge svg { color: var(--gold); width: 29px; height: 29px; margin-bottom: 6px; }
.experience-badge strong { font-size: .98rem; }
.experience-badge span { font-size: .84rem; }

.trust-strip { background: linear-gradient(100deg, #214d3b, #183b2f); color: #fff; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; padding-block: 24px; }
.trust-item { display: flex; align-items: flex-start; gap: 13px; min-width: 0; }
.trust-item__icon {
	width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%;
	display: grid; place-items: center; flex: 0 0 auto;
}
.trust-item__icon svg { width: 24px; height: 24px; }
.trust-item h2 { margin: 0 0 5px; font-size: .9rem; line-height: 1.3; letter-spacing: 0; }
.trust-item p { margin: 0; font-size: .76rem; color: rgba(255,255,255,.82); line-height: 1.5; }

.section { padding: clamp(68px, 8vw, 105px) 0; }
.section--tight { padding-block: 62px; }
.section--soft { background: var(--soft); }
.section-heading { max-width: 720px; margin: 0 auto 38px; text-align: center; }
.section-heading h2 { position: relative; padding-bottom: 16px; }
.section-heading h2::after {
	content: ""; position: absolute; left: 50%; bottom: 0; width: 36px; height: 2px; background: var(--green-700); transform: translateX(-50%);
}
.section-heading p:last-child { color: var(--muted); }
.section-heading--compact { margin-bottom: 32px; }
.purchase-section { background: #fff; }
.purchase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.purchase-card {
	border: 1px solid #d7ddd9;
	border-radius: 9px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 5px 20px rgba(16,47,37,.04);
	transition: transform .2s ease, box-shadow .2s ease;
}
.purchase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-small); }
.purchase-card > img { width: 100%; aspect-ratio: 16 / 7.8; object-fit: contain; object-position: center; background: #ffffff; }
.purchase-card__body { padding: 18px 18px 20px; }
.purchase-card h3 { margin-bottom: 8px; }
.purchase-card ul { padding-left: 20px; margin-bottom: 18px; color: #3e4844; }
.text-button { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border: 1px solid #9daeA4; border-radius: 6px; color: var(--ink); text-decoration: none; font-size: .9rem; }
.text-button:hover { border-color: var(--green-700); background: var(--green-050); }

.process-section { background: linear-gradient(180deg, #fbfbfa, #f4f4f2); }
.process-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 22px; align-items: center; }
.process-step { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 16px; position: relative; }
.process-step__icon { width: 72px; height: 72px; border-radius: 50%; border: 1px solid #b9c9c0; background: #fff; color: var(--green-700); display: grid; place-items: center; }
.process-step__icon svg { width: 34px; height: 34px; }
.process-step__number { position: absolute; left: -3px; top: -7px; width: 24px; height: 24px; border-radius: 50%; background: var(--green-900); color: #fff; font-size: .75rem; font-weight: 800; display: grid; place-items: center; }
.process-step h3 { font-size: 1rem; margin-bottom: 7px; }
.process-step p { font-size: .82rem; color: var(--muted); margin: 0; }
.process-arrow { color: #a4aaa7; font-size: 2.2rem; }

.ddr-section { padding-top: 25px; }
.ddr-layout { display: grid; grid-template-columns: minmax(0, 2.1fr) minmax(290px, .95fr); gap: 18px; }
.ddr-panel { position: relative; min-height: 345px; border-radius: 10px; overflow: hidden; background: #f5f3ef; border: 1px solid #e0e0dd; display: grid; grid-template-columns: 1.2fr .9fr; }
.ddr-panel::after { content: ""; position: absolute; inset: 0 38% 0 0; background: linear-gradient(102deg, rgba(248,247,244,1) 0%, rgba(248,247,244,.97) 75%, rgba(248,247,244,0) 100%); pointer-events: none; }
.ddr-panel__content { position: relative; z-index: 2; padding: 30px 26px; }
.ddr-panel__content h2 { color: var(--green-800); font-size: 1.65rem; }
.ddr-panel > img { width: 100%; height: 100%; object-fit: cover; grid-column: 2; }
.brand-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 18px 0; }
.brand-chips span { padding: 7px 11px; border: 1px solid #cfd4d0; border-radius: 6px; background: #fff; font-weight: 800; font-size: .85rem; }
.cta-card { background: linear-gradient(150deg, #285e47, #163b2e); border-radius: 10px; color: #fff; padding: 26px; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.cta-card h2 { font-size: 1.4rem; }
.cta-card p { color: rgba(255,255,255,.85); }
.cta-card .button { margin-top: 10px; }
.cta-card__phone { margin-top: 18px; display: flex; justify-content: center; align-items: center; gap: 12px; text-align: left; }
.cta-card__phone > span svg { width: 28px; height: 28px; }
.cta-card__phone small { display: block; color: rgba(255,255,255,.78); }
.cta-card__phone a { color: #fff; font-weight: 800; text-decoration: none; font-size: 1.05rem; }

.mini-trust { padding: 20px 0 35px; }
.mini-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: 10px; background: #fafaf9; border: 1px solid #eceeec; }
.mini-trust__grid > div { display: flex; gap: 12px; align-items: center; justify-content: center; padding: 18px; border-right: 1px solid #e2e5e3; }
.mini-trust__grid > div:last-child { border-right: 0; }
.mini-trust__grid svg { color: var(--green-800); width: 23px; height: 23px; }
.mini-trust__grid span { display: flex; flex-direction: column; line-height: 1.35; }
.mini-trust__grid strong { font-size: .78rem; }
.mini-trust__grid small { font-size: .7rem; color: var(--muted); }

.subpage-hero { background: linear-gradient(135deg, #f7f6f2, #edf2ee); padding: 70px 0; overflow: hidden; }
.subpage-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.subpage-hero h1 { color: #132c22; margin-bottom: 18px; }
.subpage-hero__lead { max-width: 650px; font-size: 1.25rem; color: #4d5954; }
.subpage-hero__grid > img { width: 100%; aspect-ratio: 16 / 9.5; object-fit: contain; object-position: center; background: #f7f7f4; border-radius: var(--radius-large); box-shadow: var(--shadow); }
.subpage-hero--about .subpage-hero__grid > img { aspect-ratio: 12 / 7; }
.intro-copy { font-size: 1.08rem; }
.intro-copy h2 { max-width: 760px; }
.intro-copy p { color: #45514c; }
.detail-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: center; }
.detail-grid--reverse .detail-grid__media { order: 2; }
.detail-grid__media img { width: 100%; aspect-ratio: 30 / 13; object-fit: contain; object-position: center; background: #f7f7f4; border-radius: var(--radius-large); box-shadow: var(--shadow-small); }
.detail-grid__content p { color: #4d5954; }
.brands-section { text-align: center; }
.brands-image { width: 100%; border: 1px solid #e1e3e0; border-radius: 12px; background: #fff; }
.manufacturer-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
.manufacturer-list span { padding: 8px 14px; border-radius: 999px; background: var(--green-050); color: var(--green-900); font-weight: 700; font-size: .9rem; }
.nationwide-section { padding-top: 0; }
.nationwide-card { background: linear-gradient(135deg, var(--green-900), var(--green-700)); color: #fff; border-radius: var(--radius-large); padding: 38px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.nationwide-card .eyebrow { color: #dce9e1; }
.nationwide-card p { margin-bottom: 0; color: rgba(255,255,255,.84); max-width: 760px; }
.nationwide-card .button { flex: 0 0 auto; background: #fff; color: var(--green-900); }
.nationwide-card .button:hover { background: #eef5f0; }

.about-copy-grid { display: grid; grid-template-columns: 1.4fr .7fr; gap: 60px; align-items: start; }
.about-copy-grid__main p { color: #44504b; font-size: 1.04rem; }
.about-facts { background: var(--green-950); color: #fff; padding: 30px; border-radius: var(--radius-large); box-shadow: var(--shadow-small); }
.about-facts h2 { font-size: 1.35rem; }
.about-facts ul { list-style: none; margin: 20px 0 0; padding: 0; }
.about-facts li { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.15); display: grid; gap: 4px; }
.about-facts strong { color: #dfe9e3; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.about-facts span { color: rgba(255,255,255,.88); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.values-grid article { text-align: center; background: #fff; border: 1px solid #e1e5e2; border-radius: var(--radius); padding: 30px 24px; }
.values-grid article > span { width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px; color: var(--green-700); background: var(--green-050); }
.values-grid svg { width: 32px; height: 32px; }
.values-grid h2 { font-size: 1.35rem; }
.values-grid p { margin-bottom: 0; color: var(--muted); }
.centered-cta { text-align: center; max-width: 820px; }
.centered-cta p:not(.eyebrow) { color: var(--muted); }

.contact-layout { display: grid; grid-template-columns: .75fr 1.35fr; gap: 36px; align-items: start; }
.contact-sidebar { background: var(--green-950); color: #fff; border-radius: var(--radius-large); padding: 34px; position: sticky; top: calc(var(--header-height) + 24px); }
.contact-sidebar .eyebrow { color: #cfe1d6; }
.contact-sidebar > p { color: rgba(255,255,255,.8); }
.contact-method { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.15); color: #fff; text-decoration: none; }
.contact-method:hover { color: #fff; opacity: .9; }
.contact-method > span { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; }
.contact-method strong, .contact-method small { display: block; }
.contact-method small { color: rgba(255,255,255,.74); }
.contact-address { border-top: 1px solid rgba(255,255,255,.15); margin-top: 4px; padding-top: 20px; }
.contact-address small { color: rgba(255,255,255,.7); }
.contact-form-card { border: 1px solid #dce1de; border-radius: var(--radius-large); padding: clamp(24px, 4vw, 42px); box-shadow: var(--shadow-small); }
.contact-form-card > p { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 7px; font-weight: 700; color: #28332e; margin-bottom: 18px; }
.contact-form label small { font-weight: 500; color: var(--muted); }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
	width: 100%;
	border: 1px solid #cfd7d2;
	border-radius: 8px;
	background: #fff;
	color: var(--ink);
	padding: 12px 13px;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(60,124,95,.13); outline: 0; }
.file-upload { padding: 16px; border: 1px dashed #aebbb3; border-radius: 10px; background: var(--green-050); }
.file-upload input { font-weight: 500; }
.consent { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; gap: 10px !important; font-weight: 500 !important; font-size: .91rem; }
.consent input { margin-top: .3em; width: 18px; height: 18px; accent-color: var(--green-700); }
.form-hint { font-size: .83rem; color: var(--muted); }
.form-notice { padding: 13px 15px; border-radius: 8px; margin-bottom: 18px; font-weight: 650; }
.form-notice--success { background: #e8f5ec; border: 1px solid #9fceb0; color: #1f5a34; }
.form-notice--error { background: #fff0ef; border: 1px solid #e5aaa6; color: #8a2924; }
.button--submit { min-width: 180px; border: 0; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.legal-hero { background: linear-gradient(135deg, #f5f6f3, #e9f0eb); padding: 72px 0 58px; }
.legal-hero h1 { color: var(--green-950); }
.legal-hero__lead { color: var(--muted); }
.legal-content { padding-top: 65px; }
.prose { color: #3c4843; }
.prose h2 { margin-top: 2em; color: #1c3329; font-size: 1.55rem; }
.prose h2:first-child { margin-top: 0; }
.prose a { overflow-wrap: anywhere; }
.prose li { margin-bottom: .4em; }

.site-footer { background: #112f25; color: #fff; margin-top: 0; }
.site-footer__grid { display: grid; grid-template-columns: 1fr 1fr 1.15fr; gap: 55px; padding-block: 56px; }
.footer-logo { display: inline-flex; width: 110px; height: 104px; border-radius: 9px; overflow: hidden; margin-bottom: 16px; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.site-footer p { color: rgba(255,255,255,.76); }
.site-footer__heading { font-size: 1.05rem; letter-spacing: .02em; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.84); }
.footer-contact a { color: #fff; text-decoration: none; }
.footer-note { font-size: .78rem; margin-top: 14px; }
.footer-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.13); }
.site-footer__bottom-inner { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-footer__bottom p { margin: 0; font-size: .82rem; }
.footer-menu { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; padding: 0; margin: 0; }
.footer-menu a { color: rgba(255,255,255,.8); font-size: .82rem; text-decoration: none; }
.footer-menu a:hover { color: #fff; }
.mobile-whatsapp { display: none; }

@media (max-width: 1080px) {
	.site-header__inner { grid-template-columns: 125px 1fr auto; gap: 16px; }
	.primary-navigation .menu { gap: 16px; }
	.primary-navigation a { font-size: .72rem; }
	.header-whatsapp span { display: none; }
	.header-whatsapp { width: 44px; padding-inline: 0; }
	.trust-strip__grid { grid-template-columns: repeat(3, 1fr); }
	.trust-item:nth-child(4), .trust-item:nth-child(5) { grid-column: span 1; }
	.ddr-layout { grid-template-columns: 1fr; }
	.cta-card { max-width: none; }
}

@media (max-width: 900px) {
	:root { --header-height: 76px; }
	.site-header__inner { grid-template-columns: 1fr auto auto; min-height: var(--header-height); }
	.site-logo__fallback img, .custom-logo { width: 80px; height: 60px; }
	.menu-toggle { display: inline-flex; order: 2; }
	.header-whatsapp { order: 3; }
	.primary-navigation {
		position: fixed;
		left: 0; right: 0; top: var(--header-height);
		background: #fff;
		padding: 20px;
		box-shadow: 0 18px 35px rgba(16,47,37,.16);
		transform: translateY(-130%);
		opacity: 0;
		visibility: hidden;
		transition: transform .24s ease, opacity .24s ease, visibility .24s ease;
		justify-self: stretch;
	}
	.primary-navigation.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
	.primary-navigation .menu { display: grid; gap: 0; }
	.primary-navigation li { border-bottom: 1px solid #edf0ee; }
	.primary-navigation a { display: block; padding: 14px 4px; font-size: .88rem; }
	.primary-navigation a::after { bottom: 7px; right: auto; width: 30px; }
	.menu-open .menu-toggle__bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.menu-open .menu-toggle__bars span:nth-child(2) { opacity: 0; }
	.menu-open .menu-toggle__bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
	.hero { min-height: 670px; }
	.hero__inner { min-height: 670px; align-items: flex-start; }
	.hero__media img { object-fit: cover; object-position: 61% center; transform: scale(0.92); transform-origin: center center; }
	.hero::after { background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.91) 55%, rgba(255,255,255,.15) 100%); }
	.hero__content { width: 100%; max-width: 660px; padding-top: 46px; }
	.hero h1 { font-size: clamp(2.35rem, 8vw, 4rem); }
	.experience-badge { right: 24px; top: auto; bottom: 24px; width: 126px; }
	.purchase-grid { grid-template-columns: 1fr 1fr; }
	.purchase-card:last-child { grid-column: 1 / -1; max-width: 560px; justify-self: center; }
	.process-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
	.process-arrow { display: none; }
	.process-step { padding: 12px 0; }
	.mini-trust__grid { grid-template-columns: 1fr 1fr; }
	.mini-trust__grid > div:nth-child(2) { border-right: 0; }
	.mini-trust__grid > div:nth-child(-n+2) { border-bottom: 1px solid #e2e5e3; }
	.subpage-hero__grid, .detail-grid, .about-copy-grid, .contact-layout { grid-template-columns: 1fr; }
	.detail-grid--reverse .detail-grid__media { order: 0; }
	.subpage-hero__grid { gap: 35px; }
	.contact-sidebar { position: static; }
	.values-grid { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
	.container, .narrow { width: min(calc(100% - 28px), var(--container)); }
	.header-whatsapp { display: none; }
	.site-header__inner { grid-template-columns: 1fr auto; }
	.menu-toggle { order: initial; }
	.hero { min-height: 740px; }
	.hero__inner { min-height: 740px; }
	.hero__content { padding-top: 36px; }
	.hero__media img { transform: scale(0.96); }
	.hero h1 { font-size: clamp(2.1rem, 11vw, 3.2rem); }
	.hero__lead { font-size: 1.08rem; }
	.hero__actions { align-items: stretch; }
	.hero__actions .button { width: 100%; }
	.check-list { font-size: .94rem; }
	.experience-badge { width: 112px; right: 14px; bottom: 14px; }
	.trust-strip__grid { grid-template-columns: 1fr; gap: 17px; padding-block: 22px; }
	.trust-item { align-items: center; }
	.purchase-grid { grid-template-columns: 1fr; }
	.purchase-card:last-child { grid-column: auto; max-width: none; }
	.ddr-panel { grid-template-columns: 1fr; }
	.ddr-panel::after { inset: 0; background: linear-gradient(180deg, rgba(248,247,244,.99) 0%, rgba(248,247,244,.93) 62%, rgba(248,247,244,.12) 100%); }
	.ddr-panel__content { min-height: 430px; padding: 28px 20px; }
	.ddr-panel > img { grid-column: 1; position: absolute; inset: 0; width: 100%; height: 100%; }
	.mini-trust__grid { grid-template-columns: 1fr; }
	.mini-trust__grid > div { border-right: 0; border-bottom: 1px solid #e2e5e3; justify-content: flex-start; }
	.mini-trust__grid > div:last-child { border-bottom: 0; }
	.nationwide-card { display: grid; padding: 28px 22px; }
	.nationwide-card .button { width: 100%; }
	.form-grid { grid-template-columns: 1fr; gap: 0; }
	.contact-form-card { padding: 24px 18px; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 34px; }
	.site-footer__brand { grid-column: auto; }
	.site-footer__bottom-inner { flex-direction: column; align-items: flex-start; padding-block: 18px; }
	.mobile-whatsapp {
		display: grid;
		position: fixed;
		right: 16px;
		bottom: 16px;
		z-index: 999;
		width: 54px;
		height: 54px;
		place-items: center;
		border-radius: 50%;
		background: #1f7a49;
		color: #fff;
		box-shadow: 0 10px 30px rgba(0,0,0,.25);
	}
	.mobile-whatsapp:hover { color: #fff; background: #155e37; }
	.mobile-whatsapp svg { width: 29px; height: 29px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
