@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg: #0a1628;
  --bg2: #0f1f35;
  --bg3: #132840;
  --accent: #0066ff;
  --accent-hover: #0052cc;
  --green: #00c853;
  --red: #ff1744;
  --warning: #ffab00;
  --text: #ffffff;
  --muted: #8ba4bf;
  --border: #1a3050;
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── HEADER ── */
.site-header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.logo { font-size: 1.5rem; font-weight: 800; color: var(--text); letter-spacing: -0.5px; text-decoration: none; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 0.9rem; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 28px; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: opacity 0.15s, transform 0.1s, background 0.15s;
  text-decoration: none; gap: 8px; white-space: nowrap;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); opacity: 1; }
.btn-outline { background: transparent; border: 2px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: rgba(0,102,255,0.1); opacity: 1; }
.btn-lg { min-height: 56px; padding: 14px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }
.btn-sm { min-height: 36px; padding: 8px 16px; font-size: 0.875rem; }

/* ── HERO ── */
.hero { padding: 80px 24px 64px; text-align: center; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,102,255,0.12); color: var(--accent);
  border: 1px solid rgba(0,102,255,0.3); border-radius: 20px;
  padding: 6px 16px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 24px; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.5px;
}
.hero h1 .accent { color: var(--accent); }
.hero p { font-size: 1.1rem; color: var(--muted); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── STATS BAR ── */
.stats-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; padding: 18px 24px;
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.stats-bar-item { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.875rem; font-weight: 500; }
.stats-bar-item strong { color: var(--text); }

/* ── SECTION ── */
.section { padding: 64px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; text-align: center; letter-spacing: -0.3px; }
.section-sub { color: var(--muted); text-align: center; margin-bottom: 48px; font-size: 1rem; }

/* ── CARDS GRID ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.cat-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit;
}
.cat-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,102,255,0.15); text-decoration: none; color: inherit; }
.cat-icon { font-size: 2.2rem; }
.cat-card h3 { font-size: 1.1rem; font-weight: 700; }
.cat-card p { color: var(--muted); font-size: 0.875rem; flex: 1; line-height: 1.6; }
.cat-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.meta-pill { background: var(--bg3); border: 1px solid var(--border); border-radius: 20px; padding: 3px 10px; font-size: 0.75rem; color: var(--muted); }
.cat-price { font-size: 1.4rem; font-weight: 700; color: var(--accent); font-family: var(--font-mono); }
.cat-price span { font-size: 0.8rem; color: var(--muted); font-weight: 400; font-family: var(--font); }

/* ── EMAIL CAPTURE ── */
.email-banner {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 32px; text-align: center;
}
.email-banner h2 { font-size: 1.4rem; margin-bottom: 8px; font-weight: 700; }
.email-banner p { color: var(--muted); margin-bottom: 24px; }
.email-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.email-form input {
  flex: 1; min-width: 200px; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-family: var(--font);
  font-size: 1rem; padding: 12px 16px; min-height: 48px;
}
.email-form input:focus { outline: none; border-color: var(--accent); }
.email-form input::placeholder { color: var(--muted); }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.testimonial-stars { color: #ffd700; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { color: var(--muted); font-size: 0.875rem; margin-bottom: 16px; font-style: italic; line-height: 1.7; }
.testimonial-author { font-weight: 700; font-size: 0.875rem; }
.testimonial-location { color: var(--muted); font-size: 0.8rem; margin-top: 2px; }

/* ── FAQ ACCORDION (home page inline) ── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--accent); }
.faq-question {
  width: 100%; background: none; border: none; color: var(--text);
  font-family: var(--font); font-size: 0.95rem; font-weight: 600;
  padding: 18px 20px; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 56px;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron { font-size: 1rem; color: var(--muted); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 20px 18px; color: var(--muted); font-size: 0.875rem; line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── FOOTER ── */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 40px 24px; text-align: center; color: var(--muted); font-size: 0.875rem; }
footer .footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 16px; flex-wrap: wrap; }
footer .footer-links a { color: var(--muted); font-weight: 500; }
footer .footer-links a:hover { color: var(--text); text-decoration: none; }
footer .disclaimer { max-width: 700px; margin: 16px auto 0; font-size: 0.78rem; line-height: 1.6; opacity: 0.7; }

/* ── TEST ENGINE ── */
#app { max-width: 800px; margin: 0 auto; padding: 24px; }

/* TIMER BAR */
.timer-bar {
  position: sticky; top: 64px; background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 10px 24px; z-index: 90; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.timer-display { font-family: var(--font-mono); font-size: 1.3rem; font-weight: 700; color: var(--accent); min-width: 60px; }
.timer-display.warning { color: var(--warning); }
.timer-display.urgent { color: var(--red); animation: pulse 1s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.5; } }
.progress-indicator { color: var(--muted); font-size: 0.8rem; white-space: nowrap; font-family: var(--font-mono); }
.progress-bar-wrap { flex: 1; background: var(--bg3); border-radius: 4px; height: 4px; max-width: 200px; }
.progress-bar-fill { height: 100%; background: var(--accent); border-radius: 4px; transition: width 0.3s; }

