/* 420 Web Design — site styles
   Dark, premium, green accent. No framework, no build step. */

:root {
  --bg: #0b0f0c;
  --bg-2: #101612;
  --surface: #151d17;
  --surface-2: #1b2520;
  --line: rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.14);
  --text: #eef3ee;
  --muted: #a7b3aa;
  --faint: #6f7d73;
  --accent: #8fd14f;
  --accent-2: #5fae2b;
  --accent-deep: #3c7a1a;
  --accent-ink: #07110a;
  --accent-soft: rgba(143,209,79,.12);
  --danger: #ff8a7a;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 40px rgba(0,0,0,.35);
  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: 1180px;
  --narrow: 780px;
  --gutter: clamp(16px, 4vw, 32px);
  --section: clamp(56px, 8vw, 104px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg, picture { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -.02em; }
h3 { font-size: 1.2rem; }
h4, .h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.3em; }
strong { font-weight: 600; color: #fff; }
.icon { width: 24px; height: 24px; flex: none; }
.icon-sm { width: 18px; height: 18px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--accent); color: var(--accent-ink); padding: 8px 14px; border-radius: 6px; z-index: 100; }
.skip:focus { left: 8px; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container.narrow { max-width: var(--narrow); }
.section { padding-block: var(--section); }
.section-tight { padding-block: clamp(28px, 4vw, 56px); }
.tone-2 { background: var(--bg-2); }
.tone-accent { background: linear-gradient(180deg, rgba(143,209,79,.07), rgba(143,209,79,0)); }
.section-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.eyebrow { font-family: var(--font-head); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); font-weight: 600; margin-bottom: .9em; }
.lede { font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: var(--muted); max-width: 60ch; }

/* ------------------------------------------------------------- buttons -- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: .95rem; padding: 12px 20px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .15s, background .15s, border-color .15s; white-space: nowrap; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: #a3e066; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 15px 26px; font-size: 1.02rem; }
.btn-sm { padding: 9px 16px; font-size: .88rem; }

/* -------------------------------------------------------------- header -- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(11,15,12,.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; }
.brand:hover { text-decoration: none; }
.logo-mark { color: var(--accent); }
.brand-name { color: var(--accent); }
.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { display: inline-flex; align-items: center; gap: 4px; padding: 10px 14px; color: var(--text); font-weight: 500; font-size: .95rem; border-radius: 8px; }
.main-nav > ul > li > a:hover, .main-nav > ul > li > a[aria-current] { color: var(--accent); text-decoration: none; background: var(--accent-soft); }
.header-cta { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.phone-link { display: inline-flex; align-items: center; gap: 6px; color: var(--text); font-weight: 600; font-family: var(--font-head); font-size: .95rem; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-2); color: var(--text); border-radius: 10px; padding: 8px; cursor: pointer; width: 42px; height: 42px; align-items: center; justify-content: center; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mega { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); width: min(960px, calc(100vw - 32px)); opacity: 0; pointer-events: none; transition: opacity .15s, transform .15s; padding-top: 12px; }
.mega-narrow { width: 420px; }
.has-menu:hover .mega, .has-menu:focus-within .mega { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-inner { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 8px 18px; }
.mega-col h4 { margin: 8px 10px 6px; font-size: .72rem; }
.mega-col a { display: flex; gap: 12px; align-items: flex-start; padding: 10px; border-radius: 10px; color: var(--text); }
.mega-col a:hover { background: var(--accent-soft); text-decoration: none; }
.mega-col a .icon { color: var(--accent); margin-top: 2px; }
.mega-col a strong { display: block; font-size: .93rem; font-family: var(--font-head); font-weight: 600; }
.mega-col a small { display: block; color: var(--muted); font-size: .8rem; line-height: 1.4; }
.mega-all { justify-content: flex-start; color: var(--accent) !important; font-weight: 600; }

.mobile-nav { border-top: 1px solid var(--line); background: var(--bg); max-height: calc(100vh - 74px); overflow: auto; padding-block: 12px 24px; }
.mobile-nav details { border-bottom: 1px solid var(--line); }
.mobile-nav summary { padding: 14px 4px; font-family: var(--font-head); font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.mobile-nav summary::after { content: "+"; color: var(--accent); }
.mobile-nav details[open] summary::after { content: "–"; }
.mobile-nav ul { list-style: none; padding: 0 0 10px; margin: 0; }
.mobile-nav li a { display: block; padding: 9px 12px; color: var(--text); }
.mobile-plain li a { font-family: var(--font-head); font-weight: 600; padding: 12px 4px; }
.mobile-plain li .btn { display: inline-flex; margin-top: 8px; }

/* ---------------------------------------------------------------- hero -- */
.hero { position: relative; padding-block: clamp(48px, 7vw, 96px) clamp(40px, 6vw, 80px); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: -20% -10% auto; height: 80%; background: radial-gradient(60% 60% at 30% 30%, rgba(143,209,79,.16), transparent 70%); pointer-events: none; }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero-compact .hero-inner { grid-template-columns: 1fr; }
.hero-compact .hero-copy { max-width: 820px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-pic img { border-radius: var(--radius); aspect-ratio: 16 / 10; object-fit: cover; box-shadow: var(--shadow); border: 1px solid var(--line); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0 0 18px; font-size: .85rem; color: var(--faint); }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--faint); }
.crumbs a { color: var(--muted); }
.crumbs [aria-current] { color: var(--accent); }

