/* ============================================================
   OWEDIFY MARKETING SITE, built on the design-system tokens.
   Link styles.css FIRST (tokens), then this file.
   Navy = brand/ink, Teal = accent/CTA, Cloud = neutrals.
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
svg { display: block; }
img { max-width: 100%; }
.wrap { max-width: var(--container-max); margin: 0 auto; padding-left: var(--page-pad); padding-right: var(--page-pad); }

/* shared type */
h1, h2, h3 { font-family: var(--font-display); color: var(--text-strong); letter-spacing: -0.025em; }
h2 { font-weight: 800; font-size: clamp(28px, 4vw, 42px); line-height: 1.06; }
.eyebrow { font-family: var(--font-sans); font-weight: 600; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-hover); }
.sec-sub { font-size: clamp(16px, 1.7vw, 18px); line-height: 1.6; color: var(--text-muted); }
.lucide { width: 1em; height: 1em; stroke-width: 1.9; }

/* buttons (marketing-scale, distinct from component Button) */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: var(--accent); color: #fff; font-family: var(--font-sans); font-weight: 600; font-size: 16px; line-height: 1; padding: 15px 24px; border-radius: var(--radius-md); border: none; cursor: pointer; transition: transform var(--dur-fast) var(--ease-standard), background var(--dur-fast) var(--ease-standard), box-shadow var(--dur-fast) var(--ease-standard); white-space: nowrap; }
.btn:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(60,126,114,.28); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn .lucide { width: 18px; height: 18px; }
.btn-navy { background: var(--brand); }
.btn-navy:hover { background: var(--brand-hover); box-shadow: 0 10px 24px rgba(34,56,79,.26); }
.btn-ghost { background: var(--color-surface); color: var(--text-strong); border: 1.5px solid var(--border); }
.btn-ghost:hover { background: var(--color-surface-sunken); border-color: var(--border-strong); box-shadow: none; transform: none; }
.btn-lg { padding: 17px 30px; font-size: 17px; }

