:root {
  --navy: #0F2A4A;
  --navy-light: #1B4778;
  --navy-dark: #08182C;
  --gold: #C9A961;
  --gold-dark: #9C8240;
  --gold-light: #E8D49A;
  --cream: #FAF7F0;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --red: #B91C1C;
  --green: #047857;
  --brand-gradient: linear-gradient(135deg, #0F2A4A 0%, #1B4778 100%);
  --gold-gradient: linear-gradient(135deg, #C9A961 0%, #9C8240 100%);
  --shadow-sm: 0 1px 3px rgba(15,42,74,0.08);
  --shadow-md: 0 4px 12px rgba(15,42,74,0.10);
  --shadow-lg: 0 12px 32px rgba(15,42,74,0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--navy); text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }

/* ===== NAV ===== */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: var(--navy); }
.brand-name { letter-spacing: -0.3px; }
.brand-name .accent { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--gray-700); }
.nav-links a:hover { color: var(--navy); }
.nav-links a.nav-cta,
.nav-cta {
  background: var(--brand-gradient);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s;
}
.nav-cta:hover { transform: translateY(-1px); color: #fff; }
@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ===== HERO ===== */
.hero {
  padding: 64px 0 48px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,169,97,0.12), transparent);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(201,169,97,0.15);
  color: var(--gold-dark);
  padding: 6px 14px;
  border-radius: 24px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(201,169,97,0.3);
}
.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 .gold { color: var(--gold-dark); }
.hero-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto 28px;
}
.hero-stats {
  display: flex; justify-content: center; gap: 24px;
  margin: 24px 0 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 28px; font-weight: 900; color: var(--navy); display: block; }
