/* ═══════════════════════════════════════════════════════════
   BC Navigator — Website · Commander Blue Design System
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  /* Brand Navy */
  --navy-950: #070F1C;
  --navy-900: #0C1829;
  --navy-800: #132238;
  --navy-700: #1A3357;
  --navy-600: #1E4480;
  --navy-500: #2356A8;
  --navy-400: #3B74CC;
  --navy-300: #6DA0E0;
  --navy-200: #A8C4EB;
  --navy-100: #D6E6F7;
  --navy-50:  #EBF3FB;

  /* Amber / Pro */
  --amber-700: #92400E;
  --amber-600: #B45309;
  --amber-500: #D97706;
  --amber-200: #FDE68A;
  --amber-100: #FEF3C7;
  --amber-50:  #FFFBEB;

  /* Slate */
  --slate-900: #0F172A;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;

  /* Semantic – light mode */
  --c-page:         #EDF1F7;
  --c-card:         #FFFFFF;
  --c-elevated:     #F8FAFC;
  --c-border:       #DDE4EE;
  --c-border-light: #EEF2F8;
  --c-text:         #0F1928;
  --c-text-muted:   #4D6080;
  --c-text-faint:   #94A3B8;
  --c-accent:       var(--navy-600);
  --c-focus-ring:   rgba(35,86,168,.16);

  /* Layout */
  --nav-h:  62px;
  --max-w: 1080px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(12,24,41,.08), 0 1px 2px rgba(12,24,41,.04);
  --shadow-md:   0 4px 12px rgba(12,24,41,.10), 0 2px 4px rgba(12,24,41,.06);
  --shadow-lg:   0 8px 32px rgba(12,24,41,.14), 0 4px 8px rgba(12,24,41,.08);

  /* Radius */
  --radius-xs: 3px;
  --radius-sm: 5px;
  --radius:    7px;
  --radius-lg: 10px;
  --radius-xl: 16px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --c-page:         #0A1220;
    --c-card:         #111927;
    --c-elevated:     #182134;
    --c-border:       #1C2D45;
    --c-border-light: #162236;
    --c-text:         #CBD5E1;
    --c-text-muted:   #94A3B8;
    --c-text-faint:   #64748B;
    --c-accent:       var(--navy-400);
    --navy-50:        #141E2E;
    --navy-100:       #1A2B42;
    --shadow-card:    0 1px 3px rgba(0,0,0,.3), 0 1px 2px rgba(0,0,0,.2);
    --shadow-md:      0 4px 12px rgba(0,0,0,.3), 0 2px 4px rgba(0,0,0,.2);
  }
}

/* ── Base ────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI Variable Text', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  background: var(--c-page);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--c-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* ── Layout Helpers ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 80px 0; }
.section-alt { background: var(--c-card); }

/* ── Navigation ──────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(12,24,41,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { text-decoration: none; }

.nav-logo-icon { color: var(--navy-200); flex-shrink: 0; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: .4px;
}

.nav-logo-sub {
  font-size: 9px;
  font-weight: 400;
  color: rgba(255,255,255,.4);
  letter-spacing: .6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,.07);
  text-decoration: none;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2px;
  cursor: pointer;
  border: none;
  transition: background .15s, transform .1s, box-shadow .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--navy-600);
  color: #fff;
  box-shadow: 0 1px 3px rgba(30,68,128,.35);
}
.btn-primary:hover { background: var(--navy-500); box-shadow: 0 4px 12px rgba(30,68,128,.4); }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn-outline:hover { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }

.btn-amber {
  background: var(--amber-500);
  color: #fff;
  box-shadow: 0 1px 3px rgba(217,119,6,.4);
}
.btn-amber:hover { background: var(--amber-600); box-shadow: 0 4px 12px rgba(217,119,6,.45); }

.btn-lg {
  padding: 13px 28px;
  font-size: 14px;
  border-radius: var(--radius);
}

.btn-sm {
  padding: 7px 14px;
  font-size: 12px;
}

/* ── Hero ────────────────────────────────────────────────── */
#hero {
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 45%, #0F2040 100%);
  padding: calc(var(--nav-h) + 72px) 0 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(35,86,168,.12) 0%, transparent 70%),
    radial-gradient(circle at 10% 80%, rgba(30,68,128,.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Dot grid texture */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy-300);
  margin-bottom: 20px;
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--navy-400);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -.5px;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--navy-300);
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stores {
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
}

.store-badge svg { flex-shrink: 0; }

/* Hero shortcut showcase */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-mockup {
  background: #111927;
  border: 1px solid #1C2D45;
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 24px 64px rgba(0,0,0,.5),
    0 8px 24px rgba(0,0,0,.3);
  width: 320px;
  overflow: hidden;
}

.pm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  height: 38px;
  background: linear-gradient(135deg, #0C1829 0%, #132238 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.pm-logo {
  display: flex;
  align-items: center;
  gap: 7px;
}

.pm-logo-name {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .4px;
}

.pm-badge {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  background: var(--amber-500);
  color: #fff;
  padding: 1px 6px;
  border-radius: 10px;
}

.pm-form {
  padding: 10px 12px 8px;
}