/* -------------------------------------------------------------- stats -- */
.stats { border-block: 1px solid var(--line); background: var(--bg-2); }
.stats-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; padding-block: 28px; }
.stat { text-align: center; }
.stat-v { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--accent); letter-spacing: -.02em; }
.stat-l { color: var(--muted); font-size: .92rem; }

/* -------------------------------------------------------------- cards -- */
.card-grid, .feature-grid { display: grid; gap: 18px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; color: var(--text); transition: border-color .15s, transform .15s, background .15s; }
.card:hover { text-decoration: none; border-color: var(--accent); transform: translateY(-3px); background: var(--surface-2); }
.card-icon, .feature-icon { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); margin-bottom: 16px; }
.card h3 { font-size: 1.12rem; }
.card p { color: var(--muted); font-size: .95rem; flex: 1; }
.card-more { color: var(--accent); font-weight: 600; font-family: var(--font-head); font-size: .88rem; display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; }
.feature { padding: 4px 0; }
.feature h3 { font-size: 1.08rem; }
.feature p { color: var(--muted); font-size: .96rem; }

/* -------------------------------------------------------------- steps -- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); counter-reset: step; }
.step { display: flex; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.step-n { flex: none; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--accent-ink); font-family: var(--font-head); font-weight: 700; }
.step h3 { font-size: 1.05rem; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* -------------------------------------------------------------- split -- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split-flip .split-copy { order: 2; }
.split-copy p, .split-copy li { color: var(--muted); }
.split-copy ul { padding-left: 0; list-style: none; }
.split-copy li { position: relative; padding-left: 28px; margin-bottom: 8px; }
.split-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.split-media img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid var(--line); box-shadow: var(--shadow); }

/* -------------------------------------------------------------- prose -- */
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; font-size: 1.25rem; }
.prose p, .prose li { color: #d3dbd4; }
.prose li { margin-bottom: .4em; }
.prose blockquote { margin: 1.5em 0; padding: 18px 22px; border-left: 3px solid var(--accent); background: var(--surface); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--text); }
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; margin: 1.5em 0; display: block; overflow-x: auto; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { color: var(--text); font-family: var(--font-head); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
.prose .callout { background: var(--accent-soft); border: 1px solid rgba(143,209,79,.3); border-radius: var(--radius); padding: 20px 24px; margin: 1.6em 0; }
.prose .callout p:last-child { margin-bottom: 0; }
.prose .callout strong { color: var(--accent); }
.prose .warn { background: rgba(255,138,122,.08); border: 1px solid rgba(255,138,122,.3); border-radius: var(--radius); padding: 20px 24px; margin: 1.6em 0; }
.prose .warn p:last-child { margin-bottom: 0; }
.prose .meta { color: var(--faint); font-size: .9rem; margin-top: -1em; margin-bottom: 2em; }
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.x-list { list-style: none; padding: 0; }
.x-list li { position: relative; padding-left: 30px; }
.x-list li::before { content: "✕"; position: absolute; left: 0; color: var(--danger); font-weight: 700; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.two-col > div { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.two-col h3 { margin-top: 0 !important; }

/* --------------------------------------------------------------- faqs -- */
.faqs h2 { margin-bottom: 28px; }
.faq { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); margin-bottom: 10px; }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 20px; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3 { margin: 0; font-size: 1.02rem; font-weight: 600; }
.faq summary .icon { color: var(--accent); transition: transform .2s; }
.faq[open] summary .icon { transform: rotate(180deg); }
.faq-a { padding: 0 20px 18px; color: var(--muted); }
.faq-a p:last-child { margin: 0; }

/* -------------------------------------------------------------- forms -- */
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 32px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .9rem; font-weight: 500; margin-bottom: 6px; color: var(--text); }
.req { color: var(--accent); }
.field input, .field select, .field textarea { width: 100%; background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--radius-sm); color: var(--text); padding: 12px 14px; font: inherit; font-size: 1rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%238fd14f' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field select option { background: var(--surface); }
.field textarea { resize: vertical; min-height: 140px; }
.field .error { color: var(--danger); font-size: .85rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field.invalid .error { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 8px; }
.form-note { color: var(--faint); font-size: .85rem; margin: 0; max-width: 42ch; }
.form-alert { background: rgba(255,138,122,.1); border: 1px solid rgba(255,138,122,.35); color: var(--text); padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 18px; }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.contact-side { position: sticky; top: 96px; }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; }
.contact-card h3 { font-size: 1rem; }
.contact-card a { font-weight: 600; }
.contact-card p { color: var(--muted); margin: 0; }
.contact-card .big { font-family: var(--font-head); font-size: 1.35rem; color: var(--text); display: inline-flex; gap: 8px; align-items: center; }

/* --------------------------------------------------------------- ctas -- */
.cta-inline { display: flex; justify-content: space-between; align-items: center; gap: 28px; background: linear-gradient(135deg, var(--surface), var(--surface-2)); border: 1px solid var(--line-2); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); }
.cta-inline h2 { font-size: 1.5rem; margin-bottom: .3em; }
.cta-inline p { color: var(--muted); margin: 0; }
.cta-inline-actions { display: flex; flex-wrap: wrap; gap: 12px; flex: none; }
.cta-band { background: linear-gradient(135deg, #14361a, #0f2612 60%, var(--bg-2)); border-top: 1px solid var(--line); padding-block: var(--section); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -10%; top: -40%; width: 50%; height: 180%; background: radial-gradient(closest-side, rgba(143,209,79,.18), transparent); pointer-events: none; }
.cta-band-inner { display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; align-items: center; position: relative; }
.cta-band p { color: var(--muted); }
.cta-band h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.related { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; margin: 0; }
.related a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid var(--line-2); border-radius: 999px; color: var(--text); font-size: .9rem; }
.related a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* ------------------------------------------------------------- footer -- */
.site-footer { background: #070a08; border-top: 1px solid var(--line); padding-block: 56px 28px; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 2.6fr; gap: 40px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer-brand p { color: var(--muted); max-width: 40ch; }
.footer-contact a, .footer-contact span { display: inline-flex; align-items: center; gap: 8px; color: var(--text); line-height: 2; }
.powered { color: var(--faint); font-size: .85rem; }
.footer-acc summary { list-style: none; display: flex; justify-content: space-between; align-items: center; cursor: default; pointer-events: none; }
.footer-acc summary::-webkit-details-marker { display: none; }
.footer-acc summary .icon { display: none; color: var(--accent); transition: transform .2s; }
.footer-acc h4 { margin: 0 0 12px; font-size: .75rem; }
.footer-acc ul { list-style: none; padding: 0; margin: 0; }
.footer-acc li { margin-bottom: 7px; }
.footer-acc a { color: var(--muted); }
.footer-acc a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px; color: var(--faint); font-size: .84rem; }
.footer-bottom p { margin-bottom: .5em; }

/* ------------------------------------------------------------ consent -- */
.consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); display: flex; gap: 16px; align-items: center; justify-content: space-between; max-width: 720px; margin-inline: auto; }
.consent p { margin: 0; font-size: .9rem; color: var(--muted); }
.consent-actions { display: flex; gap: 8px; flex: none; }

