/* ============================================================
   Argus Land — Menzi New Town
   Design tokens
   ============================================================ */
:root {
  /* Brand colors — sampled from menzi-argusland-logo.png */
  --ink: #0B2A45;          /* deep navy — "Argus" wordmark */
  --ink-2: #123B5C;        /* lighter navy, gradients/hover */
  --ink-soft: #3C5165;     /* body copy on light bg */
  --slate: #54616A;        /* secondary text — "Land" gray, darkened from the raw logo sample so it clears WCAG AA (4.5:1) on both --bg and --bg-alt */
  --green: #2C9A52;        /* accent CTA — swoosh green, AA-safe on white */
  --green-dark: #227A40;
  --green-soft: #E4F3E9;
  --teal: #0E88A6;         /* accent 2 — swoosh teal */
  --teal-soft: #E2F2F5;

  --bg: #FAF6EE;           /* warm off-white base */
  --bg-alt: #F1E9D8;       /* warm sand — alternating sections */
  --bg-deep: #0B2A45;      /* dark navy sections (footer, stat band) */
  --surface: #FFFFFF;
  --border: #E5DCC8;
  --border-soft: #EFE8D9;

  --gradient-brand: linear-gradient(100deg, var(--teal) 0%, var(--green) 100%);

  --font-display: 'Fraunces', 'Iowan Old Style', serif;
  --font-body: 'Work Sans', -apple-system, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(11, 42, 69, 0.06), 0 1px 1px rgba(11, 42, 69, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 42, 69, 0.10), 0 2px 8px rgba(11, 42, 69, 0.06);
  --shadow-lg: 0 24px 64px rgba(11, 42, 69, 0.16), 0 8px 24px rgba(11, 42, 69, 0.08);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 150ms;
  --t-base: 250ms;
  --t-slow: 450ms;

  --container: 1200px;
  --container-narrow: 800px;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, video { max-width: 100%; display: block; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
p { max-width: 65ch; }
svg { display: block; }

/* Focus visibility — never remove */
:focus-visible {
  outline: 2.5px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   Type scale
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
}
h1, .h1 { font-size: clamp(2.4rem, 4.6vw + 1rem, 4.6rem); font-weight: 600; }
h2, .h2 { font-size: clamp(1.9rem, 2.6vw + 1rem, 3rem); }
h3, .h3 { font-size: clamp(1.3rem, 1vw + 1rem, 1.7rem); }
h4, .h4 { font-size: 1.1rem; font-weight: 600; }
.lede { font-size: clamp(1.05rem, 0.4vw + 1rem, 1.25rem); color: var(--slate); max-width: 52ch; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm); transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   Layout helpers
   ============================================================ */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.container-narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: 1.5rem; }
section { padding-block: clamp(3.5rem, 6vw, 7rem); }
.section-alt { background: var(--bg-alt); }
.section-deep { background: var(--bg-deep); color: rgba(250, 246, 238, 0.86); }
.section-deep h2, .section-deep h3 { color: #fff; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head > .eyebrow { margin-bottom: 0.9rem; }
.section-head > h2 { margin-top: 0.4rem; }
.section-head > p { margin-top: 1rem; }

@media (min-width: 720px) {
  .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 0.9rem 1.6rem; border-radius: var(--radius-full);
  border: 1.5px solid transparent; white-space: nowrap;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  min-height: 44px;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  background: var(--ink); color: #fff; box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--ink-2); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-accent {
  /* green-dark, not green — white text on the lighter green fails WCAG AA (3.6:1); this hits 5.4:1 */
  background: var(--green-dark); color: #fff; box-shadow: var(--shadow-sm);
}
.btn-accent:hover { background: #1B6636; box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--border);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--ink); }
.btn-ghost-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.35);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.88rem; min-height: 38px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  padding-block: 1rem;
  transition: background var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), padding var(--t-base) var(--ease);
}
.navbar::before {
  content: ''; position: absolute; inset: 0; background: rgba(250, 246, 238, 0);
  backdrop-filter: blur(0px); transition: background var(--t-base) var(--ease), backdrop-filter var(--t-base) var(--ease); z-index: -1;
}
.navbar.is-scrolled { padding-block: 0.65rem; }
.navbar.is-scrolled::before { background: rgba(250, 246, 238, 0.92); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a {
  font-weight: 500; font-size: 0.95rem; color: var(--ink-soft);
  position: relative; padding-block: 0.3rem;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--gradient-brand); transition: right var(--t-base) var(--ease); border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { right: 0; }
.nav-cta { display: none; }
.nav-toggle {
  display: inline-flex; background: none; border: none; padding: 0.5rem;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; color: var(--ink); }
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 150; background: var(--bg);
  display: flex; flex-direction: column; padding: 6rem 1.5rem 2rem;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.9rem; padding-block: 0.6rem; color: var(--ink); border-bottom: 1px solid var(--border-soft); }