section { padding: clamp(56px, 8vw, 92px) 0; }
.tint { background: var(--color-bg); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.head { text-align: center; max-width: 640px; margin: 0 auto clamp(36px, 5vw, 52px); }
.head .eyebrow { display: block; margin-bottom: 14px; }
.head h2 { margin-bottom: 12px; }

/* ============ HEADER ============ */
header { position: sticky; top: 0; z-index: 90; background: rgba(248,250,252,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--border-subtle); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.035em; color: var(--brand); }
.logo img { width: 30px; height: 30px; }
.menu { display: flex; align-items: center; gap: 30px; }
.menu a { font-family: var(--font-sans); font-weight: 600; font-size: 15px; color: var(--text-muted); transition: color var(--dur-fast); }
.menu a:hover { color: var(--text-strong); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-right .btn { padding: 11px 20px; font-size: 14px; }
.burger { display: none; width: 44px; height: 44px; border: none; background: none; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { width: 22px; height: 2px; background: var(--text-strong); border-radius: 2px; transition: 0.25s; }
.burger.x span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.x span:nth-child(2) { opacity: 0; }
.burger.x span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile { position: fixed; inset: 70px 0 auto 0; background: var(--color-surface); border-bottom: 1px solid var(--border-subtle); transform: translateY(-120%); transition: transform var(--dur-slow) var(--ease-standard); z-index: 80; box-shadow: var(--shadow-md); }
.mobile.open { transform: translateY(0); }
.mobile a { display: block; padding: 17px var(--page-pad); font-family: var(--font-sans); font-weight: 600; font-size: 17px; color: var(--text-strong); border-top: 1px solid var(--border-subtle); }
.mobile .btn { margin: 16px var(--page-pad) 20px; display: flex; }
@media (max-width: 860px) { .menu, .nav-right .btn { display: none; } .burger { display: flex; } }

/* ============ HERO ============ */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 84px) 0 clamp(40px, 6vw, 72px); }
.hero:before { content: ""; position: absolute; top: -220px; right: -180px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(60,126,114,.13), rgba(60,126,114,0) 68%); pointer-events: none; }
.hgrid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 64px); align-items: center; position: relative; }
.pill { display: inline-flex; align-items: center; gap: 9px; background: var(--teal-100); color: var(--teal-800); font-family: var(--font-sans); font-weight: 600; font-size: 12.5px; letter-spacing: 0.02em; padding: 10px 16px; border-radius: var(--radius-pill); margin-bottom: 22px; }
.pill:before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 { font-weight: 800; font-size: clamp(38px, 5.4vw, 60px); line-height: 1.02; margin-bottom: 18px; letter-spacing: -0.03em; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lead { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.6; color: var(--text-muted); max-width: 480px; margin-bottom: 30px; }
/* Bold Numbers hero variant (navy, stat-led) */
.hero.bold { background: var(--brand-ink); }
.hero.bold:before { background: radial-gradient(circle, rgba(60,126,114,.34), rgba(60,126,114,0) 66%); top: -180px; }
.hero.bold h1 { color: #fff; font-size: clamp(40px, 6vw, 68px); }
.hero.bold h1 em { color: var(--teal-300); }
.hero.bold .hero-lead { color: rgba(255,255,255,.78); }
.hero-overline { font-family: var(--font-sans); font-weight: 600; font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-300); margin-bottom: 18px; }
.hero-src { font-size: 12px; line-height: 1.5; color: rgba(255,255,255,.5); margin-top: 22px; max-width: 440px; }
.btn-onnavy { background: rgba(255,255,255,.12); color: #fff; }
.btn-onnavy:hover { background: rgba(255,255,255,.2); box-shadow: none; }
.hero-cta { display: flex; gap: 13px; flex-wrap: wrap; }
.trust { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 26px; }
.trust span { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-sans); font-weight: 600; font-size: 13px; color: var(--text-muted); }
.trust span .lucide { width: 16px; height: 16px; color: var(--accent); }

.heroart { position: relative; display: flex; justify-content: center; }
.phone { position: relative; width: clamp(248px, 30vw, 308px); border-radius: 40px; background: var(--color-surface); border: 1px solid var(--border); padding: 10px; box-shadow: var(--shadow-lg); z-index: 2; }
.scr { background: var(--color-surface); border: 1px solid var(--border-subtle); border-radius: 31px; overflow: hidden; }
.scr .bar { background: var(--color-surface-sunken); padding: 16px 18px; border-bottom: 1px solid var(--border-subtle); display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--text-strong); }
.scr .bar img { width: 20px; height: 20px; }
.scr .bd { padding: 16px; }
.scr .meta { display: flex; justify-content: space-between; font-weight: 600; font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.scr .prog { height: 7px; border-radius: 5px; background: var(--cloud-200); margin-bottom: 16px; position: relative; }
.scr .prog:after { content: ""; position: absolute; inset: 0 60% 0 0; background: var(--accent); border-radius: 5px; }
.scr .nx { background: var(--teal-100); border: 1px solid var(--teal-200); border-radius: 14px; padding: 15px; margin-bottom: 13px; }
.scr .nx .k { font-weight: 700; font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--teal-700); }
.scr .nx .t { font-family: var(--font-display); font-weight: 800; font-size: 16px; line-height: 1.1; margin: 7px 0 12px; color: var(--text-strong); }
.scr .nx .go { background: var(--accent); color: #fff; font-weight: 600; font-size: 12px; text-align: center; padding: 12px; border-radius: 10px; }
.float { position: absolute; left: -14px; bottom: 38px; background: var(--color-surface); border: 1px solid var(--border); border-radius: 14px; padding: 11px 14px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; z-index: 3; }
.float .ck { width: 26px; height: 26px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; }
.float .ck .lucide { width: 14px; height: 14px; color: #fff; stroke-width: 3; }
.float b { font-family: var(--font-sans); font-weight: 700; font-size: 13px; color: var(--text-strong); }
.float small { display: block; font-weight: 500; font-size: 11px; color: var(--text-muted); margin-top: 2px; }
@media (max-width: 860px) {
  .hgrid { grid-template-columns: 1fr; gap: 38px; text-align: center; }
  .pill, .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-cta, .trust { justify-content: center; }
}
@media (max-width: 420px) { .float { left: 0; } }

/* ============ PICKER ============ */
.picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; max-width: 880px; margin: 0 auto; }
.chip { display: flex; align-items: center; gap: 13px; border: 1.5px solid var(--border-subtle); border-radius: 15px; padding: 18px; background: var(--color-surface); cursor: pointer; transition: var(--dur-base) var(--ease-out); box-shadow: var(--shadow-sm); font-family: var(--font-sans); }
.chip:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.chip .i { width: 42px; height: 42px; border-radius: 12px; background: var(--teal-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chip .i .lucide { width: 21px; height: 21px; color: var(--teal-700); }
.chip > span { font-weight: 700; font-size: 15.5px; color: var(--text-strong); }
.chip .arr { margin-left: auto; color: var(--accent); }
.chip .arr .lucide { width: 20px; height: 20px; }
.quiz-chip { grid-column: 1 / -1; justify-content: center; border-style: dashed; background: var(--color-bg); }
.quiz-chip > span { font-weight: 700; color: var(--text-strong); }
@media (max-width: 780px) { .picker { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .picker { grid-template-columns: 1fr; } }

/* ============ STATS ============ */
.statband { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.statc { position: relative; background: var(--color-surface); border: 1px solid var(--border-subtle); border-radius: 20px; padding: 32px 26px 28px; box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--dur-base) var(--ease-out); }
.statc:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.statc:before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent); }
.statc .ic { width: 48px; height: 48px; border-radius: 14px; background: var(--teal-100); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.statc .ic .lucide { width: 24px; height: 24px; color: var(--teal-700); }
.statc .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(42px, 5.5vw, 54px); line-height: 1; color: var(--accent); letter-spacing: -0.04em; }
.statc .t { font-weight: 500; font-size: 15px; line-height: 1.55; color: var(--text-muted); margin-top: 12px; }
.proof-note { text-align: center; font-weight: 500; font-size: 12.5px; line-height: 1.6; color: var(--text-subtle); max-width: 600px; margin: 30px auto 0; }
@media (max-width: 680px) { .statband { grid-template-columns: 1fr; gap: 14px; } }

/* ============ HOW ============ */
.how { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 26px); }
.step { text-align: center; }
.step .circle { width: 68px; height: 68px; border-radius: 20px; background: var(--teal-100); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.step .circle .lucide { width: 30px; height: 30px; color: var(--teal-700); }
.step h3 { font-weight: 700; font-size: 20px; line-height: 1.2; margin-bottom: 8px; }
.step p { font-size: 15px; line-height: 1.6; color: var(--text-muted); max-width: 300px; margin: 0 auto; }
@media (max-width: 760px) { .how { grid-template-columns: 1fr; gap: 38px; } }

/* ============ INSIDE ============ */
.insgrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 60px); align-items: center; }
.browser { border-radius: 16px; background: var(--color-surface); border: 1px solid var(--border-subtle); box-shadow: var(--shadow-lg); overflow: hidden; }
.browser .top { background: var(--color-surface-sunken); padding: 13px 15px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid var(--border-subtle); }
.browser .top i { width: 11px; height: 11px; border-radius: 50%; background: var(--mist-400); display: block; }
.browser .top .u { margin-left: 10px; background: var(--color-surface); border-radius: 7px; font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); padding: 8px 12px; flex: 1; }
.browser .pg { padding: 22px; }
.browser .pg h5 { font-family: var(--font-display); font-weight: 800; font-size: 17px; line-height: 1.2; margin-bottom: 4px; color: var(--text-strong); }
.browser .pg .s { font-weight: 500; font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.browser .pg .ltr { background: var(--color-surface-sunken); border: 1px solid var(--border-subtle); border-radius: 11px; padding: 14px; font-family: var(--font-mono); font-size: 11.5px; line-height: 1.65; color: var(--text-body); }
.browser .pg .row { display: flex; align-items: center; gap: 10px; border: 1px solid var(--border-subtle); border-radius: 11px; padding: 12px; margin-top: 9px; }
.browser .pg .row .c { width: 20px; height: 20px; border-radius: 6px; background: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.browser .pg .row .c .lucide { width: 12px; height: 12px; color: #fff; stroke-width: 3; }
.browser .pg .row span { font-weight: 600; font-size: 13px; color: var(--text-strong); }
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; margin-top: 10px; }
.fi { display: flex; gap: 13px; }
.fi .e { width: 42px; height: 42px; border-radius: 12px; background: var(--teal-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fi .e .lucide { width: 21px; height: 21px; color: var(--teal-700); }
.fi h4 { font-weight: 700; font-size: 15.5px; line-height: 1.2; margin-bottom: 3px; color: var(--text-strong); }
.fi p { font-size: 13px; line-height: 1.5; color: var(--text-muted); }
@media (max-width: 860px) { .insgrid { grid-template-columns: 1fr; gap: 40px; } .browser { order: -1; } }
@media (max-width: 440px) { .feat { grid-template-columns: 1fr; } }

/* ============ COMPARE ============ */
.cmp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.col { border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); padding: 28px; background: var(--color-surface); box-shadow: var(--shadow-sm); }
.col h4 { font-family: var(--font-display); font-weight: 800; font-size: 18px; line-height: 1.2; margin-bottom: 4px; color: var(--text-strong); }
.col .price { font-weight: 600; font-size: 13px; line-height: 1.4; color: var(--text-muted); margin-bottom: 18px; }
.col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.col li { font-size: 14px; line-height: 1.45; color: var(--text-muted); display: flex; gap: 10px; align-items: flex-start; }
.col li .lucide { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.col li.no .lucide { color: var(--mist-400); }
.col li.yes .lucide { color: var(--accent); }
.col.win { border: 2px solid var(--accent); box-shadow: 0 22px 50px rgba(60,126,114,.18); position: relative; }
.col.win .badge { position: absolute; top: -13px; left: 28px; background: var(--accent); color: #fff; font-family: var(--font-sans); font-weight: 700; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; padding: 8px 13px; border-radius: var(--radius-pill); }
.col.win li { color: var(--text-strong); font-weight: 500; }
@media (max-width: 820px) { .cmp { grid-template-columns: 1fr; } .col.win { order: -1; } }

/* ============ BEFORE/AFTER ============ */
.ba { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; max-width: 780px; margin: 0 auto; }
.bcard { border-radius: var(--radius-xl); padding: 28px; border: 1.5px solid var(--border-subtle); }
.bcard .k { font-weight: 700; font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 12px; }
.bcard.before { background: var(--danger-soft); border-color: #e6cac8; }
.bcard.before .k { color: var(--danger); }
.bcard.before .d { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.15; color: #7c4a46; }
.bcard.before .n { font-weight: 500; font-size: 13px; line-height: 1.45; color: #a4736e; margin-top: 9px; }
.bcard.after { background: var(--teal-100); border-color: var(--teal-200); }
.bcard.after .k { color: var(--teal-700); }
.bcard.after .d { font-family: var(--font-display); font-weight: 800; font-size: 26px; line-height: 1.1; color: var(--text-strong); }
.bcard.after .n { font-weight: 600; font-size: 13px; line-height: 1.45; color: var(--teal-700); margin-top: 9px; }
.baA { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(60,126,114,.28); }
.baA .lucide { width: 22px; height: 22px; color: #fff; stroke-width: 2.4; }
@media (max-width: 680px) { .ba { grid-template-columns: 1fr; } .baA { transform: rotate(90deg); margin: 0 auto; } }

/* ============ KITS ============ */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pc { position: relative; border: 1px solid var(--border-subtle); border-radius: var(--radius-card); padding: 26px; background: var(--color-surface); box-shadow: var(--shadow-sm); transition: var(--dur-base) var(--ease-out); display: block; }
.pc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.pc .ic2 { width: 48px; height: 48px; border-radius: 13px; background: var(--teal-100); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pc .ic2 .lucide { width: 24px; height: 24px; color: var(--teal-700); }
.pc h3 { font-weight: 700; font-size: 18px; line-height: 1.15; margin-bottom: 5px; }
.pc p { font-size: 13.5px; line-height: 1.5; color: var(--text-muted); }
.pc .flag { position: absolute; top: 20px; right: 20px; font-family: var(--font-sans); font-weight: 700; font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; padding: 7px 11px; border-radius: var(--radius-pill); }
.pc .flag.live { background: var(--accent); color: #fff; }
.pc .flag.soon { background: var(--cloud-200); color: var(--text-subtle); }
@media (max-width: 820px) { .pgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .pgrid { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faqwrap { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.faq-intro { position: sticky; top: 96px; }
.faq-intro h2 { margin: 14px 0 14px; }
.faq-intro p { font-size: 16px; line-height: 1.6; color: var(--text-muted); margin-bottom: 24px; max-width: 340px; }
.faq-list details { border: 1px solid var(--border-subtle); border-radius: 16px; margin-bottom: 12px; background: var(--color-surface); box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color var(--dur-base), box-shadow var(--dur-base); }
.faq-list details[open] { border-color: var(--teal-200); box-shadow: var(--shadow-md); }
.faq-list summary { font-family: var(--font-sans); font-weight: 700; font-size: 16.5px; line-height: 1.4; padding: 20px 22px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--text-strong); }
.faq-list summary::-webkit-details-marker { display: none; }
.qi { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--teal-100); display: flex; align-items: center; justify-content: center; transition: transform var(--dur-base) var(--ease-standard), background var(--dur-base); }
.qi .lucide { width: 16px; height: 16px; color: var(--teal-700); stroke-width: 2.6; }
.faq-list details[open] .qi { transform: rotate(45deg); background: var(--accent); }
.faq-list details[open] .qi .lucide { color: #fff; }
.faq-list details p { font-size: 15px; line-height: 1.7; color: var(--text-muted); padding: 0 22px 22px; margin: 0; }
@media (max-width: 820px) { .faqwrap { grid-template-columns: 1fr; gap: 30px; } .faq-intro { position: static; } .faq-intro p { max-width: none; } }

/* ============ NOTIFY ============ */
.nf { display: flex; gap: 11px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.nf input { flex: 1; min-width: 220px; border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 16px 17px; font-family: var(--font-sans); font-weight: 500; font-size: 15px; color: var(--text-strong); background: var(--color-surface); }
.nf input:focus { outline: none; border-color: var(--accent); box-shadow: var(--shadow-focus); }
.nf-ok { font-weight: 600; font-size: 15px; line-height: 1.5; color: var(--accent-hover); margin-top: 12px; text-align: center; }

/* ============ FINAL (dark navy) ============ */
.final .inner { background: var(--brand-ink); border-radius: clamp(20px, 3vw, 28px); padding: clamp(44px, 6vw, 68px) 28px; text-align: center; position: relative; overflow: hidden; }
.final .inner:before { content: ""; position: absolute; top: -120px; right: -100px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(60,126,114,.32), rgba(60,126,114,0) 70%); }
.final h2 { color: #fff; margin-bottom: 14px; position: relative; }
.final p { font-size: 16px; line-height: 1.55; color: #aebfc9; max-width: 440px; margin: 0 auto 28px; position: relative; }
.final .btn { position: relative; }

/* ============ FOOTER ============ */
footer { padding: clamp(40px, 5vw, 56px) 0; border-top: 1px solid var(--border-subtle); background: var(--color-surface); }
.f-top { display: flex; justify-content: space-between; gap: 22px; flex-wrap: wrap; align-items: center; }
.f-lk { display: flex; gap: 22px; font-family: var(--font-sans); font-weight: 600; font-size: 14px; color: var(--text-muted); flex-wrap: wrap; }
.f-lk a:hover { color: var(--text-strong); }
.policies { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border-subtle); }
.policies a { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-weight: 600; font-size: 13px; color: var(--text-muted); }
.policies a:hover { color: var(--text-strong); }
.policies a .lucide { width: 17px; height: 17px; color: var(--teal-700); }
.f-dis { font-weight: 500; font-size: 12px; line-height: 1.7; color: var(--text-subtle); max-width: 600px; margin-top: 18px; }
.f-cp { margin-top: 14px; font-weight: 500; font-size: 12px; color: var(--text-subtle); }

/* ============ QUIZ MODAL ============ */
.q-ov { position: fixed; inset: 0; background: rgba(20,34,47,.5); backdrop-filter: blur(3px); display: none; align-items: center; justify-content: center; z-index: 9999; padding: 20px; }
.q-ov.open { display: flex; }
.q-card { background: var(--color-surface); border-radius: 24px; max-width: 440px; width: 100%; padding: 28px; box-shadow: var(--shadow-lg); max-height: 88vh; overflow: auto; }
.q-h { font-family: var(--font-display); font-weight: 800; font-size: 23px; line-height: 1.15; margin-bottom: 6px; color: var(--text-strong); }
.q-sub { font-size: 14.5px; line-height: 1.5; color: var(--text-muted); margin-bottom: 20px; }
.q-opt { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; text-align: left; border: 1.5px solid var(--border-subtle); background: var(--color-surface); border-radius: 13px; padding: 15px 16px; margin-bottom: 10px; cursor: pointer; font-family: var(--font-sans); font-weight: 600; font-size: 14.5px; line-height: 1.3; color: var(--text-strong); transition: var(--dur-fast); }
.q-opt:hover { border-color: var(--accent); background: var(--color-bg); }
.q-opt .lucide { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.q-x { margin-top: 8px; width: 100%; border: none; background: var(--color-surface-sunken); color: var(--text-muted); border-radius: 12px; padding: 13px; font-family: var(--font-sans); font-weight: 700; font-size: 14px; cursor: pointer; }
.q-res .tag2 { display: inline-block; font-family: var(--font-sans); font-weight: 700; font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; padding: 7px 12px; border-radius: var(--radius-pill); margin-bottom: 14px; }
.q-res .tag2.live { background: var(--accent); color: #fff; }
.q-res .tag2.soon { background: var(--cloud-200); color: var(--text-subtle); }
.q-res h3 { font-family: var(--font-display); font-weight: 800; font-size: 25px; line-height: 1.1; margin-bottom: 7px; }
.q-res p { font-size: 15px; line-height: 1.55; color: var(--text-muted); margin-bottom: 20px; }
.q-res .btn { width: 100%; margin-bottom: 9px; }

/* ============ AUTHORITY BAR (official) ============ */
.authority { background: var(--brand-ink); padding: 22px 0; }
.authority .wrap { display: flex; align-items: center; gap: 14px 26px; flex-wrap: wrap; justify-content: center; }
.auth-lead { font-family: var(--font-sans); font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-300); }
.auth-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.auth-chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: var(--radius-pill); background: rgba(255,255,255,.08); color: #fff; font-size: 13px; font-weight: 600; }
.auth-chip .lucide { width: 15px; height: 15px; color: var(--teal-300); }

/* ============ COMPARISON TABLE (official) ============ */
.cmp-wrap { overflow-x: auto; }
.cmp-table { width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0; background: var(--color-surface); border: 1px solid var(--border-subtle); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
.cmp-table th, .cmp-table td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--border-subtle); }
.cmp-table thead th { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--text-strong); vertical-align: bottom; letter-spacing: -0.01em; }
.cmp-table thead th.win { border-top: 3px solid var(--accent-600); color: var(--accent-800); }
.cmp-table .winbadge { display: block; font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-700); margin-bottom: 6px; }
.cmp-table tbody th { text-align: left; font-family: var(--font-sans); font-weight: 600; color: var(--text-strong); font-size: 14px; }
.cmp-table td { font-size: 14px; color: var(--text-muted); }
.cmp-table td.win { background: var(--accent-50); color: var(--text-strong); font-weight: 600; }
.cmp-table .yes .lucide { width: 20px; height: 20px; color: var(--accent-600); }
.cmp-table .no .lucide { width: 20px; height: 20px; color: var(--mist-400); }
.cmp-table tbody tr:last-child th, .cmp-table tbody tr:last-child td { border-bottom: none; }

/* ============ Elevated section headers (official) ============ */
.eyebrow { font-weight: 700; letter-spacing: 0.18em; }
.head .eyebrow { color: var(--accent-700); }
h2 { font-size: clamp(32px, 4.5vw, 52px); letter-spacing: -0.035em; }
.head { max-width: 680px; }

/* ============ PROOF BAND (navy stats) ============ */
.proofband { background: var(--brand-ink); border: none; position: relative; overflow: hidden; }
.proofband:before { content: ""; position: absolute; top: -140px; left: 50%; transform: translateX(-50%); width: 600px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(60,126,114,.22), transparent 70%); pointer-events: none; }
.proofband .head h2 { color: #fff; }
.proofband .eyebrow { color: var(--teal-300); }
.proofband .statc { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); box-shadow: none; }
.proofband .statc:hover { transform: translateY(-3px); border-color: rgba(127,179,168,.5); box-shadow: none; }
.proofband .statc:before { background: var(--teal-300); }
.proofband .statc .ic { background: rgba(255,255,255,.1); }
.proofband .statc .ic .lucide { color: var(--teal-300); }
.proofband .statc .n { color: var(--teal-300); font-size: clamp(46px, 6vw, 60px); }
.proofband .statc .t { color: rgba(255,255,255,.72); }
.proofband .proof-note { color: rgba(255,255,255,.45); }

/* ============ Numbered How steps ============ */
.step { position: relative; }
.stepnum { position: absolute; top: -6px; left: 50%; transform: translateX(-50%); font-family: var(--font-display); font-weight: 800; font-size: 13px; color: #fff; background: var(--brand); width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; box-shadow: 0 0 0 4px var(--color-bg); }
.how .circle { margin-top: 8px; }

/* ============ Dark official header ============ */
header { background: rgba(20,34,47,.9); border-bottom: 1px solid rgba(255,255,255,.08); }
.nav .logo { color: #fff; }
.menu a { color: rgba(255,255,255,.74); }
.menu a:hover { color: #fff; }
.burger span { background: #fff; }
.mobile { background: var(--brand-ink); }
.mobile a { color: #fff; border-top: 1px solid rgba(255,255,255,.08); }
