/* ============================================================
   NicheSitePro — brand foundation
   Premium B2B productized-service identity.
   Warm off-white base · near-black ink · single vermilion accent
   ============================================================ */

:root {
  /* — Surfaces — */
  --paper:        #FBFAF8;
  --paper-2:      #F3F1EC;
  --paper-3:      #ECE9E2;
  --card:         #FFFFFF;
  --ink:          #16130F;
  --ink-2:        #4F4A42;
  --ink-3:        #8A847A;
  --line:         #E4E0D8;
  --line-2:       #D6D1C7;

  /* — Dark anchor — */
  --night:        #16130F;
  --night-2:      #211D18;
  --night-line:   #332E27;
  --on-night:     #F4F1EB;
  --on-night-2:   #A8A096;

  /* — Accent (single, distinctive) — */
  --accent:       #FF5430;
  --accent-deep:  #E63C18;
  --accent-soft:  #FFE9E2;
  --accent-ink:   #8E2A12;

  --good:         #1E7A52;

  /* — Type — */
  --display: "General Sans", "Satoshi", system-ui, sans-serif;
  --body:    "General Sans", system-ui, -apple-system, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(22,19,15,.05), 0 2px 6px rgba(22,19,15,.04);
  --sh-2: 0 2px 4px rgba(22,19,15,.05), 0 8px 24px rgba(22,19,15,.07);
  --sh-3: 0 4px 8px rgba(22,19,15,.06), 0 18px 50px rgba(22,19,15,.12);
  --sh-accent: 0 6px 18px rgba(255,84,48,.28);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 132px); }
.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.section-head { max-width: 720px; }
.section-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-top: 18px;
  text-wrap: balance;
}
.section-head p {
  color: var(--ink-2);
  font-size: clamp(17px, 1.5vw, 20px);
  margin-top: 18px;
  max-width: 56ch;
  text-wrap: pretty;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--sh-accent); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,84,48,.34); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-night { background: var(--on-night); color: var(--night); }
.btn-night:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.btn-lg { padding: 18px 30px; font-size: 17px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 50;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(251,250,248,.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-2); transition: color .18s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .price-hint { font-size: 14px; color: var(--ink-3); font-family: var(--mono); }
@media (max-width: 860px) { .nav-links { display: none; } .nav-cta .price-hint { display: none; } }

/* ---------- logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: -0.025em; }
.logo b { font-weight: 600; }
.logo-pro {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: var(--accent);
  padding: 4px 8px; border-radius: 6px;
  transition: background .2s var(--ease);
}
.logo:hover .logo-pro { background: var(--accent-deep); }

/* ============== HERO ============== */
.hero { position: relative; padding-top: clamp(48px, 8vw, 92px); padding-bottom: clamp(56px, 9vw, 104px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero-flag {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--card); border: 1px solid var(--line);
  padding: 6px 6px 6px 14px; border-radius: var(--r-pill);
  font-size: 13.5px; color: var(--ink-2); box-shadow: var(--sh-1);
  font-weight: 500; white-space: nowrap; max-width: 100%;
}
@media (max-width: 420px) {
  .hero-flag { white-space: normal; border-radius: var(--r-md); }
}
.hero-flag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 3px rgba(30,122,82,.16); }
.hero-flag .tag { background: var(--paper-2); border-radius: var(--r-pill); padding: 3px 10px; font-family: var(--mono); font-size: 12px; color: var(--ink); }

.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6.6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-top: 26px;
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: clamp(18px, 1.7vw, 21px);
  color: var(--ink-2);
  margin-top: 24px;
  max-width: 50ch;
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 34px; }
.hero-actions .note { font-size: 13.5px; color: var(--ink-3); display: flex; align-items: center; gap: 7px; }
.hero-actions .note svg { width: 15px; height: 15px; color: var(--good); }

.trust-strip { margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line); }
.trust-strip .label { font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px 30px; margin-top: 16px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-2); font-weight: 500; }
.trust-item svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

/* ---------- hero proof card ---------- */
.proof-stack { position: relative; }
.proof-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-3);
  overflow: hidden;
}
.proof-top { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--paper); }
.proof-top .u { width: 18px; height: 18px; border-radius: 6px; background: var(--accent); display: grid; place-items: center; }
.proof-top .u svg { width: 11px; height: 11px; color: #fff; }
.proof-top .url { font-family: var(--mono); font-size: 12.5px; color: var(--ink-3); }
.proof-top .live { margin-left: auto; font-size: 11px; font-family: var(--mono); color: var(--good); display: flex; align-items: center; gap: 6px; }
.proof-top .live::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--good); }
.proof-shot { position: relative; aspect-ratio: 16 / 10.4; background: var(--paper-2); }
.proof-shot .ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; gap: 14px;
  padding: 28px 30px; background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper-3) 100%);
}
.proof-shot .ph-title { height: 14px; width: 65%; background: var(--ink); border-radius: 4px; opacity: .82; }
.proof-shot .ph-meta { height: 8px; width: 30%; background: var(--accent); border-radius: 3px; }
.proof-shot .ph-img { flex: 1; background: var(--card); border-radius: var(--r-md); border: 1px solid var(--line); position: relative; overflow: hidden; }
.proof-shot .ph-img::after { content: ""; position: absolute; inset: 60% 0 0 0; background: linear-gradient(180deg, transparent 0%, var(--accent-soft) 100%); }
.proof-shot .ph-line { height: 7px; background: var(--line-2); border-radius: 3px; }
.proof-shot .ph-line.short { width: 70%; }
.proof-shot .ph-line.medium { width: 88%; }

