/* ==========================================================================
   Bearconnect — Landing Page Design System
   Tokens lifted from the live bearconnect.io build so these pages are
   visually indistinguishable from the main site.
     --primary  hsl(240 88% 68%)  = #6366f1   (also the logo colour)
     headings   Poppins           body  DM Sans
     radius     0.5rem base, 1rem / pill on cards and buttons
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand — exact match to the live site */
  --primary:            #6366f1;
  --primary-600:        #4f46e5;
  --primary-700:        #4338ca;
  --primary-50:         #eef2ff;
  --primary-100:        #e0e7ff;
  --secondary:          #dddefd;
  --purple-500:         #a855f7;
  --purple-600:         #9333ea;

  /* Neutrals — shadcn semantic tokens from the live build */
  --background:         #ffffff;
  --foreground:         #222e39;
  --muted:              #f4f5f6;
  --muted-foreground:   #5c6670;
  --border:             #e3e6e9;
  --card:               #ffffff;

  /* Extended surface ramp for section rhythm */
  --surface-1:          #ffffff;
  --surface-2:          #f8f9fb;
  --surface-3:          #f2f3f9;
  --ink-900:            #14181f;
  --ink-700:            #39424e;

  /* Semantic */
  --success:            #16a34a;
  --success-bg:         #f0fdf4;
  --danger:             #dc2626;
  --warning:            #f59e0b;

  /* Signature gradient — from-primary to-purple-600 */
  --grad: linear-gradient(90deg, #6366f1 0%, #9333ea 100%);
  --grad-soft: linear-gradient(135deg, #eef2ff 0%, #faf5ff 100%);

  /* Type */
  --font-display: 'Poppins', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'DM Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Elevation */
  --shadow-sm:  0 1px 2px rgba(16, 24, 40, .05);
  --shadow-md:  0 4px 12px rgba(16, 24, 40, .07);
  --shadow-lg:  0 12px 32px rgba(16, 24, 40, .10);
  --shadow-xl:  0 24px 56px rgba(16, 24, 40, .13);
  --shadow-brand: 0 12px 28px rgba(99, 102, 241, .28);

  --radius:     .5rem;
  --radius-lg:  1rem;
  --radius-xl:  1.5rem;

  --container:  1160px;
  --gutter:     clamp(1.15rem, 4vw, 2rem);
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--primary-600); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
  text-wrap: balance;
}

/* Fluid type scale.
   H1 caps at ~46px: these headlines are 8-12 words, and anything larger wraps
   into four lines and pushes the CTA below the fold on a laptop. */
h1, .h1 { font-size: clamp(1.95rem, 1.35rem + 1.9vw, 2.9rem); font-weight: 800; letter-spacing: -.032em; line-height: 1.13; }
h2, .h2 { font-size: clamp(1.6rem, 1.25rem + 1.35vw, 2.3rem);  letter-spacing: -.026em; }
h3, .h3 { font-size: clamp(1.14rem, 1.02rem + .5vw, 1.34rem); }

p { text-wrap: pretty; }

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 860px; }

