/* ============================================================================
   MaklerBot — landing page
   Design tokens mirror the app (src/theme/tokens.ts): navy + warm gold accent +
   sage, warm neutrals, large radii, soft low-opacity shadows.
   Type: Plus Jakarta Sans (display) + Inter (body).
   ========================================================================== */

:root {
  /* Brand */
  --navy-900: #102745;
  --navy-700: #1b3a6b;
  --navy-600: #264b82;
  --navy-300: #6f97d6;
  --gold-500: #c9a96e;
  --gold-400: #d8be8a;
  --sage-500: #7c9a7e;

  /* Neutrals */
  --cloud: #fbfaf7;
  --white: #ffffff;
  --sand: #f4f1ea;
  --fog: #e6e1d6;
  --ink: #14181f;
  --slate-600: #5a6472;
  --slate-400: #8a93a1;

  /* Semantic */
  --bg: var(--cloud);
  --surface: var(--white);
  --surface-alt: var(--sand);
  --border: var(--fog);
  --text: var(--ink);
  --text-2: var(--slate-600);
  --text-3: var(--slate-400);
  --brand: var(--navy-700);
  --accent: var(--gold-500);
  --favorite: #e5484d;
  --success: #2e7d5b;

  /* Radii */
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows (soft, low opacity — like the app) */
  --e1: 0 2px 8px rgba(20, 24, 31, 0.06);
  --e2: 0 8px 24px rgba(20, 24, 31, 0.08);
  --e3: 0 20px 48px rgba(20, 24, 31, 0.12);
  --e-brand: 0 16px 40px rgba(27, 58, 107, 0.28);

  --container: 1180px;
  --ease: cubic-bezier(0.2, 0, 0, 1);

  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ── Reset / base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }
em { font-style: normal; color: var(--brand); font-weight: 500; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--text); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 1000;
  background: var(--brand); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
}
.skip-link:focus { left: 16px; }

.i { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.grad {
  background: linear-gradient(100deg, var(--navy-700) 0%, var(--navy-600) 45%, var(--gold-500) 130%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  --pad: 12px 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: var(--pad); border-radius: var(--r-pill); border: 1px solid transparent;
  cursor: pointer; transition: transform 0.18s var(--ease), box-shadow 0.24s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}
.btn .i { width: 18px; height: 18px; }
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--e-brand); }
.btn--primary:hover { background: var(--navy-600); transform: translateY(-2px); box-shadow: 0 22px 48px rgba(27,58,107,0.34); }
.btn--ghost { background: rgba(20,24,31,0.04); color: var(--text); border-color: var(--border); }
.btn--ghost:hover { background: rgba(20,24,31,0.07); transform: translateY(-2px); }
.btn--lg { --pad: 15px 28px; font-size: 16px; }
.btn--sm { --pad: 9px 16px; font-size: 14px; }

