/* Bristol Academy — Aptis Exam Trainer */
:root {
  --navy-900: #051a36;
  --navy-800: #0a2747;
  --navy-700: #143761;
  --navy-600: #1d4d80;
  --navy-500: #2a6390;
  --navy-50:  #f3f6fb;
  --navy-100: #e3ecf5;
  --navy-200: #c6d6e8;
  --teal-700: #2d6b8a;
  --teal-500: #4a8aa3;
  --teal-50:  #eaf3f7;
  --ink:      #0b1f37;
  --ink-soft: #455168;
  --ink-muted:#7a849b;
  --line:     #e3e8f0;
  --line-soft:#eef1f7;
  --bg:       #ffffff;
  --bg-tint:  #f7f9fc;
  --bg-warm:  #fbf8f3;

  /* Accent — Bristol Academy teal blue (from the B-curve in the logo) */
  --accent:        #2d6b8a;
  --accent-soft:   #e7f0f5;
  --accent-strong: #1f4f6a;
  --accent-ink:    #0f2734;

  /* Sale/discount red — Bristol burgundy used only for prices and discounts */
  --sale:          #8e2230;
  --sale-soft:     #fbeaec;
  --sale-strong:   #6e1922;

  --success: #2f8c5e;
  --success-soft: #e8f4ee;
  --danger:  #b8392a;
  --danger-soft: #fbecea;
  --warn:    #c08a1a;
  --warn-soft: #f8f1de;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --shadow-sm: 0 1px 2px rgba(11, 31, 55, 0.06);
  --shadow:    0 6px 18px -8px rgba(11, 31, 55, 0.18), 0 2px 4px rgba(11, 31, 55, 0.04);
  --shadow-lg: 0 24px 60px -24px rgba(11, 31, 55, 0.28), 0 8px 20px -12px rgba(11, 31, 55, 0.12);

  --font-sans: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Instrument Serif", "Source Serif Pro", Georgia, serif;
  --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* ========= HEADER ========= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: #fff;
  display: grid; place-items: center;
  padding: 4px;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { line-height: 1.1; }
.brand-text .top {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.brand-text .name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--ink); background: var(--bg-tint); }
.nav a.active { color: var(--navy-800); }

.header-cta { display: flex; align-items: center; gap: 10px; }
@media (max-width: 920px) {
  .nav { display: none; }
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  background: var(--bg);
  color: var(--ink);
  transition: transform .12s ease, box-shadow .15s, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn .icon { width: 16px; height: 16px; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(45, 107, 138, 0.5), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover { background: var(--accent-strong); }

/* Sale-colored button — for highlighted discounts */
.btn-sale {
  background: var(--sale);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(142, 34, 48, 0.5), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-sale:hover { background: var(--sale-strong); }

/* WhatsApp green button */
.btn-wa {
  background: #25D366;
  color: #fff;
}
.btn-wa:hover { background: #1da34d; }

.btn-dark {
  background: var(--navy-800);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-700); }

.btn-outline {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--line);
}
.btn-outline:hover { background: var(--bg-tint); border-color: var(--navy-200); }

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
}
.btn-ghost:hover { background: var(--bg-tint); color: var(--ink); }

.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 16px 26px; font-size: 16px; border-radius: 12px; }
.btn-block { width: 100%; }

.btn-locked {
  background: var(--bg-tint);
  color: var(--ink-muted);
  border-color: var(--line);
  cursor: not-allowed;
}
.btn-locked:hover { background: var(--bg-tint); }

/* ========= SECTIONS ========= */
section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-700);
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: 999px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

.h-display {
  font-family: var(--font-sans);
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--navy-900);
}
.h-display em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.h-section {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--navy-900);
}
.h-section em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.lead {
  font-size: clamp(16px, 1.6vw, 18.5px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ========= HERO ========= */
.hero {
  position: relative;
  padding: 64px 0 80px;
  background:
    radial-gradient(900px 600px at 90% -10%, rgba(231, 106, 44, 0.10), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(45, 106, 163, 0.10), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}
.trust-row {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  margin-top: 32px;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--ink-soft);
  font-weight: 500;
}
.trust-chip svg { color: var(--accent); flex: 0 0 auto; }

.hero-side-cta {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--ink-muted);
}
.hero-side-cta a {
  color: var(--navy-700);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

/* Hero visual */
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 22px;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 23px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(231,106,44,0.4), rgba(11,31,55,0.06));
  -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.hero-card-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 16px;
}
.hero-card-top .label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-muted);
}
.hero-card-top .name {
  font-size: 15px; font-weight: 700; color: var(--navy-900);
}
.hero-skill {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 14px;
  border-radius: 12px;
  background: var(--bg-tint);
  margin-bottom: 8px;
  border: 1px solid var(--line-soft);
}
.hero-skill-left { display: flex; align-items: center; gap: 12px; }
.hero-skill-ic {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--navy-700);
}
.hero-skill .name { font-weight: 600; font-size: 14.5px; }
.hero-skill .meta { font-size: 12.5px; color: var(--ink-muted); }
.hero-skill .badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 6px;
}
.badge-done { background: var(--success-soft); color: var(--success); }
.badge-progress { background: var(--accent-soft); color: var(--accent-strong); }
.badge-todo { background: var(--bg-tint); color: var(--ink-muted); border: 1px solid var(--line); }

