 
    :root {
      --pur-deep:    #1a0030;
      --pur-dark:    #2d0050;
      --pur-mid:     #5b0f9e;
      --pur-bright:  #8b2fc9;
      --pur-light:   #c084fc;
      --gold:        #f5c842;
      --gold-dark:   #d4a017;
      --white:       #ffffff;
      --off-white:   #faf7ff;
      --body-color:  #2d2d3a;
      --text-mid:    #52526a;
      --text-light:  #8888aa;
      --border:      #e5dff5;
      --green:       #16a34a;
      --red:         #dc2626;
      --radius:      14px;
      --radius-lg:   22px;
      --shadow:      0 4px 28px rgba(90,15,158,0.12);
      --shadow-lg:   0 12px 56px rgba(90,15,158,0.22);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      background: #fff;
      color: var(--body-color);
      line-height: 1.7;
      overflow-x: hidden;
    }

    p  { font-family: 'Poppins', sans-serif; font-size: 16px; line-height: 1.8; }
    li { font-family: 'Poppins', sans-serif; font-size: 16px; line-height: 1.75; }
    h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; }
    img { max-width: 100%; width: 100%; display: block; }
    a   { text-decoration: none; color: inherit; }
    strong { font-weight: 700; }

    .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

    /* ── BUTTONS ── */
    .btn-gold {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      background: linear-gradient(135deg, #f5c842 0%, #d4a017 100%);
      color: #1a0030;
      font-family: 'Poppins', sans-serif;
      font-weight: 800; font-size: 16px;
      padding: 18px 40px;
      border-radius: 99px; border: none; cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 6px 24px rgba(245,200,66,0.45);
      text-transform: uppercase; letter-spacing: 0.3px; line-height: 1.3;
      text-decoration: none;
    }
    .btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(245,200,66,0.55); }

    .btn-outline {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      background: transparent; color: var(--pur-bright);
      font-family: 'Poppins', sans-serif;
      font-weight: 600; font-size: 15px;
      padding: 14px 28px; border-radius: 99px;
      border: 2px solid var(--pur-bright); cursor: pointer;
      transition: all 0.2s; text-decoration: none;
    }
    .btn-outline:hover { background: var(--pur-bright); color: white; }

    .tag {
      display: inline-block; font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--pur-bright);
      background: rgba(139,47,201,0.1);
      border: 1px solid rgba(139,47,201,0.25);
      padding: 5px 14px; border-radius: 99px; margin-bottom: 16px;
    }
    .tag-gold {
      color: var(--gold-dark);
      background: rgba(245,200,66,0.12);
      border-color: rgba(245,200,66,0.3);
    }

    /* ── TOP BAR ── */
    .topbar {
      background: var(--pur-mid); color: var(--gold);
      text-align: center; font-size: 13px; font-weight: 600;
      padding: 11px 16px;
    }
    .topbar span { color: white; }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 200;
      background: rgba(26,0,48,0.97);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(139,47,201,0.3);
      padding: 14px 0;
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; }
    .nav-logo { font-size: 22px; font-weight: 800; color: white; }
    .nav-logo span { color: var(--gold); }
    .nav-links { display: flex; gap: 26px; list-style: none; }
    .nav-links a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65); transition: color 0.2s; }
    .nav-links a:hover { color: var(--gold); }
    .nav-btn { font-size: 13px !important; padding: 11px 24px !important; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(145deg, var(--pur-deep) 0%, var(--pur-dark) 55%, #3d0070 100%);
      padding: 80px 0 0; overflow: hidden; position: relative;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 30%, rgba(139,47,201,0.25) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid; grid-template-columns: 1fr 420px;
      gap: 48px; align-items: flex-end;
    }
    .hero-content { padding-bottom: 60px; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(245,200,66,0.12); border: 1px solid rgba(245,200,66,0.3);
      color: var(--gold); font-size: 12px; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 6px 16px; border-radius: 99px; margin-bottom: 24px;
    }
    .hero h1 {
      font-size: clamp(28px, 4.2vw, 50px); font-weight: 800;
      color: white; margin-bottom: 22px; line-height: 1.12;
    }
    .hero h1 em { color: var(--gold); font-style: normal; }
    .hero-sub { font-size: 17px; color: rgba(255,255,255,0.72); margin-bottom: 14px; max-width: 580px; }
    .hero-pain { display: flex; flex-direction: column; gap: 9px; margin-bottom: 36px; margin-top: 10px; }
    .hpain {
      display: flex; align-items: center; gap: 10px;
      font-size: 16px; color: rgba(255,255,255,0.8); font-weight: 500;
    }
    .hpain .x { color: #f87171; font-size: 17px; font-weight: 800; flex-shrink: 0; }
    .htrust-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px; }
    .htrust {
      display: flex; align-items: center; gap: 6px;
      font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 500;
    }
    .htrust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
    .hero-img-wrap {
      display: flex; align-items: flex-end; justify-content: center; position: relative;
    }
    .hero-img-wrap img {
      max-height: 560px; object-fit: contain; width: 100%;
      filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
      position: relative; z-index: 2;
    }
    .hero-glow {
      position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
      width: 320px; height: 160px;
      background: radial-gradient(ellipse, rgba(139,47,201,0.5) 0%, transparent 70%);
      z-index: 1;
    }

    /* ── PAIN SECTION ── */
    .pain-section { background: var(--off-white); padding: 80px 0; }
    .pain-header { text-align: center; margin-bottom: 52px; }
    .pain-header h2 { font-size: clamp(22px, 3.5vw, 38px); font-weight: 800; color: var(--pur-deep); margin-bottom: 14px; }
    .pain-header h2 em { color: var(--red); font-style: normal; }
    .pain-header p { font-size: 16px; color: var(--text-mid); max-width: 640px; margin: 0 auto; }
    .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .pain-card {
      background: white; border: 1px solid var(--border);
      border-radius: var(--radius-lg); overflow: hidden;
      box-shadow: var(--shadow); transition: transform 0.2s;
    }
    .pain-card:hover { transform: translateY(-4px); }
    .pain-card img { width: 100%; height: 240px; object-fit: cover; }
    .pain-card-body { padding: 22px 20px; }
    .pain-card-body p { font-size: 16px; font-weight: 600; color: var(--pur-deep); line-height: 1.5; }
    .pain-copy { max-width: 800px; margin: 52px auto 0; text-align: center; }
    .pain-copy p { font-size: 16px; color: var(--text-mid); margin-bottom: 14px; line-height: 1.8; }
    .pain-copy p strong { color: var(--pur-deep); }

    /* ── WHAT IS IT ── */
    .what-section { padding: 90px 0; }
    .what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .what-img-wrap { position: relative; }
    .what-img-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
    .what-badge {
      position: absolute; bottom: -20px; right: -20px;
      background: linear-gradient(135deg, var(--pur-mid), var(--pur-bright));
      color: white; border-radius: var(--radius); padding: 18px 22px;
      text-align: center; box-shadow: 0 8px 28px rgba(90,15,158,0.35);
    }
    .what-badge .num { font-size: 34px; font-weight: 800; line-height: 1; }
    .what-badge .lbl { font-size: 11px; opacity: 0.8; margin-top: 4px; }
    .what-text h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: var(--pur-deep); margin-bottom: 18px; }
    .what-text h2 em { color: var(--pur-bright); font-style: normal; }
    .what-text p { font-size: 16px; color: var(--text-mid); margin-bottom: 18px; line-height: 1.8; }
    .what-checks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
    .what-checks li { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; color: var(--body-color); font-weight: 500; }
    .what-checks li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 17px; flex-shrink: 0; margin-top: 2px; }
    .what-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
    .wstat { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
    .wstat .n { font-size: 26px; font-weight: 800; color: var(--pur-bright); line-height: 1; }
    .wstat .l { font-size: 13px; color: var(--text-light); margin-top: 4px; }

    /* ── INGREDIENTS ── */
    .ingr-section { background: linear-gradient(180deg, var(--pur-deep) 0%, var(--pur-dark) 100%); padding: 90px 0; }
    .ingr-header { text-align: center; margin-bottom: 56px; }
    .ingr-header h2 { font-size: clamp(22px, 3.5vw, 38px); font-weight: 800; color: white; margin-bottom: 14px; }
    .ingr-header p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 640px; margin: 0 auto; }
    .ingr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
    .ingr-card {
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg); padding: 30px 28px;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .ingr-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(139,47,201,0.5); transform: translateY(-4px); }
    .ingr-icon {
      font-size: 32px; width: 58px; height: 58px;
      background: rgba(245,200,66,0.12); border-radius: 14px;
      display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
    }
    .ingr-name { font-size: 20px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
    .ingr-desc { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 14px; }
    .ingr-benefit {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(22,163,74,0.15); color: #4ade80;
      font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 99px;
    }

    /* ── HOW IT WORKS ── */
    .how-section { padding: 90px 0; }
    .how-header { text-align: center; margin-bottom: 60px; }
    .how-header h2 { font-size: clamp(22px, 3.5vw, 38px); font-weight: 800; color: var(--pur-deep); margin-bottom: 14px; }
    .how-header p { font-size: 16px; color: var(--text-mid); max-width: 640px; margin: 0 auto; }
    .how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; position: relative; }
    .how-steps::before {
      content: ''; position: absolute; top: 40px; left: 15%; right: 15%;
      height: 2px; background: linear-gradient(90deg, var(--pur-bright), var(--gold)); opacity: 0.25;
    }
    .how-step { text-align: center; }
    .how-num {
      width: 80px; height: 80px;
      background: linear-gradient(135deg, var(--pur-mid), var(--pur-bright));
      color: white; font-size: 28px; font-weight: 800; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; box-shadow: 0 6px 24px rgba(90,15,158,0.35);
    }
    .how-step h3 { font-size: 20px; font-weight: 700; color: var(--pur-deep); margin-bottom: 10px; }
    .how-step p { font-size: 16px; color: var(--text-mid); }

    /* ── BENEFITS ── */
    .benefits-section { background: var(--off-white); padding: 90px 0; }
    .benefits-header { text-align: center; margin-bottom: 52px; }
    .benefits-header h2 { font-size: clamp(22px, 3.5vw, 38px); font-weight: 800; color: var(--pur-deep); margin-bottom: 14px; }
    .benefits-header p { font-size: 16px; color: var(--text-mid); max-width: 640px; margin: 0 auto; }
    .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .benefit-card {
      background: white; border: 1px solid var(--border);
      border-radius: var(--radius-lg); overflow: hidden;
      box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s;
    }
    .benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
    .benefit-card img { width: 100%; height: 220px; object-fit: cover; }
    .benefit-card-body { padding: 22px 20px; }
    .benefit-card-body p { font-size: 16px; font-weight: 600; color: var(--pur-deep); line-height: 1.5; }

    /* ── TESTIMONIALS ── */
    .testi-section { padding: 90px 0; }
    .testi-header { text-align: center; margin-bottom: 52px; }
    .testi-header h2 { font-size: clamp(22px, 3.5vw, 38px); font-weight: 800; color: var(--pur-deep); margin-bottom: 14px; }
    .testi-rating { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; }
    .stars { color: #f59e0b; font-size: 20px; letter-spacing: 2px; }
    .testi-count-txt { font-size: 14px; color: var(--text-light); }
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .testi-card {
      background: var(--off-white); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 28px 24px; position: relative;
    }
    .testi-card::before {
      content: '"'; font-size: 90px; line-height: 1;
      color: var(--pur-bright); opacity: 0.08;
      position: absolute; top: -8px; left: 18px;
      font-family: 'Poppins', sans-serif;
    }
    .testi-stars { font-size: 14px; color: #f59e0b; margin-bottom: 12px; }
    .testi-text { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 46px; height: 46px; border-radius: 50%;
      background: linear-gradient(135deg, var(--pur-mid), var(--pur-bright));
      color: white; font-weight: 700; font-size: 17px;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .testi-name { font-weight: 700; font-size: 14px; color: var(--pur-deep); }
    .testi-loc { font-size: 12px; color: var(--text-light); }
    .testi-verified { font-size: 11px; color: var(--green); font-weight: 600; margin-top: 3px; }

    /* ── PRICING ── */
    .pricing-section { background: linear-gradient(180deg, var(--pur-dark) 0%, var(--pur-deep) 100%); padding: 90px 0; }
    .pricing-header { text-align: center; margin-bottom: 14px; }
    .pricing-header h2 { font-size: clamp(22px, 3.5vw, 38px); font-weight: 800; color: white; margin-bottom: 12px; }
    .pricing-header p { font-size: 16px; color: rgba(255,255,255,0.6); }
    .pricing-urgency { text-align: center; font-size: 14px; font-weight: 600; color: #f87171; margin-bottom: 48px; margin-top: 8px; }
    .pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; max-width: 1020px; margin: 0 auto; }
    .price-card {
      background: white; border: 2px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg); padding: 36px 26px;
      text-align: center; position: relative; transition: transform 0.2s, box-shadow 0.2s;
    }
    .price-card:hover { transform: translateY(-6px); }
    .price-card.best { border-color: var(--gold); transform: scale(1.05); box-shadow: 0 20px 60px rgba(245,200,66,0.28); }
    .price-card.best:hover { transform: scale(1.05) translateY(-6px); }
    .best-badge {
      position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
      background: linear-gradient(90deg, var(--gold), var(--gold-dark));
      color: var(--pur-deep); font-size: 11px; font-weight: 800;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 6px 20px; border-radius: 99px; white-space: nowrap;
    }
    .price-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--pur-mid); margin-bottom: 12px; }
    .price-bottles-img { width: 100%;   margin: 0 auto 18px; transition: transform 0.3s; }
    .price-card:hover .price-bottles-img { transform: scale(1.05); }
    .price-plan { font-size: 22px; font-weight: 800; color: var(--pur-deep); margin-bottom: 2px; }
    .price-supply { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
    .price-num { font-size: 58px; font-weight: 800; color: var(--pur-bright); line-height: 1; }
    .price-num sup { font-size: 22px; vertical-align: super; }
    .price-per { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
    .price-total {font-size: 21px;color: var(--body-color);margin-bottom: 6px;}
    .price-total s {color: red;}
    .price-total strong {color: green;font-size: 21px;}
    .price-save {display: inline-block;background: rgba(22,163,74,0.1);color: var(--green);font-size: 13px;font-weight: 700;padding: 4px 12px;border-radius: 99px;margin-bottom: 22px;}
    .price-features { list-style: none; text-align: left; margin-bottom: 26px; display: flex; flex-direction: column; gap: 10px; }
    .price-features li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-mid); }
    .price-features li::before { content: '✓'; color: var(--green); font-weight: 800; }
    .price-cta { width: 100%; border-radius: 10px; padding: 16px; font-size: 15px !important; }
    .price-note { text-align: center; font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 28px; }
    .price-note span { color: rgba(255,255,255,0.65); }

    /* ── GUARANTEE ── */
    .guarantee-section { padding: 0 0 90px; }
    .guarantee-inner {
      display: grid; grid-template-columns: 220px 1fr;
      gap: 60px; align-items: center;
      background: var(--off-white); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 60px;
    }
    .guarantee-badge {
      width: 190px; height: 190px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      border-radius: 50%; flex-shrink: 0;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      color: var(--pur-deep); text-align: center;
      box-shadow: 0 10px 36px rgba(245,200,66,0.4);
    }
    .guarantee-badge .days { font-size: 54px; font-weight: 800; line-height: 1; }
    .guarantee-badge .lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
    .guarantee-text h2 { font-size: clamp(20px, 3vw, 32px); font-weight: 800; color: var(--pur-deep); margin-bottom: 16px; }
    .guarantee-text p { font-size: 16px; color: var(--text-mid); margin-bottom: 14px; line-height: 1.8; }
    .guarantee-note { font-size: 13px !important; color: var(--text-light) !important; margin-top: 12px !important; }

    /* ── OBJECTIONS ── */
    .obj-section { background: var(--off-white); padding: 90px 0; }
    .obj-header { text-align: center; margin-bottom: 52px; }
    .obj-header h2 { font-size: clamp(22px, 3.5vw, 38px); font-weight: 800; color: var(--pur-deep); margin-bottom: 12px; }
    .obj-header p { font-size: 16px; color: var(--text-mid); max-width: 640px; margin: 0 auto; }
    .obj-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .obj-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 26px; display: flex; gap: 16px; align-items: flex-start; }
    .obj-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--pur-mid), var(--pur-bright)); color: white; font-size: 20px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .obj-content h3 { font-size: 16px; font-weight: 700; color: var(--pur-deep); margin-bottom: 8px; }
    .obj-content p { font-size: 16px; color: var(--text-mid); line-height: 1.75; }

    /* ── FAQ ── */
    .faq-section { padding: 90px 0; background: #fff; }
    .faq-header { text-align: center; margin-bottom: 52px; }
    .faq-header h2 { font-size: clamp(22px, 3.5vw, 38px); font-weight: 800; color: var(--pur-deep); margin-bottom: 12px; }
    .faq-header p { font-size: 16px; color: var(--text-mid); max-width: 640px; margin: 0 auto; }
    .faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 8px rgba(90,15,158,0.05); }
    .faq-q {
      width: 100%; display: flex; justify-content: space-between; align-items: center;
      padding: 20px 24px; background: none; border: none; cursor: pointer;
      font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 18px;
      color: var(--pur-deep); text-align: left; gap: 14px; transition: color 0.2s;
    }
    .faq-q:hover { color: var(--pur-bright); }
    .faq-icon {
      width: 30px; height: 30px; border-radius: 50%;
      background: rgba(139,47,201,0.1); color: var(--pur-bright);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; font-weight: 700; flex-shrink: 0; transition: transform 0.3s;
      line-height: 1;
    }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; padding: 0 24px; }
    .faq-a.open { max-height: 500px; padding: 0 24px 22px; }
    .faq-a p { font-size: 16px; color: var(--text-mid); line-height: 1.8; }
    .faq-icon.open { transform: rotate(45deg); }

    /* ── FINAL CTA ── */
    .final-section {
      background: linear-gradient(145deg, var(--pur-deep), var(--pur-dark) 60%, #3d0070);
      padding: 100px 0; text-align: center; position: relative; overflow: hidden;
    }
    .final-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(139,47,201,0.3) 0%, transparent 65%);
      pointer-events: none;
    }
    .final-section .tag { position: relative; z-index: 2; }
    .final-section h2 { font-size: clamp(26px, 4.5vw, 48px); font-weight: 800; color: white;   margin: 0 auto 20px; line-height: 1.15; position: relative; z-index: 2; }
    .final-section h2 em { color: var(--gold); font-style: normal; }
    .final-section p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 620px; margin: 0 auto 40px; line-height: 1.8; position: relative; z-index: 2; }
    .final-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }
    .final-reassure { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 36px; position: relative; z-index: 2; }
    .freass { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.5); }
    .freass .dot { color: var(--gold); font-size: 16px; }

    /* ── FOOTER ── */
    footer { background: var(--pur-deep); color: rgba(255,255,255,0.4); padding: 60px 0 36px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px; margin-bottom: 44px; }
    .footer-logo { color: white; font-size: 22px; font-weight: 800; display: block; margin-bottom: 14px; }
    .footer-logo span { color: var(--gold); }
    .footer-brand p { font-size: 13px; line-height: 1.8; }
    .footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: white; margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col a { font-size: 14px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
    .footer-col a:hover { color: white; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; }
    .footer-disclaimer { font-size: 12px; line-height: 1.85; color: rgba(255,255,255,0.3); }

    /* ── STICKY BAR ── */
    .sticky-bar {
      position: fixed; bottom: 0; left: 0; right: 0;
      background: var(--pur-dark); border-top: 2px solid var(--gold);
      padding: 14px 24px;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      z-index: 300; box-shadow: 0 -6px 32px rgba(0,0,0,0.4);
      transform: translateY(100%); transition: transform 0.35s;
    }
    .sticky-bar.visible { transform: translateY(0); }
    .sticky-bar-text { color: white; font-size: 14px; }
    .sticky-bar-text strong { color: var(--gold); }
    .sticky-btn { font-size: 14px !important; padding: 12px 30px !important; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-img-wrap { max-height: 380px; overflow: hidden; }
      .hero-img-wrap img { max-height: 380px; object-fit: contain; }
      .hero-content { padding-bottom: 0; }
    }
    @media (max-width: 900px) {
      .what-grid { grid-template-columns: 1fr; }
      .guarantee-inner { grid-template-columns: 1fr; padding: 36px 28px; }
      .guarantee-badge { margin: 0 auto; }
      .how-steps { grid-template-columns: 1fr; }
      .how-steps::before { display: none; }
      .pain-grid,
      .benefits-grid,
      .pricing-cards,
      .testi-grid,
      .obj-grid { grid-template-columns: 1fr; }
      .price-card.best { transform: scale(1); }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .nav-links { display: none; }
      .final-btns { flex-direction: column; align-items: center; }
      .what-badge { right: 0; bottom: -12px; }
    }
    @media (max-width: 600px) {
      .ingr-grid { grid-template-columns: 1fr; }
      .hero h1 { font-size: 28px; }
      .container { padding: 0 16px; }
    }
   