/* ============================================================
   HORMOVANCE V4 — styles.css
   Design: Warm Trust / Premium Wellness
   Nav: #0c357f | BG: #dde6fa + #ffffff
   Text: #26344b | #72728f | #2d2929
   ============================================================ */

/* ─── RESET ─────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{font-size:16px;scroll-behavior:smooth;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
body{font-family:'Open Sans','Roboto',sans-serif;color:#2d2929;background:#fff;overflow-x:hidden;-webkit-tap-highlight-color:transparent;}
img{max-width:100%;height:auto;display:block;}
svg{max-width:100%;overflow:hidden;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{cursor:pointer;border:none;background:none;font-family:inherit;}

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root{
  --navy:#0c357f;
  --navy-mid:#15408d;
  --navy-light:#1a4fa3;
  --bg-blue:#dde6fa;
  --bg-card:#f0f3fa;
  --white:#ffffff;
  --text-dark:#26344b;
  --text-body:#2d2929;
  --text-muted:#72728f;
  --card-title:#15408d;
  --card-desc:#15181e;
  --border:#d4dff5;
  --shadow-sm:0 2px 12px rgba(12,53,127,.08);
  --shadow-md:0 6px 28px rgba(12,53,127,.14);
  --shadow-lg:0 14px 52px rgba(12,53,127,.18);
  --radius:12px;
  --radius-lg:20px;
  --radius-pill:100px;
  --transition:all .3s cubic-bezier(.4,0,.2,1);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5{font-family:'Roboto',sans-serif;font-weight:900;color:var(--text-dark);line-height:1.25;}
h1{font-size:clamp(26px,5.5vw,50px);}
h2{font-size:clamp(22px,4vw,36px);}
h3{font-size:clamp(18px,2.8vw,24px);}
h4{font-size:clamp(15px,2vw,19px);}
p{font-size:16px;line-height:1.75;color:var(--text-body);}

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 20px;}
@media(min-width:768px){.container{padding:0 32px;}}
@media(min-width:1200px){.container{padding:0 48px;}}
.sec-pad{padding:72px 0;}
@media(min-width:768px){.sec-pad{padding:88px 0;}}
@media(min-width:1024px){.sec-pad{padding:104px 0;}}

/* ─── SECTION HEADER ─────────────────────────────────────────── */
.sec-head{text-align:center;max-width:740px;margin:0 auto 52px;}
.sec-head p{color:var(--text-muted);font-size:17px;margin-top:12px;}
.sec-bar{display:flex;align-items:center;justify-content:center;gap:12px;margin-top:18px;}
.sec-bar::before,.sec-bar::after{content:'';flex:1;max-width:60px;height:3px;border-radius:2px;background:linear-gradient(90deg,var(--navy),var(--navy-light));}

/* ─── BADGE / CHIP ─────────────────────────────────────────────── */
.badge{display:inline-block;padding:6px 18px;border-radius:var(--radius-pill);font-size:12.5px;font-weight:700;letter-spacing:.7px;text-transform:uppercase;margin-bottom:14px;}
.badge-navy{background:var(--navy);color:#fff;}
.badge-light{background:var(--bg-card);color:var(--navy);border:1.5px solid var(--border);}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:52px;padding:15px 36px;font-family:'Roboto',sans-serif;font-size:16px;font-weight:700;border-radius:var(--radius);transition:var(--transition);cursor:pointer;text-align:center;white-space:nowrap;touch-action:manipulation;-webkit-tap-highlight-color:transparent;}
.btn-navy{background:var(--navy);color:#fff;box-shadow:0 4px 18px rgba(12,53,127,.32);}
.btn-navy:hover{background:var(--navy-light);transform:translateY(-2px) scale(1.03);box-shadow:0 8px 28px rgba(12,53,127,.4);}
.btn-navy:active{transform:scale(.97);}
.btn-wide{width:100%;max-width:420px;}

/* ─── FADE-IN ANIMATIONS ─────────────────────────────────────── */
.fade-up,.fade-left,.fade-right{opacity:0;transition:opacity .65s ease,transform .65s ease;}
.fade-up{transform:translateY(36px);}
.fade-left{transform:translateX(-44px);}
.fade-right{transform:translateX(44px);}
.fade-up.in,.fade-left.in,.fade-right.in{opacity:1;transform:translate(0);}
@media(prefers-reduced-motion:reduce){.fade-up,.fade-left,.fade-right{transition:none;}}

/* ====================================================
   SECTION 1: NAVIGATION
   ==================================================== */
.site-nav{position:fixed;top:0;left:0;right:0;z-index:1000;background:var(--navy);transition:var(--transition);}
.site-nav.scrolled{box-shadow:0 3px 20px rgba(12,53,127,.35);}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:68px;gap:12px;}
.nav-brand a{font-family:'Roboto',sans-serif;font-size:19px;font-weight:900;color:#fff;letter-spacing:.5px;line-height:1;white-space:nowrap;}
.nav-brand a span{color:#fff;font-weight:900;font-size:19px;display:inline;letter-spacing:.5px;}
.nav-links{display:flex;align-items:center;gap:24px;}
.nav-links a{font-size:14.5px;font-weight:600;color:rgba(255,255,255,.82);transition:color .25s;position:relative;}
.nav-links a::after{content:'';position:absolute;bottom:-3px;left:0;width:0;height:2px;background:#a8c4f0;transition:width .28s;}
.nav-links a:hover{color:#fff;}
.nav-links a:hover::after{width:100%;}
.nav-cta-btn{display:inline-flex;align-items:center;gap:6px;padding:10px 22px;background:rgba(255,255,255,.14);border:1.5px solid rgba(255,255,255,.35);color:#fff;font-size:13.5px;font-weight:700;border-radius:var(--radius);transition:var(--transition);white-space:nowrap;}
.nav-cta-btn:hover{background:rgba(255,255,255,.25);border-color:rgba(255,255,255,.7);transform:scale(1.04);}

/* Hamburger */
.hamburger{display:none;flex-direction:column;gap:5px;padding:8px;cursor:pointer;border-radius:8px;transition:background .2s;}
.hamburger:hover{background:rgba(255,255,255,.1);}
.hamburger span{display:block;width:24px;height:2.5px;background:#fff;border-radius:2px;transition:var(--transition);}
.hamburger.open span:nth-child(1){transform:translateY(7.5px) rotate(45deg);}
.hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0);}
.hamburger.open span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg);}
.nav-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.45);z-index:998;opacity:0;transition:opacity .3s;pointer-events:none;}
.nav-overlay.show{opacity:1;pointer-events:auto;}

