  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --purple: #6d1eb7;
    --purple-dark: #52158a;
    --purple-light: #8b2ed4;
    --white: #ffffff;
    --text: #1a1a2e;
    --text-light: #4a4a6a;
    --gold: #f5a524;
    --green: #16a34a;
    --red: #dc2626;
    --section-gap: 0;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    background: #fff;
  }

  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }

  /* ── UTILITY ── */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .container--narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

  /* ── SECTION HEADERS (purple bg) ── */
  .section-header {
    background: var(--purple);
    padding: 28px 24px;
    text-align: center;
  }
  .section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.3;
  }
  .section-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
  }

  /* ── SECTION CONTENT (white bg) ── */
  .section-content {
    background: #fff;
    padding: 56px 24px;
  }
  .section-content--gray {
    background: #f8f5ff;
    padding: 56px 24px;
  }

  /* ── ANNOUNCE BAR ── */
  .announce-bar {
    background: var(--purple-dark);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  .announce-bar span { color: var(--gold); }

  /* ── HEADER / NAV ── */
  header {
    background: #fff;
    box-shadow: 0 2px 16px rgba(109,30,183,0.10);
    position: sticky;
    top: 0;
    z-index: 999;
  }
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
  }
  .nav-logo img { height: 54px; width: auto; }
  .nav-links { display: flex; gap: 8px; align-items: center; }
  .nav-links a {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.2s;
  }
  .nav-links a:hover { background: #f3eaff; color: var(--purple); }
  .nav-cta {
    background: var(--purple) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(109,30,183,0.3);
    transition: background 0.2s, transform 0.2s !important;
  }
  .nav-cta:hover { background: var(--purple-dark) !important; transform: translateY(-1px); }
  .hamburger { display: none; background: none; border: none; cursor: pointer; }
  .hamburger span { display: block; width: 26px; height: 3px; background: var(--purple); border-radius: 2px; margin: 5px 0; }
  .mobile-nav {
    display: none;
    background: var(--purple);
    padding: 20px 24px;
  }
  .mobile-nav a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .mobile-nav.open { display: block; }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, #f8f5ff 0%, #ede8f7 50%, #f0ebff 100%);
    padding: 60px 24px 50px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(109,30,183,0.10) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(109,30,183,0.10);
    color: var(--purple);
    font-size: 15px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(109,30,183,0.20);
  }
  .hero h1 {
    font-size: 44px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
  }
  .hero h1 span { color: var(--purple); }
  .hero-desc {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
  }
  .hero-trust {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }
  .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
  }
  .hero-trust-item .icon {
    width: 32px; height: 32px;
    background: var(--purple);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--purple);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 60px;
    box-shadow: 0 8px 32px rgba(109,30,183,0.35);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    text-align: center;
  }
  .btn-primary:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(109,30,183,0.45);
  }
  .btn-primary svg { width: 22px; height: 22px; }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--purple);
    font-size: 18px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 60px;
    border: 2px solid var(--purple);
    transition: all 0.2s;
    cursor: pointer;
  }
  .btn-secondary:hover { background: var(--purple); color: #fff; }

  .hero-urgency {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--red);
  }
  .hero-img-wrap {
    position: relative;
    text-align: center;
  }
  .hero-img-wrap img {
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(109,30,183,0.20);
    max-width: 480px;
    margin: 0 auto;
  }
  .hero-rating-badge {
    position: absolute;
    bottom: 24px; left: -10px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    text-align: center;
    min-width: 140px;
  }
  .hero-rating-badge .stars { color: var(--gold); font-size: 18px; }
  .hero-rating-badge .rating-num { font-size: 28px; font-weight: 900; color: var(--text); }
  .hero-rating-badge .rating-label { font-size: 13px; color: var(--text-light); font-weight: 500; }

  /* ── TRUST STRIP ── */
  .trust-strip {
    background: var(--purple);
    padding: 20px 24px;
  }
  .trust-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
  }
  .trust-item svg { width: 22px; height: 22px; opacity: 0.9; }

  /* ── BADGES ── */
  .badges-section {
    background: #fff;
    padding: 40px 24px;
    border-bottom: 1px solid #f0eaff;
  }
  .badges-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
  .badge-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 26px;
  }
  .badge-label { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; }

  /* ── SOCIAL PROOF / REVIEWS ── */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .review-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(109,30,183,0.10);
    border: 1px solid #ece4ff;
    position: relative;
  }
  .review-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 20px;
    font-size: 72px;
    color: #f0eaff;
    font-family: Georgia, serif;
    line-height: 1;
  }
  .reviewer-info { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
  .reviewer-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--purple); flex-shrink: 0; }
  .reviewer-name { font-size: 18px; font-weight: 800; color: var(--text); }
  .review-verified { font-size: 13px; color: var(--green); font-weight: 600; }
  .stars-row { color: var(--gold); font-size: 20px; margin-bottom: 12px; letter-spacing: 2px; }
  .review-text { font-size: 17px; color: var(--text-light); line-height: 1.7; }

  /* ── WHAT IS / HOW WORKS ── */
  .two-col {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .two-col img { border-radius: 16px; box-shadow: 0 12px 48px rgba(109,30,183,0.15); }
  .two-col-text h3 { font-size: 26px; font-weight: 800; color: var(--purple); margin-bottom: 14px; }
  .two-col-text p { font-size: 18px; color: var(--text-light); margin-bottom: 16px; line-height: 1.75; }
  .two-col-text p:last-child { margin-bottom: 0; }

  /* ── BENEFITS ── */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .benefit-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(109,30,183,0.08);
    border: 1px solid #ede8ff;
  }
  .benefit-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 22px;
  }
  .benefit-title { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
  .benefit-desc { font-size: 16px; color: var(--text-light); line-height: 1.6; }

  /* ── INGREDIENTS ── */
  .ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .ingredient-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(109,30,183,0.08);
    border-top: 4px solid var(--purple);
  }
  .ingredient-name { font-size: 20px; font-weight: 800; color: var(--purple); margin-bottom: 12px; }
  .ingredient-desc { font-size: 17px; color: var(--text-light); line-height: 1.7; }

  /* ── INGREDIENTS IMAGE ── */
  .ingredients-img-wrap {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 800px;
  }
  .ingredients-img-wrap img { border-radius: 16px; box-shadow: 0 8px 40px rgba(109,30,183,0.12); }

  /* ── DOSAGE ── */
  .dosage-steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .dosage-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(109,30,183,0.08);
    border: 1px solid #ede8ff;
  }
  .step-num {
    width: 52px; height: 52px; flex-shrink: 0;
    background: var(--purple);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
  }
  .step-title { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
  .step-desc { font-size: 17px; color: var(--text-light); line-height: 1.65; }

  /* ── PRICING ── */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto 40px;
  }
  .pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 8px 32px rgba(109,30,183,0.12);
    border: 2px solid #e8deff;
    text-align: center;
    position: relative;
    transition: transform 0.2s;
  }
  .pricing-card:hover { transform: translateY(-4px); }
  .pricing-card.best {
    border-color: var(--purple);
    box-shadow: 0 12px 48px rgba(109,30,183,0.25);
    transform: scale(1.04);
  }
  .pricing-card.best:hover { transform: scale(1.04) translateY(-4px); }
  .best-badge {
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 50px;
    white-space: nowrap;
  }
  .pricing-bottles { font-size: 17px; font-weight: 700; color: var(--text-light); margin-bottom: 10px; }
  .pricing-supply { font-size: 16px; color: var(--text-light); margin-bottom: 16px; }
  .pricing-price { font-size: 54px; font-weight: 900; color: var(--purple); line-height: 1; }
  .pricing-price span { font-size: 22px; font-weight: 700; vertical-align: top; margin-top: 10px; display: inline-block; }
  .pricing-per { font-size: 15px; color: var(--text-light); margin: 8px 0 20px; }
  .pricing-shipping { font-size: 15px; font-weight: 700; color: var(--green); margin-bottom: 24px; }
  .pricing-cta {
    display: block;
    background: var(--purple);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(109,30,183,0.30);
    transition: background 0.2s, transform 0.2s;
  }
  .pricing-cta:hover { background: var(--purple-dark); transform: translateY(-2px); }

  /* ── GUARANTEE ── */
  .guarantee-box {
    max-width: 750px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f5ff, #f0eaff);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    border: 2px solid #e0d4ff;
    box-shadow: 0 8px 40px rgba(109,30,183,0.10);
  }
  .guarantee-icon { font-size: 64px; margin-bottom: 16px; }
  .guarantee-title { font-size: 30px; font-weight: 900; color: var(--purple); margin-bottom: 14px; }
  .guarantee-text { font-size: 18px; color: var(--text-light); line-height: 1.75; margin-bottom: 28px; }

  /* ── PROS CONS ── */
  .pros-cons-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .pros-box, .cons-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(109,30,183,0.08);
  }
  .pros-box { border-top: 5px solid var(--green); }
  .cons-box { border-top: 5px solid var(--red); }
  .pros-box h3 { color: var(--green); font-size: 22px; font-weight: 800; margin-bottom: 18px; }
  .cons-box h3 { color: var(--red); font-size: 22px; font-weight: 800; margin-bottom: 18px; }
  .check-list { list-style: none; }
  .check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 17px;
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid #f4f0ff;
    line-height: 1.5;
  }
  .check-list li:last-child { border-bottom: none; }
  .check-list li .chk { font-size: 18px; flex-shrink: 0; margin-top: 2px; }

  /* ── FAQ ── */
  .faq-list { max-width: 800px; margin: 0 auto; }
  .faq-item {
    border-bottom: 2px solid #ede8ff;
    overflow: hidden;
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 16px;
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    transition: color 0.2s;
  }
  .faq-question:hover { color: var(--purple); }
  .faq-question .faq-arrow { font-size: 22px; color: var(--purple); transition: transform 0.3s; flex-shrink: 0; }
  .faq-question.open .faq-arrow { transform: rotate(180deg); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
    padding: 0 16px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.75;
  }
  .faq-answer.open { max-height: 300px; padding: 0 16px 22px; }

  /* ── CONCLUSION ── */
  .conclusion-inner { max-width: 900px; margin: 0 auto; text-align: center; }
  .conclusion-inner p { font-size: 19px; color: var(--text-light); line-height: 1.8; margin-bottom: 18px; }
  .conclusion-inner p strong { color: var(--text); }
  .conclusion-stars { font-size: 28px; color: var(--gold); margin-bottom: 16px; }
  .conclusion-rating { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 24px; }

  /* ── FOOTER ── */
  footer {
    background: var(--purple-dark);
    color: rgba(255,255,255,0.85);
  }
  .footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .footer-col h4 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
  .footer-col p, .footer-col a { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.7; }
  .footer-col a:hover { color: #fff; }
  .footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 28px 24px;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
  }
  .footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 18px 24px;
    text-align: center;
  }
  .footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.55); }
  .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-links a { font-size: 14px; color: rgba(255,255,255,0.60); font-weight: 600; }
  .footer-links a:hover { color: #fff; }

  /* ── STICKY CTA BAR ── */
  .sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--purple);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 998;
    box-shadow: 0 -4px 24px rgba(109,30,183,0.30);
    display: none;
  }
  .sticky-cta p { color: rgba(255,255,255,0.85); font-size: 16px; font-weight: 600; }
  .sticky-cta a {
    background: var(--gold);
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 800;
    padding: 12px 28px;
    border-radius: 50px;
    white-space: nowrap;
    transition: transform 0.2s;
  }
  .sticky-cta a:hover { transform: scale(1.03); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 34px; }
    .hero-rating-badge { left: 0; }
    .two-col { grid-template-columns: 1fr; gap: 32px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .ingredients-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .pricing-card.best { transform: scale(1); }
    .pros-cons-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .section-header h2 { font-size: 26px; }
    .section-header h1 { font-size: 28px; }
    .trust-strip-inner { gap: 20px; }
    .nav-links { display: none; }
    .hamburger { display: block; }
    .sticky-cta { display: flex; }
    body { padding-bottom: 72px; }
    .ingredients-grid { grid-template-columns: 1fr; }
  }
  .nav-logo {
    font-size: 44px;
    font-weight: 900;}
  @media (max-width: 500px) {
    .hero { padding: 40px 16px 36px; }
    .hero h1 { font-size: 28px; }
    .btn-primary { font-size: 17px; padding: 15px 28px; }
    .guarantee-box { padding: 32px 20px; }
  }