.hero-stat .lbl { font-size: 12px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; }
.hero-cta {
  display: inline-block;
  background: var(--brand-gradient);
  color: #fff;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 16px; font-weight: 800;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hero-note { display: block; margin-top: 14px; font-size: 13px; color: var(--gray-600); }

/* ===== SECTION ===== */
section { padding: 56px 0; }
.section-head { text-align: center; margin-bottom: 36px; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.section-head p { color: var(--gray-600); max-width: 560px; margin: 0 auto; }

/* ===== CARDS ===== */
.cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 1px 3px rgba(15,42,74,0.06);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.card-icon {
  width: 44px; height: 44px;
  background: rgba(15,42,74,0.06);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.card h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ===== PROBLEM SECTION ===== */
.problem { background: #fff; }
.problem .card { background: var(--cream); border-color: rgba(185,28,28,0.15); }
.problem .card-icon { background: rgba(185,28,28,0.08); color: var(--red); }

/* ===== STEPS ===== */
.steps {
  background: var(--navy);
  color: #fff;
}
.steps .section-head h2 { color: #fff; }
.steps .section-head p { color: rgba(255,255,255,0.75); }
.steps .section-eyebrow { color: var(--gold-light); }
.steps-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 24px;
}
.step-num {
  width: 36px; height: 36px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 900; color: #fff;
  margin-bottom: 12px;
}
.step h3 { font-size: 17px; margin-bottom: 6px; color: #fff; }
.step p { color: rgba(255,255,255,0.75); font-size: 14px; }

/* ===== PRICING ===== */
.pricing { background: var(--cream); }
.price-card {
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 18px;
  padding: 40px 32px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #fff;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 1px;
}
.price-card h3 { color: var(--navy); font-size: 22px; margin-bottom: 6px; }
.price-card .tagline { color: var(--gray-600); font-size: 14px; margin-bottom: 24px; }
.price-amount {
  font-size: 56px; font-weight: 900; color: var(--navy);
  letter-spacing: -2px; line-height: 1;
}
.price-amount .currency { font-size: 24px; vertical-align: top; margin-right: 4px; }
.price-old { color: var(--gray-400); text-decoration: line-through; font-size: 18px; margin-top: 6px; }
.price-features { list-style: none; text-align: left; margin: 28px 0; padding: 0; }
.price-features li { padding: 8px 0; padding-left: 28px; position: relative; font-size: 14px; }
.price-features li::before {
  content: '✓';
  position: absolute; left: 0;
  width: 20px; height: 20px;
  background: var(--gold-gradient);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800;
}
.price-cta {
  display: block;
  width: 100%;
  background: var(--brand-gradient);
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px; font-weight: 800;
  border: none;
  cursor: pointer;
  transition: transform 0.15s;
}
.price-cta:hover { transform: translateY(-1px); }
.price-guarantee { font-size: 12px; color: var(--gray-600); margin-top: 14px; }

/* ===== FAQ ===== */
.faq { background: #fff; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
}
.faq-q {
  font-weight: 700; color: var(--navy);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
}
.faq-q::after { content: '+'; font-size: 22px; color: var(--gold); transition: transform 0.2s; }
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 12px 0 0; color: var(--gray-700); font-size: 15px; line-height: 1.7; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 36px 0 24px;
  font-size: 13px;
}
.footer-inner { text-align: center; }
.footer-brand { color: #fff; font-weight: 800; margin-bottom: 8px; }
.footer a { color: var(--gold-light); }

/* ===== APP / QUIZ PAGE ===== */
.app-shell {
  min-height: 100vh;
  background: var(--cream);
  display: flex; flex-direction: column;
}
.app-header {
  background: var(--navy);
  color: #fff;
  padding: 14px 0;
}
.app-header-inner { display: flex; justify-content: space-between; align-items: center; }
.app-header .brand { color: #fff; }
.app-header .brand-name .accent { color: var(--gold-light); }
.app-status {
  font-size: 13px;
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
}
.app-status.locked { background: rgba(201,169,97,0.2); color: var(--gold-light); }
.app-status.unlocked { background: rgba(34,197,94,0.2); color: #86efac; }

.progress-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  margin: 24px 0 32px;
}
.progress-fill {
  height: 100%;
  background: var(--gold-gradient);
  width: 0%;
  transition: width 0.4s;
}

.question-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin: 0 auto;
}
.question-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--gray-600);
}
.question-cat {
  background: rgba(15,42,74,0.08);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 700; font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.question-text {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 28px;
}
.options { display: flex; flex-direction: column; gap: 10px; }
.option {
  background: #fff;
  border: 2px solid #C5CCD6;
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: var(--gray-900);
  transition: all 0.15s;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 1px 2px rgba(15,42,74,0.04);
}
.option:hover { border-color: var(--gold); background: #fffaf0; box-shadow: 0 4px 10px rgba(201,169,97,0.18); }
.option.selected { border-color: var(--navy); background: rgba(15,42,74,0.06); box-shadow: 0 4px 10px rgba(15,42,74,0.18); }
.option-letter {
  width: 30px; height: 30px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px;
  color: var(--navy);
  flex-shrink: 0;
  background: #fff;
}
.option.selected .option-letter {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.feedback-card {
  background: linear-gradient(135deg, var(--cream), #fff);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 20px 22px;
  margin-top: 20px;
}
.feedback-head {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; color: var(--navy);
  margin-bottom: 8px; font-size: 14px;
}
.feedback-text {
  font-size: 14px; color: var(--gray-700); line-height: 1.6;
}
.feedback-loading { font-size: 14px; color: var(--gray-600); font-style: italic; }

.app-actions {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 24px;
}
.btn {
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700; font-size: 15px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand-gradient); color: #fff; box-shadow: var(--shadow-sm); }
.btn-secondary { background: #fff; color: var(--navy); border: 2px solid var(--navy); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ===== PAYWALL MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(8,24,44,0.85);
  display: none;
  align-items: center; justify-content: center;
  z-index: 1000;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.show { display: flex; }
.modal {
  background: #fff;
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
}
.modal-eyebrow {
  display: inline-block;
  background: var(--gold-gradient);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.modal h2 {
  color: var(--navy);
  font-size: 26px;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.modal p { color: var(--gray-600); font-size: 15px; margin-bottom: 24px; }
.modal-features {
  background: var(--cream);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  text-align: left;
  list-style: none;
}
.modal-features li {
  padding: 6px 0;
  padding-left: 26px;
  position: relative;
  font-size: 14px;
  color: var(--gray-700);
}
.modal-features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold-dark);
  font-weight: 900;
}
.modal-price {
  display: flex; justify-content: center; align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.modal-price .now {
  font-size: 44px; font-weight: 900; color: var(--navy);
  letter-spacing: -1px;
}
.modal-price .now .currency { font-size: 20px; vertical-align: top; }
.modal-price .old {
  font-size: 18px; color: var(--gray-400);
  text-decoration: line-through;
}
.modal-cta {
  display: block; width: 100%;
  background: var(--brand-gradient);
  color: #fff;
  padding: 18px;
  border-radius: 12px;
  font-size: 16px; font-weight: 800;
  border: none;
  cursor: pointer;
  transition: transform 0.15s;
}
.modal-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.modal-close {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.modal-close:hover { background: var(--gray-200); color: var(--navy); }
.modal-guarantee { font-size: 12px; color: var(--gray-600); margin-top: 14px; }

/* ===== REPORT ===== */
.report-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin: 0 auto;
}
.report-score {
  text-align: center;
  background: var(--brand-gradient);
  color: #fff;
  padding: 28px;
  border-radius: 14px;
  margin-bottom: 28px;
}
.report-score .num { font-size: 56px; font-weight: 900; line-height: 1; }
.report-score .lbl { font-size: 14px; opacity: 0.85; margin-top: 6px; }
.report-bars { margin-top: 20px; }
.report-bar { margin-bottom: 14px; }
.report-bar-head {
  display: flex; justify-content: space-between;
  font-size: 13px; font-weight: 700;
  margin-bottom: 6px;
}
.report-bar-track {
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}
.report-bar-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 4px;
  transition: width 0.6s;
}
