/* ==========================================================================
   Waypio — design system
   Cartographie souveraine. Light mode only. Aucune dépendance externe.
   ========================================================================== */

:root {
  /* Palette */
  --ink: #101a2e;
  --ink-soft: #41506b;
  --muted: #6c7a93;
  --bg: #f6f9fd;
  --surface: #ffffff;
  --surface-2: #f0f5fc;
  --line: #e3eaf4;
  --line-strong: #d3dded;

  --brand: #1f53e0;
  --brand-ink: #15307c;
  --brand-soft: #eaf0ff;
  --brand-2: #4f74ee;

  --accent: #07b6a4;      /* teal — souveraineté / France / actions vives */
  --accent-ink: #0a6e64;
  --accent-soft: #e1f7f4;

  --indigo: #6457e6;
  --indigo-soft: #ecebfc;
  --sun: #e8943b;
  --sun-soft: #fdf0e2;

  --ok: #1f9d6b;
  --danger: #d6453c;

  /* Typo */
  --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", "JetBrains Mono", "Cascadia Code", Menlo, Consolas, monospace;

  /* Rythme */
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 11px;
  --radius-sm: 8px;
  --maxw: 1180px;

  --shadow-sm: 0 1px 2px rgba(16, 26, 46, .06), 0 2px 6px rgba(16, 26, 46, .05);
  --shadow-md: 0 6px 18px rgba(16, 26, 46, .08), 0 2px 6px rgba(16, 26, 46, .05);
  --shadow-lg: 0 22px 60px rgba(21, 48, 124, .14), 0 8px 22px rgba(16, 26, 46, .07);
  --shadow-brand: 0 14px 34px rgba(31, 83, 224, .28);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid rgba(31, 83, 224, .35); outline-offset: 2px; border-radius: 4px; }