/* ── Header ───────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 0;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.78);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  box-shadow: var(--e1); padding: 9px 0;
  border-bottom: 1px solid rgba(230,225,214,0.7);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { border-radius: 10px; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-weight: 500; font-size: 15px; color: var(--text-2); transition: color 0.18s; }
.nav__links a:hover { color: var(--brand); }
@media (max-width: 820px) { .nav__links { display: none; } }

/* ── Eyebrow / section heads ──────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 18px;
}
.eyebrow--center { justify-content: center; }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(201,169,110,0.22); }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section__head { max-width: 640px; margin: 0 auto clamp(40px, 6vw, 68px); text-align: center; }
.section__title { font-size: clamp(28px, 4.4vw, 46px); }
.section__sub { margin-top: 16px; font-size: clamp(16px, 2vw, 19px); color: var(--text-2); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero { position: relative; padding: clamp(40px, 7vw, 84px) 0 64px; overflow: hidden; }
.hero__glow {
  position: absolute; inset: -20% -10% auto -10%; height: 720px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 70% at 75% 12%, rgba(201,169,110,0.22), transparent 60%),
    radial-gradient(55% 60% at 18% 0%, rgba(111,151,214,0.20), transparent 62%),
    radial-gradient(70% 60% at 50% -10%, rgba(124,154,126,0.12), transparent 60%);
  filter: blur(8px);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero__title { font-size: clamp(38px, 6.4vw, 70px); font-weight: 800; letter-spacing: -0.035em; }
.hero__lede { margin-top: 22px; font-size: clamp(16px, 2.1vw, 20px); color: var(--text-2); max-width: 540px; }
.hero__cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__note { margin-top: 20px; font-size: 14px; color: var(--text-3); }

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__lede, .hero__copy { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__visual { order: -1; }
}

/* ── Phone mockup ─────────────────────────────────────────────────────────── */
.hero__visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: 300px; aspect-ratio: 300 / 620;
  background: #0e1116; border-radius: 44px; padding: 11px;
  box-shadow: var(--e3), 0 0 0 2px rgba(20,24,31,0.06) inset;
}
.phone__notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 110px; height: 26px; background: #0e1116; border-radius: var(--r-pill); z-index: 3; }
.phone__screen { width: 100%; height: 100%; border-radius: 34px; overflow: hidden; background: var(--cloud); }
.app { padding: 16px 14px; height: 100%; display: flex; flex-direction: column; gap: 11px; }
.app__bar { display: flex; align-items: center; justify-content: space-between; padding: 6px 2px 2px; }
.app__title { font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.app__avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-300), var(--navy-700)); }
.app__search {
  display: flex; align-items: center; gap: 8px; padding: 11px 13px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-pill);
  font-size: 12.5px; color: var(--text-2); box-shadow: var(--e1);
}
.i--spark { width: 16px; height: 16px; color: var(--accent); stroke-width: 2.2; }
.app__interp {
  font-size: 11px; color: var(--brand); background: rgba(27,58,107,0.07);
  border: 1px solid rgba(27,58,107,0.14); border-radius: var(--r-sm); padding: 8px 11px;
}
.app__interp strong { color: var(--brand); }
.card { background: var(--white); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--e1); border: 1px solid rgba(230,225,214,0.7); }
.card__media { position: relative; aspect-ratio: 16/10; background-size: cover; background-position: center; }
.card__fav { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; border: none; border-radius: 50%; background: rgba(255,255,255,0.92); display: grid; place-items: center; color: var(--favorite); }
.card__fav .i { width: 15px; height: 15px; fill: currentColor; }
.card__body { padding: 9px 11px 11px; }
.card__price { font-family: var(--font-display); font-weight: 800; font-size: 16px; letter-spacing: -0.02em; }
.card__price span { font-family: var(--font-body); font-weight: 500; font-size: 11px; color: var(--text-3); margin-left: 2px; }
.card__meta { font-size: 11.5px; color: var(--text-2); margin-top: 2px; }

/* Source badges (match the app: S red-on-white, B white-on-green) */
.badge-src {
  position: absolute; bottom: 8px; left: 8px;
  width: 22px; height: 22px; border-radius: 50%; display: inline-grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 12px; line-height: 1;
  box-shadow: var(--e1);
}
.badge-src--s { background: #fff; color: #c8102e; border: 1.5px solid #c8102e; }
.badge-src--b { background: #6ab023; color: #fff; }

/* Floating chips */
.float-chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.7); border-radius: var(--r-md); padding: 11px 14px;
  box-shadow: var(--e2); z-index: 4; will-change: transform;
}
.float-chip strong { display: block; font-size: 13px; font-weight: 600; }
.float-chip small { display: block; font-size: 11px; color: var(--text-2); }
.float-chip__icon { font-size: 20px; }
.float-chip--dog { top: 12%; left: -8%; }
.float-chip--ai { bottom: 14%; right: -10%; }
@media (max-width: 480px) { .float-chip--dog { left: -2%; } .float-chip--ai { right: -2%; } }