.pm-input-wrap {
  display: flex;
  align-items: center;
  background: #182134;
  border: 1.5px solid #2356A8;
  border-radius: 7px;
  box-shadow: 0 0 0 3px rgba(35,86,168,.14);
  overflow: hidden;
}

.pm-chip {
  font-family: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--navy-200);
  background: rgba(59,116,204,.15);
  border-right: 1.5px solid rgba(59,116,204,.25);
  padding: 0 9px;
  height: 100%;
  display: flex;
  align-items: center;
  align-self: stretch;
  letter-spacing: .4px;
  white-space: nowrap;
}

.pm-input-text {
  flex: 1;
  padding: 9px 8px;
  font-size: 14px;
  font-family: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
  color: #C8DAEA;
}

.pm-go {
  margin: 4px 4px 4px 0;
  padding: 0 12px;
  height: 26px;
  background: var(--navy-600);
  color: #fff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.pm-hint {
  font-size: 10px;
  color: #64748B;
  margin-top: 5px;
  padding: 0 2px;
}

.pm-history {
  background: #0E1A2B;
  border-top: 1px solid #1C2D45;
}

.pm-hist-header {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #64748B;
  text-transform: uppercase;
  padding: 7px 12px 4px;
}

.pm-hist-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-top: 1px solid rgba(255,255,255,.03);
}

.pm-keycap {
  font-family: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--navy-200);
  background: rgba(59,116,204,.12);
  border: 1px solid rgba(59,116,204,.2);
  border-bottom: 2px solid rgba(59,116,204,.35);
  border-radius: 3px;
  padding: 1px 6px;
}

.pm-hist-label {
  font-size: 11px;
  color: #94A3B8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pm-hist-time {
  font-size: 9px;
  color: #64748B;
  white-space: nowrap;
}

/* ── Section Headers ─────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--c-text);
  letter-spacing: -.3px;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 16px;
  color: var(--c-text-muted);
  line-height: 1.65;
  max-width: 560px;
}

/* ── How It Works ────────────────────────────────────────── */
#how-it-works { background: var(--c-card); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1.5px;
  background: linear-gradient(90deg, var(--c-border) 0%, var(--c-accent) 50%, var(--c-border) 100%);
  opacity: .5;
  pointer-events: none;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--navy-50);
  border: 2px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* Keycap badge */
kbd.keycap {
  display: inline-flex;
  align-items: center;
  font-family: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-600);
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-bottom: 2px solid var(--navy-200);
  border-radius: var(--radius-xs);
  padding: 1px 7px;
  letter-spacing: .3px;
  line-height: 1.5;
  vertical-align: middle;
}

@media (prefers-color-scheme: dark) {
  kbd.keycap {
    color: var(--navy-200);
    background: rgba(59,116,204,.12);
    border-color: rgba(59,116,204,.2);
    border-bottom-color: rgba(59,116,204,.35);
  }
}

/* ── Nav Logo Image ──────────────────────────────────────── */
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

/* ── Examples ────────────────────────────────────────────── */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.example-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.example-icon {
  color: var(--c-accent);
  width: 36px;
  height: 36px;
  background: var(--navy-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (prefers-color-scheme: dark) {
  .example-icon { background: rgba(35,86,168,.15); }
}

.example-input {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ex-keycap {
  font-family: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-600);
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-bottom: 2px solid var(--navy-200);
  border-radius: var(--radius-xs);
  padding: 2px 9px;
  letter-spacing: .3px;
}

@media (prefers-color-scheme: dark) {
  .ex-keycap {
    color: var(--navy-200);
    background: rgba(59,116,204,.12);
    border-color: rgba(59,116,204,.2);
    border-bottom-color: rgba(59,116,204,.35);
  }
}

.example-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
}

.example-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Features Accordion ──────────────────────────────────── */
.features-accordion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin-top: 48px;
}

.feat-q-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}

.feat-q-inner svg {
  color: var(--c-accent);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .features-accordion-grid { grid-template-columns: 1fr; }
}

/* ── Screenshots ─────────────────────────────────────────── */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.screenshot-frame {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--c-border);
}

.screenshot-frame figcaption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--c-text-muted);
  text-align: center;
}

@media (max-width: 768px) {
  .screenshots-grid { grid-template-columns: 1fr; }
}

/* ── Feature Comparison ──────────────────────────────────── */
#features .section-desc { margin-bottom: 48px; }

.compare-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table thead tr {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.compare-table th {
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  text-align: left;
}

.compare-table th:first-child { color: rgba(255,255,255,.5); }

.compare-table th.col-free {
  color: rgba(255,255,255,.9);
  text-align: center;
}

.compare-table th.col-pro {
  color: var(--amber-200);
  text-align: center;
  position: relative;
}

.pro-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.compare-table td {
  padding: 13px 20px;
  font-size: 14px;
  color: var(--c-text);
  border-top: 1px solid var(--c-border-light);
}

.compare-table td.col-free,
.compare-table td.col-pro {
  text-align: center;
}

.compare-table tr:hover td { background: var(--c-elevated); }

.compare-table td.col-pro { font-weight: 600; }

.check-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: #ECFDF5;
  border-radius: 50%;
  color: #047857;
}