.proof-metric {
  position: absolute; right: -18px; bottom: -22px;
  background: var(--night); color: var(--on-night);
  border-radius: var(--r-lg); padding: 18px 22px;
  box-shadow: var(--sh-3); min-width: 188px;
}
.proof-metric .k { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--on-night-2); }
.proof-metric .v { font-family: var(--display); font-weight: 600; font-size: 34px; letter-spacing: -0.02em; margin-top: 6px; }
.proof-metric .v small { font-size: 15px; color: var(--on-night-2); font-weight: 500; }
.proof-metric .sub { font-size: 12.5px; color: var(--on-night-2); margin-top: 6px; }
.proof-metric .spark { display: flex; align-items: flex-end; gap: 3px; height: 26px; margin-top: 12px; }
.proof-metric .spark i { flex: 1; background: var(--accent); border-radius: 2px; opacity: .85; }
@media (max-width: 480px) { .proof-metric { right: 8px; bottom: -14px; min-width: 160px; padding: 14px 16px; } }

/* ============== CRED BAR ============== */
.cred { border-block: 1px solid var(--line); background: var(--paper); }
.cred-inner { display: flex; align-items: center; gap: clamp(20px,4vw,48px); flex-wrap: wrap; padding-block: 26px; }
.cred .lead { font-size: 14px; color: var(--ink-3); font-weight: 500; max-width: 200px; }
.cred .stats { display: flex; flex-wrap: wrap; gap: 16px 40px; margin-left: auto; }
.cred .stat { display: flex; flex-direction: column; }
.cred .stat b { font-family: var(--display); font-weight: 600; font-size: 26px; letter-spacing: -0.02em; }
.cred .stat span { font-size: 13px; color: var(--ink-3); }

/* ============== PROBLEM ============== */
.prob-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
@media (max-width: 840px) { .prob-grid { grid-template-columns: 1fr; } }
.prob-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--sh-1); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.prob-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.prob-card .n { font-family: var(--mono); font-size: 13px; color: var(--accent); font-weight: 500; }
.prob-card h3 { font-family: var(--display); font-weight: 600; font-size: 21px; letter-spacing: -0.01em; margin-top: 18px; }
.prob-card p { color: var(--ink-2); font-size: 15.5px; margin-top: 10px; text-wrap: pretty; }

/* ============== WHAT YOU GET ============== */
.deliver { background: var(--paper-2); }
.deliver-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
@media (max-width: 900px) { .deliver-grid { grid-template-columns: 1fr; } }
.del-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 30px; display: flex; flex-direction: column; box-shadow: var(--sh-1); }
.del-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); display: grid; place-items: center; color: var(--accent-deep); }
.del-icon svg { width: 23px; height: 23px; }
.del-card h3 { font-family: var(--display); font-weight: 600; font-size: 23px; letter-spacing: -0.01em; margin-top: 22px; }
.del-card .kicker { font-family: var(--mono); font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .1em; margin-top: 6px; }
.del-list { list-style: none; padding: 0; margin-top: 22px; display: flex; flex-direction: column; gap: 13px; }
.del-list li { display: flex; gap: 11px; font-size: 15px; color: var(--ink-2); }
.del-list li svg { width: 17px; height: 17px; color: var(--good); flex: none; margin-top: 2px; }