.mobile-menu .btn { margin-top: 2rem; }
.mobile-menu-close { position: absolute; top: 1.3rem; right: 1.5rem; }

/* ============================================================
   Promo banner
   ============================================================ */
.promo-banner {
  /* solid ink, not the teal/green gradient — white text on the gradient's
     lighter stops fails WCAG AA contrast (down to 3.6:1) */
  background: var(--ink); color: #fff;
  font-size: 0.9rem; font-weight: 500; text-align: center;
  padding: 0.65rem 1rem; position: relative; z-index: 101;
  border-bottom: 2px solid; border-image: var(--gradient-brand) 1;
}
.promo-banner strong { font-weight: 700; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; padding-top: clamp(7.5rem, 12vw, 10rem); padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden; background: linear-gradient(180deg, #FDFBF6 0%, var(--bg) 60%);
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -12%; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(44,154,82,0.14) 0%, rgba(44,154,82,0) 68%); pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -25%; left: -14%; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(14,136,166,0.12) 0%, rgba(14,136,166,0) 68%); pointer-events: none;
}
.hero-grid { display: grid; gap: 3rem; align-items: end; position: relative; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; } }
.hero-copy h1 { margin-top: 1rem; }
.hero-copy .lede { margin-top: 1.25rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--ink); }
.hero-trust-item span { font-size: 0.85rem; color: var(--slate); }

.hero-visual { position: relative; }
.hero-visual-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero-visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual-badge {
  position: absolute; left: -1rem; bottom: 1.5rem; background: var(--surface);
  border-radius: var(--radius-md); padding: 1rem 1.25rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.8rem; max-width: 250px;
}
@media (max-width: 640px) { .hero-visual-badge { left: 0.75rem; } }
.hero-visual-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); flex-shrink: 0; box-shadow: 0 0 0 4px var(--green-soft); }
.hero-visual-badge strong { display: block; font-size: 0.9rem; color: var(--ink); }
.hero-visual-badge span { font-size: 0.78rem; color: var(--slate); }

/* ============================================================
   Reveal on scroll
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(18px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
[data-reveal-stagger].is-visible > * { opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 80ms; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 160ms; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 240ms; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 320ms; }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 400ms; }

/* ============================================================
   Cards / chips
   ============================================================ */
.card {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.chip {
  display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 600;
  padding: 0.35rem 0.8rem; border-radius: var(--radius-full); background: var(--green-soft); color: var(--green-dark);
}

/* ============================================================
   Location / Map
   ============================================================ */
.location-grid { display: grid; gap: 2.5rem; }
@media (min-width: 980px) { .location-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid var(--border); aspect-ratio: 4/3; background: var(--bg-alt);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.location-points { margin-top: 1.75rem; display: grid; gap: 1rem; }
.location-point { display: flex; gap: 0.9rem; align-items: flex-start; }
.location-point .icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center;
}
.location-point .icon svg { width: 20px; height: 20px; }
.location-point p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }
.drone-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.drone-frame img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.drone-caption { font-size: 0.85rem; color: var(--slate); margin-top: 0.75rem; }

/* ============================================================
   Unit models / virtual tour
   ============================================================ */