.check-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  color: var(--c-text-faint);
}

.check-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--amber-50);
  border-radius: 50%;
  color: var(--amber-600);
}

@media (prefers-color-scheme: dark) {
  .check-yes { background: rgba(4,120,87,.15); }
  .check-pro { background: rgba(217,119,6,.12); }
}

.feat-count {
  font-size: 11px;
  color: var(--c-text-faint);
  font-weight: 400;
}

/* ── Pricing ─────────────────────────────────────────────── */
#pricing { background: var(--c-card); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 48px auto 0;
}

/* Tier rows inside Pro card */
.tier-list {
  list-style: none;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.tier-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-top: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  transition: background .15s;
}

.tier-row:first-child { border-top: none; }

.tier-row:hover {
  background: rgba(217,119,6,.15);
  text-decoration: none;
}

.tier-label {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
}

.tier-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--amber-200);
  white-space: nowrap;
  letter-spacing: -.3px;
}

.tier-arrow {
  font-size: 14px;
  color: rgba(255,255,255,.3);
  transition: color .15s, transform .15s;
}

.tier-row:hover .tier-arrow {
  color: var(--amber-500);
  transform: translateX(2px);
}

.pricing-card {
  background: var(--c-page);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
}

.pricing-card.featured {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-color: var(--navy-600);
  box-shadow: var(--shadow-lg);
}

.pricing-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}

.pricing-card.featured .pricing-tier { color: rgba(255,255,255,.5); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.price-amount {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--c-text);
  letter-spacing: -2px;
}

.pricing-card.featured .price-amount { color: #FFFFFF; }

.price-currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-bottom: 4px;
}

.pricing-card.featured .price-currency { color: rgba(255,255,255,.5); }

.price-period {
  font-size: 13px;
  color: var(--c-text-faint);
}

.pricing-card.featured .price-period { color: rgba(255,255,255,.35); }

.pricing-sub {
  font-size: 12px;
  color: var(--c-text-faint);
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-sub { color: rgba(255,255,255,.35); }

.pricing-divider {
  height: 1px;
  background: var(--c-border);
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-divider { background: rgba(255,255,255,.08); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text);
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,.8); }

.pricing-features li svg {
  color: #047857;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li svg { color: #6EE7B7; }

.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: var(--amber-500);
  color: #fff;
  padding: 1px 6px;
  border-radius: 10px;
  vertical-align: middle;
  margin-left: 4px;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 48px;
  max-width: 720px;
}

.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s;
}

.faq-question:hover { background: var(--c-elevated); }

.faq-icon {
  flex-shrink: 0;
  color: var(--c-text-faint);
  transition: transform .2s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--c-border-light);
}

.faq-item.open .faq-answer { display: block; }

/* ── Footer ──────────────────────────────────────────────── */
#footer {
  background: var(--navy-950);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.04);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: 12px;
}

.footer-logo svg { color: rgba(168,196,235,.35); }

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  transition: color .15s;
}
.footer-links a:hover { color: rgba(255,255,255,.7); text-decoration: none; }

/* ── Legal Pages ─────────────────────────────────────────── */
.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) 32px 80px;
}

.legal-wrap h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 8px;
  letter-spacing: -.3px;
}

.legal-updated {
  font-size: 13px;
  color: var(--c-text-faint);
  margin-bottom: 40px;
}

.legal-wrap h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  margin: 36px 0 12px;
  padding-left: 12px;
  border-left: 4px solid var(--c-accent);
  border-radius: 2px;
}

.legal-wrap p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-wrap ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-wrap li {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 4px;
}

.legal-wrap a { color: var(--c-accent); }
.legal-wrap a:hover { text-decoration: underline; }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--c-accent);
  margin-bottom: 32px;
}
.legal-back:hover { text-decoration: underline; }

/* ── Success Page ────────────────────────────────────────── */
.success-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 80px) 32px 80px;
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: #ECFDF5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: #047857;
}

@media (prefers-color-scheme: dark) {
  .success-icon { background: rgba(4,120,87,.15); }
}

.success-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 12px;
  letter-spacing: -.3px;
}

.success-sub {
  font-size: 16px;
  color: var(--c-text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.steps-list {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  text-align: left;
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
}

.steps-list-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 20px;
}

.act-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--c-border-light);
}

.act-step:first-of-type { border-top: none; padding-top: 0; }

.act-step-num {
  width: 26px;
  height: 26px;
  background: var(--navy-50);
  border: 1.5px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-accent);
  flex-shrink: 0;
}

.act-step-text {
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.5;
  padding-top: 3px;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }

  .nav-links { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
    text-align: center;
  }

  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stores { justify-content: center; }
  .hero-visual { order: -1; }

  .popup-mockup { width: 280px; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .steps-grid::before { display: none; }

  .examples-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .legal-wrap { padding-left: 20px; padding-right: 20px; }
  .success-wrap { padding-left: 20px; padding-right: 20px; }

  .nav-inner { padding: 0 20px; }
  .hero-inner { padding: 0 20px; }
}

/* ── Utility ─────────────────────────────────────────────── */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
