/* ============================================================
   DECANT — landing page styles (LIGHT MODE)
   Foundation: Saniti Design System — light/commercial voice:
   white canvas, black ink, hairline rules, generous rhythm.
   Type: Schibsted Grotesk display + IBM Plex Mono eyebrows.
   Accent: bordeaux/wine, used with scarcity.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  /* ---- type families (from Saniti) ---- */
  --font-sans: 'Schibsted Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'SF Mono', ui-monospace, monospace;

  /* ---- surfaces (warm editorial light) ---- */
  --bg:          #FAF8F5;   /* warm paper-white canvas */
  --bg-card:     #FFFFFF;   /* clean white cards */
  --bg-elevated: #FFFFFF;   /* hover / panel */
  --bg-band:     #F1EEE8;   /* deeper warm paper band */

  /* ---- ink ---- */
  --ink:    #12110F;   /* near-black warm primary text */
  --ash:    #57544E;   /* muted secondary text */
  --mute:   #8C887F;   /* tertiary / mono captions */
  --faint:  #B6B1A8;   /* dimmed / struck-through */

  /* ---- bordeaux accent (the only chromatic hue) ---- */
  --accent:       #8A1F2C;   /* wine red — CTA fill, borders */
  --accent-hover: #71121F;   /* darker on hover (light bg) */
  --accent-text:  #8A1F2C;   /* readable accent for numbers/highlights */
  --accent-glow:  rgba(138,31,44,0.16);

  /* ---- lines ---- */
  --hairline:      rgba(18,17,15,0.13);
  --hairline-soft: rgba(18,17,15,0.07);

  /* ---- semantic ---- */
  --success: #1F8A5B;

  /* ---- elevation (light cards can lift gently) ---- */
  --shadow-soft: 0 1px 2px rgba(18,17,15,0.04), 0 12px 32px -16px rgba(18,17,15,0.14);
  --shadow-panel: 0 2px 6px rgba(18,17,15,0.05), 0 30px 70px -34px rgba(18,17,15,0.30);

  /* ---- layout ---- */
  --container: 1180px;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
html { scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

/* ---------- layout primitives ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: 104px 0; position: relative; }
.section--tight { padding: 80px 0; }
.band { background: var(--bg-band); }
.divider { height: 1px; background: var(--hairline); border: 0; }

/* ---------- type roles ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

.display {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: var(--ink);
}
.h-mega { font-size: clamp(44px, 7vw, 92px); }
.h-xl   { font-size: clamp(34px, 4.6vw, 56px); }
.h-lg   { font-size: clamp(28px, 3.4vw, 42px); }

.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ash);
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.body { color: var(--ash); line-height: 1.62; text-wrap: pretty; }
.accent-text { color: var(--accent-text); }

.section-head { max-width: 740px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head .lead { margin-top: 22px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; white-space: nowrap; cursor: pointer;
  font-family: var(--font-sans); font-weight: 500; font-size: 15px;
  border-radius: 999px; height: 50px; padding: 0 26px;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-arrow { transition: transform .18s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }
.btn-sm { height: 42px; padding: 0 20px; font-size: 14px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.scrolled { border-bottom-color: var(--hairline); }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; height: 100%; display: flex; align-items: center; gap: 32px; }
.wordmark { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 20px; letter-spacing: -0.02em; color: var(--ink); }
.wordmark .dot { width: 9px; height: 9px; border-radius: 999px; background: var(--accent); flex: none; }
.nav-menu { display: flex; gap: 30px; margin-left: auto; }
.nav-link { font-size: 14.5px; color: var(--ash); transition: color .15s ease; }
.nav-link:hover { color: var(--ink); }
.nav-cta { margin-left: 30px; }
.nav-toggle { display: none; }
.mobile-menu { display: none; }

/* ---------- hero ---------- */
.hero { padding-top: 92px; padding-bottom: 108px; position: relative; overflow: hidden; }
.hero-glow {
  position: absolute; top: -360px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 760px; pointer-events: none;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, var(--accent-glow), transparent 68%);
  opacity: .8; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-head { max-width: 16ch; margin: 4px 0 28px; }
.hero-sub { max-width: 600px; margin-bottom: 38px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-micro {
  margin-top: 30px; font-size: 14.5px; color: var(--mute); max-width: 520px;
  display: flex; gap: 11px; align-items: flex-start; line-height: 1.5;
}
.hero-micro .tick { color: var(--accent-text); flex: none; font-family: var(--font-mono); }
.hero-micro strong { color: var(--ash); font-weight: 600; }

/* trust strip under hero */
.trust-strip {
  margin-top: 68px; padding-top: 30px; border-top: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; gap: 14px 42px; align-items: center;
}
.trust-strip .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.trust-strip .platforms { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-strip .platforms span { font-size: 15px; color: var(--ash); font-weight: 600; }

/* ---------- problem ---------- */
.problem-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.problem-grid .body { font-size: 18px; }
.csv-flow { display: flex; flex-direction: column; gap: 10px; }
.csv-row {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-card); border: 1px solid var(--hairline);
  border-radius: 10px; padding: 16px 18px;
}
.csv-row .file { font-family: var(--font-mono); font-size: 12.5px; color: var(--ash); }
.csv-row .arrow { margin-left: auto; color: var(--faint); font-family: var(--font-mono); font-size: 13px; }
.csv-row .src { width: 8px; height: 8px; border-radius: 2px; flex: none; }
.csv-note { font-family: var(--font-mono); font-size: 12px; color: var(--mute); margin-top: 6px; padding-left: 4px; line-height: 1.6; }
.csv-note .x { color: var(--accent-text); }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 16px; }
.step { padding-top: 30px; border-top: 1px solid var(--ink); }
.step .num { font-family: var(--font-mono); font-size: 14px; color: var(--accent-text); letter-spacing: 0.04em; margin-bottom: 26px; display: block; }
.step h3 { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 12px; }
.step .body { font-size: 15.5px; }

/* ---------- feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--hairline);
  border-radius: 14px; padding: 30px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.feature-card:hover { border-color: rgba(18,17,15,0.2); box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.feature-card .fc-eye { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--accent-text); margin-bottom: 30px; }
.feature-card h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.18; margin-bottom: 12px; }
.feature-card .body { font-size: 15px; }

/* ---------- reconciliation panel ---------- */
.recon-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.panel {
  background: var(--bg-card); border: 1px solid var(--hairline);
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-panel);
}
.panel-chrome { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-bottom: 1px solid var(--hairline); }
.panel-dots { display: flex; gap: 7px; }
.panel-dots i { width: 11px; height: 11px; border-radius: 999px; display: block; }
.panel-title { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); }
.panel-status { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 11px; color: var(--success); }
.panel-status i { width: 7px; height: 7px; border-radius: 999px; background: var(--success); display: block; box-shadow: 0 0 8px rgba(31,138,91,0.5); }
.recon-table { width: 100%; border-collapse: collapse; }
.recon-table th, .recon-table td { text-align: right; padding: 15px 18px; font-size: 14.5px; border-bottom: 1px solid var(--hairline-soft); }
.recon-table th { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); font-weight: 400; }
.recon-table .metric { text-align: left; color: var(--ink); font-weight: 600; }
.recon-table .num { font-family: var(--font-mono); color: var(--ash); font-size: 13.5px; }
.recon-table .src { text-align: left; font-family: var(--font-mono); font-size: 11.5px; color: var(--mute); }
.recon-table .tie { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--success); }
.recon-table .tie .check { width: 16px; height: 16px; border-radius: 999px; background: rgba(31,138,91,0.13); color: var(--success); display: inline-flex; align-items: center; justify-content: center; font-size: 10px; }
.recon-table tbody tr:last-child td { border-bottom: 0; }
.panel-foot { padding: 14px 18px; border-top: 1px solid var(--hairline); display: flex; justify-content: space-between; align-items: center; background: var(--bg-band); }
.panel-foot .sum { font-family: var(--font-mono); font-size: 11.5px; color: var(--mute); }
.panel-foot .all-tie { font-family: var(--font-mono); font-size: 11.5px; color: var(--success); letter-spacing: 0.06em; }