/* ============== PROCESS ============== */
.steps { margin-top: 60px; display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 26px; padding-block: 30px; border-top: 1px solid var(--line); align-items: start; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step .num { font-family: var(--display); font-weight: 600; font-size: 40px; color: var(--line-2); letter-spacing: -0.03em; line-height: 1; transition: color .3s var(--ease); }
.step:hover .num { color: var(--accent); }
.step-body { display: grid; grid-template-columns: 1fr auto; gap: 8px 24px; align-items: baseline; }
.step-body h3 { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.01em; }
.step-body p { color: var(--ink-2); font-size: 15.5px; grid-column: 1 / -1; max-width: 64ch; text-wrap: pretty; }
.step .when { font-family: var(--mono); font-size: 12.5px; color: var(--ink-3); white-space: nowrap; }
@media (max-width: 620px) { .step { grid-template-columns: 44px 1fr; gap: 16px; } .step .num { font-size: 30px; } .step-body { grid-template-columns: 1fr; } }

/* ============== TESTIMONIALS ============== */
.tsm { background: var(--paper-2); }
.tsm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
@media (max-width: 900px){ .tsm-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; } }
.tsm-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; display: flex; flex-direction: column; box-shadow: var(--sh-1); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.tsm-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.tsm-card .qm { font-family: var(--display); font-weight: 600; font-size: 46px; line-height: .8; color: var(--accent); height: 26px; }
.tsm-q { font-size: 16.5px; line-height: 1.55; color: var(--ink); margin: 14px 0 0; flex: 1; text-wrap: pretty; }
.tsm-who { display: flex; align-items: center; gap: 13px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.tsm-avatar { width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--paper-2); border: 1px solid var(--line-2); display: grid; place-items: center; font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--ink-2); letter-spacing: -0.01em; }
.tsm-name { font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.tsm-meta { font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); margin-top: 3px; }

