/* === VARIABLES === */
:root {
  --bg: #faf9f7;
  --bg-alt: #f0ede8;
  --fg: #1c1917;
  --fg-muted: #78716c;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --navy: #0f172a;
  --border: #e7e5e0;
  --card: #ffffff;
  --radius: 12px;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Source Serif 4', Georgia, serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--navy);
}
.nav-tagline {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  padding: 72px 0 80px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-dark);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}
.hero-stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.hero-stat-div {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* === APP WINDOW === */
.app-window {
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(15,23,42,0.18), 0 8px 24px rgba(15,23,42,0.1);
}
.app-bar {
  background: #1e293b;
  padding: 12px 16px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: #334155; display: block; }
.dot:first-child { background: #f59e0b; }
.app-content { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.app-question { background: #1e293b; border-radius: 10px; padding: 16px; }
.q-label { font-family: var(--font-head); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: #64748b; margin-bottom: 8px; }
.q-text { font-family: var(--font-body); font-size: 13px; color: #e2e8f0; line-height: 1.5; }
.app-solution { background: #1e293b; border-radius: 10px; padding: 16px; }
.s-label { font-family: var(--font-head); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: #64748b; margin-bottom: 12px; }
.s-step { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-head); font-size: 13px; color: #cbd5e1; margin-bottom: 8px; line-height: 1.4; }
.s-step:last-child { margin-bottom: 0; }
.step-n { background: var(--accent); color: var(--navy); font-weight: 700; font-size: 10px; width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.s-step strong { color: #fbbf24; }
.app-quiz { }
.quiz-card { background: #1e293b; border-radius: 10px; padding: 16px; }
.quiz-q { font-family: var(--font-head); font-size: 13px; color: #e2e8f0; margin-bottom: 10px; }
.quiz-opts { display: flex; flex-direction: column; gap: 6px; }
.quiz-opts span { font-family: var(--font-head); font-size: 11px; color: #94a3b8; padding: 6px 10px; background: #0f172a; border-radius: 6px; }

/* === FEATURES === */
.features { padding: 96px 0; background: var(--bg-alt); }
.features-inner { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 56px;
}
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.feat-primary { border-top: 3px solid var(--accent); }
.feat-icon { color: var(--accent-dark); margin-bottom: 20px; }
.feat-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feat-body { font-family: var(--font-body); font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* === HOW === */
.how { padding: 96px 0; background: var(--bg); }
.how-inner { max-width: 1140px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.step-list { display: flex; flex-direction: column; gap: 0; }
.step-item { display: flex; gap: 20px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--border); }
.step-item:first-child { padding-top: 0; }
.step-item:last-child { border-bottom: none; }
.step-count { font-family: var(--font-head); font-size: 13px; font-weight: 800; color: var(--accent); width: 32px; flex-shrink: 0; }
.step-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-desc { font-family: var(--font-body); font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

.concept-block { background: var(--navy); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; }
.concept-label { font-family: var(--font-head); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #64748b; margin-bottom: 8px; }
.concept-name { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #f1f5f9; margin-bottom: 16px; }
.concept-bar { height: 6px; background: #1e293b; border-radius: 99px; overflow: hidden; margin-bottom: 8px; }
.concept-fill { height: 100%; background: var(--accent); border-radius: 99px; }
.concept-meta { font-family: var(--font-head); font-size: 11px; color: #64748b; }
.question-block { background: #f0ede8; border-radius: var(--radius); padding: 20px; }
.q-type { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--navy); margin: 6px 0 8px; }
.q-advice { font-family: var(--font-head); font-size: 12px; font-weight: 500; color: var(--accent-dark); }

/* === OUTCOMES === */
.outcomes { padding: 96px 0; background: var(--navy); }
.outcomes-inner { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.outcomes .section-label { color: #f59e0b; }
.outcomes .section-headline { color: #f8fafc; }
.outcomes-header { margin-bottom: 56px; }
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.outcome-card { border-left: 2px solid var(--accent); padding-left: 24px; }
.outcome-num { font-family: var(--font-head); font-size: 52px; font-weight: 800; color: #f59e0b; line-height: 1; margin-bottom: 12px; letter-spacing: -2px; }
.outcome-desc { font-family: var(--font-body); font-size: 15px; color: #94a3b8; line-height: 1.65; }

/* === CLOSING === */
.closing { padding: 96px 0; background: var(--bg-alt); }
.closing-inner { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.closing-headline { font-family: var(--font-head); font-size: clamp(24px, 3vw, 40px); font-weight: 800; letter-spacing: -1.5px; color: var(--navy); line-height: 1.2; margin-bottom: 20px; text-align: center; }
.closing-sub { font-family: var(--font-body); font-size: 18px; color: var(--fg-muted); text-align: center; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* === FOOTER === */
.footer { padding: 48px 0; background: var(--navy); }
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.footer-top { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.footer-logo { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: #f8fafc; }
.footer-desc { font-family: var(--font-body); font-size: 13px; color: #64748b; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 24px; }
.footer-bottom span { font-family: var(--font-head); font-size: 12px; color: #475569; }

/* === QUIZ PAGE === */
.quiz-page { min-height: calc(100vh - 80px); background: var(--bg); }

.quiz-setup { padding: 64px 0 96px; }
.quiz-container { max-width: 760px; margin: 0 auto; padding: 0 32px; }

.quiz-header { text-align: center; margin-bottom: 48px; }
.quiz-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-dark);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.quiz-page-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 12px;
}
.quiz-page-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.quiz-form { display: flex; flex-direction: column; gap: 28px; }

.quiz-tab-row { display: flex; gap: 8px; background: var(--bg-alt); padding: 6px; border-radius: 10px; }
.quiz-tab {
  flex: 1;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  background: transparent;
  color: var(--fg-muted);
  transition: all 0.15s;
}
.quiz-tab.active { background: var(--card); color: var(--navy); box-shadow: 0 1px 4px rgba(0,0,0,0.08); }

.quiz-field { display: flex; flex-direction: column; gap: 8px; }
.quiz-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}
.quiz-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--fg);
  background: var(--card);
  outline: none;
  transition: border-color 0.15s;
}
.quiz-input:focus { border-color: var(--accent); }
.quiz-textarea { resize: vertical; min-height: 120px; }
.quiz-hint { font-family: var(--font-head); font-size: 13px; color: var(--fg-muted); }
.quiz-link { color: var(--accent-dark); text-decoration: underline; }

.quiz-settings { display: flex; flex-direction: column; gap: 20px; }
.quiz-setting-group { display: flex; flex-direction: column; gap: 10px; }

.quiz-btn-group { display: flex; gap: 6px; }
.quiz-seg {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  background: var(--card);
  color: var(--fg-muted);
  transition: all 0.15s;
}
.quiz-seg.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.quiz-check-group { display: flex; gap: 16px; flex-wrap: wrap; }
.quiz-check-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  cursor: pointer;
}
.quiz-check { width: 16px; height: 16px; accent-color: var(--accent-dark); cursor: pointer; }

.quiz-form-footer { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.quiz-cta {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: var(--accent);
  color: var(--navy);
  transition: background 0.15s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.quiz-cta:hover:not(:disabled) { background: var(--accent-dark); color: #fff; }
.quiz-cta:disabled { opacity: 0.6; cursor: not-allowed; }
.quiz-cta-outline {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border: 2px solid var(--navy);
  border-radius: 10px;
  cursor: pointer;
  background: transparent;
  color: var(--navy);
  transition: all 0.15s;
}
.quiz-cta-outline:hover { background: var(--navy); color: #fff; }

.quiz-error {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: #dc2626;
  padding: 10px 14px;
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: 8px;
}
.quiz-spinner {
  width: 18px;
  height: 18px;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Progress */
.quiz-taking { padding: 48px 0 96px; }
.quiz-progress-wrap { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.quiz-progress-bar { height: 6px; background: var(--border); border-radius: 99px; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: var(--accent); border-radius: 99px; transition: width 0.4s ease; }
.quiz-progress-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-muted);
}

/* Question card */
.quiz-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.quiz-q-type {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-dark);
}
.quiz-q-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

/* MC options */
.quiz-mc-opts { display: flex; flex-direction: column; gap: 10px; }
.quiz-mc-btn {
  text-align: left;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  background: var(--bg);
  color: var(--fg);
  transition: all 0.12s;
}
.quiz-mc-btn:hover:not(.selected):not(.correct):not(.incorrect) {
  border-color: var(--accent);
  background: rgba(245,158,11,0.05);
}
.quiz-mc-btn.selected { border-color: var(--navy); background: rgba(15,23,42,0.05); font-weight: 600; }
.quiz-mc-btn.correct { border-color: #16a34a; background: rgba(22,163,74,0.08); color: #15803d; font-weight: 600; }
.quiz-mc-btn.incorrect { border-color: #dc2626; background: rgba(220,38,38,0.06); color: #dc2626; }

/* TF options */
.quiz-tf-opts { display: flex; gap: 12px; }
.quiz-tf-btn {
  flex: 1;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  padding: 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  background: var(--bg);
  color: var(--fg);
  transition: all 0.12s;
}
.quiz-tf-btn:hover:not(.selected):not(.correct):not(.incorrect) {
  border-color: var(--accent);
  background: rgba(245,158,11,0.05);
}
.quiz-tf-btn.selected { border-color: var(--navy); background: rgba(15,23,42,0.05); }
.quiz-tf-btn.correct { border-color: #16a34a; background: rgba(22,163,74,0.08); color: #15803d; }
.quiz-tf-btn.incorrect { border-color: #dc2626; background: rgba(220,38,38,0.06); color: #dc2626; }

/* Short answer */
.quiz-sa-wrap { display: flex; flex-direction: column; }
.quiz-sa-input { min-height: 100px; resize: vertical; }

/* Feedback */
.quiz-feedback {
  padding: 18px 20px;
  background: var(--bg-alt);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quiz-feedback-result {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
}
.quiz-feedback-result.correct { color: #16a34a; }
.quiz-feedback-result.incorrect { color: #dc2626; }
.quiz-feedback-correct {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: #15803d;
}
.quiz-feedback-explanation {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Actions */
.quiz-actions { display: flex; gap: 12px; }
.quiz-submit-btn {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: var(--navy);
  color: #fff;
  transition: opacity 0.15s;
}
.quiz-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.quiz-next-btn {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: var(--accent);
  color: var(--navy);
  transition: background 0.15s;
}
.quiz-next-btn:hover { background: var(--accent-dark); color: #fff; }
.quiz-ans-error {
  font-family: var(--font-head);
  font-size: 13px;
  color: #dc2626;
}

/* End screen */
.quiz-end { padding: 64px 0 96px; }
.quiz-score-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  margin-bottom: 32px;
}
.quiz-score-emoji { font-size: 56px; margin-bottom: 20px; line-height: 1; }
.quiz-score-num {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.quiz-score-pct {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.quiz-score-msg {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.quiz-end-actions { display: flex; gap: 12px; margin-bottom: 48px; }
.quiz-end-actions .quiz-cta { flex: 1; }
.quiz-end-actions .quiz-cta-outline { flex: 1; }

.quiz-missed-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}
.quiz-missed-list { display: flex; flex-direction: column; gap: 16px; }
.quiz-missed-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid #dc2626;
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quiz-missed-q { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.quiz-missed-your { font-family: var(--font-head); font-size: 13px; color: var(--fg-muted); }
.missed-your-ans { color: #dc2626; font-weight: 600; }
.quiz-missed-correct { font-family: var(--font-head); font-size: 13px; color: var(--fg-muted); }
.missed-correct-ans { color: #16a34a; font-weight: 600; }
.quiz-missed-exp { font-family: var(--font-body); font-size: 13px; color: var(--fg-muted); line-height: 1.6; margin-top: 6px; }

/* Nav link additions */
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link-cta {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  background: var(--accent);
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.15s;
}
.nav-link-cta:hover { background: var(--accent-dark); color: #fff; }

/* === MOBILE === */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-headline { font-size: 36px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .how-inner { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 24px; }
  .nav-tagline { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stat-div { display: none; }
  .hero-stat { padding: 0; }
  .outcomes .outcome-num { font-size: 40px; }
}
@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 30px; letter-spacing: -1px; }
  .section-headline { font-size: 28px; letter-spacing: -1px; }
}
/* === PRICING PAGE === */
.pricing-page { padding: 64px 0 120px; }
.pricing-container { max-width: 1000px; margin: 0 auto; padding: 0 32px; }

.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.pricing-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}
.pricing-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 48px; }
.billing-option { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--fg-muted); cursor: pointer; transition: color 0.15s; }
.billing-option.active { color: var(--navy); }
.toggle-track { width: 44px; height: 24px; background: var(--border); border-radius: 99px; position: relative; cursor: pointer; transition: background 0.2s; }
.toggle-track.annual { background: var(--accent); }
.toggle-thumb { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.toggle-track.annual .toggle-thumb { transform: translateX(20px); }
.save-badge { font-family: var(--font-head); font-size: 11px; font-weight: 700; background: rgba(245,158,11,0.15); color: var(--accent-dark); padding: 2px 8px; border-radius: 99px; }

.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
.plan-card { background: var(--card); border: 1.5px solid var(--border); border-radius: 20px; padding: 40px 36px; display: flex; flex-direction: column; }
.plan-card.featured { border-color: var(--accent); box-shadow: 0 8px 40px rgba(245,158,11,0.12); position: relative; }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-family: var(--font-head); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; background: var(--accent); color: var(--navy); padding: 4px 14px; border-radius: 99px; white-space: nowrap; }
.plan-name { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.plan-tagline { font-family: var(--font-body); font-size: 14px; color: var(--fg-muted); margin-bottom: 28px; line-height: 1.5; }
.plan-price-row { margin-bottom: 8px; }
.plan-price { font-family: var(--font-head); font-size: 48px; font-weight: 800; color: var(--navy); letter-spacing: -2px; line-height: 1; }
.plan-price sup { font-size: 22px; font-weight: 700; vertical-align: top; margin-top: 8px; display: inline-block; letter-spacing: 0; }
.plan-period { font-family: var(--font-head); font-size: 14px; color: var(--fg-muted); margin-bottom: 28px; }
.plan-price-annual { display: none; }
.plan-cta { font-family: var(--font-head); font-size: 15px; font-weight: 700; padding: 14px 24px; border-radius: 10px; border: none; cursor: pointer; width: 100%; margin-bottom: 32px; transition: all 0.15s; }
.plan-cta-free { background: var(--bg-alt); color: var(--navy); border: 1.5px solid var(--border); }
.plan-cta-free:hover { background: var(--border); }
.plan-cta-pro { background: var(--accent); color: var(--navy); }
.plan-cta-pro:hover:not(:disabled) { background: var(--accent-dark); color: #fff; }
.plan-cta-pro:disabled { opacity: 0.6; cursor: not-allowed; }
.plan-features { display: flex; flex-direction: column; gap: 12px; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-head); font-size: 14px; color: var(--fg); line-height: 1.4; }
.check-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: #16a34a; }
.x-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--fg-muted); opacity: 0.5; }

.comparison-wrap { margin-bottom: 56px; }
.comparison-title { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 24px; text-align: center; }
.comparison-table { width: 100%; border-collapse: collapse; border-radius: 16px; overflow: hidden; border: 1.5px solid var(--border); }
.comparison-table th { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-align: left; padding: 16px 24px; background: var(--bg-alt); color: var(--navy); }
.comparison-table th:not(:first-child) { text-align: center; }
.comparison-table td { font-family: var(--font-head); font-size: 14px; padding: 14px 24px; border-top: 1px solid var(--border); color: var(--fg); }
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table tr:hover td { background: var(--bg-alt); }
.td-check { color: #16a34a; font-size: 18px; }
.td-x { color: var(--fg-muted); opacity: 0.4; font-size: 18px; }
.td-highlight { font-weight: 700; color: var(--navy); }
.competitor-note { font-family: var(--font-head); font-size: 13px; color: var(--fg-muted); text-align: center; margin-top: 12px; font-style: italic; }
.competitor-note strong { color: var(--accent-dark); }

.faq-wrap { max-width: 680px; margin: 0 auto; }
.faq-title { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 32px; letter-spacing: -0.5px; }
.faq-item { border-top: 1px solid var(--border); padding: 20px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.faq-a { font-family: var(--font-body); font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

@media (max-width: 700px) {
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { padding: 32px 24px; }
  .comparison-table th, .comparison-table td { padding: 12px 14px; font-size: 13px; }
}
