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

    :root {
      --navy:       #000000;
      --navy-mid:   #1a2e44;
      --gold:       #e8a020;
      --gold-light: #f5c04a;
      --teal:       #1a7a6e;
      --teal-light: #22a090;
      --off-white:  #f8f6f0;
      --warm-gray:  #f2ede4;
      --text-dark:  #1a1a2e;
      --text-body:  #2d3748;
      --text-muted: #5a6375;
      --white:      #ffffff;
      --radius:     8px;
      --radius-lg:  16px;
      --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
      --shadow-md:  0 6px 24px rgba(0,0,0,.12);
      --shadow-lg:  0 16px 48px rgba(0,0,0,.18);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Georgia', 'Times New Roman', serif;
      font-size: 22px;
      line-height: 1.75;
      color: var(--text-body);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a { color: inherit; text-decoration: none; }

    /* ===== TYPOGRAPHY ===== */
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Georgia', serif;
      color: var(--navy);
      line-height: 1.25;
      font-weight: 700;
    }
    h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
    h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
    h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: .75rem; }
    h4 { font-size: 1.3rem; }
    h5 { font-size: 1rem; }

    p { margin-bottom: 1rem; }
    p:last-child { margin-bottom: 0; }

    strong { font-weight: 700; color: var(--navy); }

    /* ===== LAYOUT ===== */
    .container {
      max-width:1360px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .container--wide {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }
    section { padding: 60px 0; }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-block;
      font-family: 'Arial', sans-serif;
      font-size: 1.7rem;
      font-weight: 700;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: .08em;
      padding: 16px 36px;
      border-radius: 50px;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      text-decoration: none;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn--gold {
      background: linear-gradient(135deg, #f5c04a 0%, #e8a020 60%, #c97d10 100%);
      color: var(--navy);
      box-shadow: 0 4px 20px rgba(232,160,32,.45);
    }
    .btn--gold:hover { box-shadow: 0 8px 32px rgba(232,160,32,.55); }
    .btn--teal {
      background: linear-gradient(135deg, #22a090 0%, #1a7a6e 100%);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(26,122,110,.35);
    }
    .btn--teal:hover { box-shadow: 0 8px 32px rgba(26,122,110,.45); }
    .btn--lg { font-size: 1.5rem; padding: 20px 52px; }
    .btn-wrap { text-align: center; margin-top: 32px; }

    /* ===== ANNOUNCEMENT BAR ===== */
    .announcement-bar {
      background: var(--navy);
      color: var(--gold-light);
      text-align: center;
      padding: 11px 20px;
      font-family: 'Arial', sans-serif;
      font-size: .88rem;
      font-weight: 600;
      letter-spacing: .03em;
    }
    .announcement-bar a {
      color: var(--gold-light);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .announcement-bar a:hover { color: #fff; }

    /* ===== HEADER / NAV ===== */
    .site-header {
      background: var(--white);
      border-bottom: 2px solid var(--warm-gray);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: var(--shadow-sm);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1100px;
      margin: 0 auto;
      padding: 14px 20px;
      gap: 16px;
    }
    .site-logo {
      font-family: 'Georgia', serif;
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--navy);
      white-space: nowrap;
    }
    .site-logo span { color: var(--teal); }
    .site-nav { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
    .site-nav a {
      font-family: 'Arial', sans-serif;
      font-size: .9rem;
      font-weight: 600;
      color: var(--text-body);
      text-transform: uppercase;
      letter-spacing: .06em;
      transition: color .15s;
    }
    .site-nav a:hover { color: var(--teal); }
    .header-cta .btn { font-size: .88rem; padding: 10px 22px; }

    /* ===== HERO ===== */
    .hero {
      background: linear-gradient(160deg, #0d1b2a 0%, #1a2e44 55%, #0e2a20 100%);
      padding: 72px 0 80px;
      text-align: center;
    }
    .hero h1 {
      color: var(--white);
      margin-bottom: 24px;
      
      margin-left: auto;
      margin-right: auto;
    }
    .hero h1 span { color: var(--gold-light); }
    .hero-sub {
      color: #c8d8e8;
      font-size: 1.3rem;
      max-width: 680px;
      margin: 0 auto 32px;
      font-family: 'Arial', sans-serif;
    }
    .hero-img {
      margin: 36px auto 40px;
      max-width: 420px;
      filter: drop-shadow(0 12px 36px rgba(0,0,0,.45));
    }
    .hero-social-proof {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,.09);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 50px;
      padding: 8px 20px;
      color: #a8d8b0;
      font-family: 'Arial', sans-serif;
      font-size: .88rem;
      font-weight: 600;
      margin-bottom: 32px;
    }
    .hero-social-proof::before {
      content: "✓";
      background: #2ecc71;
      color: #fff;
      border-radius: 50%;
      width: 20px; height: 20px;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: .75rem;
      flex-shrink: 0;
    }

    /* ===== INTRO SECTION ===== */
    .intro {
      background: var(--off-white);
      padding: 56px 0;
    }
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .intro-text h2 { color: var(--navy); }
    .intro-text p { color: var(--text-body); }
    .intro-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

    /* ===== REVIEWS ===== */
    .reviews { background: var(--white); }
    .reviews h2 { text-align: center; margin-bottom: 48px; }
    .review-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 32px;
    }
    .review-card {
      background: var(--warm-gray);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      border-left: 4px solid var(--teal);
      box-shadow: var(--shadow-sm);
    }
    .review-card img {
      width: 80px; height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 16px;
      border: 3px solid var(--teal-light);
    }
    .review-stars { color: var(--gold); font-size: 1.3rem; margin-bottom: 8px; }
    .review-text { font-size: 1.3rem; color: var(--text-body); margin-bottom: 16px; }
    .review-name { font-family: 'Arial', sans-serif; font-size: .88rem; font-weight: 700; color: var(--teal); }

    /* ===== WHAT IS ===== */
    .what-is { background: var(--navy); padding: 72px 0; }
    .what-is h2 { color: var(--gold-light); text-align: center; margin-bottom: 40px; }
    .what-is-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }
    .what-is-text p { color: #c8d8e8; }
    .what-is-text p strong { color: var(--gold-light); }
    .what-is-img { border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,.5); }

    /* ===== HOW IT WORKS ===== */
    .how-it-works { background: var(--off-white); }
    .how-it-works h2 { text-align: center; margin-bottom: 48px; }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 28px;
    }
    .step-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 32px 24px;
      text-align: center;
      box-shadow: var(--shadow-md);
      border-top: 4px solid var(--teal);
    }
    .step-icon {
      width: 60px; height: 60px;
      background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.5rem;
      color: #fff;
    }
    .step-card h3 { color: var(--navy); font-size: 1.7rem; margin-bottom: .5rem; }
    .step-card p { font-size: 1.3rem; color: var(--text-muted); }

    /* ===== CREATOR ===== */
    .creator { background: var(--white); }
    .creator h2 { text-align: center; margin-bottom: 40px; }
    .creator-box {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      border-radius: var(--radius-lg);
      padding: 48px;
      color: #c8d8e8;
    }
    .creator-box h3 { color: var(--gold-light); margin-bottom: 16px; }
    .creator-box p { margin-bottom: 1rem; }
    .creator-box strong { color: #fff; }

    /* ===== SCIENCE ===== */
    .science { background: var(--warm-gray); }
    .science h2 { text-align: center; margin-bottom: 40px; }
    .science-highlight {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px;
      border-left: 5px solid var(--gold);
      margin-bottom: 28px;
      box-shadow: var(--shadow-sm);
    }
    .science-highlight h3 { color: var(--navy); margin-bottom: 12px; }

    /* ===== BENEFITS ===== */
    .benefits { background: var(--white); }
    .benefits h2 { text-align: center; margin-bottom: 48px; }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
    }
    .benefit-card {
      padding: 32px 24px;
      border-radius: var(--radius-lg);
      background: var(--off-white);
      border-bottom: 4px solid var(--gold);
      box-shadow: var(--shadow-sm);
    }
    .benefit-icon { font-size: 2rem; margin-bottom: 14px; }
    .benefit-card h3 { font-size: 1.7rem; color: var(--navy); margin-bottom: 8px; }
    .benefit-card p { font-size: 1.3rem; color: var(--text-muted); }

    /* ===== PROS CONS ===== */
    .pros-cons { background: var(--off-white); }
    .pros-cons h2 { text-align: center; margin-bottom: 40px; }
    .pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
    .pros-box, .cons-box {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow-sm);
    }
    .pros-box { border-top: 4px solid #2ecc71; }
    .cons-box { border-top: 4px solid #e74c3c; }
    .pros-box h3 { color: #27ae60; margin-bottom: 16px; }
    .cons-box h3 { color: #c0392b; margin-bottom: 16px; }
    .check-list { list-style: none; }
    .check-list li {
      padding: 8px 0;
      padding-left: 28px;
      position: relative;
      font-size: 1.3rem;
      color: var(--text-body);
      border-bottom: 1px solid var(--warm-gray);
    }
    .check-list li:last-child { border-bottom: none; }
    .check-list li::before {
      content: "✓";
      position: absolute; left: 0;
      color: #27ae60;
      font-weight: 700;
    }
    .cross-list { list-style: none; }
    .cross-list li {
      padding: 8px 0;
      padding-left: 28px;
      position: relative;
      font-size: 1.3rem;
      color: var(--text-body);
    }
    .cross-list li::before {
      content: "✗";
      position: absolute; left: 0;
      color: #e74c3c;
      font-weight: 700;
    }

    /* ===== WHO IS IT FOR ===== */
    .who-for { background: var(--navy); padding: 72px 0; }
    .who-for h2 { color: var(--gold-light); text-align: center; margin-bottom: 48px; }
    .who-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 24px;
    }
    .who-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-lg);
      padding: 28px;
    }
    .who-card h3 { color: var(--gold-light); font-size: 1.5rem; margin-bottom: 10px; }
    .who-card p { color: #a8c0d0; font-size: 1.3rem; }

    /* ===== HOW TO USE ===== */
    .how-to-use { background: var(--off-white); }
    .how-to-use h2 { text-align: center; margin-bottom: 40px; }
    .use-steps { max-width: 700px; margin: 0 auto; }
    .use-step {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      margin-bottom: 28px;
      background: var(--white);
      border-radius: var(--radius);
      padding: 20px 24px;
      box-shadow: var(--shadow-sm);
    }
    .use-step-num {
      background: var(--teal);
      color: #fff;
      font-family: 'Arial', sans-serif;
      font-weight: 700;
      font-size: 1.3rem;
      min-width: 40px; height: 40px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .use-step-text h4 { color: var(--navy); margin-bottom: 4px; }
    .use-step-text p { font-size: .93rem; color: var(--text-muted); margin: 0; }

    /* ===== BONUSES ===== */
    .bonuses { background: var(--white); }
    .bonuses h2 { text-align: center; margin-bottom: 12px; }
    .bonuses-sub { text-align: center; color: var(--teal); font-family: 'Arial', sans-serif; font-weight: 700; font-size: 1.7rem; margin-bottom: 40px; }
    .bonus-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
    }
    .bonus-card {
      border: 2px solid var(--gold-light);
      border-radius: var(--radius-lg);
      padding: 32px 24px;
      text-align: center;
      background: #fffdf5;
      box-shadow: var(--shadow-sm);
    }
    .bonus-card img {
      max-width: 180px;
      margin: 0 auto 20px;
    }
    .bonus-badge {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Arial', sans-serif;
      font-weight: 700;
      font-size: .8rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      border-radius: 50px;
      padding: 4px 14px;
      margin-bottom: 12px;
    }
    .bonus-card h3 { color: var(--navy); font-size: 1.7rem; margin-bottom: 10px; }
    .bonus-card p { font-size: 1.3rem; color: var(--text-muted); }

    /* ===== GUARANTEE ===== */
    .guarantee { background: var(--warm-gray); }
    .guarantee-inner {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 40px;
      align-items: start;
      max-width: 800px;
      margin: 0 auto;
    }
    .guarantee-seal { max-width: 160px; }
    .guarantee h2 { color: var(--navy); margin-bottom: 16px; }
    .guarantee p { color: var(--text-body); }

    /* ===== PRICING ===== */
    .pricing { background: var(--navy); padding: 80px 0; text-align: center; }
    .pricing h2 { color: var(--gold-light); margin-bottom: 16px; }
    .pricing-sub { color: #a8c0d0; font-family: 'Arial', sans-serif; margin-bottom: 40px; }
    .pricing-box {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      max-width: 620px;
      margin: 0 auto;
      box-shadow: 0 20px 60px rgba(0,0,0,.4);
    }
    .pricing-product img {max-width: 449px;margin: 0 auto 24px;}
    .price-was {font-family: 'Arial', sans-serif;color: #ee0404;text-decoration: line-through;font-size: 1.7rem;}
    .price-now {font-family: 'Georgia', serif;font-size: 3.8rem;font-weight: 700;color: var(--teal);line-height: 1;margin: 8px 0;}
    .price-note {font-family: 'Arial', sans-serif;font-size: 1.3rem;color: #000;margin-bottom: 28px;}
    .pricing-box .btn { width: 100%; justify-content: center; }
    .pricing-guarantee { margin-top: 20px; font-family: 'Arial', sans-serif; font-size: .88rem; color: var(--text-muted); }

    /* ===== CHECKOUT CTA ===== */
    .checkout-cta { background: var(--off-white); }
    .checkout-cta h2 { text-align: center; margin-bottom: 12px; }
    .checkout-cta-sub { text-align: center; color: var(--text-muted); font-family: 'Arial', sans-serif; margin-bottom: 36px; }
    .checkout-img {
      display: block;
      max-width: 680px;
      margin: 0 auto 32px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }
    .checkout-security {
      text-align: center;
      max-width: 600px;
      margin: 32px auto 0;
      font-family: 'Arial', sans-serif;
      font-size: .9rem;
      color: var(--text-muted);
    }
    .checkout-security strong { color: var(--navy); }

    /* ===== FAQ ===== */
    .faq { background: var(--white); }
    .faq h2 { text-align: center; margin-bottom: 40px; }
    .faq-item {
      border-bottom: 1px solid var(--warm-gray);
      padding: 20px 0;
    }
    .faq-question {
      font-family: 'Georgia', serif;
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--navy);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    .faq-question::after { content: "+"; font-size: 1.4rem; color: var(--teal); flex-shrink: 0; transition: transform .2s; }
    .faq-item.open .faq-question::after { content: "−"; }
    .faq-answer {
      display: none;
      padding-top: 14px;
      font-size: 1.3rem;
      color: var(--text-body);
      line-height: 1.7;
    }
    .faq-item.open .faq-answer { display: block; }

    /* ===== FOOTER ===== */
    .site-footer {
      background: var(--navy);
      color: #7a8fa0;
      text-align: center;
      padding: 40px 20px;
      font-family: 'Arial', sans-serif;
      font-size: .85rem;
    }
    .footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; }
    .footer-links a { color: #a8c0d0; transition: color .15s; }
    .footer-links a:hover { color: var(--gold-light); }
    .footer-copy { color: #5a6a7a; }

    /* ===== STICKY BOTTOM BAR (mobile) ===== */
    .sticky-cta {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: var(--navy);
      padding: 12px 20px;
      text-align: center;
      z-index: 200;
      box-shadow: 0 -4px 20px rgba(0,0,0,.3);
    }
    .sticky-cta .btn { width: 100%; max-width: 400px; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      section { padding: 48px 0; }
      .intro-grid, .what-is-inner, .pros-cons-grid, .guarantee-inner { grid-template-columns: 1fr; }
      .intro-img, .what-is-img { order: -1; }
      .guarantee-inner { text-align: center; }
      .guarantee-seal { margin: 0 auto; }
      .site-nav { display: none; }
      .header-cta .btn { font-size: .8rem; padding: 9px 16px; }
      .creator-box { padding: 28px 20px; }
      .pricing-box { padding: 32px 24px; }
      .sticky-cta { display: block; }
      body { padding-bottom: 72px; }
    }

    @media (max-width: 480px) {
      .hero { padding: 48px 0 56px; }
      .hero h1 { font-size: 1.6rem; }
      h2 { font-size: 1.4rem; }
      .btn--lg { font-size: 1rem; padding: 16px 32px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition: none !important; animation: none !important; }
    }
  