/* QUESTION CARD */
.question-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; margin: 24px 0; }
.question-meta { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; align-items: center; }
.q-number { color: var(--muted); font-size: 0.8rem; font-family: var(--font-mono); }
.q-type { background: rgba(0,102,255,0.12); color: var(--accent); border-radius: 20px; padding: 2px 12px; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.q-difficulty { display: flex; gap: 3px; align-items: center; }
.diff-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); }
.diff-dot.filled { background: var(--warning); }
.question-text { font-size: 1.05rem; font-weight: 600; line-height: 1.6; margin-bottom: 24px; }
.passage { background: var(--bg3); border-left: 3px solid var(--accent); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 14px 18px; margin-bottom: 20px; font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* OPTIONS */
.options-list { display: flex; flex-direction: column; gap: 10px; }
.option-btn {
  width: 100%; min-height: 52px; background: var(--bg3); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-family: var(--font);
  font-size: 0.95rem; font-weight: 500; padding: 14px 18px; text-align: left;
  cursor: pointer; transition: border-color 0.15s, background 0.15s; display: flex; align-items: center; gap: 14px;
}
.option-btn:hover:not(:disabled) { border-color: var(--accent); background: rgba(0,102,255,0.06); }
.option-btn:disabled { cursor: default; }
.option-btn.correct { border-color: var(--green); background: rgba(0,200,83,0.1); }
.option-btn.wrong { border-color: var(--red); background: rgba(255,23,68,0.1); }
.option-letter {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%; background: var(--bg2);
  border: 1.5px solid var(--border); font-weight: 700; font-size: 0.82rem;
  flex-shrink: 0; font-family: var(--font-mono);
}
.option-btn.correct .option-letter { background: var(--green); border-color: var(--green); color: #fff; }
.option-btn.wrong .option-letter { background: var(--red); border-color: var(--red); color: #fff; }

/* EXPLANATION */
.explanation-box { margin-top: 16px; padding: 14px 18px; background: var(--bg3); border-radius: var(--radius-sm); border: 1px solid var(--border); font-size: 0.875rem; line-height: 1.7; }
.explanation-box .label { font-weight: 700; margin-bottom: 6px; }
.explanation-box.correct-exp { border-color: rgba(0,200,83,0.4); }
.explanation-box.correct-exp .label { color: var(--green); }
.explanation-box.wrong-exp { border-color: rgba(255,23,68,0.4); }
.explanation-box.wrong-exp .label { color: var(--red); }
.next-btn-wrap { margin-top: 20px; display: flex; justify-content: flex-end; }

/* RESULTS */
.results-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 32px; text-align: center; margin: 24px 0; }
.score-circle { width: 140px; height: 140px; border-radius: 50%; border: 6px solid var(--accent); display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto 20px; }
.score-circle.pass { border-color: var(--green); }
.score-circle.fail { border-color: var(--red); }
.score-pct { font-size: 2.2rem; font-weight: 700; color: var(--accent); line-height: 1; font-family: var(--font-mono); }
.score-circle.pass .score-pct { color: var(--green); }
.score-circle.fail .score-pct { color: var(--red); }
.score-label { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.pass-badge { display: inline-block; padding: 5px 18px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.pass-badge.pass { background: rgba(0,200,83,0.12); color: var(--green); border: 1px solid rgba(0,200,83,0.3); }
.pass-badge.fail { background: rgba(255,23,68,0.12); color: var(--red); border: 1px solid rgba(255,23,68,0.3); }
.results-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 20px 0; }
.stat-box { background: var(--bg3); border-radius: var(--radius-sm); padding: 14px; }
.stat-val { font-size: 1.3rem; font-weight: 700; color: var(--text); font-family: var(--font-mono); }
.stat-lbl { font-size: 0.75rem; color: var(--muted); margin-top: 4px; }

/* TYPE BREAKDOWN */
.type-breakdown { text-align: left; margin: 20px 0; }
.type-breakdown h4 { font-size: 0.78rem; color: var(--muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.type-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.type-name { font-size: 0.8rem; color: var(--muted); width: 90px; flex-shrink: 0; }
.type-bar-wrap { flex: 1; background: var(--bg3); border-radius: 4px; height: 7px; }
.type-bar { height: 100%; border-radius: 4px; background: var(--accent); transition: width 0.6s ease; }
.type-bar.good { background: var(--green); }
.type-bar.poor { background: var(--red); }
.type-pct { font-size: 0.75rem; font-family: var(--font-mono); color: var(--text); width: 34px; text-align: right; flex-shrink: 0; }

/* DASHBOARD */
.dashboard { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; margin: 24px 0; }
.dashboard h3 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.dashboard-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
.chart-wrap { margin-top: 8px; }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 80px; padding-bottom: 20px; }
.chart-bar-col { display: flex; flex-direction: column; align-items: center; flex: 1; height: 100%; }
.chart-bar { width: 100%; background: var(--accent); border-radius: 4px 4px 0 0; min-height: 4px; transition: height 0.5s; position: relative; }
.chart-bar-lbl { font-size: 0.68rem; color: var(--muted); margin-top: 4px; font-family: var(--font-mono); }
.chart-bar-pct { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); font-size: 0.65rem; font-weight: 700; color: var(--text); white-space: nowrap; font-family: var(--font-mono); }
.recommendation { background: rgba(0,102,255,0.07); border: 1px solid rgba(0,102,255,0.2); border-radius: var(--radius-sm); padding: 14px 18px; font-size: 0.875rem; margin-top: 16px; line-height: 1.65; }
.recommendation strong { color: var(--accent); }

/* EMAIL GATE */
.email-gate { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 32px; text-align: center; margin: 24px 0; }
.email-gate h2 { font-size: 1.4rem; margin-bottom: 10px; font-weight: 700; }
.email-gate p { color: var(--muted); margin-bottom: 24px; }
.gate-form { max-width: 400px; margin: 0 auto; }
.gate-form input { width: 100%; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-family: var(--font); font-size: 1rem; padding: 14px 16px; margin-bottom: 12px; min-height: 48px; }
.gate-form input:focus { outline: none; border-color: var(--accent); }
.skip-link { display: block; margin-top: 12px; color: var(--muted); font-size: 0.875rem; cursor: pointer; }
.skip-link:hover { color: var(--text); }

/* PAYWALL */
.paywall { padding: 8px 0 32px; }
.paywall-header { text-align: center; margin-bottom: 36px; }
.paywall-header h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px; }
.paywall-header p { color: var(--muted); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; margin-bottom: 28px; }
.pricing-card { background: var(--bg2); border: 2px solid var(--border); border-radius: var(--radius); padding: 24px 20px; display: flex; flex-direction: column; gap: 14px; text-align: center; transition: border-color 0.2s, transform 0.2s; position: relative; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--accent); }
.featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.7rem; font-weight: 800; padding: 3px 14px; border-radius: 20px; text-transform: uppercase; white-space: nowrap; letter-spacing: 0.5px; }
.pricing-name { font-size: 0.875rem; font-weight: 600; color: var(--muted); }
.pricing-price { font-size: 2.2rem; font-weight: 800; color: var(--text); line-height: 1; font-family: var(--font-mono); }
.pricing-price span { font-size: 0.85rem; color: var(--muted); font-weight: 400; font-family: var(--font); }
.pricing-desc { color: var(--muted); font-size: 0.82rem; }
.pricing-features { list-style: none; text-align: left; }
.pricing-features li { padding: 4px 0; font-size: 0.85rem; color: var(--muted); }
.pricing-features li::before { content: "✓ "; color: var(--green); font-weight: 700; }
.guarantee-note { text-align: center; color: var(--muted); font-size: 0.875rem; margin-bottom: 32px; }
.guarantee-note strong { color: var(--text); }