/* ── Trust bar ────────────────────────────────────────────────────────────── */
.trustbar {
  margin-top: clamp(40px, 6vw, 72px); display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap; text-align: center;
}
.trustbar__label { font-size: 13px; color: var(--text-3); font-weight: 500; }
.trustbar__logos { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.src-pill {
  display: inline-flex; align-items: center; gap: 9px; position: relative;
  padding: 9px 18px 9px 12px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-pill); font-weight: 600; font-size: 14.5px; box-shadow: var(--e1);
}
.src-pill .badge-src { position: static; width: 22px; height: 22px; }
.src-pill--soft { color: var(--text-2); font-weight: 500; }

/* ── Stats ────────────────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-bottom: clamp(16px, 4vw, 40px); }
.stat { text-align: center; padding: 28px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--e1); }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 4.6vw, 50px); letter-spacing: -0.04em; color: var(--brand); }
.stat__label { font-size: 14px; color: var(--text-2); margin-top: 6px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ── Problem ──────────────────────────────────────────────────────────────── */
.problem { background: var(--surface-alt); }
.problem__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pain { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px 22px; box-shadow: var(--e1); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.pain:hover { transform: translateY(-4px); box-shadow: var(--e2); }
.pain__icon { font-size: 30px; margin-bottom: 14px; }
.pain h3 { font-size: 18px; margin-bottom: 8px; }
.pain p { font-size: 14.5px; color: var(--text-2); }
@media (max-width: 900px) { .problem__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .problem__grid { grid-template-columns: 1fr; } }

/* ── Features ─────────────────────────────────────────────────────────────── */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 84px); align-items: center;
  padding: clamp(40px, 6vw, 72px) 0;
}
.feature + .feature { border-top: 1px solid var(--border); }
.feature--rev .feature__text { order: 2; }
.feature__tag {
  display: inline-block; font-weight: 600; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.feature__text h3 { font-size: clamp(24px, 3.4vw, 38px); margin-bottom: 16px; }
.feature__text > p { font-size: 17px; color: var(--text-2); }
.ticks { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 32px; font-weight: 500; color: var(--text); }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px;
  background: rgba(46,125,91,0.12); color: var(--success); border-radius: 50%;
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; gap: 32px; }
  .feature--rev .feature__text { order: 0; }
}

/* Feature media surfaces */
.feature__media { display: flex; justify-content: center; }
.feature__media > * { width: 100%; max-width: 440px; }