/* ----- Layout ----- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: linear-gradient(180deg, #ffffff 0%, var(--surface-2) 100%); }
.section--ink { background: radial-gradient(120% 130% at 18% 0%, #16224a 0%, #0e1830 60%, #0b1226 100%); color: #e8eefb; }
.grid { display: grid; gap: 26px; }
.center { text-align: center; }
.mw-680 { max-width: 680px; }
.mw-760 { max-width: 760px; }
.mx-auto { margin-inline: auto; }

/* ----- Typo ----- */
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); font-weight: 760; }
.h-display { font-size: clamp(2.4rem, 1.4rem + 3.6vw, 4rem); font-weight: 800; letter-spacing: -0.035em; }
h2.h-section { font-size: clamp(1.9rem, 1.3rem + 1.9vw, 2.8rem); }
h3 { font-size: 1.32rem; letter-spacing: -0.015em; }
.lead { font-size: clamp(1.08rem, 1rem + .4vw, 1.28rem); color: var(--ink-soft); line-height: 1.62; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 680; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: currentColor; opacity: .6; }
.section--ink .eyebrow { color: #79e6da; }
.muted { color: var(--muted); }
.text-soft { color: var(--ink-soft); }
.balance { text-wrap: balance; }

/* ----- Buttons ----- */
.btn {
  --bg: var(--brand); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: var(--radius-md);
  font-weight: 650; font-size: .98rem; letter-spacing: -0.01em;
  background: var(--bg); color: var(--fg); border: 1px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { background: #1a49cc; }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.24); }
.btn--light:hover { background: rgba(255,255,255,.2); }
.btn--lg { padding: 16px 28px; font-size: 1.04rem; }
.btn--block { width: 100%; }
.btn .arr { transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

/* ----- Badges / pills ----- */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px; border-radius: 999px; font-size: .82rem; font-weight: 600;
  background: var(--brand-soft); color: var(--brand-ink); border: 1px solid #d7e2ff;
}
.badge--accent { background: var(--accent-soft); color: var(--accent-ink); border-color: #c2ece6; }
.badge--ghost { background: var(--surface); color: var(--ink-soft); border-color: var(--line); }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.section--ink .badge { background: rgba(255,255,255,.08); color: #d8e2fb; border-color: rgba(255,255,255,.16); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 1px 0 rgba(16,26,46,.04), 0 8px 24px rgba(16,26,46,.05); }
.nav { display: flex; align-items: center; gap: 28px; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.32rem; letter-spacing: -0.03em; color: var(--ink); }
.brand .mark { width: 30px; height: 30px; flex: none; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-links a {
  padding: 9px 13px; border-radius: 9px; font-size: .96rem; font-weight: 550; color: var(--ink-soft);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-links a.is-active { color: var(--brand); }
.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-cta .link-login { font-weight: 600; font-size: .96rem; color: var(--ink); padding: 9px 6px; }
.nav-cta .link-login:hover { color: var(--brand); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--surface); align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: .2s; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding: 64px 0 40px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 85% -5%, rgba(7,182,164,.10), transparent 70%),
    radial-gradient(55% 60% at 5% 0%, rgba(31,83,224,.10), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr 1.1fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { margin-bottom: 30px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 34px; color: var(--muted); font-size: .92rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--accent); flex: none; }

/* Map panel (hero) */
.map-panel { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: #dde6f1; }
.map-panel .map { width: 100%; height: 472px; }
.map-panel.is-page .map { height: 560px; }
.map-search {
  position: absolute; top: 18px; left: 18px; right: 18px; z-index: 5; max-width: 380px;
}
.map-search .field {
  display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 12px;
  padding: 12px 15px; box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.map-search .field svg { color: var(--muted); flex: none; }
.map-search input { border: 0; outline: 0; width: 100%; font-size: .98rem; background: transparent; }
.map-search .results {
  margin-top: 8px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  overflow: hidden; display: none;
}
.map-search .results.is-open { display: block; }
.map-search .results li { padding: 11px 15px; cursor: pointer; border-bottom: 1px solid var(--line); transition: background .12s; }
.map-search .results li:last-child { border-bottom: 0; }
.map-search .results li:hover, .map-search .results li.is-hl { background: var(--brand-soft); }
.map-search .results .r-main { font-weight: 600; font-size: .95rem; }
.map-search .results .r-sub { font-size: .82rem; color: var(--muted); }
.map-badge {
  position: absolute; bottom: 16px; left: 16px; z-index: 5;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
  font-size: .82rem; font-weight: 600; color: var(--ink-soft); display: inline-flex; gap: 8px; align-items: center;
}
.map-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }

/* ==========================================================================
   Cards & features
   ========================================================================== */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
.card-pad { padding: 28px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.feature { padding: 28px; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.feature .ic {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px;
  background: var(--brand-soft); color: var(--brand);
}
.feature .ic.is-teal { background: var(--accent-soft); color: var(--accent-ink); }
.feature .ic.is-indigo { background: var(--indigo-soft); color: var(--indigo); }
.feature .ic.is-sun { background: var(--sun-soft); color: var(--sun); }
.feature h3 { margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: .98rem; }
.feature .more { margin-top: 14px; display: inline-flex; gap: 6px; align-items: center; font-weight: 620; font-size: .92rem; color: var(--brand); }

.section-head { max-width: 700px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin: 14px 0 16px; }

/* List with checks */
.checklist li { display: flex; gap: 11px; align-items: flex-start; padding: 8px 0; color: var(--ink-soft); }
.checklist li svg { color: var(--accent); flex: none; margin-top: 3px; }
.checklist li b { color: var(--ink); font-weight: 640; }

/* Split media */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--rev .split-media { order: -1; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing { grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); position: relative; }
.plan--featured { border-color: var(--brand); box-shadow: var(--shadow-lg); }
.plan--featured::after { content: ""; position: absolute; inset: -1px; border-radius: var(--radius-lg); padding: 1px; background: linear-gradient(150deg, var(--brand), var(--accent)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.plan .pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: .76rem; font-weight: 700; letter-spacing: .04em; padding: 5px 13px; border-radius: 999px; box-shadow: var(--shadow-brand); }
.plan .pname { font-weight: 720; font-size: 1.18rem; letter-spacing: -0.02em; }
.plan .ptag { color: var(--muted); font-size: .92rem; margin-top: 2px; min-height: 2.6em; }
.plan .price { display: flex; align-items: baseline; gap: 4px; margin: 18px 0 4px; }
.plan .price .amt { font-size: 2.7rem; font-weight: 800; letter-spacing: -0.04em; }
.plan .price .per { color: var(--muted); font-weight: 560; font-size: .98rem; }
.plan .ht { font-size: .8rem; color: var(--muted); margin-bottom: 20px; }
.plan .incl { display: grid; gap: 11px; padding: 20px 0; border-top: 1px solid var(--line); margin-top: 4px; }
.plan .incl li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.plan .incl li svg { color: var(--accent); flex: none; margin-top: 3px; }
.plan .incl li b { color: var(--ink); font-weight: 640; }
.plan .over { font-size: .86rem; color: var(--muted); background: var(--surface-2); border-radius: 10px; padding: 12px 14px; margin-bottom: 20px; }
.plan .over b { color: var(--ink); }
.plan .btn { margin-top: auto; }

.units { grid-template-columns: 1fr 1fr; gap: 22px; }
.unit { padding: 26px; }
.unit .u-h { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.unit .u-h .tag { font-family: var(--mono); font-size: .82rem; background: var(--ink); color: #fff; padding: 4px 10px; border-radius: 7px; }

/* ==========================================================================
   Coverage selector
   ========================================================================== */
.zones { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.zone { padding: 26px; cursor: pointer; border: 1.5px solid var(--line); transition: .2s var(--ease); position: relative; }
.zone:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.zone.is-active { border-color: var(--brand); box-shadow: var(--shadow-md); }
.zone .zh { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.zone .zname { font-weight: 720; font-size: 1.12rem; }
.zone .zflag { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--surface-2); }
.zone.z-fr .zflag { background: var(--accent-soft); color: var(--accent-ink); }
.zone.z-eu .zflag { background: var(--brand-soft); color: var(--brand); }
.zone.z-world .zflag { background: var(--indigo-soft); color: var(--indigo); }
.zone p { color: var(--ink-soft); font-size: .95rem; }
.zone .zincl { margin-top: 14px; font-size: .82rem; font-weight: 650; color: var(--accent-ink); display: inline-flex; align-items: center; gap: 6px; }
.zone .pick { position: absolute; top: 18px; right: 18px; width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line-strong); }
.zone.is-active .pick { border-color: var(--brand); background: var(--brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; }

/* ==========================================================================
   Tables (comparatif)
   ========================================================================== */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); background: #fff; }
table.cmp { width: 100%; border-collapse: collapse; min-width: 640px; }
table.cmp th, table.cmp td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: .96rem; }
table.cmp thead th { font-weight: 700; color: var(--ink); background: var(--surface-2); white-space: nowrap; }
table.cmp tbody tr:last-child td { border-bottom: 0; }
table.cmp .col-us { background: rgba(31,83,224,.045); }
table.cmp th.col-us { color: var(--brand); }
table.cmp td b { font-weight: 680; }
.tick { color: var(--ok); font-weight: 700; }
.cross { color: var(--muted); }
.cmp-note { font-size: .84rem; color: var(--muted); margin-top: 14px; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 44px 22px 0; font-size: 1.06rem; font-weight: 620; cursor: pointer; position: relative; color: var(--ink); }
.faq-q::after { content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; color: var(--brand); transition: transform .2s; }
.faq-item.is-open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a-inner { padding: 0 0 22px; color: var(--ink-soft); }

/* ==========================================================================
   Code block (doc / démarrer)
   ========================================================================== */
.code { background: #0e1830; color: #d7e2fb; border-radius: var(--radius-lg); padding: 22px 24px; overflow-x: auto; box-shadow: var(--shadow-md); border: 1px solid #1c2a4d; }
.code pre { margin: 0; font-family: var(--mono); font-size: .86rem; line-height: 1.7; white-space: pre; }
.code .c-key { color: #79e6da; }
.code .c-str { color: #ffd596; }
.code .c-com { color: #6679a6; }
.code .c-fn { color: #8fb6ff; }
.tabs { display: flex; gap: 6px; margin-bottom: -1px; flex-wrap: wrap; }
.tab { padding: 9px 16px; border-radius: 10px 10px 0 0; font-weight: 600; font-size: .9rem; color: var(--muted); cursor: pointer; border: 1px solid transparent; background: transparent; }
.tab.is-active { color: var(--ink); background: #0e1830; color: #d7e2fb; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { border-radius: var(--radius-xl); padding: 64px 48px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1f53e0 0%, #163a9e 55%, #0f7d72 130%); color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 14px auto 28px; }
.cta-band .hero-cta { justify-content: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23ffffff' stroke-width='.5' opacity='.08'/%3E%3C/svg%3E"); pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.stat .n { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.04em; color: var(--ink); }
.section--ink .stat .n { color: #fff; }
.stat .l { color: var(--muted); font-size: .92rem; margin-top: 4px; }
.section--ink .stat .l { color: #9fb0d4; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #0d1730; color: #b9c6e2; padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.09); }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.footer-tag { font-size: .95rem; color: #8fa1c6; max-width: 280px; }
.footer-badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 7px 13px; border-radius: 999px; background: rgba(7,182,164,.14); border: 1px solid rgba(7,182,164,.3); color: #7fe6da; font-size: .82rem; font-weight: 600; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; font-weight: 680; }
.footer-col a { display: block; padding: 6px 0; color: #9fb0d4; font-size: .95rem; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bot { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; padding-top: 26px; font-size: .88rem; color: #7a8cb0; }
.footer-bot .fl { display: flex; gap: 18px; flex-wrap: wrap; }

/* ==========================================================================
   Misc utilities
   ========================================================================== */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.kvs { display: grid; gap: 2px; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.note-box { background: var(--brand-soft); border: 1px solid #d7e2ff; border-radius: var(--radius-md); padding: 16px 18px; color: var(--brand-ink); font-size: .92rem; }
.note-box.is-teal { background: var(--accent-soft); border-color: #c2ece6; color: var(--accent-ink); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 36px; }
  .split--rev .split-media { order: 0; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .nav-links, .nav-cta .link-login { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open .nav-links { display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px; background: #fff; border-bottom: 1px solid var(--line); padding: 14px 22px 20px; box-shadow: var(--shadow-md); }
  .nav.is-open .nav-links a { padding: 13px 12px; }
  .pricing, .cards-4, .cards-3, .cards-2, .zones, .units { grid-template-columns: 1fr; }
  .map-panel .map { height: 380px; }
  .map-search { max-width: none; }
  .cta-band { padding: 48px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; } }