.hero-progress {
  margin-top: 14px; padding: 14px;
  border-radius: 12px;
  background: var(--navy-800);
  color: #fff;
}
.hero-progress-row {
  display: flex; justify-content: space-between; font-size: 13px;
  margin-bottom: 8px; color: rgba(255,255,255,0.85);
}
.hero-progress .bar { height: 6px; background: rgba(255,255,255,0.16); border-radius: 999px; overflow: hidden; }
.hero-progress .fill { height: 100%; background: var(--accent); width: 64%; border-radius: 999px; }
.hero-progress .pct { color: #fff; font-weight: 700; }

.hero-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
}
.hero-float-1 {
  top: -16px; left: -22px;
}
.hero-float-2 {
  bottom: -18px; right: -16px;
}
.hero-float-ic {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
  color: #fff;
  background: var(--accent);
}
.hero-float-ic.success { background: var(--success); }
@media (max-width: 600px) {
  .hero-float-1, .hero-float-2 { display: none; }
}

/* ========= LOGO STRIP / TRUST ========= */
.logo-strip {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-tint);
}
.logo-strip-grid {
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.logo-strip .label {
  font-size: 13px; color: var(--ink-muted);
  font-weight: 500;
}
.logo-strip .stat {
  display: flex; align-items: baseline; gap: 6px;
  color: var(--navy-900);
}
.logo-strip .stat .num {
  font-family: var(--font-serif);
  font-size: 30px; font-weight: 400;
  line-height: 1;
}
.logo-strip .stat .lbl { font-size: 13.5px; color: var(--ink-soft); }

/* ========= BENEFITS ========= */
.benefits {
  background: var(--bg);
}
.benefits-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 800px) {
  .benefits-head { grid-template-columns: 1fr; gap: 16px; }
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 980px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .benefits-grid { grid-template-columns: 1fr; } }

.b-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
}
.b-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--navy-200);
}
.b-card .ic {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.b-card h3 {
  font-size: 18px; font-weight: 700; letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--navy-900);
}
.b-card p {
  font-size: 14.5px; color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ========= EXAM TABLE ========= */
.exams {
  background: var(--bg-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.exams-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px; margin-bottom: 36px;
  flex-wrap: wrap;
}
.exams-head .left { max-width: 640px; }
.legend {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--ink-soft);
}
.legend-item { display: inline-flex; align-items: center; gap: 8px; }
.legend-dot { width: 10px; height: 10px; border-radius: 3px; }
.legend-dot.unlocked { background: var(--success); }
.legend-dot.locked { background: var(--ink-muted); opacity: 0.5; }

.exam-table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.exam-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.exam-table th {
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 18px 14px;
  background: var(--bg-tint);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.exam-table th:first-child { padding-left: 24px; }
.exam-table th:last-child { padding-right: 24px; text-align: right; }
.exam-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}
.exam-table td:first-child { padding-left: 24px; }
.exam-table td:last-child { padding-right: 24px; text-align: right; }
.exam-table tr:last-child td { border-bottom: none; }
.exam-table tr.locked td:first-child { color: var(--ink-muted); }
.exam-table tr:hover td { background: rgba(231, 106, 44, 0.025); }

.exam-cell {
  display: flex; align-items: center; gap: 12px;
  min-width: 130px;
}
.exam-num {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 13px;
  background: var(--navy-50);
  color: var(--navy-800);
  border: 1px solid var(--navy-100);
}
.exam-num.free {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.exam-num.locked {
  background: var(--bg-tint);
  color: var(--ink-muted);
}
.exam-name { font-weight: 600; font-size: 14.5px; }
.exam-free-tag {
  display: inline-block;
  margin-top: 2px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--success);
}

.skill-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: var(--bg-tint);
  color: var(--navy-800);
  border: 1px solid var(--line);
  transition: all .15s;
}
.skill-btn:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-strong);
}
.skill-btn.locked {
  background: var(--bg-tint);
  color: var(--ink-muted);
  border-color: var(--line-soft);
}
.skill-btn.locked:hover {
  background: var(--bg-tint); color: var(--ink-muted);
  border-color: var(--line-soft);
}
.skill-btn.premium {
  background: linear-gradient(135deg, #f4d28a 0%, #d4a64a 100%);
  color: #4a3611;
  border: 1px solid #b88a2c;
  font-weight: 700;
  box-shadow: 0 2px 6px -2px rgba(184, 138, 44, 0.4);
}
.skill-btn.premium:hover {
  background: linear-gradient(135deg, #f9dca0 0%, #e0b75c 100%);
  border-color: #997025;
  color: #4a3611;
  transform: translateY(-1px);
}
.skill-btn .lock-ic { width: 12px; height: 12px; opacity: 0.7; }

.access-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}
.access-btn.free {
  background: var(--success-soft);
  color: var(--success);
  border: 1px solid #c8e4d3;
}
.access-btn.upgrade {
  background: var(--navy-800);
  color: #fff;
}
.access-btn.upgrade:hover { background: var(--navy-700); }

/* Mobile cards instead of table */
.exam-cards { display: none; }
@media (max-width: 880px) {
  .exam-table { display: none; }
  .exam-cards {
    display: flex; flex-direction: column;
    gap: 12px;
  }
  .exam-table-wrap {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }
  .exam-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--shadow-sm);
  }
  .exam-card.free { border-color: var(--accent); }
  .exam-card-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 14px;
  }
  .exam-card-name {
    display: flex; align-items: center; gap: 12px;
    font-weight: 700;
  }
  .exam-card-skills {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px;
    margin-bottom: 14px;
  }
  .exam-card-skills .skill-btn {
    justify-content: center;
    padding: 10px;
  }
}