/* ---------- contrast ---------- */
.contrast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contrast-col { border-radius: 14px; padding: 34px; border: 1px solid var(--hairline); }
.contrast-col.them { background: var(--bg-card); }
.contrast-col.us { background: linear-gradient(180deg, rgba(138,31,44,0.07), rgba(138,31,44,0.02)); border-color: rgba(138,31,44,0.4); }
.contrast-col .ct-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; }
.contrast-col.them .ct-label { color: var(--mute); }
.contrast-col.us .ct-label { color: var(--accent-text); }
.contrast-list { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.contrast-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; line-height: 1.4; }
.contrast-col.them li { color: var(--faint); }
.contrast-col.us li { color: var(--ink); }
.contrast-list .mark { flex: none; font-family: var(--font-mono); font-size: 14px; margin-top: 1px; }
.contrast-col.them .mark { color: var(--faint); }
.contrast-col.us .mark { color: var(--accent-text); }

/* ---------- pricing ---------- */
.audit-card {
  background: linear-gradient(135deg, rgba(138,31,44,0.08), rgba(138,31,44,0.02) 60%, var(--bg-card));
  border: 1px solid rgba(138,31,44,0.42);
  border-radius: 18px; padding: 44px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 44px; align-items: center;
  margin-bottom: 22px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.audit-card .ac-badge { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 18px; }
.audit-card h3 { font-size: 32px; font-weight: 600; letter-spacing: -0.025em; margin-bottom: 16px; }
.audit-card .body { font-size: 15.5px; max-width: 52ch; }
.audit-right { text-align: left; }
.audit-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.audit-price .amt { font-size: 56px; font-weight: 600; letter-spacing: -0.03em; color: var(--ink); }
.audit-price .per { font-family: var(--font-mono); font-size: 13px; color: var(--ash); }
.audit-right .credit { font-size: 14px; color: var(--accent-text); margin: 8px 0 24px; }
.audit-right .btn { width: 100%; }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan-card {
  background: var(--bg-card); border: 1px solid var(--hairline);
  border-radius: 16px; padding: 32px; display: flex; flex-direction: column;
  position: relative;
}
.plan-card.popular { border-color: rgba(138,31,44,0.5); box-shadow: var(--shadow-soft); }
.plan-card .pop-tag {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--accent); padding: 5px 11px; border-radius: 999px;
}
.plan-card .pc-name { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; }
.plan-card .pc-price { display: flex; align-items: baseline; gap: 7px; margin: 16px 0 4px; }
.plan-card .pc-price .amt { font-size: 38px; font-weight: 600; letter-spacing: -0.025em; color: var(--ink); }
.plan-card .pc-price .per { font-family: var(--font-mono); font-size: 13px; color: var(--mute); }
.plan-card .pc-cap { font-size: 14px; color: var(--ash); margin-bottom: 24px; }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 0 0 28px; }
.plan-feats li { display: flex; gap: 11px; font-size: 14.5px; color: var(--ash); line-height: 1.45; }
.plan-feats .check { color: var(--accent-text); flex: none; font-family: var(--font-mono); font-size: 13px; }
.plan-card .btn { margin-top: auto; width: 100%; }
.plan-note { text-align: center; margin-top: 28px; font-family: var(--font-mono); font-size: 12.5px; color: var(--mute); letter-spacing: 0.02em; }

/* ---------- security ---------- */
.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sec-item { border-top: 1px solid var(--ink); padding-top: 22px; }
.sec-item .si-icon { color: var(--accent-text); margin-bottom: 16px; display: block; }
.sec-item .body { font-size: 14.5px; }
.sec-item .body strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 5px; }

/* ---------- faq ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; gap: 20px; text-align: left;
  padding: 26px 0; color: var(--ink); font-family: var(--font-sans);
  font-size: clamp(18px, 2vw, 21px); font-weight: 500; letter-spacing: -0.015em;
}
.faq-q .q-icon { margin-left: auto; flex: none; width: 22px; height: 22px; position: relative; transition: transform .3s ease; color: var(--accent-text); }
.faq-q .q-icon::before, .faq-q .q-icon::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-q .q-icon::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-q .q-icon::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); transition: opacity .3s ease, transform .3s ease; }
.faq-item.open .q-icon::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a .inner { padding: 0 60px 28px 0; color: var(--ash); font-size: 16px; line-height: 1.6; max-width: 70ch; text-wrap: pretty; }

/* ---------- final cta ---------- */
.final-cta { position: relative; overflow: hidden; text-align: center; padding: 120px 0; background: var(--bg-band); }
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 90% at 50% 0%, rgba(138,31,44,0.12), transparent 62%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta .lead { margin: 24px auto 38px; max-width: 600px; }