/* ------------------------------------------------------------ misc UI -- */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.pill-row li { border: 1px solid var(--line-2); border-radius: 999px; padding: 6px 12px; font-size: .85rem; color: var(--muted); }
.logo-strip { display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; color: var(--faint); font-family: var(--font-head); font-weight: 600; font-size: .9rem; }
.quote-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.quote-card p { font-size: 1.05rem; color: var(--text); }
.quote-card cite { color: var(--muted); font-style: normal; font-size: .9rem; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.compare > div { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.compare h3 { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; }
.compare .icon { color: var(--danger); }
.compare .yes .icon { color: var(--accent); }
.compare ul { padding-left: 0; list-style: none; }
.compare li { padding: 6px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .95rem; }
.compare li:last-child { border: 0; }
.region-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.region { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.region h3 { font-size: 1rem; }
.region p { color: var(--muted); font-size: .9rem; margin: 0; }
.package { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.package.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset; }
.package h3 { font-size: 1.3rem; }
.package .who { color: var(--accent); font-size: .85rem; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.package ul { list-style: none; padding: 0; margin: 16px 0 24px; flex: 1; }
.package li { position: relative; padding: 6px 0 6px 26px; color: var(--muted); font-size: .95rem; border-bottom: 1px solid var(--line); }
.package li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.thanks { text-align: center; padding-block: var(--section); }
.thanks .big-check { width: 72px; height: 72px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin: 0 auto 24px; }

/* --------------------------------------------------------- responsive -- */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-cta { gap: 8px; }
  .header-phone { width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: 10px; justify-content: center; color: var(--accent); }
  .header-phone .phone-text { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner, .split, .contact-grid, .cta-band-inner { grid-template-columns: 1fr; }
  .split-flip .split-copy { order: 0; }
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-side { position: static; }
  .cta-inline { flex-direction: column; align-items: flex-start; }
  .two-col, .compare { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .header-inner { min-height: 66px; gap: 12px; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .consent { flex-direction: column; align-items: stretch; left: 10px; right: 10px; bottom: 10px; padding: 14px; }
  .consent-actions { justify-content: flex-end; }
  .hero { padding-top: 32px; }
  .hero-actions { margin-top: 20px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-pic img { aspect-ratio: 2 / 1; max-height: 200px; width: 100%; }
  .hero-media { margin-top: 8px; }
  .split-media img { aspect-ratio: 16 / 9; max-height: 210px; width: 100%; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 10px; padding-block: 22px; }
  .stat-v { font-size: 1.6rem; }
  .stat-l { font-size: .82rem; }
  .card, .step, .package, .form, .contact-card, .region, .compare > div, .two-col > div { padding: 20px; }
  .steps { gap: 10px; }
  .cta-inline, .quote-card { padding: 22px; }
  .cta-inline-actions .btn, .cta-band-actions .btn { width: 100%; justify-content: center; }
  .cta-band-actions { align-items: stretch; }
  .related a { font-size: .85rem; padding: 8px 12px; }
  .footer-cols { grid-template-columns: 1fr; gap: 0; }
  .footer-acc { border-top: 1px solid var(--line); }
  .footer-acc summary { padding: 14px 0; cursor: pointer; pointer-events: auto; }
  .footer-acc summary .icon { display: block; }
  .footer-acc[open] summary .icon { transform: rotate(180deg); }
  .footer-acc h4 { margin: 0; font-size: .82rem; color: var(--text); }
  .footer-acc ul { padding-bottom: 14px; }
  .footer-acc li { margin-bottom: 0; }
  .footer-acc a { display: block; padding: 8px 0; }
  .site-footer { padding-top: 40px; }
  .footer-bottom { margin-top: 24px; }
}
@media (max-width: 480px) {
  .brand-rest { display: none; }
  .brand { gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card, .mega { transition: none; }
}
