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

  :root {
    --navy: #1B3A5C;
    --navy-dark: #122840;
    --gold: #C9952B;
    --gold-light: #E8B84B;
    --off-white: #F8F6F1;
    --light-blue: #EBF2FA;
    --text: #1A1A1A;
    --muted: #5A6A7A;
    --border: #D8E4EF;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Georgia, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
  }

  /* ── NAV ── */
  nav {
    background: var(--off-white);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 260px;
    border-bottom: 1px solid var(--border);
  }

  .logo { display: flex; align-items: center; text-decoration: none; }
  .logo img { height: 240px; width: auto; }

  .nav-cta {
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--gold-light); color: var(--navy); }

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    color: #fff;
    padding: 88px 5% 80px;
    text-align: center;
  }

  .hero-eyebrow {
    display: inline-block;
    background: rgba(201,149,43,0.18);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    max-width: 800px;
    margin: 0 auto 24px;
    letter-spacing: -0.02em;
  }

  .hero h1 em { color: var(--gold); font-style: normal; }

  .hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.72);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.75;
  }

  .hero-cta {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 18px 44px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
    margin-bottom: 16px;
  }
  .hero-cta:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); }

  .hero-note {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
  }

  /* ── ANIMATED STATS BAR ── */
  .stats-bar {
    background: var(--gold);
    padding: 32px 5%;
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
  }

  .stat-item {
    text-align: center;
    color: var(--navy-dark);
    padding: 8px 40px;
    border-right: 1px solid rgba(27,58,92,0.2);
  }
  .stat-item:last-child { border-right: none; }

  .stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.05;
    font-variant-numeric: tabular-nums;
  }

  .stat-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-top: 4px;
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ── PROBLEM SECTION ── */
  .problem {
    padding: 80px 5%;
    background: #fff;
  }

  .problem-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .section-label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }

  .problem h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .problem .lead {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto 52px;
  }

  .pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    text-align: left;
  }

  .pain-card {
    background: var(--off-white);
    border-radius: 14px;
    padding: 32px 28px;
    border-top: 3px solid var(--gold);
  }

  .pain-big {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }

  .pain-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .pain-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
  }

  .pain-source {
    font-size: 0.72rem;
    color: var(--muted);
    opacity: 0.6;
    margin-top: 10px;
    font-style: italic;
  }

  /* ── WHAT WE DO ── */
  .solution {
    background: var(--navy);
    color: #fff;
    padding: 80px 5%;
    text-align: center;
  }

  .solution-inner { max-width: 840px; margin: 0 auto; }

  .solution .section-label { color: var(--gold-light); }

  .solution h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }

  .solution .lead {
    color: rgba(255,255,255,0.68);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 48px;
  }

  .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    text-align: left;
  }

  .solution-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 28px 24px;
  }

  .solution-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 8px;
  }

  .solution-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
  }

  /* ── PROOF / RESULT ── */
  .proof {
    padding: 80px 5%;
    background: var(--off-white);
  }

  .proof-inner { max-width: 840px; margin: 0 auto; }

  .proof h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }

  .proof .lead {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 36px;
  }

  .result-box {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 5px solid var(--gold);
    border-radius: 0 14px 14px 0;
    padding: 36px 40px;
  }

  .result-box p {
    font-size: 1.05rem;
    color: var(--navy);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .result-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
  }

  .rs-item strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.1;
  }

  .rs-item span {
    font-size: 0.76rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
  }

  /* ── HOW IT WORKS ── */
  .how {
    padding: 80px 5%;
    background: #fff;
  }

  .how-inner { max-width: 840px; margin: 0 auto; }

  .how h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }

  .how .lead {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 44px;
  }

  .step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
  }

  .step-card {
    background: var(--off-white);
    border-radius: 14px;
    padding: 32px 24px;
    position: relative;
  }

  .step-num {
    width: 38px;
    height: 38px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .step-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ── OFFER BOX ── */
  .offer-section { padding: 80px 5%; }

  .offer-inner { max-width: 840px; margin: 0 auto; }

  .offer-box {
    background: var(--navy);
    color: #fff;
    border-radius: 18px;
    padding: 60px 52px;
    text-align: center;
  }

  .offer-box .section-label { color: var(--gold-light); }

  .offer-box h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }

  .offer-box .lead {
    color: rgba(255,255,255,0.68);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 36px;
  }

  .offer-bullets {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin: 0 auto 40px;
  }

  .offer-bullets li {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .bullet-wheat {
    height: 20px;
    width: auto;
    flex-shrink: 0;
    opacity: 0.9;
  }

  .offer-guarantee {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    font-style: italic;
    background: rgba(201,149,43,0.15);
    border: 1px solid rgba(201,149,43,0.3);
    border-radius: 8px;
    padding: 14px 20px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .offer-cta {
    display: block;
    background: var(--gold);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 18px 44px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
    max-width: 360px;
    margin: 0 auto 14px;
  }
  .offer-cta:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); }

  .offer-fine {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
  }

  /* ── QUIZ CALLOUT ── */
  .quiz-callout {
    background: var(--off-white);
    padding: 80px 5%;
    text-align: center;
  }

  .quiz-callout-inner { max-width: 640px; margin: 0 auto; }

  .quiz-callout h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }

  .quiz-callout p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 32px;
  }

  .quiz-btn {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 18px 44px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
  }
  .quiz-btn:hover { background: var(--navy-dark); transform: translateY(-2px); }

  .quiz-meta {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 14px;
    opacity: 0.7;
  }

  /* ── PRICING ── */
  .pricing {
    padding: 80px 5%;
    background: #fff;
    text-align: center;
  }

  .pricing-inner { max-width: 900px; margin: 0 auto; }

  .pricing h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }

  .pricing .lead {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 44px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    text-align: left;
  }

  .price-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 26px;
    background: #fff;
  }

  .price-card.featured {
    border: 2px solid var(--navy);
    background: var(--light-blue);
  }

  .price-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .price-card.featured .price-label { color: var(--gold); }

  .price-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
  }

  .price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
  }

  .price-period {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 16px;
  }

  .price-desc {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .price-cta {
    display: block;
    text-align: center;
    background: var(--navy);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
  }
  .price-cta:hover { background: var(--mid-blue); }
  .price-card.featured .price-cta {
    background: var(--gold);
    color: var(--navy);
  }
  .price-card.featured .price-cta:hover { background: #b8841f; }

  .pricing-alacarte {
    margin-top: 40px;
    border-top: 1px solid var(--border);
    padding-top: 32px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  .alacarte-head {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
  }
  .alacarte-grid { display: flex; flex-direction: column; gap: 10px; }
  .alacarte-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.92rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
  }
  .alacarte-item:last-child { border-bottom: none; }
  .alacarte-name { color: var(--navy); font-weight: 600; }
  .alacarte-price { color: var(--navy); font-weight: 700; }
  .alacarte-std { font-size: 0.78rem; color: var(--muted); font-weight: 400; }

  .result-attribution {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
  }

  .problem-close {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-top: 32px;
    font-style: italic;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.5);
    padding: 40px 5%;
    text-align: center;
    font-size: 0.85rem;
  }

  footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
  footer a:hover { color: var(--gold); }
  footer strong { color: rgba(255,255,255,0.85); }

  /* ── COUNTER ANIMATION ── */
  .counting { transition: none; }

  @media (max-width: 680px) {
    .stats-bar { gap: 0; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(27,58,92,0.2); width: 50%; padding: 20px 16px; }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(27,58,92,0.2); }
    .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
    .offer-box { padding: 40px 28px; }
    .result-box { padding: 28px 24px; }

    /* ── NAV: fixed 260px height + 240px logo was overflowing mobile screens ── */
    nav {
      height: auto;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 16px 5%;
    }
    .logo img { height: 180px; }
    .nav-links {
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px 16px;
    }
    .nav-links a.nav-link { font-size: 0.9rem; }
    .nav-cta {
      font-size: 0.9rem;
      padding: 10px 18px;
      width: 100%;
      text-align: center;
    }

    .hero { padding: 56px 6% 56px; }
    .hero-sub { font-size: 1rem; }

    .offer-bullets { display: block; text-align: left; }

    .result-stats { gap: 20px; }

    .price-card { padding: 26px 20px; }

    .page-hero { padding: 40px 6% 36px; }
  }