.unit-tabs { display: flex; gap: 0.6rem; margin-bottom: 2.25rem; flex-wrap: wrap; }
.unit-tab {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-full);
  padding: 0.75rem 1.4rem; font-weight: 600; font-size: 0.95rem; color: var(--slate);
  transition: all var(--t-fast) var(--ease); min-height: 44px;
}
.unit-tab:hover { border-color: var(--ink); color: var(--ink); }
.unit-tab.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.unit-panel { display: none; }
.unit-panel.is-active { display: block; }

.unit-showcase { display: grid; gap: 2.5rem; }
@media (min-width: 980px) { .unit-showcase { grid-template-columns: 1.1fr 0.9fr; } }

.unit-gallery-main {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 4/3; position: relative; background: var(--ink);
}
.unit-gallery-main [data-role="main-media"] { width: 100%; height: 100%; }
.unit-gallery-main img {
  width: 100%; height: 100%; object-fit: cover; cursor: zoom-in;
  transition: opacity var(--t-fast) var(--ease);
}
.unit-gallery-main video { width: 100%; height: 100%; object-fit: contain; background: var(--ink); }
.unit-gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.1rem 1.3rem 0.9rem;
  background: linear-gradient(0deg, rgba(11,42,69,0.75) 0%, rgba(11,42,69,0) 100%);
  color: #fff; font-size: 0.88rem; display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem;
}
.gallery-nav { display: flex; gap: 0.4rem; }
.gallery-nav button {
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.4); color: #fff;
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast) var(--ease);
}
.gallery-nav button:hover { background: rgba(255,255,255,0.32); }
.gallery-nav svg { width: 18px; height: 18px; }

.unit-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; margin-top: 0.75rem; }
.unit-thumbs button {
  border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; border: 2px solid transparent;
  padding: 0; background: none; transition: border-color var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
  opacity: 0.6; position: relative;
}
.unit-thumbs button.is-active { border-color: var(--green); opacity: 1; }
.unit-thumbs button:hover { opacity: 1; }
.unit-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.thumb-play-icon {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(11,42,69,0.35);
}
.thumb-play-icon svg { width: 40%; height: 40%; color: #fff; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5)); }

.unit-info h3 { font-size: clamp(1.7rem, 2vw, 2.2rem); }
.unit-info .tagline { color: var(--slate); font-size: 1.05rem; margin-top: 0.25rem; }
.unit-info p.desc { margin-top: 1.1rem; color: var(--ink-soft); }
.unit-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin-top: 1.6rem; }
.unit-spec {
  background: var(--bg-alt); border-radius: var(--radius-sm); padding: 0.9rem 0.7rem; text-align: center;
}
.unit-spec strong { display: block; font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); }
.unit-spec span { font-size: 0.76rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.04em; }
.unit-price-row {
  margin-top: 1.75rem; padding: 1.25rem 1.4rem; border-radius: var(--radius-md);
  background: var(--ink); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.unit-price-row .price-label { font-size: 0.8rem; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.06em; }
.unit-price-row .price-value { font-family: var(--font-display); font-size: 1.9rem; }
.unit-info .unit-actions { margin-top: 1.5rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(11,42,69,0.94);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  opacity: 0; pointer-events: none; transition: opacity var(--t-base) var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(90vw, 1100px); max-height: 82vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox-caption { color: #fff; text-align: center; margin-top: 1rem; font-size: 0.9rem; opacity: 0.85; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3); color: #fff;
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast) var(--ease);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.24); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; }
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; }
  .lightbox-prev { left: 0.6rem; } .lightbox-next { right: 0.6rem; }
  .lightbox-close { top: 0.8rem; right: 0.8rem; }
}

/* ============================================================
   Calculator
   ============================================================ */