/* PAGE CONTENT */
.page-hero { padding: 56px 24px 32px; max-width: 800px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.3px; }
.page-hero p { color: var(--muted); font-size: 1rem; margin-bottom: 24px; line-height: 1.75; }
.content-section { max-width: 800px; margin: 0 auto; padding: 0 24px 48px; }
.content-section h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; margin-top: 28px; }
.content-section p { color: var(--muted); margin-bottom: 14px; line-height: 1.75; font-size: 0.925rem; }
.content-section ul { color: var(--muted); padding-left: 24px; margin-bottom: 14px; }
.content-section ul li { margin-bottom: 6px; line-height: 1.7; font-size: 0.925rem; }
.warning-box { background: rgba(255,23,68,0.06); border: 1px solid rgba(255,23,68,0.25); border-radius: var(--radius-sm); padding: 14px 18px; margin: 18px 0; font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.warning-box strong { color: var(--red); }
.info-box { background: rgba(0,102,255,0.06); border: 1px solid rgba(0,102,255,0.2); border-radius: var(--radius-sm); padding: 14px 18px; margin: 18px 0; font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.info-box strong { color: var(--accent); }
.compare-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.875rem; }
.compare-table th, .compare-table td { padding: 10px 14px; text-align: left; border: 1px solid var(--border); }
.compare-table th { background: var(--bg3); font-weight: 700; font-size: 0.82rem; }
.compare-table td { background: var(--bg2); color: var(--muted); }
.compare-table .yes { color: var(--green); font-weight: 700; }
.compare-table .no { color: var(--red); }

/* INTRO SCREEN */
.intro-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 32px; margin: 24px 0; text-align: center; }
.intro-card h1 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; }
.intro-card p { color: var(--muted); margin-bottom: 8px; }
.info-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 20px 0 28px; }
.info-pill { background: var(--bg3); border: 1px solid var(--border); border-radius: 20px; padding: 5px 14px; font-size: 0.78rem; color: var(--muted); }