/* ── BREADCRUMB (added for FAQ / guide pages) ── */
.breadcrumb {
  max-width: 900px;
  margin: 18px auto 0;
  padding: 0 5%;
  font-size: 0.82rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--navy); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

/* ── PAGE HERO (secondary pages) ── */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 56px 5% 48px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 760px;
  margin: 0 auto 16px;
  letter-spacing: -0.02em;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── FAQ ACCORDION ── */
.faq-section { padding: 64px 5%; background: #fff; }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: var(--off-white);
  border: none;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
  position: relative;
  padding-right: 48px;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 400;
}
.faq-q.open::after { content: "\2212"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; background: #fff; }
.faq-a.open { max-height: 500px; }
.faq-a p { padding: 0 24px 20px; font-size: 0.92rem; color: var(--muted); line-height: 1.75; margin: 0; }

/* ── ARTICLE / GUIDE PROSE ── */
.article-section { padding: 64px 5%; background: #fff; }
.article-inner { max-width: 720px; margin: 0 auto; }
.article-inner h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
}
.article-inner h2:first-child { margin-top: 0; }
.article-inner p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-inner ul { margin: 0 0 18px 22px; }
.article-inner li { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 8px; }
.article-cta {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 36px 0;
}
.article-cta p { color: var(--navy); font-weight: 600; margin-bottom: 14px; }
.article-cta a {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
}
.article-cta a:hover { background: var(--gold-light); color: var(--navy); }

/* ── SIMPLE NAV LINKS (secondary nav items) ── */
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a.nav-link { color: var(--navy); text-decoration: none; font-size: 1.1rem; font-weight: 600; }
.nav-links a.nav-link:hover { color: var(--gold); }