.calc-wrap { display: grid; gap: 2.5rem; }
@media (min-width: 980px) { .calc-wrap { grid-template-columns: 0.95fr 1.05fr; align-items: start; } }
.calc-card {
  background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft); padding: clamp(1.5rem, 3vw, 2.5rem);
}
.field-group { margin-bottom: 1.5rem; }
.field-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--ink); margin-bottom: 0.6rem; }
.unit-select { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.unit-select-btn {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 0.9rem; text-align: left;
  background: var(--bg); transition: all var(--t-fast) var(--ease);
}
.unit-select-btn strong { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); }
.unit-select-btn span { font-size: 0.8rem; color: var(--slate); }
.unit-select-btn.is-active { border-color: var(--green); background: var(--green-soft); box-shadow: 0 0 0 1px var(--green); }

.slider-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; }
.slider-value { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }
input[type="range"] {
  width: 100%; appearance: none; -webkit-appearance: none; height: 6px; border-radius: 999px;
  background: var(--border); outline-offset: 6px;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); border: 3px solid #fff; box-shadow: var(--shadow-sm); cursor: pointer; margin-top: -9px;
}
input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%; background: var(--green); border: 3px solid #fff; box-shadow: var(--shadow-sm); cursor: pointer;
}
input[type="range"]::-moz-range-track { height: 6px; border-radius: 999px; background: var(--border); }
.term-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.term-pill {
  border: 1.5px solid var(--border); border-radius: var(--radius-full); padding: 0.55rem 1.05rem;
  font-size: 0.88rem; font-weight: 600; color: var(--slate); background: var(--bg); min-height: 44px;
  transition: all var(--t-fast) var(--ease);
}
.term-pill:hover { border-color: var(--ink); color: var(--ink); }
.term-pill.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.calc-results {
  background: var(--ink); color: rgba(255,255,255,0.92); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem); position: relative; overflow: hidden;
}
.calc-results::before {
  content: ''; position: absolute; inset: 0; background: var(--gradient-brand); opacity: 0.12;
}
.calc-results-inner { position: relative; }
.calc-monthly-block {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md); padding: 1.5rem 1.6rem; margin-bottom: 0.5rem;
}
.calc-headline {
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; color: #fff; display: flex; align-items: center; gap: 0.5rem;
}
.calc-headline::before {
  content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(44,154,82,0.35); flex-shrink: 0;
}
.calc-monthly {
  font-family: var(--font-display); font-size: clamp(3.2rem, 6vw, 4.6rem); margin-top: 0.6rem; line-height: 1; color: #fff;
}
.calc-monthly .unit-suffix { font-size: 1.3rem; opacity: 0.85; font-family: var(--font-body); margin-left: 0.3rem; }
.calc-monthly span:first-child { font-size: 0.55em; vertical-align: 0.15em; margin-right: 0.1rem; opacity: 0.85; }
.calc-breakdown { margin-top: 2rem; display: grid; gap: 0.85rem; }
.calc-row {
  display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.14); font-size: 0.94rem;
}
.calc-row.total { font-weight: 700; border-bottom: none; padding-top: 0.3rem; font-size: 1.05rem; }
.calc-row .label { opacity: 0.78; }
.calc-note { margin-top: 1.75rem; font-size: 0.82rem; opacity: 0.68; line-height: 1.5; }
.calc-cta { margin-top: 1.5rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ============================================================
   Broker section
   ============================================================ */
.broker-grid { display: grid; gap: 3rem; }
@media (min-width: 980px) { .broker-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.broker-list { margin-top: 1.5rem; display: grid; gap: 0.9rem; }
.broker-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.96rem; color: var(--ink-soft); }
.broker-list .icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--green); margin-top: 0.15rem; }
.broker-steps { display: grid; gap: 1rem; margin-top: 1.5rem; }
.broker-step { display: flex; gap: 1rem; align-items: flex-start; }
.broker-step .num {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--green-soft); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; font-family: var(--font-display);
}