/* DRILL MODE */
.drill-section { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin: 24px 0; }
.drill-section h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.drill-section p { color: var(--muted); font-size: 0.875rem; margin-bottom: 16px; }
.drill-types { display: flex; gap: 10px; flex-wrap: wrap; }
.drill-type-btn { background: var(--bg3); border: 1.5px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-family: var(--font); font-size: 0.875rem; font-weight: 500; padding: 10px 18px; cursor: pointer; transition: border-color 0.15s, background 0.15s; min-height: 44px; }
.drill-type-btn:hover { border-color: var(--accent); background: rgba(0,102,255,0.08); }

/* REVIEW MODE */
.review-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.review-item { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px; }
.review-item.correct { border-left: 3px solid var(--green); }
.review-item.incorrect { border-left: 3px solid var(--red); }
.review-q { font-size: 0.875rem; font-weight: 600; margin-bottom: 8px; }
.review-meta { font-size: 0.78rem; color: var(--muted); margin-bottom: 6px; }
.review-answer { font-size: 0.82rem; line-height: 1.5; }
.review-answer .correct-ans { color: var(--green); font-weight: 600; }
.review-answer .your-ans { color: var(--red); }
.review-exp { font-size: 0.8rem; color: var(--muted); margin-top: 8px; line-height: 1.6; }

/* BUNDLE PROMO */
.bundle-promo { background: var(--bg2); border: 2px solid var(--accent); border-radius: var(--radius); padding: 28px 24px; margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* FAQ FLOATING BUTTON */
#faq-btn { position: fixed; bottom: 24px; right: 24px; width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: #fff; border: none; font-size: 1.2rem; font-weight: 700; cursor: pointer; z-index: 200; box-shadow: 0 4px 20px rgba(0,102,255,0.4); transition: transform 0.15s; display: flex; align-items: center; justify-content: center; font-family: var(--font); }
#faq-btn:hover { transform: scale(1.08); }
.faq-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 300; display: flex; align-items: flex-end; justify-content: center; padding: 16px; }
.faq-modal { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius) var(--radius) 0 0; padding: 32px 28px; width: 100%; max-width: 600px; max-height: 80vh; overflow-y: auto; }
.faq-modal h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.faq-item-modal { margin-bottom: 18px; }
.faq-item-modal .faq-q { font-weight: 700; margin-bottom: 6px; font-size: 0.9rem; }
.faq-item-modal .faq-a { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }
.faq-close { float: right; background: none; border: none; color: var(--muted); font-size: 1.5rem; cursor: pointer; line-height: 1; }

/* HAMBURGER */
.hamburger { display: none; background: none; border: 1.5px solid var(--border); color: var(--text); border-radius: var(--radius-sm); padding: 6px 12px; font-size: 1.2rem; cursor: pointer; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; flex-shrink: 0; }
.hamburger:hover { border-color: var(--accent); color: var(--accent); }

/* UTILITY */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-8{margin-top:8px} .mt-16{margin-top:16px} .mt-24{margin-top:24px}
.mb-8{margin-bottom:8px} .mb-16{margin-bottom:16px} .mb-24{margin-bottom:24px}
.hidden { display: none !important; }
.mono { font-family: var(--font-mono); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 8px 24px 16px; z-index: 99; gap: 0; }
  .nav-links.nav-open { display: flex; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 14px 0; font-size: 1rem; color: var(--text) !important; }
  .hero { padding: 40px 20px 32px; }
  .section { padding: 40px 16px; }
  .question-card { padding: 20px 16px; }
  .results-card { padding: 28px 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .dashboard-stats { grid-template-columns: repeat(2,1fr); }
  .email-form { flex-direction: column; }
  .email-form input { min-width: unset; }
  .faq-modal { border-radius: var(--radius); }
  .timer-bar { padding: 8px 16px; }
  .timer-display { font-size: 1.1rem; }
  .results-stats { grid-template-columns: 1fr; }
  .stat-box { display: flex; justify-content: space-between; align-items: center; }
  .intro-card { padding: 28px 16px; }
  .stats-bar { gap: 16px; }
  .bundle-promo { flex-direction: column; }
  #app { padding: 16px; }
}
@media (max-width: 480px) {
  .option-btn { min-height: 56px; font-size: 0.9rem; }
  .btn-lg { min-height: 52px; font-size: 0.95rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