@media(max-width:767px){
  .hamburger{display:flex;}
  .nav-overlay{display:block;}
  .nav-links{position:fixed;top:0;right:-100%;width:min(300px,80vw);height:100vh;background:var(--navy);flex-direction:column;align-items:flex-start;gap:0;padding:80px 28px 32px;z-index:999;box-shadow:var(--shadow-lg);transition:right .35s cubic-bezier(.4,0,.2,1);overflow-y:auto;}
  .nav-links.open{right:0;}
  .nav-links li{width:100%;}
  .nav-links a{display:block;padding:14px 0;font-size:16px;border-bottom:1px solid rgba(255,255,255,.12);}
  .nav-links a::after{display:none;}
  .nav-cta-btn{display:flex;width:100%;justify-content:center;padding:16px;margin-top:20px;font-size:15px;}
}

/* ====================================================
   SECTION 2: HERO
   ==================================================== */
.hero{background:linear-gradient(135deg,#e8f0fd 0%,var(--bg-blue) 50%,#dde8fb 100%);padding:116px 0 72px;position:relative;overflow:hidden;}
.hero::before{content:'';position:absolute;top:-150px;right:-100px;width:500px;height:500px;border-radius:50%;background:radial-gradient(circle,rgba(12,53,127,.06) 0%,transparent 65%);pointer-events:none;}
.hero::after{content:'';position:absolute;bottom:-80px;left:-60px;width:380px;height:380px;border-radius:50%;background:radial-gradient(circle,rgba(21,64,141,.05) 0%,transparent 70%);pointer-events:none;}

.hero-grid{display:grid;grid-template-columns:1fr;gap:44px;align-items:center;}
@media(min-width:768px){.hero-grid{grid-template-columns:1fr 1fr;gap:56px;align-items:start;}}
@media(min-width:1024px){.hero-grid{gap:72px;}}

/* Image side — LEFT on desktop */
.hero-img{display:flex;justify-content:center;order:1;position:relative;padding-top:6px;}
.hero-img::before{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:88%;aspect-ratio:1/1;max-width:380px;border-radius:50%;background:radial-gradient(circle,rgba(21,64,141,.10) 0%,rgba(21,64,141,.03) 60%,transparent 75%);pointer-events:none;z-index:0;}
.hero-bottle{position:relative;max-width:300px;width:100%;z-index:1;}
.hero-bottle img{width:100%;box-shadow:none;filter:none;}

/* Content side — RIGHT on desktop */
.hero-content{order:2;}
.hero-eyebrow{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.7px;color:var(--navy);margin-bottom:14px;display:flex;align-items:center;gap:8px;}
.hero-eyebrow::before{content:'';display:inline-block;width:28px;height:3px;border-radius:2px;background:var(--navy);}
.hero-content h1{margin-bottom:16px;font-size:clamp(22px,3.5vw,34px);}
.hero-pills{display:flex;flex-wrap:wrap;gap:8px;margin:16px 0 0;}
.hero-pill{display:flex;align-items:center;gap:6px;padding:7px 14px;background:#fff;border:1px solid var(--border);border-radius:var(--radius-pill);font-size:13px;font-weight:600;color:var(--text-dark);}
.hero-pill svg{color:var(--navy-mid);flex-shrink:0;}
.hero-stars{display:flex;align-items:center;gap:10px;margin-bottom:16px;}
.hero-stars img{height:22px;width:auto;}
.hero-stars span{font-size:14px;color:var(--text-muted);font-weight:600;}

/* Content paragraphs below the two-column grid */
.hero-body{max-width:860px;margin:36px auto 0;padding-top:28px;border-top:1px solid var(--border);}
.hero-body p{font-size:16px;color:var(--text-body);line-height:1.82;margin-bottom:18px;}
.hero-body p:last-child{margin-bottom:0;}

/* ====================================================
   SECTION 3: WHY CHOOSE
   ==================================================== */
.why-sec{background:#fff;padding:80px 0;}
.why-grid{display:grid;grid-template-columns:1fr;gap:22px;}
@media(min-width:576px){.why-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:992px){.why-grid{grid-template-columns:repeat(4,1fr);}}

.why-card{background:var(--bg-card);border-radius:var(--radius-lg);padding:30px 22px;text-align:center;border:1.5px solid var(--border);border-top:4px solid var(--navy-mid);transition:var(--transition);display:flex;flex-direction:column;align-items:center;}
.why-card:hover{transform:translateY(-7px) rotate(.8deg);box-shadow:var(--shadow-md);background:#fff;}
.why-card img{width:70px;height:70px;object-fit:contain;margin:0 auto 18px;}
.why-card h4{font-size:15px;color:var(--card-title);margin-bottom:10px;}
.why-card p{font-size:14px;color:var(--card-desc);line-height:1.65;}

/* ====================================================
   SECTION 4: WHAT IS
   ==================================================== */
.what-sec{background:var(--bg-blue);padding:80px 0;}
.what-grid{display:grid;grid-template-columns:1fr;gap:48px;align-items:center;}
@media(min-width:768px){.what-grid{grid-template-columns:1.1fr 1fr;gap:64px;}}
.what-txt .badge{margin-bottom:16px;}
.what-txt h2{margin-bottom:18px;}
.what-txt p{color:var(--text-body);margin-bottom:16px;}
.what-list{margin:20px 0 28px;display:flex;flex-direction:column;gap:12px;}
.what-li{display:flex;gap:12px;align-items:flex-start;}
.what-li-dot{flex-shrink:0;width:28px;height:28px;border-radius:50%;background:var(--navy);display:flex;align-items:center;justify-content:center;margin-top:2px;}
.what-li-dot svg{width:14px;height:14px;color:#fff;}
.what-li strong{display:block;font-size:15px;color:var(--text-dark);}
.what-li span{font-size:14px;color:var(--text-muted);}
.what-img-col{position:relative;}
.what-img-col img{border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);width:100%;}
.what-img-tag{position:absolute;bottom:-16px;left:20px;background:var(--navy);color:#fff;padding:10px 20px;border-radius:var(--radius);font-size:14px;font-weight:700;box-shadow:var(--shadow-md);}
.what-img-tag span{color:#f9e44e;}

/* ====================================================
   SECTION 5: HOW IT WORKS
   ==================================================== */
.how-sec{background:#fff;padding:80px 0;}
.acc-wrap{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:12px;}
.acc-item{border:1.5px solid var(--border);border-radius:var(--radius);overflow:hidden;}
.acc-item.open{border-color:var(--navy-mid);box-shadow:var(--shadow-sm);}
.acc-hdr{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:18px 20px;cursor:pointer;background:var(--bg-card);min-height:58px;user-select:none;transition:background .25s;}
.acc-item.open .acc-hdr{background:var(--navy);}
.acc-item.open .acc-hdr .acc-n,.acc-item.open .acc-hdr .acc-lbl{color:#fff;}
.acc-row{display:flex;align-items:center;gap:12px;}
.acc-n{flex-shrink:0;width:32px;height:32px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;font-family:'Roboto',sans-serif;font-weight:900;font-size:14px;color:var(--navy);}
.acc-lbl{font-family:'Roboto',sans-serif;font-weight:700;font-size:15.5px;color:var(--text-dark);}
.acc-chev{flex-shrink:0;width:28px;height:28px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;transition:transform .3s;}
.acc-chev svg{width:14px;height:14px;color:var(--navy);}
.acc-item.open .acc-chev{transform:rotate(180deg);}
.acc-body{max-height:0;overflow:hidden;transition:max-height .42s cubic-bezier(.4,0,.2,1);}
.acc-body.open{max-height:360px;}
.acc-body-txt{padding:18px 20px 22px;font-size:15px;color:var(--text-body);line-height:1.78;border-top:1px solid var(--border);}

/* ====================================================
   SECTION 6: REVIEWS
   ==================================================== */
.reviews-sec{background:var(--bg-blue);padding:80px 0;}
.rev-grid{display:grid;grid-template-columns:1fr;gap:22px;}
@media(min-width:576px){.rev-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:900px){.rev-grid{grid-template-columns:repeat(3,1fr);}}
.rev-card{background:#fff;border-radius:var(--radius-lg);padding:28px 24px;border:1.5px solid var(--border);box-shadow:var(--shadow-sm);transition:var(--transition);position:relative;overflow:hidden;}
.rev-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--navy),var(--navy-light));}
.rev-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);}
.rev-stars{display:flex;gap:3px;margin-bottom:14px;}
.rev-stars svg{width:18px;height:18px;fill:#f59e0b;}
.rev-quote{font-size:15px;color:var(--text-body);line-height:1.72;font-style:italic;margin-bottom:20px;}
.rev-author{display:flex;align-items:center;gap:12px;}
.rev-author img{width:50px;height:50px;border-radius:50%;object-fit:cover;border:2.5px solid var(--border);}
.rev-name{font-size:14px;font-weight:700;color:var(--text-dark);display:block;}
.rev-loc{font-size:13px;color:var(--text-muted);}
.rev-check{display:flex;align-items:center;gap:4px;font-size:12px;color:#2e7d32;font-weight:600;margin-top:3px;}
.rev-check svg{width:12px;height:12px;fill:#2e7d32;}

/* ====================================================
   SECTION 7 & 13: PRICING
   ==================================================== */
.price-sec{background:#fff;padding:80px 0;}
.price-sec.alt{background:var(--bg-blue);}
.cd-box{text-align:center;margin-bottom:40px;}
.cd-lbl{font-size:14.5px;font-weight:700;color:var(--text-muted);margin-bottom:10px;}
.cd-timer{display:inline-flex;align-items:center;gap:8px;background:var(--navy);color:#fff;padding:14px 30px;border-radius:var(--radius-lg);box-shadow:var(--shadow-md);}
.cd-unit{display:flex;flex-direction:column;align-items:center;min-width:54px;}
.cd-num{font-family:'Roboto',sans-serif;font-size:32px;font-weight:900;line-height:1;}
.cd-txt{font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.5px;color:rgba(255,255,255,.6);margin-top:4px;}
.cd-sep{font-size:28px;font-weight:900;color:rgba(255,255,255,.45);margin-bottom:14px;}

.price-grid{display:grid;grid-template-columns:1fr;gap:24px;}
@media(min-width:576px){.price-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:900px){.price-grid{grid-template-columns:repeat(3,1fr);align-items:stretch;}}

.p-card{background:#fff;border-radius:var(--radius-lg);padding:28px 22px;border:2px solid var(--border);text-align:center;position:relative;display:flex;flex-direction:column;gap:10px;transition:var(--transition);}
.alt .p-card{background:var(--bg-card);}
.p-card:hover{box-shadow:var(--shadow-md);transform:translateY(-4px);}
.p-card.star{border-color:var(--navy-mid);box-shadow:0 0 0 4px rgba(12,53,127,.08),var(--shadow-md);}
.p-ribbon{position:absolute;top:-15px;left:50%;transform:translateX(-50%);white-space:nowrap;background:var(--navy);color:#fff;font-size:12px;font-weight:700;padding:5px 20px;border-radius:var(--radius-pill);letter-spacing:.5px;}
.p-card.star .p-ribbon{background:linear-gradient(90deg,#c8a800,#f5d100);;color:#1a1200;}
.p-lbl{font-family:'Roboto',sans-serif;font-size:19px;font-weight:900;color:var(--text-dark);margin-top:14px;}
.p-supply{font-size:12.5px;color:var(--text-muted);font-weight:600;text-transform:uppercase;letter-spacing:.5px;}
.p-img{max-width:160px;margin:10px auto;}
.p-img img{width:100%;object-fit:contain;}
.p-price-main{font-family:'Roboto',sans-serif;font-size:44px;font-weight:900;color:var(--navy);line-height:1;}
.p-price-main sup{font-size:22px;vertical-align:top;margin-top:8px;display:inline-block;}
.p-price-main sub{font-size:15px;font-weight:600;color:var(--text-muted);}
.p-total{font-size:14px;color:var(--text-muted);}
.p-total s{color:#b0b0b0;}
.p-total strong{color:#1a6b1a;}
.p-tags{display:flex;flex-direction:column;gap:6px;}
.ptag{display:inline-block;padding:5px 12px;border-radius:var(--radius-pill);font-size:12.5px;font-weight:700;}
.ptag-green{background:#e6f7e6;color:#1a6b1a;}
.ptag-blue{background:var(--bg-card);color:var(--navy);}
.p-card .btn{width:100%;font-size:15px;padding:14px;margin-top:auto;gap:6px;}
.p-card .btn img{height:18px;width:auto;display:inline-block;filter:brightness(0) invert(1);}
.p-pay{margin-top:8px;}
.p-pay img{height:22px;width:auto;margin:0 auto;opacity:.8;}
.price-star{text-align:center;margin-top:36px;}
.price-star img{height:28px;width:auto;margin:0 auto 8px;}
.price-star p{font-size:14px;color:var(--text-muted);}

/* ====================================================
   SECTION 8: MONEY-BACK GUARANTEE
   ==================================================== */
.mbg-sec{background:var(--bg-blue);padding:80px 0;}
.mbg-card{background:#fff;border-radius:var(--radius-lg);padding:40px 32px;border:2px solid var(--border);box-shadow:var(--shadow-sm);max-width:900px;margin:0 auto;display:grid;grid-template-columns:1fr;gap:36px;align-items:center;}
@media(min-width:768px){.mbg-card{grid-template-columns:220px 1fr;gap:48px;}}
.mbg-img{text-align:center;}
.mbg-img img{max-width:180px;margin:0 auto;filter:drop-shadow(0 12px 28px rgba(12,53,127,.18));animation:heroFloat 4s ease-in-out infinite;}
.mbg-txt h2{font-size:clamp(20px,3vw,28px);color:var(--navy);margin-bottom:16px;}
.mbg-txt p{font-size:15px;color:var(--text-body);margin-bottom:14px;line-height:1.78;}
.mbg-txt p:last-child{margin-bottom:0;}

/* ====================================================
   SECTION 9: INGREDIENTS
   ==================================================== */
.ing-sec{background:#fff;padding:80px 0;}
.ing-grid{display:grid;grid-template-columns:1fr;gap:16px;}
@media(min-width:576px){.ing-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:900px){.ing-grid{grid-template-columns:repeat(3,1fr);}}
@media(min-width:1100px){.ing-grid{grid-template-columns:repeat(4,1fr);}}
.ing-card{background:var(--bg-card);border-radius:var(--radius);padding:20px 18px;border:1.5px solid var(--border);border-left:4px solid var(--navy-mid);transition:var(--transition);}
.ing-card:hover{transform:translateX(4px);box-shadow:var(--shadow-sm);}
.ing-card h4{font-size:14.5px;color:var(--card-title);margin-bottom:8px;display:flex;align-items:center;gap:7px;}
.ing-card h4 span{font-size:18px;}
.ing-card p{font-size:13px;color:var(--text-muted);line-height:1.63;margin-bottom:8px;}
.ing-tag{display:inline-block;padding:3px 10px;background:var(--navy);color:#fff;border-radius:var(--radius-pill);font-size:11.5px;font-weight:700;}

/* ====================================================
   SECTION 10: SCIENTIFIC EVIDENCE
   ==================================================== */
.sci-sec{background:var(--bg-blue);padding:80px 0;}
.sci-grid{display:grid;grid-template-columns:1fr;gap:20px;}
@media(min-width:768px){.sci-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1024px){.sci-grid{grid-template-columns:repeat(3,1fr);}}
.sci-card{background:#fff;border-radius:var(--radius);padding:24px 20px;border:1.5px solid var(--border);transition:var(--transition);}
.sci-card:hover{box-shadow:var(--shadow-sm);transform:translateY(-3px);}
.sci-card h4{font-size:15px;color:var(--navy);margin-bottom:10px;}
.sci-card p{font-size:14px;color:var(--text-body);line-height:1.72;margin-bottom:10px;}
.sci-cite{font-size:12.5px;color:var(--text-muted);font-style:italic;}

/* ====================================================
   SECTION 12: BENEFITS
   ==================================================== */
.ben-sec{background:#fff;padding:80px 0;}
.ben-grid{display:grid;grid-template-columns:1fr;gap:14px;max-width:880px;margin:0 auto;}
@media(min-width:576px){.ben-grid{grid-template-columns:repeat(2,1fr);}}
.ben-item{display:flex;gap:14px;align-items:flex-start;background:var(--bg-card);border-radius:var(--radius);padding:18px;border:1.5px solid var(--border);transition:var(--transition);}
.ben-item:hover{box-shadow:var(--shadow-sm);transform:translateX(5px);}
.ben-chk{flex-shrink:0;width:34px;height:34px;border-radius:50%;background:var(--navy);display:flex;align-items:center;justify-content:center;margin-top:1px;}
.ben-chk svg{width:16px;height:16px;color:#fff;}
.ben-copy strong{display:block;font-size:15px;color:var(--text-dark);margin-bottom:4px;}
.ben-copy span{font-size:13.5px;color:var(--text-muted);line-height:1.55;}

/* ====================================================
   SECTION 14: FAQ
   ==================================================== */
.faq-sec{background:var(--bg-blue);padding:80px 0;}
.faq-wrap{max-width:800px;margin:0 auto;display:flex;flex-direction:column;gap:12px;}
.faq-item{border:1.5px solid var(--border);border-radius:var(--radius);overflow:hidden;}
.faq-item.open{border-color:var(--navy-mid);}
.faq-q{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:18px 20px;cursor:pointer;background:var(--bg-card);min-height:58px;user-select:none;}
.faq-item.open .faq-q{background:var(--navy);}
.faq-q h4{font-size:15px;font-weight:700;color:var(--text-dark);flex:1;}
.faq-item.open .faq-q h4{color:#fff;}
.faq-plus{flex-shrink:0;width:28px;height:28px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;}
.faq-plus svg{width:14px;height:14px;color:var(--navy);transition:transform .3s;}
.faq-item.open .faq-plus svg{transform:rotate(45deg);}
.faq-ans{max-height:0;overflow:hidden;transition:max-height .42s cubic-bezier(.4,0,.2,1);}
.faq-ans.open{max-height:280px;}
.faq-ans-txt{padding:16px 20px 20px;font-size:15px;color:var(--text-body);line-height:1.75;border-top:1px solid var(--border);}

/* ====================================================
   SECTION 15: FINAL CTA
   ==================================================== */
.final-sec{background:var(--navy);padding:80px 0;position:relative;overflow:hidden;}
.final-sec::before{content:'';position:absolute;top:-80px;left:-80px;width:400px;height:400px;border-radius:50%;background:radial-gradient(circle,rgba(255,255,255,.06) 0%,transparent 70%);animation:orb1 7s ease-in-out infinite;pointer-events:none;}
.final-sec::after{content:'';position:absolute;bottom:-60px;right:-60px;width:340px;height:340px;border-radius:50%;background:radial-gradient(circle,rgba(249,228,78,.12) 0%,transparent 70%);animation:orb2 9s ease-in-out infinite 1.5s;pointer-events:none;}
@keyframes orb1{0%,100%{transform:translate(0,0);}50%{transform:translate(20px,15px);}}
@keyframes orb2{0%,100%{transform:translate(0,0);}50%{transform:translate(-16px,-22px);}}
.final-particles{position:absolute;inset:0;overflow:hidden;pointer-events:none;}
.fp{position:absolute;border-radius:50%;background:rgba(255,255,255,.07);animation:fpAnim linear infinite;}
.fp:nth-child(1){width:7px;height:7px;left:12%;animation-duration:10s;animation-delay:0s;}
.fp:nth-child(2){width:11px;height:11px;left:28%;animation-duration:14s;animation-delay:2s;}
.fp:nth-child(3){width:6px;height:6px;left:47%;animation-duration:9s;animation-delay:1s;}
.fp:nth-child(4){width:9px;height:9px;left:63%;animation-duration:12s;animation-delay:3s;}
.fp:nth-child(5){width:8px;height:8px;left:79%;animation-duration:11s;animation-delay:.5s;}
.fp:nth-child(6){width:10px;height:10px;left:91%;animation-duration:13s;animation-delay:4s;}
@keyframes fpAnim{0%{transform:translateY(110vh) rotate(0);opacity:0;}10%{opacity:1;}90%{opacity:1;}100%{transform:translateY(-30px) rotate(720deg);opacity:0;}}
.final-inner{position:relative;z-index:1;text-align:center;}
.final-inner img{max-width:240px;margin:0 auto 28px;animation:heroFloat 4.5s ease-in-out infinite;filter:drop-shadow(0 20px 44px rgba(0,0,0,.35));}
.final-inner h2{color:#fff;font-size:clamp(24px,4.5vw,44px);margin-bottom:14px;}
.final-inner h2 span{color:#f9e44e;}
.final-inner>p{color:rgba(255,255,255,.8);font-size:18px;max-width:560px;margin:0 auto 24px;}
.final-price-row{display:flex;align-items:center;justify-content:center;gap:18px;flex-wrap:wrap;margin-bottom:30px;}
.final-old{font-size:16px;color:rgba(255,255,255,.5);font-weight:600;}
.final-old s{text-decoration:line-through;}
.final-new{font-family:'Roboto',sans-serif;font-size:30px;font-weight:900;color:#f9e44e;}
.btn-final{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:20px 52px;min-height:62px;background:#f9e44e;color:var(--navy);font-family:'Roboto',sans-serif;font-size:18px;font-weight:900;border-radius:var(--radius);box-shadow:0 6px 24px rgba(249,228,78,.4);transition:var(--transition);animation:glowPulse 2.8s ease-in-out infinite;}
.btn-final:hover{transform:translateY(-3px) scale(1.04);box-shadow:0 10px 36px rgba(249,228,78,.6);}
@keyframes glowPulse{0%,100%{box-shadow:0 6px 24px rgba(249,228,78,.4);}50%{box-shadow:0 8px 42px rgba(249,228,78,.75);}}
.final-note{color:rgba(255,255,255,.55);font-size:14px;margin-top:16px;}

/* ====================================================
   FOOTER
   ==================================================== */
.footer{background:#0e1e3f;color:rgba(255,255,255,.7);padding:56px 0 24px;}
.footer-top{display:grid;grid-template-columns:1fr;gap:40px;margin-bottom:40px;}
@media(min-width:768px){.footer-top{grid-template-columns:1.5fr 1fr 1fr;gap:48px;}}
.footer-logo{font-family:'Roboto',sans-serif;font-size:18px;font-weight:900;color:#fff;letter-spacing:.5px;line-height:1.25;margin-bottom:12px;}
.footer-logo span{color:#7da8e0;font-size:13px;font-weight:400;display:block;letter-spacing:.3px;}
.footer-brand p{font-size:13.5px;color:rgba(255,255,255,.55);line-height:1.7;}
.footer-col h5{font-size:13.5px;font-weight:700;color:#fff;text-transform:uppercase;letter-spacing:.8px;margin-bottom:14px;}
.footer-col ul{display:flex;flex-direction:column;gap:10px;}
.footer-col a{font-size:13.5px;color:rgba(255,255,255,.55);transition:color .25s;}
.footer-col a:hover{color:#fff;}
.soc-row{display:flex;gap:10px;flex-wrap:wrap;}
.soc-ico{width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;transition:var(--transition);}
.soc-ico:hover{background:var(--navy-mid);transform:translateY(-2px);}
.soc-ico svg{width:17px;height:17px;fill:#fff;}
.footer-disc{border-top:1px solid rgba(255,255,255,.08);padding-top:24px;margin-bottom:20px;}
.footer-disc p{font-size:12px;color:rgba(255,255,255,.38);line-height:1.72;margin-bottom:7px;}
.footer-bottom{display:flex;flex-direction:column;align-items:center;gap:12px;padding-top:16px;border-top:1px solid rgba(255,255,255,.07);}
@media(min-width:576px){.footer-bottom{flex-direction:row;justify-content:space-between;}}
.footer-legal{display:flex;flex-wrap:wrap;gap:4px 16px;align-items:center;}
.footer-legal a{font-size:13px;color:rgba(255,255,255,.45);transition:color .25s;}
.footer-legal a:hover{color:#fff;}
.footer-legal span{color:rgba(255,255,255,.2);font-size:12px;}
.footer-copy{font-size:13px;color:rgba(255,255,255,.35);}

/* ====================================================
   SCROLL TOP
   ==================================================== */
.scroll-top{position:fixed;bottom:24px;right:24px;z-index:1500;width:52px;height:52px;background:var(--navy);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-md);opacity:0;transform:translateY(10px);transition:var(--transition);pointer-events:none;}
.scroll-top.show{opacity:1;transform:translateY(0);pointer-events:auto;}
.scroll-top:hover{transform:translateY(-3px);background:var(--navy-light);}
.scroll-top svg{width:21px;height:21px;}

/* ====================================================
   SECTION WAVE DIVIDERS
   ==================================================== */
.wave-div{display:block;width:100%;line-height:0;overflow:hidden;}
.wave-div svg{width:100%;height:48px;display:block;}

/* ====================================================
   RESPONSIVE UTILITIES
   ==================================================== */
@media(max-width:575px){
  .hero-bottle{max-width:220px;}
  .cd-num{font-size:28px;}
}
@media(min-width:768px){
  .hero-bottle{max-width:340px;}
}
@media(min-width:1024px){
  .hero-bottle{max-width:400px;}
}

/* ====================================================
   MOBILE FIXES — comprehensive (≤767px)
   ==================================================== */
@media(max-width:767px){

  /* --- NAV --- */
  .nav-inner{height:60px;}
  .nav-brand a{font-size:14px;letter-spacing:.2px;}
  .nav-brand a span{font-size:14px;}

  /* --- HERO --- */
  .hero{padding:80px 0 48px;}
  .hero-grid{gap:28px;}
  .hero-eyebrow{font-size:12px;}
  .hero-content h1{font-size:22px !important;line-height:1.3;}
  .hero-content p{font-size:15px;margin-bottom:12px;}
  .hero-pills{gap:6px;margin:14px 0 20px;}
  .hero-pill{font-size:12px;padding:6px 10px;}
  .hero-stars img{height:18px;}
  .hero-stars span{font-size:13px;}
  .hero-note{font-size:12px;}
  .btn-wide{font-size:15px !important;padding:15px 24px !important;}

  /* --- SECTION HEADERS --- */
  .sec-head{margin-bottom:36px;}
  .sec-head h2{font-size:21px;}
  .sec-head p{font-size:15px;}
  .sec-pad{padding:56px 0;}

  /* --- WHY GRID --- */
  .why-sec{padding:56px 0;}
  .why-card{padding:22px 18px;}
  .why-card img{width:60px;height:60px;}
  .why-card h4{font-size:14px;}
  .why-card p{font-size:13px;}

  /* --- WHAT IS --- */
  .what-sec{padding:56px 0;}
  .what-grid{gap:32px;}
  .what-txt h2{font-size:22px;}
  .what-txt p{font-size:15px;}
  .what-li strong{font-size:14px;}
  .what-li span{font-size:13px;}
  .what-li-dot{width:24px;height:24px;}
  .what-img-tag{font-size:12px;padding:8px 14px;left:12px;bottom:-12px;}

  /* --- HOW IT WORKS --- */
  .how-sec{padding:56px 0;}
  .acc-hdr{padding:14px 16px;min-height:52px;}
  .acc-lbl{font-size:14px;}
  .acc-n{width:28px;height:28px;font-size:13px;}
  .acc-body-txt{font-size:14px;padding:14px 16px 18px;}

  /* --- REVIEWS --- */
  .reviews-sec{padding:56px 0;}
  .rev-card{padding:22px 18px;}
  .rev-quote{font-size:14px;}
  .rev-author img{width:44px;height:44px;}
  .rev-name{font-size:13px;}
  .rev-loc{font-size:12px;}

  /* --- PRICING --- */
  .price-sec{padding:56px 0;}
  .price-grid{grid-template-columns:1fr !important;}
  .p-card{padding:24px 18px;}
  .p-lbl{font-size:17px;}
  .p-price-main{font-size:38px;}
  .p-price-main sup{font-size:18px;}
  .cd-box{margin-bottom:28px;}
  .cd-timer{padding:12px 20px;gap:6px;}
  .cd-num{font-size:26px !important;}
  .cd-unit{min-width:46px;}

  /* --- MBG --- */
  .mbg-sec{padding:56px 0;}
  .mbg-card{padding:28px 20px;}
  .mbg-img img{max-width:140px;}
  .mbg-txt p{font-size:14px;}

  /* --- INGREDIENTS --- */
  .ing-sec{padding:56px 0;}
  .ing-grid{grid-template-columns:1fr !important;}
  .ing-card{padding:16px 14px;}
  .ing-card h4{font-size:13.5px;}
  .ing-card p{font-size:12.5px;}

  /* --- SCIENCE --- */
  .sci-sec{padding:56px 0;}
  .sci-grid{grid-template-columns:1fr !important;}
  .sci-card{padding:20px 16px;}
  .sci-card h4{font-size:14px;}
  .sci-card p{font-size:13.5px;}

  /* --- BENEFITS --- */
  .ben-sec{padding:56px 0;}
  .ben-grid{grid-template-columns:1fr !important;}
  .ben-item{padding:14px;}
  .ben-copy strong{font-size:14px;}
  .ben-copy span{font-size:13px;}
  .ben-chk{width:30px;height:30px;flex-shrink:0;}

  /* --- FAQ --- */
  .faq-sec{padding:56px 0;}
  .faq-q{padding:14px 16px;min-height:52px;}
  .faq-q h4{font-size:14px;}
  .faq-ans-txt{font-size:14px;padding:14px 16px 18px;}

  /* --- FINAL CTA --- */
  .final-sec{padding:56px 0;}
  .final-inner img{max-width:180px;margin-bottom:20px;}
  .final-inner h2{font-size:22px;}
  .final-inner>p{font-size:15px;}
  .final-price-row{gap:10px;flex-direction:column;align-items:center;}
  .final-old{font-size:14px;}
  .final-new{font-size:24px;}
  .btn-final{font-size:15px;padding:16px 24px;min-height:56px;width:100%;}
  .final-note{font-size:12px;}

  /* --- FOOTER --- */
  .footer{padding:40px 0 20px;}
  .footer-top{gap:28px;margin-bottom:28px;}
  .footer-logo{font-size:16px;}
  .footer-brand p{font-size:13px;}
  .footer-col a{font-size:13px;}
  .footer-disc p{font-size:11.5px;}
  .footer-copy{font-size:12px;}

  /* --- SCROLL TOP --- */
  .scroll-top{width:44px;height:44px;bottom:16px;right:16px;}
}

/* ====================================================
   SMALL PHONE (≤390px)
   ==================================================== */
@media(max-width:390px){
  .nav-brand a{font-size:13px;}
  .hero-content h1{font-size:20px !important;}
  .btn-wide{font-size:14px !important;padding:14px 18px !important;}
  .p-price-main{font-size:34px;}
  .btn-final{font-size:14px;}
  .cd-num{font-size:22px !important;}
  .cd-unit{min-width:38px;}
}

/* ====================================================
   PROS & CONS SECTION
   ==================================================== */
.proscons-sec{ background:#dde6fa; }
.pc-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  max-width:900px;
  margin:0 auto;
}
.pc-col{
  background:#fff;
  border-radius:16px;
  padding:28px 28px 24px;
  box-shadow:0 4px 20px rgba(21,64,141,.08);
}
.pc-pros{ border-top:4px solid #22c55e; }
.pc-cons{ border-top:4px solid #ef4444; }
.pc-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}
.pc-head h3{
  font-size:18px;
  font-weight:700;
  margin:0;
  color:var(--text-head);
}
.pc-icon{ font-size:22px; }
.pc-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.pc-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14.5px;
  line-height:1.65;
  color:var(--text-body);
}
.pc-dot{
  flex-shrink:0;
  width:22px;
  height:22px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:2px;
}
.pc-dot-pro{ background:#dcfce7; color:#16a34a; }
.pc-dot-con{ background:#fee2e2; color:#dc2626; }

/* ====================================================
   REALISTIC TIMELINE SECTION
   ==================================================== */
.timeline-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  max-width:900px;
  margin:0 auto;
}
.tl-item{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 4px 18px rgba(21,64,141,.08);
}
.tl-badge{
  background:var(--navy);
  color:#fff;
  font-size:13px;
  font-weight:700;
  padding:8px 18px;
  letter-spacing:.04em;
}
.tl-body{
  padding:20px 22px 22px;
}
.tl-body h4{
  font-size:15.5px;
  font-weight:700;
  color:var(--text-head);
  margin:0 0 8px;
}
.tl-body p{
  font-size:14px;
  color:var(--text-body);
  line-height:1.7;
  margin:0;
}

@media(max-width:767px){
  .pc-grid{ grid-template-columns:1fr; }
  .timeline-grid{ grid-template-columns:1fr; }
}

/* ====================================================
   PROSE TEXT PARAGRAPH SPACING
   ==================================================== */
.how-prose{max-width:860px;margin:0 auto;}
.how-prose p{
  font-size:15.5px;
  color:var(--text-body);
  line-height:1.82;
  margin-bottom:18px;
}
.how-prose p:last-child{margin-bottom:0;}
.how-prose strong{color:var(--text-head);}
.how-prose a.btn{display:inline-block;margin-top:8px;}