.form-card {
  background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft); padding: clamp(1.5rem, 3vw, 2.25rem);
}
.form-row { margin-bottom: 1.25rem; }
.form-row label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--ink); margin-bottom: 0.45rem; }
.form-row .hint { font-weight: 400; color: var(--slate); font-size: 0.8rem; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.8rem 1rem; background: var(--bg); font-size: 0.96rem; min-height: 46px;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.form-row textarea { min-height: 100px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--teal); background: #fff; outline: none; }
.form-row-2 { display: grid; gap: 1.25rem; }
@media (min-width: 560px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-error {
  display: none; font-size: 0.8rem; color: #B4433C; margin-top: 0.4rem;
}
.form-row.has-error input, .form-row.has-error select, .form-row.has-error textarea { border-color: #B4433C; }
.form-row.has-error .form-error { display: block; }
.form-success {
  display: none; background: var(--green-soft); color: var(--green-dark); border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; font-size: 0.92rem; margin-top: 1rem; align-items: center; gap: 0.6rem;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: var(--container-narrow); margin-inline: auto; display: grid; gap: 0.85rem; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-md); overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: none; border: none; padding: 1.25rem 1.5rem; text-align: left;
  font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); min-height: 44px;
}
.faq-question .plus { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq-question .plus::before, .faq-question .plus::after {
  content: ''; position: absolute; background: var(--ink); border-radius: 2px; transition: transform var(--t-base) var(--ease);
}
.faq-question .plus::before { left: 3px; right: 3px; top: 50%; height: 2px; transform: translateY(-50%); }
.faq-question .plus::after { top: 3px; bottom: 3px; left: 50%; width: 2px; transform: translateX(-50%); }
.faq-item.is-open .plus::after { transform: translateX(-50%) rotate(90deg) scaleX(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--t-base) var(--ease); }
.faq-answer p { padding: 0 1.5rem 1.4rem; color: var(--slate); font-size: 0.96rem; max-width: none; }
.faq-item.is-open .faq-answer { max-height: 320px; }

/* ============================================================
   Contact / footer
   ============================================================ */
.contact-band { text-align: center; }
.contact-band h2 { max-width: 20ch; margin-inline: auto; }
.contact-methods { display: grid; gap: 1rem; margin-top: 2.5rem; max-width: 780px; margin-inline: auto; }
@media (min-width: 720px) { .contact-methods { grid-template-columns: repeat(3, 1fr); } }
.contact-method {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem; text-align: center; transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.contact-method:hover { background: rgba(255,255,255,0.11); transform: translateY(-2px); }
.contact-method .icon {
  width: 46px; height: 46px; border-radius: 50%; background: var(--gradient-brand); display: flex; align-items: center;
  justify-content: center; margin-inline: auto; margin-bottom: 0.9rem;
}
.contact-method .icon svg { width: 22px; height: 22px; color: #fff; }
.contact-method strong { display: block; font-size: 0.98rem; margin-bottom: 0.2rem; }
.contact-method span { font-size: 0.84rem; opacity: 0.7; }

footer { background: var(--bg-deep); color: rgba(250,246,238,0.65); padding-block: 3rem 2rem; font-size: 0.85rem; }
/* clear the fixed sticky-cta bar on mobile so the copyright line isn't hidden behind it */
@media (max-width: 959px) { footer { padding-bottom: calc(2rem + 64px + env(safe-area-inset-bottom)); } }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; align-items: center; }
.footer-logo img { height: 30px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; opacity: 0.55; }

/* ============================================================
   Sticky mobile CTA
   ============================================================ */
.sticky-cta {
  position: fixed; bottom: 0; inset-inline: 0; z-index: 90; background: var(--surface);
  border-top: 1px solid var(--border); padding: 0.75rem 1rem; display: flex; gap: 0.6rem;
  box-shadow: 0 -8px 24px rgba(11,42,69,0.08);
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
}
.sticky-cta .btn { flex: 1; }
@media (min-width: 960px) { .sticky-cta { display: none; } }

/* ============================================================
   Misc
   ============================================================ */
.badge-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.5rem; }
hr.divider { border: none; border-top: 1px solid var(--border); margin-block: 2rem; }
.disclaimer-box {
  background: var(--bg-alt); border: 1px dashed var(--border); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; font-size: 0.82rem; color: var(--slate); margin-top: 1.75rem; line-height: 1.55;
}