.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--muted { background: var(--surface-2); }
.section--tint  { background: var(--grad-soft); }
.section--dark  { background: var(--ink-900); color: #cbd2dd; }
.section--dark h2, .section--dark h3 { color: #fff; }

.section-head { max-width: 760px; margin-inline: auto; text-align: center; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.section-head p { margin-top: 1rem; font-size: 1.1rem; color: var(--muted-foreground); }
.section--dark .section-head p { color: #9aa5b4; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

/* --------------------------------------------------------------------------
   4. ATOMS
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--primary-600);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  padding: .42rem .85rem; border-radius: 999px;
  margin-bottom: 1.15rem;
}
.eyebrow .bc-ico { width: 15px; height: 15px; }
.section--dark .eyebrow { background: rgba(99,102,241,.16); border-color: rgba(99,102,241,.35); color: #a5b4fc; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* Underline flourish used on the live site's H1.
   nowrap keeps the flourish from breaking across two lines — which means any
   punctuation written AFTER the span can orphan onto its own line. Put the
   highlight at the end of the headline, or nest the punctuation inside. */
.hl { position: relative; display: inline-block; white-space: nowrap; }
.hl::after {
  content: ''; position: absolute; left: 0; bottom: .12em;
  width: 100%; height: .32em;
  background: rgba(99, 102, 241, .22);
  border-radius: 3px; z-index: -1;
}

.bc-ico { width: 20px; height: 20px; flex: 0 0 auto; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: .95rem 1.85rem; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  text-decoration: none; white-space: nowrap; line-height: 1.2;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--primary-600); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(99,102,241,.36); }

.btn-grad { background: var(--grad); color: #fff; box-shadow: var(--shadow-brand); background-size: 140% 100%; }
.btn-grad:hover { transform: translateY(-2px); background-position: 100% 0; box-shadow: 0 16px 34px rgba(99,102,241,.36); }

.btn-ghost { background: #fff; color: var(--ink-900); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-600); transform: translateY(-2px); }

.btn-light { background: #fff; color: var(--primary-600); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-lg { padding: 1.1rem 2.3rem; font-size: 1.06rem; }
.btn-block { width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }
.cta-row--center { justify-content: center; }

.risk-note {
  margin-top: 1.05rem; font-size: .9rem; color: var(--muted-foreground);
  display: flex; align-items: center; gap: .45rem; flex-wrap: wrap;
}
.risk-note .bc-ico { width: 16px; height: 16px; color: var(--success); }
.section--dark .risk-note { color: #9aa5b4; }

/* --- Cards --------------------------------------------------------------- */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.85rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #d7dbf5; }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--muted-foreground); font-size: .985rem; }

.card-ico {
  width: 48px; height: 48px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 1.15rem;
  background: var(--primary-50); color: var(--primary-600);
  border: 1px solid var(--primary-100);
}
.card-ico .bc-ico { width: 23px; height: 23px; }
.card--accent .card-ico { background: var(--grad); color: #fff; border-color: transparent; }

/* --- Checklist ----------------------------------------------------------- */
.checklist { list-style: none; padding: 0; display: grid; gap: .72rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; font-size: 1rem; }
.checklist .bc-ico { width: 21px; height: 21px; color: var(--success); margin-top: .19rem; }
.checklist--brand .bc-ico { color: var(--primary); }

/* --------------------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 72px; }
.bc-logo { height: 34px; width: auto; }
.header-actions { display: flex; align-items: center; gap: .8rem; }
/* Keep the header CTA at a >=44px tap target — it is the most-tapped element
   on mobile and anything smaller fails accessibility touch guidance. */
.header-actions .btn { padding: .8rem 1.4rem; font-size: .94rem; min-height: 44px; }
.header-link { font-family: var(--font-display); font-weight: 500; font-size: .95rem; color: var(--ink-700); }
.header-link:hover { color: var(--primary-600); text-decoration: none; }
@media (max-width: 560px) { .header-link { display: none; } }

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(2.25rem, 4vw, 3.75rem) clamp(2.75rem, 5vw, 4.5rem); overflow: visible; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(56% 46% at 50% -8%, rgba(99,102,241,.15), transparent 62%),
    radial-gradient(42% 40% at 88% 8%, rgba(147,51,234,.11), transparent 65%);
}
.hero-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.06fr .94fr; } }

.hero h1 { margin-bottom: 1.25rem; }
.hero-sub { font-size: clamp(1.06rem, 1rem + .35vw, 1.24rem); color: var(--muted-foreground); max-width: 40ch; }
.hero-grid .hero-sub { max-width: 46ch; }
.hero .cta-row { margin-top: 2rem; }

/* Rating strip */
.hero-rating { display: flex; align-items: center; gap: .7rem; margin-top: 1.6rem; flex-wrap: wrap; font-size: .93rem; color: var(--muted-foreground); }
.stars { display: inline-flex; gap: .1rem; color: #f59e0b; }
.stars svg { width: 17px; height: 17px; fill: currentColor; stroke: none; }

/* Hero visual */
.hero-visual { position: relative; }
.mock {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: .42rem; padding: .8rem 1.1rem; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: #d7dbe2; }
.mock-title { margin-left: .6rem; font-family: var(--font-display); font-size: .8rem; font-weight: 600; color: var(--muted-foreground); }
.mock-body { padding: 1.35rem; display: grid; gap: .8rem; }

.mock-row { display: flex; align-items: center; gap: .8rem; padding: .8rem .9rem; border: 1px solid var(--border); border-radius: 12px; background: #fff; }
.mock-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--grad); flex: 0 0 auto; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .82rem; }
.mock-lines { flex: 1; min-width: 0; display: grid; gap: .34rem; }
.mock-line { height: 8px; border-radius: 4px; background: #e9ebf3; }
.mock-line.w-70 { width: 70%; } .mock-line.w-45 { width: 45%; } .mock-line.w-85 { width: 85%; }
.mock-pill { font-size: .68rem; font-family: var(--font-display); font-weight: 600; padding: .24rem .6rem; border-radius: 999px; white-space: nowrap; }
.pill-green { background: var(--success-bg); color: var(--success); }
.pill-brand { background: var(--primary-50); color: var(--primary-600); }
.pill-amber { background: #fffbeb; color: #b45309; }

/* Floating stat chip over the mock */
.float-chip {
  position: absolute; background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: .8rem 1rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .7rem;
}
.float-chip strong { font-family: var(--font-display); font-size: 1.12rem; color: var(--ink-900); display: block; line-height: 1.1; }
.float-chip span { font-size: .76rem; color: var(--muted-foreground); }
.float-chip .card-ico { width: 36px; height: 36px; margin: 0; border-radius: 10px; }
.float-chip .card-ico .bc-ico { width: 18px; height: 18px; }
.chip-br { right: -8px; bottom: -20px; }
.chip-tl { left: -22px; top: -18px; }
@media (max-width: 620px) { .float-chip { display: none; } }

/* --------------------------------------------------------------------------
   7. TRUST BAR
   -------------------------------------------------------------------------- */
.trustbar { border-block: 1px solid var(--border); background: var(--surface-2); padding-block: 1.9rem; }
.trust-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.4rem; text-align: center; }
.trust-stat strong {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2.05rem);
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1.1;
}
.trust-stat span { font-size: .87rem; color: var(--muted-foreground); }

.logo-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem 2.1rem; }
.logo-strip span {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  color: #97a0ad; letter-spacing: -.01em;
}

/* --------------------------------------------------------------------------
   8. PROBLEM / AGITATION
   -------------------------------------------------------------------------- */
.pain-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }
.pain {
  background: #fff; border: 1px solid var(--border); border-left: 3px solid #f1a4a4;
  border-radius: var(--radius); padding: 1.4rem 1.5rem;
}
.pain h3 { font-size: 1.04rem; margin-bottom: .42rem; }
.pain p { font-size: .95rem; color: var(--muted-foreground); }

/* Before / after */
.ba-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.ba { border-radius: var(--radius-lg); padding: 1.8rem; border: 1px solid var(--border); }
.ba--before { background: var(--surface-2); }
.ba--after { background: #fff; border-color: var(--primary-100); box-shadow: var(--shadow-md); }
.ba h3 { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.15rem; font-size: 1.1rem; }
.ba--before h3 { color: var(--muted-foreground); }
.ba ul { list-style: none; padding: 0; display: grid; gap: .78rem; }
.ba li { display: flex; gap: .68rem; align-items: flex-start; font-size: .97rem; }
.ba li .bc-ico { width: 20px; height: 20px; margin-top: .18rem; }
.ba--before li { color: var(--muted-foreground); }
.ba--before li .bc-ico { color: #c2492f; opacity: .75; }
.ba--after li .bc-ico { color: var(--success); }

/* --------------------------------------------------------------------------
   9. FEATURE SPLITS
   -------------------------------------------------------------------------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split + .split { margin-top: clamp(3rem, 6vw, 5rem); }
@media (min-width: 900px) { .split--flip .split-media { order: -1; } }
/* Mocks reused inside splits carry .float-chip (position:absolute). Without a
   positioned ancestor here those chips escape their section and anchor to the
   page, landing on unrelated content further down. */
.split-media { position: relative; }
.split h2 { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.05rem); margin-bottom: 1rem; }
.split > div > p { color: var(--muted-foreground); margin-bottom: 1.5rem; }

/* --------------------------------------------------------------------------
   10. COMPARISON TABLE
   -------------------------------------------------------------------------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-md); }
.cmp { width: 100%; border-collapse: collapse; min-width: 780px; font-size: .94rem; }
.cmp th, .cmp td { padding: 1rem .9rem; text-align: center; border-bottom: 1px solid var(--border); }
.cmp thead th { position: sticky; top: 0; background: var(--surface-2); font-family: var(--font-display); font-size: .88rem; font-weight: 600; color: var(--ink-900); z-index: 2; }
.cmp tbody th { text-align: left; font-weight: 500; color: var(--ink-700); min-width: 285px; font-family: var(--font-body); font-size: .95rem; }
.cmp tr:last-child td, .cmp tr:last-child th { border-bottom: 0; }
.cmp tbody tr:hover { background: #fafbff; }

/* Highlight the Bearconnect column */
.cmp .col-us { background: rgba(99,102,241,.055); border-inline: 1px solid rgba(99,102,241,.18); }
.cmp thead .col-us { background: var(--primary-50); }
.cmp thead .col-us .cmp-brand { font-weight: 700; color: var(--primary-600); }
.cmp-price { display: block; font-size: .78rem; font-weight: 500; color: var(--muted-foreground); margin-top: .2rem; }
.cmp .yes { color: var(--success); } .cmp .no { color: #cbd0d8; }
.cmp .bc-ico { width: 21px; height: 21px; margin-inline: auto; }
.cmp-note { margin-top: .95rem; font-size: .82rem; color: var(--muted-foreground); text-align: center; }
.scroll-hint { display: none; font-size: .82rem; color: var(--muted-foreground); text-align: center; margin-bottom: .7rem; }
@media (max-width: 820px) { .scroll-hint { display: block; } }

/* --------------------------------------------------------------------------
   11. PRICING
   -------------------------------------------------------------------------- */
/* Monthly / annual switch. Annual is ~16% cheaper and is the higher-LTV
   choice, so the saving is labelled rather than left for the user to compute. */
.billing-switch { display: flex; align-items: center; justify-content: center; gap: .85rem; margin-bottom: 2.25rem; flex-wrap: wrap; }
.billing-opt { font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--ink-900); }
.billing-opt em { font-style: normal; font-size: .78rem; font-weight: 600; color: var(--success); background: var(--success-bg); border: 1px solid #bbf7d0; padding: .16rem .5rem; border-radius: 999px; margin-left: .3rem; }
.switch { position: relative; display: inline-flex; cursor: pointer; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch-track { width: 50px; height: 28px; border-radius: 999px; background: #cfd4e0; transition: background .2s ease; display: block; }
.switch-thumb { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); transition: transform .22s ease; }
.switch input:checked + .switch-track { background: var(--primary); }
.switch input:checked + .switch-track .switch-thumb { transform: translateX(22px); }
.switch input:focus-visible + .switch-track { outline: 3px solid var(--primary); outline-offset: 2px; }

.price-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); max-width: 880px; margin-inline: auto; align-items: start; }
.plan { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; position: relative; }
.plan--rec { border-color: var(--primary); box-shadow: var(--shadow-brand); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-family: var(--font-display);
  font-size: .7rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 999px; white-space: nowrap;
}
.plan-name { font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; color: var(--ink-900); }
.plan-aud { font-size: .89rem; color: var(--muted-foreground); margin-top: .2rem; }
.plan-price { margin: 1.3rem 0 .3rem; font-family: var(--font-display); font-weight: 800; font-size: 2.65rem; color: var(--ink-900); line-height: 1; letter-spacing: -.03em; }
.plan-price small { font-size: 1rem; font-weight: 500; color: var(--muted-foreground); letter-spacing: 0; }
.plan-unit { font-size: .87rem; color: var(--muted-foreground); }
.plan-accounts { display: inline-block; margin-top: .85rem; font-size: .8rem; font-weight: 600; font-family: var(--font-display); color: var(--primary-600); background: var(--primary-50); padding: .3rem .75rem; border-radius: 999px; }
.plan .checklist { margin: 1.5rem 0; }
.plan .checklist li { font-size: .94rem; }
.plan-addon { font-size: .82rem; color: var(--muted-foreground); margin-top: -.7rem; margin-bottom: 1.2rem; }

.save-banner {
  max-width: 880px; margin: 1.6rem auto 0; text-align: center;
  background: var(--success-bg); border: 1px solid #bbf7d0; color: #15803d;
  border-radius: var(--radius); padding: .85rem 1.2rem; font-size: .93rem; font-weight: 500;
}

/* --------------------------------------------------------------------------
   12. FAQ
   -------------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.faq details { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .18s ease, box-shadow .18s ease; }
.faq details[open] { border-color: var(--primary-100); box-shadow: var(--shadow-md); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 1.4rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--ink-900);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; flex: 0 0 auto; width: 10px; height: 10px;
  border-right: 2px solid var(--muted-foreground); border-bottom: 2px solid var(--muted-foreground);
  transform: rotate(45deg); transition: transform .22s ease; margin-top: -4px;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
.faq .faq-body { padding: 0 1.4rem 1.3rem; color: var(--muted-foreground); font-size: .99rem; }

/* --------------------------------------------------------------------------
   13. STEPS
   -------------------------------------------------------------------------- */
.steps { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: s; }
.step { position: relative; padding-top: 3.3rem; }
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; top: 0; left: 0;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.06rem;
  display: grid; place-items: center; box-shadow: var(--shadow-brand);
}
.step h3 { font-size: 1.06rem; margin-bottom: .45rem; }
.step p { font-size: .95rem; color: var(--muted-foreground); }

/* --------------------------------------------------------------------------
   14. FINAL CTA
   -------------------------------------------------------------------------- */
.final-cta { background: var(--ink-900); position: relative; overflow: hidden; }
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(48% 62% at 22% 0%, rgba(99,102,241,.34), transparent 62%),
    radial-gradient(44% 58% at 82% 100%, rgba(147,51,234,.28), transparent 64%);
}
.final-cta .container { position: relative; z-index: 1; text-align: center; }
.final-cta h2 { color: #fff; margin-bottom: 1.1rem; }
.final-cta p { color: #b3bcca; max-width: 58ch; margin-inline: auto; font-size: 1.08rem; }
.final-cta .cta-row { margin-top: 2.1rem; }

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--surface-2); border-top: 1px solid var(--border); padding-block: 3rem 2rem; font-size: .92rem; }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.footer-brand { max-width: 300px; }
.footer-brand p { color: var(--muted-foreground); font-size: .92rem; margin-top: 1rem; }
.footer-col h4 { font-family: var(--font-display); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-900); margin-bottom: .9rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer-col a { color: var(--muted-foreground); }
.footer-col a:hover { color: var(--primary-600); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; color: var(--muted-foreground); font-size: .87rem; }

/* --------------------------------------------------------------------------
   16. STICKY MOBILE CTA
   -------------------------------------------------------------------------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); padding: .7rem var(--gutter);
  padding-bottom: calc(.7rem + env(safe-area-inset-bottom));
  display: none; align-items: center; gap: .9rem;
  box-shadow: 0 -4px 20px rgba(16,24,40,.09);
  transform: translateY(105%); transition: transform .3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-copy { flex: 1; min-width: 0; }
.sticky-cta-copy strong { display: block; font-family: var(--font-display); font-size: .93rem; color: var(--ink-900); }
.sticky-cta-copy span { font-size: .76rem; color: var(--muted-foreground); }
.sticky-cta .btn { padding: .78rem 1.4rem; font-size: .93rem; }
@media (max-width: 780px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 74px; }
}

/* --------------------------------------------------------------------------
   17. REVEAL ON SCROLL
   -------------------------------------------------------------------------- */
/* Content is visible by default and only hidden once JS has confirmed it can
   reveal it again (the .js class is set by an inline script in <head>).
   Hiding first and revealing with JS means a script error, a blocked file or a
   deep-anchor landing leaves the whole page blank — on paid traffic that is a
   100% bounce, so the failure mode has to be "no animation", never "no page". */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* --------------------------------------------------------------------------
   18. UTILITIES
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.muted { color: var(--muted-foreground); }
.small { font-size: .88rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--primary); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--radius) 0; z-index: 200; }
.skip-link:focus { left: 0; }