/* ---------- footer ---------- */
.footer { padding: 64px 0 44px; border-top: 1px solid var(--hairline); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand .wordmark { font-size: 24px; margin-bottom: 14px; }
.footer-brand .tagline { font-family: var(--font-mono); font-size: 12.5px; color: var(--mute); letter-spacing: 0.04em; }
.footer-links { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-links a { font-size: 14.5px; color: var(--ash); transition: color .15s ease; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--hairline); }
.footer-bottom span, .footer-bottom a { font-size: 13px; color: var(--mute); }
.footer-bottom a:hover { color: var(--ash); }

/* ---------- waitlist form ---------- */
.wl-hero { padding-top: 84px; padding-bottom: 64px; }
.wl-hero .lead { margin-top: 24px; max-width: 640px; }
.wl-wrap { max-width: 720px; margin: 0 auto; }
.wl-card {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.wl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color .15s ease;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.check-row { display: flex; flex-wrap: wrap; gap: 10px; }
.check-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; color: var(--ash); cursor: pointer;
  border: 1px solid var(--hairline); border-radius: 999px;
  padding: 9px 16px; background: var(--bg);
  transition: border-color .15s ease, color .15s ease;
}
.check-pill:has(input:checked) { border-color: var(--accent); color: var(--ink); }
.check-pill input { accent-color: var(--accent); margin: 0; }
.wl-foot { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.wl-foot .btn { width: 100%; }
.wl-note { font-size: 13px; color: var(--mute); text-align: center; text-wrap: pretty; }
.wl-note a { color: var(--ash); text-decoration: underline; }
.wl-status { display: none; margin-top: 18px; font-size: 14.5px; line-height: 1.55; border-radius: 10px; padding: 14px 16px; }
.wl-status.show { display: block; }
.wl-status.ok { background: rgba(31,138,91,0.08); color: var(--success); border: 1px solid rgba(31,138,91,0.3); }
.wl-status.warn { background: rgba(138,31,44,0.06); color: var(--accent-text); border: 1px solid rgba(138,31,44,0.25); }
.wl-after { margin-top: 44px; }
.wl-after h3 { font-size: 17px; margin-bottom: 10px; }
.wl-after ol { margin: 0 0 0 18px; color: var(--ash); line-height: 1.7; }

/* ---------- scroll-in animation ---------- */
/* Content is visible by DEFAULT (no-JS / capture contexts show everything).
   The hidden start-state only applies once <html class="js"> is set. */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .section { padding: 80px 0; }
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 8px; }
  .mobile-menu { display: none; }
  .mobile-menu.open { display: flex; flex-direction: column; gap: 4px; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 55; background: var(--bg); border-bottom: 1px solid var(--hairline); padding: 16px 32px 24px; }
  .mobile-menu a { padding: 12px 0; color: var(--ash); font-size: 16px; border-bottom: 1px solid var(--hairline-soft); }
  .mobile-menu .btn { margin-top: 14px; }
  .problem-grid, .recon-wrap { grid-template-columns: 1fr; gap: 40px; }
  .steps, .feature-grid, .sec-grid { grid-template-columns: 1fr 1fr; gap: 28px 22px; }
  .contrast-grid { grid-template-columns: 1fr; }
  .audit-card { grid-template-columns: 1fr; gap: 30px; padding: 34px; }
  .plan-grid { grid-template-columns: 1fr; }
  .wl-grid { grid-template-columns: 1fr; }
  .wl-card { padding: 28px 22px; }
}
@media (max-width: 620px) {
  .container { padding: 0 22px; }
  .section { padding: 68px 0; }
  .hero { padding-top: 56px; }
  .steps, .feature-grid, .sec-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .recon-table th, .recon-table td { padding: 12px 12px; font-size: 13px; }
  .audit-price .amt { font-size: 46px; }
}