/* ========= PLANS ========= */
.plans {
  background: var(--bg);
}
.plans-head {
  text-align: center;
  margin-bottom: 56px;
}
.plans-head .h-section { margin-bottom: 12px; }
.plans-head .lead { margin: 0 auto; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
.plans-grid.plans-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 1100px) { .plans-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  {
  .plans-grid, .plans-grid.plans-3 { grid-template-columns: 1fr; max-width: 480px; }
}

.plan-save {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--sale);
  color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 10px -4px rgba(142,34,48,0.4);
}
.plan-was {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink-muted);
  margin-right: 8px;
  font-weight: 400;
}
.plan.featured .plan-was { color: rgba(255,255,255,0.5); }

.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px 24px;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plan.featured {
  background: var(--navy-800);
  color: #fff;
  border-color: var(--navy-800);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.plan.featured:hover { transform: translateY(-11px); }
.plan-tag {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--sale);
  color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 14px -4px rgba(142,34,48,0.5);
}
.plan-name {
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.plan-desc {
  font-size: 13px; color: var(--ink-soft);
  margin: 0 0 18px;
  min-height: 38px;
}
.plan.featured .plan-desc { color: rgba(255,255,255,0.7); }
.plan-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.plan.featured .plan-price { border-color: rgba(255,255,255,0.15); }
.plan-price .num {
  font-family: var(--font-serif);
  font-size: 44px; font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.plan-price .cur { font-size: 22px; opacity: 0.6; }
.plan-price .per { font-size: 12px; color: var(--ink-muted); margin-left: 4px; }
.plan.featured .plan-price .per { color: rgba(255,255,255,0.55); }

.plan-includes {
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.plan.featured .plan-includes { color: rgba(255,255,255,0.5); }
.plan-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13.5px;
  flex: 1;
}
.plan-list li {
  display: flex; align-items: flex-start; gap: 8px;
}
.plan-list svg { flex: 0 0 auto; color: var(--accent); margin-top: 2px; }
.plan.featured .plan-list svg { color: var(--accent); }
.plan-cta { margin-top: auto; }
.plan.featured .btn-dark { background: var(--sale); }
.plan.featured .btn-dark:hover { background: var(--sale-strong); }

.plan-foot {
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--ink-muted);
  text-align: center;
}
.plan.featured .plan-foot { color: rgba(255,255,255,0.5); }

/* ========= FAQ / DISCLAIMER STRIP ========= */
.faq {
  background: var(--bg-tint);
  border-top: 1px solid var(--line);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; gap: 24px; } }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  padding: 18px 20px;
  font-size: 15.5px; font-weight: 600;
  color: var(--navy-900);
  gap: 16px;
}
.faq-q:hover { background: var(--bg-tint); }
.faq-q .ic { transition: transform .2s; flex: 0 0 auto; color: var(--ink-muted); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  transition: max-height .25s ease, padding .25s;
}
.faq-item.open .faq-a {
  padding: 0 20px 20px;
  max-height: 320px;
}

/* ========= FOOTER ========= */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.78);
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
.footer-brand .brand-text .top { color: rgba(255,255,255,0.6); }
.footer-brand .brand-text .name { color: #fff; }
.footer-brand p {
  margin-top: 16px;
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 40ch;
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer-col a:hover { color: #fff; }

.footer-form { display: flex; flex-direction: column; gap: 10px; }
.footer-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .footer-form-row { grid-template-columns: 1fr; } }
.footer-form input,
.footer-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
  color: #fff;
  outline: none;
  transition: border-color .15s, background .15s;
}
.footer-form input::placeholder,
.footer-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.footer-form input:focus,
.footer-form textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.07);
}
.footer-form textarea { min-height: 90px; resize: vertical; }
.footer-form .btn-primary { align-self: flex-start; margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 12.5px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
.footer-disclaimer {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin-bottom: 24px;
}

/* ========= UTIL ========= */
.row { display: flex; gap: 8px; flex-wrap: wrap; }
.hide-mobile { display: initial; }
@media (max-width: 720px) { .hide-mobile { display: none; } }

/* Tweak — single accent (Bristol burgundy) — no theme variants */