/* ============== PRICING ============== */
.pricing { background: var(--night); color: var(--on-night); position: relative; overflow: hidden; }
.pricing .eyebrow { color: #FF8A6B; }
.pricing .eyebrow::before { background: var(--accent); }
.pricing .section-head h2 { color: var(--on-night); }
.pricing .section-head p { color: var(--on-night-2); }
.pricing-dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 22px 22px; pointer-events: none; }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; align-items: stretch; position: relative; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }
.tier {
  background: var(--night-2); border: 1px solid var(--night-line);
  border-radius: var(--r-xl); padding: 32px 30px; display: flex; flex-direction: column;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
  position: relative;
}
.tier:hover { transform: translateY(-4px); }
.tier.featured { background: var(--card); color: var(--ink); border: 1.5px solid var(--accent); box-shadow: 0 20px 60px rgba(255,84,48,.22); z-index: 2; }
@media (min-width: 901px){ .tier.featured { transform: scale(1.04); } .tier.featured:hover { transform: scale(1.04) translateY(-4px); } }
.tier .pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; padding: 6px 14px; border-radius: var(--r-pill); white-space: nowrap; }
.tier .t-name { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.01em; }
.tier .t-for { font-size: 13.5px; color: var(--on-night-2); margin-top: 5px; }
.tier.featured .t-for { color: var(--ink-3); }
.tier .t-price { font-family: var(--display); font-weight: 600; font-size: 48px; letter-spacing: -0.03em; margin-top: 22px; line-height: 1; }
.tier .t-price sup { font-size: 22px; vertical-align: top; position: relative; top: 8px; margin-right: 2px; color: var(--on-night-2); }
.tier.featured .t-price sup { color: var(--ink-3); }
.tier .t-meta { display: flex; gap: 8px; align-items: center; margin-top: 12px; font-size: 13.5px; color: var(--on-night-2); font-family: var(--mono); }
.tier.featured .t-meta { color: var(--ink-3); }
.tier .t-cta { margin-top: 24px; }
.tier .t-cta .btn { width: 100%; justify-content: center; }
.tier:not(.featured) .btn-primary { background: var(--on-night); color: var(--night); box-shadow: none; }
.tier:not(.featured) .btn-primary:hover { background: #fff; }
.t-feats { list-style: none; padding: 0; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--night-line); display: flex; flex-direction: column; gap: 12px; }
.tier.featured .t-feats { border-top-color: var(--line); }
.t-feats li { display: flex; gap: 11px; font-size: 14.5px; color: var(--on-night-2); }
.tier.featured .t-feats li { color: var(--ink-2); }
.t-feats li svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--accent); }
.t-feats li.muted { color: var(--night-line); }
.tier.featured .t-feats li.muted { color: var(--line-2); }
.t-feats li.muted svg { color: currentColor; }
.t-feats .grp { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--on-night-2); opacity: .7; margin-top: 6px; }
.tier.featured .t-feats .grp { color: var(--ink-3); }
.price-foot { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: center; }
.price-foot .pf { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--on-night-2); }
.price-foot .pf svg { width: 16px; height: 16px; color: #FF8A6B; }

/* ============== WHY US ============== */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
@media (max-width: 840px){ .why-grid { grid-template-columns: 1fr; } }
.why-card { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 30px; background: var(--card); box-shadow: var(--sh-1); }
.why-card .big { font-family: var(--display); font-weight: 600; font-size: clamp(34px,4vw,44px); letter-spacing: -0.03em; color: var(--accent); line-height: 1; }
.why-card h3 { font-family: var(--display); font-weight: 600; font-size: 20px; margin-top: 16px; letter-spacing: -0.01em; }
.why-card p { color: var(--ink-2); font-size: 15.5px; margin-top: 10px; text-wrap: pretty; }

/* ============== FIT ============== */
.fit { background: var(--paper-2); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 56px; }
@media (max-width: 760px){ .fit-grid { grid-template-columns: 1fr; } }
.fit-col { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 30px; }
.fit-col.no { background: transparent; border-style: dashed; border-color: var(--line-2); }
.fit-col h3 { font-family: var(--display); font-weight: 600; font-size: 20px; display: flex; align-items: center; gap: 11px; letter-spacing: -0.01em; }
.fit-col h3 .badge { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.fit-col.yes h3 .badge { background: rgba(30,122,82,.12); color: var(--good); }
.fit-col.no h3 .badge { background: var(--paper-3); color: var(--ink-3); }
.fit-col h3 .badge svg { width: 15px; height: 15px; }
.fit-list { list-style: none; padding: 0; margin-top: 22px; display: flex; flex-direction: column; gap: 17px; }
.fit-list li { display: flex; gap: 12px; font-size: 15.5px; color: var(--ink-2); line-height: 1.45; }
.fit-list li svg { width: 18px; height: 18px; flex: none; margin-top: 1px; }
.fit-col.yes .fit-list li svg { color: var(--good); }
.fit-col.no .fit-list li svg { color: var(--ink-3); }

/* ============== FAQ ============== */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px,5vw,72px); margin-top: 12px; align-items: start; }
@media (max-width: 820px){ .faq-grid { grid-template-columns: 1fr; gap: 32px; } }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 24px 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; font-family: var(--display); font-weight: 600; font-size: 18.5px; letter-spacing: -0.01em; color: var(--ink); }
.faq-q .ic { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; transition: background .2s var(--ease), border-color .2s var(--ease), transform .3s var(--ease); margin-top: 2px; }
.faq-q .ic svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.faq-item.open .faq-q .ic { background: var(--accent); border-color: var(--accent); color: #fff; }
.faq-item.open .faq-q .ic svg { transform: rotate(45deg); }
.faq-a { overflow: hidden; height: 0; transition: height .32s var(--ease); }
.faq-a-inner { padding: 0 0 26px; color: var(--ink-2); font-size: 16px; max-width: 62ch; text-wrap: pretty; }
.faq-aside { position: sticky; top: 100px; background: var(--night); color: var(--on-night); border-radius: var(--r-xl); padding: 34px 32px; }
.faq-aside h3 { font-family: var(--display); font-weight: 600; font-size: 24px; letter-spacing: -0.02em; }
.faq-aside p { color: var(--on-night-2); margin-top: 12px; font-size: 15.5px; }
.faq-aside .btn { margin-top: 22px; }
.faq-aside .mail { margin-top: 18px; font-family: var(--mono); font-size: 14px; color: #FF8A6B; }

/* ============== FINAL CTA ============== */
.final { text-align: center; }
.final-card { background: var(--accent); color: #fff; border-radius: var(--r-xl); padding: clamp(48px,7vw,84px) var(--gutter); position: relative; overflow: hidden; }
.final-card .dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; }
.final-card h2 { font-family: var(--display); font-weight: 600; font-size: clamp(32px,5vw,60px); letter-spacing: -0.03em; line-height: 1.02; position: relative; text-wrap: balance; }
.final-card p { font-size: clamp(17px,1.6vw,20px); margin-top: 18px; max-width: 54ch; margin-inline: auto; color: rgba(255,255,255,.9); position: relative; }
.final-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; position: relative; }
.final-card .btn-night { background: var(--night); color: #fff; }
.final-card .btn-night:hover { background: #000; }
.final-card .btn-white { background: #fff; color: var(--accent-deep); }
.final-card .btn-white:hover { transform: translateY(-2px); }
.final-card .micro { margin-top: 22px; font-size: 14px; color: rgba(255,255,255,.85); position: relative; }

/* ============== FOOTER ============== */
.foot { background: var(--night); color: var(--on-night-2); padding-block: 60px 40px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px){ .foot-top { grid-template-columns: 1fr 1fr; gap: 28px; } }
.foot .logo { color: var(--on-night); }
.foot-blurb { font-size: 14.5px; margin-top: 16px; max-width: 30ch; }
.foot-col h4 { font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--on-night-2); opacity: .7; }
.foot-col ul { list-style: none; padding: 0; margin-top: 16px; display: flex; flex-direction: column; gap: 11px; }
.foot-col a { font-size: 14.5px; color: var(--on-night); opacity: .82; transition: opacity .18s, color .18s; }
.foot-col a:hover { opacity: 1; color: #FF8A6B; }
.foot-bar { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--night-line); font-size: 13px; }
.foot-bar .mono { font-family: var(--mono); }