.demo-search { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 22px; box-shadow: var(--e2); }
.demo-search__bar { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: var(--cloud); border: 1px solid var(--border); border-radius: var(--r-pill); font-size: 15px; }
.demo-search__bar .typed { color: var(--text); }
.demo-search__bar .typed::after { content: "|"; color: var(--accent); animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.demo-search__chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.demo-search__chips span { font-size: 13px; font-weight: 600; padding: 7px 13px; background: rgba(27,58,107,0.08); color: var(--brand); border-radius: var(--r-pill); }
.demo-search__relax { font-size: 14px; color: var(--text-2); background: rgba(201,169,110,0.12); border: 1px dashed rgba(201,169,110,0.5); border-radius: var(--r-md); padding: 12px 14px; }
.demo-search__relax strong { color: #8a6d2f; }

.notif-stack { display: grid; gap: 14px; }
.notif { display: flex; gap: 13px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 15px 16px; box-shadow: var(--e2); }
.notif--dim { opacity: 0.7; transform: scale(0.97); box-shadow: var(--e1); }
.notif--dimmer { opacity: 0.45; transform: scale(0.94); box-shadow: none; }
.notif__ic { font-size: 22px; }
.notif strong { font-size: 13px; }
.notif p { font-size: 14px; color: var(--text-2); margin-top: 2px; }

.reco-row { display: flex; gap: 12px; }
.reco { flex: 1; aspect-ratio: 3/4; border-radius: var(--r-md); background-size: cover; background-position: center; position: relative; box-shadow: var(--e2); overflow: hidden; }
.reco span { position: absolute; left: 8px; bottom: 8px; font-size: 11px; font-weight: 600; color: #fff; background: rgba(20,24,31,0.55); backdrop-filter: blur(6px); padding: 5px 9px; border-radius: var(--r-pill); }

.chat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 20px; box-shadow: var(--e2); display: grid; gap: 10px; }
.chat__bubble { font-size: 14.5px; padding: 11px 15px; border-radius: 16px; max-width: 88%; }
.chat__bubble--me { background: var(--brand); color: #fff; justify-self: end; border-bottom-right-radius: 5px; }
.chat__bubble--bot { background: var(--cloud); border: 1px solid var(--border); justify-self: start; border-bottom-left-radius: 5px; }
.chat__who { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 12px; color: var(--brand); margin-bottom: 4px; }
.chat__who img { border-radius: 5px; }
.chat__cards { display: flex; gap: 8px; }
.chat__cards span { flex: 1; height: 70px; border-radius: 12px; background-size: cover; background-position: center; }
.chat__quick { display: flex; gap: 8px; }
.chat__quick span { font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: var(--r-pill); border: 1px solid var(--brand); color: var(--brand); }
.chat__quick span:first-child { background: var(--brand); color: #fff; }

.merge { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 26px; box-shadow: var(--e2); text-align: center; display: grid; gap: 10px; justify-items: center; }
.merge__src { width: 100%; max-width: 240px; justify-content: center; }
.merge__arrow { font-size: 22px; color: var(--text-3); }
.merge__out { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--brand); background: rgba(27,58,107,0.07); padding: 13px 22px; border-radius: var(--r-pill); }

/* ── Landlord ─────────────────────────────────────────────────────────────── */
.landlord { background: linear-gradient(180deg, var(--cloud), var(--surface-alt)); }
.landlord__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.landlord__media { position: relative; }
.landlord__media img { border-radius: var(--r-xl); box-shadow: var(--e3); }
.landlord__badge {
  position: absolute; bottom: 18px; left: 18px; background: var(--success); color: #fff;
  font-weight: 600; font-size: 14px; padding: 10px 18px; border-radius: var(--r-pill); box-shadow: var(--e2);
}
.landlord__copy h2 { font-size: clamp(28px, 4.4vw, 46px); }
.landlord__lede { margin-top: 18px; font-size: 17px; color: var(--text-2); }
.steps { list-style: none; margin: 26px 0 30px; display: grid; gap: 12px; }
.steps li { display: flex; align-items: center; gap: 14px; font-weight: 600; font-size: 16px; }
.steps li span { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 14px; }
@media (max-width: 860px) { .landlord__grid { grid-template-columns: 1fr; } .landlord__media { order: -1; } }

/* ── Comparison table ─────────────────────────────────────────────────────── */
.compare { background: var(--surface-alt); }
.table-wrap { overflow-x: auto; border-radius: var(--r-xl); box-shadow: var(--e2); border: 1px solid var(--border); background: var(--surface); }
.ctable { width: 100%; border-collapse: collapse; min-width: 640px; }
.ctable th, .ctable td { padding: 17px 18px; text-align: center; border-bottom: 1px solid var(--border); font-size: 15px; }
.ctable thead th { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--text-2); background: var(--cloud); }
.ctable tbody th { text-align: left; font-weight: 600; color: var(--text); font-family: var(--font-body); }
.ctable tr:last-child th, .ctable tr:last-child td { border-bottom: none; }
.ctable__us { position: relative; background: rgba(27,58,107,0.045); }
.ctable thead .ctable__us { color: var(--brand); background: rgba(27,58,107,0.09); border-top-right-radius: 0; }
.ctable thead .ctable__us::after { content: ""; }
.ctable i { font-style: normal; font-weight: 600; font-size: 14px; }
.ctable .yes { color: var(--success); font-size: 17px; }
.ctable td.ctable__us .yes { font-weight: 700; }
.ctable .no { color: var(--text-3); }
.ctable .part { color: var(--accent); }
.compare__note { text-align: center; margin-top: 18px; font-size: 13px; color: var(--text-3); }

/* ── How ──────────────────────────────────────────────────────────────────── */
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how__step { padding: 32px 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--e1); position: relative; overflow: hidden; }
.how__n { font-family: var(--font-display); font-weight: 800; font-size: 48px; color: transparent; -webkit-text-stroke: 1.5px var(--fog); letter-spacing: -0.04em; margin-bottom: 8px; }
.how__step h3 { font-size: 21px; margin-bottom: 10px; }
.how__step p { color: var(--text-2); }
@media (max-width: 800px) { .how__grid { grid-template-columns: 1fr; } }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.faq__head { text-align: left; max-width: none; margin: 0; }
.faq__head .section__title { font-size: clamp(28px, 4vw, 40px); }
.faq__head .section__sub { margin-top: 12px; }
.faq__list { display: grid; gap: 12px; }
.qa { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--e1); overflow: hidden; }
.qa summary {
  list-style: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa__plus { position: relative; flex: none; width: 20px; height: 20px; }
.qa__plus::before, .qa__plus::after { content: ""; position: absolute; background: var(--brand); border-radius: 2px; transition: transform 0.25s var(--ease); }
.qa__plus::before { top: 9px; left: 0; width: 20px; height: 2px; }
.qa__plus::after { left: 9px; top: 0; width: 2px; height: 20px; }
.qa[open] .qa__plus::after { transform: rotate(90deg); opacity: 0; }
.qa__body { padding: 0 22px 20px; }
.qa__body p { color: var(--text-2); }
@media (max-width: 800px) { .faq__grid { grid-template-columns: 1fr; } }

/* ── Final CTA ────────────────────────────────────────────────────────────── */
.cta-final { padding-bottom: clamp(72px, 10vw, 130px); }
.cta-final__inner {
  position: relative; text-align: center; max-width: 760px; margin: 0 auto;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700) 70%);
  color: #fff; border-radius: var(--r-xl); padding: clamp(44px, 7vw, 80px) clamp(24px, 5vw, 64px);
  box-shadow: var(--e3); overflow: hidden;
}
.cta-final__glow { position: absolute; inset: auto -20% -60% -20%; height: 360px; background: radial-gradient(50% 100% at 50% 100%, rgba(201,169,110,0.4), transparent 70%); pointer-events: none; }
.cta-final__logo { margin: 0 auto 22px; border-radius: 16px; box-shadow: var(--e2); position: relative; }
.cta-final h2 { color: #fff; font-size: clamp(28px, 4.6vw, 46px); position: relative; }
.cta-final p { color: rgba(255,255,255,0.82); margin-top: 16px; font-size: 18px; position: relative; }
.stores { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; position: relative; }
.store { display: inline-flex; align-items: center; gap: 11px; padding: 12px 22px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); border-radius: var(--r-md); transition: background 0.2s, transform 0.2s; backdrop-filter: blur(6px); }
.store:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.store__ic { width: 26px; height: 26px; fill: #fff; }
.store__txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store__txt small { font-size: 10px; color: rgba(255,255,255,0.7); }
.store__txt strong { font-family: var(--font-display); font-size: 16px; }
.cta-final__micro { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,0.62); position: relative; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { margin-top: 14px; font-size: 14.5px; max-width: 320px; line-height: 1.6; }
.footer__col h4 { color: #fff; font-size: 14px; margin-bottom: 16px; font-family: var(--font-display); }
.footer__col a { display: block; font-size: 14.5px; padding: 5px 0; transition: color 0.18s; }
.footer__col a:hover { color: var(--gold-400); }
.footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.45); }
.footer__disclaimer { max-width: 520px; text-align: right; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } .footer__bottom { flex-direction: column; } .footer__disclaimer { text-align: left; } }

/* ── Reveal animation (GSAP enhances; CSS fallback below) ──────────────────── */
[data-reveal] { opacity: 0; transform: translateY(24px); }
.no-js [data-reveal], .reveal-ready [data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
