/* ===== RESET & BASE ===== */
*, *::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%; }
* { -webkit-tap-highlight-color: transparent; }
input, select, textarea { font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0d1b2a;
  --navy2: #1a2e44;
  --navy3: #162032;
  --gold: #c8a84b;
  --gold2: #e8c96a;
  --gold-light: #f5e098;
  --white: #ffffff;
  --text: #e8eaf0;
  --text-muted: #8a9bb5;
  --accent-blue: #1e6fa5;
  --green: #22c55e;
  --red: #ef4444;
  --border: rgba(200,168,75,0.18);
  --glass: rgba(255,255,255,0.04);
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 8px 32px rgba(200,168,75,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ===== BODY ===== */
body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== UTILITY ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.dark-section { background: var(--navy3); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.w-full { width: 100%; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-family: var(--font-heading); font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-bottom: 12px; color: var(--white); }
.section-sub { font-size: clamp(15px, 2vw, 17px); color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-tag { display: inline-block; background: rgba(200,168,75,0.15); color: var(--gold); border: 1px solid var(--border); border-radius: 50px; padding: 6px 18px; font-size: 13px; font-family: var(--font-heading); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; border-radius: 50px; font-family: var(--font-heading); font-weight: 700;
  font-size: 16px; cursor: pointer; border: none; text-align: center; min-height: 52px;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none; position: relative; overflow: hidden;
}
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.12); opacity: 0; transition: opacity 0.2s; }
.btn:hover::after { opacity: 1; }
.btn:hover { transform: scale(1.05); }
.btn:active { transform: scale(0.98); }
.btn-primary { background: linear-gradient(135deg, var(--accent-blue), #0f4c75); color: var(--white); box-shadow: 0 6px 24px rgba(30,111,165,0.4); }
.btn-primary:hover { box-shadow: 0 12px 36px rgba(30,111,165,0.6); }
.btn-hero { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--navy); box-shadow: var(--shadow-gold); font-size: 18px; padding: 20px 40px; }
.btn-hero:hover { box-shadow: 0 16px 48px rgba(200,168,75,0.5); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--navy); box-shadow: var(--shadow-gold); font-size: 17px; }
.btn-gold:hover { box-shadow: 0 16px 40px rgba(200,168,75,0.5); }
.btn-xl { padding: 22px 48px; font-size: 19px; }
.btn-pulse { animation: btnPulse 2.5s infinite; }
@keyframes btnPulse { 0%,100%{box-shadow:0 0 0 0 rgba(200,168,75,0.5)} 50%{box-shadow:0 0 0 10px rgba(200,168,75,0)} }
.pulse-gold { animation: pulseGold 2s infinite; }
@keyframes pulseGold { 0%,100%{box-shadow:0 6px 32px rgba(200,168,75,0.4)} 50%{box-shadow:0 6px 60px rgba(200,168,75,0.8),0 0 80px rgba(200,168,75,0.3)} }
.atc-img { max-height: 36px; width: auto; display: inline-block; }

/* ===== ANIMATIONS ===== */
@keyframes floatAnim { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-18px) rotate(2deg)} }
.float-anim { animation: floatAnim 5s ease-in-out infinite; }
@keyframes orbFloat { 0%,100%{transform:translate(0,0)} 33%{transform:translate(30px,-20px)} 66%{transform:translate(-20px,30px)} }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-50px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(50px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }
@keyframes shimmer { 0%,100%{opacity:0.5} 50%{opacity:1} }
.fade-left { animation: fadeInLeft 0.9s ease both; }
.fade-right { animation: fadeInRight 0.9s ease 0.2s both; }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(13,27,42,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); transition: padding var(--transition), box-shadow var(--transition); }
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 40px; width: 40px; object-fit: contain; border-radius: 8px; }
.logo-text { font-family: var(--font-heading); font-size: 26px; font-weight: 900; color: var(--white); }
.logo-accent { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--text-muted); transition: color var(--transition); padding: 6px 0; }
.nav-link:hover { color: var(--gold); }
.nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--navy); padding: 10px 24px; border-radius: 50px; font-family: var(--font-heading); font-size: 14px; font-weight: 700; min-height: 44px; display: flex; align-items: center; }
.nav-cta:hover { transform: scale(1.05); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 72px; position: relative; overflow: hidden; background: radial-gradient(ellipse at 20% 50%, rgba(30,111,165,0.15) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(200,168,75,0.08) 0%, transparent 60%), var(--navy); }
.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); animation: orbFloat 10s ease-in-out infinite; }
.orb1 { width: 400px; height: 400px; background: rgba(30,111,165,0.15); top: -100px; right: -100px; animation-delay: 0s; }
.orb2 { width: 300px; height: 300px; background: rgba(200,168,75,0.1); bottom: 50px; left: -80px; animation-delay: -3s; }
.orb3 { width: 200px; height: 200px; background: rgba(200,168,75,0.08); top: 50%; right: 25%; animation-delay: -6s; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 20px; }
.hero-image-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-glow-ring { position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(200,168,75,0.18) 0%, transparent 70%); animation: shimmer 3s ease-in-out infinite; }
.hero-bottle { max-height: 500px; width: auto; position: relative; z-index: 2; filter: drop-shadow(0 20px 60px rgba(200,168,75,0.3)); }
.hero-badge-float { position: absolute; bottom: 20px; right: 0; background: var(--gold); color: var(--navy); border-radius: 50px; padding: 8px 18px; font-family: var(--font-heading); font-weight: 700; font-size: 14px; box-shadow: var(--shadow-gold); z-index: 3; }
.hero-tag { display: inline-block; background: rgba(200,168,75,0.15); color: var(--gold); border: 1px solid var(--border); border-radius: 50px; padding: 8px 20px; font-size: 13px; font-family: var(--font-heading); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.hero-h1 { font-family: var(--font-heading); font-size: clamp(30px, 4vw, 52px); font-weight: 900; line-height: 1.15; color: var(--white); margin-bottom: 24px; }
.hero-p { font-size: clamp(15px, 1.6vw, 17px); color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.hero-p strong { color: var(--white); }
.hero-stars { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.star-img { height: 28px; width: auto; }
.star-fallback { color: var(--gold); font-size: 22px; }
.hero-guarantee { font-size: 13px; color: var(--text-muted); margin-top: 14px; }

/* ===== WHY CHOOSE US ===== */
.badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.badge-card { background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.badge-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.badge-icon-wrap { width: 80px; height: 80px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.badge-icon-wrap img { width: 72px; height: 72px; object-fit: contain; }
.icon-placeholder { font-size: 48px; line-height: 1; }
.badge-card h3 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--gold); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== WHAT IS / SPLIT LAYOUT ===== */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-layout.reverse { }
.split-image { display: flex; justify-content: center; }
.img-frame { border-radius: var(--radius); overflow: hidden; border: 2px solid var(--border); box-shadow: var(--shadow); }
.img-frame img { width: 100%; max-width: 460px; height: auto; }
.img-frame.glow-gold { box-shadow: var(--shadow-gold); border-color: var(--gold); }
.split-text h2 { font-family: var(--font-heading); font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--white); margin-bottom: 20px; }
.split-text p { font-size: clamp(14px, 1.5vw, 16px); color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.split-text strong { color: var(--white); }

/* ===== ACCORDION ===== */
.accordion-list { display: flex; flex-direction: column; gap: 16px; max-width: 900px; margin: 0 auto; }
.accordion-item { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.accordion-header { display: flex; align-items: center; gap: 16px; width: 100%; padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left; color: var(--white); font-family: var(--font-heading); font-size: 16px; font-weight: 700; min-height: 64px; transition: background var(--transition); }
.accordion-header:hover { background: rgba(200,168,75,0.06); }
.acc-num { color: var(--gold); font-size: 20px; font-weight: 900; min-width: 36px; }
.acc-title { flex: 1; font-size: clamp(14px, 1.6vw, 16px); }
.acc-icon { color: var(--gold); font-size: 24px; font-weight: 300; transition: transform var(--transition); min-width: 28px; text-align: center; }
.accordion-header[aria-expanded="true"] .acc-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.accordion-body.open { max-height: 400px; padding: 0 24px 20px; }
.accordion-body p { font-size: clamp(14px, 1.5vw, 15px); color: var(--text-muted); line-height: 1.8; }
.accordion-body strong { color: var(--white); }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: transform var(--transition), border-color var(--transition); }
.review-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.review-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.reviewer-photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.reviewer-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--navy2); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; color: var(--gold); font-size: 16px; }
.reviewer-info strong { display: block; font-family: var(--font-heading); font-weight: 700; color: var(--white); font-size: 15px; }
.reviewer-info span { font-size: 13px; color: var(--text-muted); display: block; }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 1px; margin-top: 2px; }
.review-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.review-card strong { color: var(--white); }
.verified-badge { display: inline-block; font-size: 12px; color: var(--green); font-family: var(--font-heading); font-weight: 600; }
.star-img-lg { height: 36px; width: auto; margin: 0 auto; }
.star-lg-fallback { font-size: 20px; color: var(--gold); text-align: center; }

/* ===== PRICING ===== */
.countdown-wrap { text-align: center; margin-bottom: 44px; }
.countdown-label { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--text-muted); margin-bottom: 12px; }
.countdown { display: inline-flex; align-items: center; gap: 8px; background: var(--navy3); border: 2px solid var(--gold); border-radius: var(--radius); padding: 16px 32px; box-shadow: var(--shadow-gold); }
.cd-block { display: flex; flex-direction: column; align-items: center; }
.cd-num { font-family: var(--font-heading); font-size: clamp(40px, 6vw, 64px); font-weight: 900; color: var(--gold); line-height: 1; }
.cd-label { font-family: var(--font-heading); font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 2px; margin-top: 4px; }
.cd-colon { font-family: var(--font-heading); font-size: 48px; font-weight: 900; color: var(--gold); line-height: 1; animation: colonBlink 1s step-end infinite; }
@keyframes colonBlink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; position: relative; transition: transform var(--transition), border-color var(--transition); }
.price-card:hover { transform: translateY(-8px); }
.price-card.popular { background: linear-gradient(135deg, rgba(200,168,75,0.12), rgba(13,27,42,0.8)); border: 2px solid var(--gold); box-shadow: var(--shadow-gold); transform: scale(1.03); }
.price-card.popular:hover { transform: scale(1.06) translateY(-6px); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--navy); padding: 6px 20px; border-radius: 50px; font-family: var(--font-heading); font-size: 12px; font-weight: 800; white-space: nowrap; letter-spacing: 0.5px; }
.price-label { font-family: var(--font-heading); font-size: 13px; font-weight: 800; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.price-bottles { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.price-supply { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.price-img { width: 150px; height: auto; margin: 0 auto 20px; }
.price-main { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 52px); font-weight: 900; color: var(--gold); line-height: 1; }
.per-bottle { font-size: 18px; font-weight: 600; color: var(--text-muted); }
.price-was { font-size: 15px; color: var(--text-muted); margin: 8px 0 16px; }
.price-bonus-badges { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.bonus-tag { display: inline-block; background: rgba(34,197,94,0.15); color: var(--green); border: 1px solid rgba(34,197,94,0.3); border-radius: 50px; padding: 4px 14px; font-family: var(--font-heading); font-size: 12px; font-weight: 700; }
.cards-img { max-height: 30px; width: auto; margin: 12px auto 0; opacity: 0.7; }

/* ===== BONUS ===== */
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.bonus-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; text-align: center; transition: transform var(--transition), border-color var(--transition); }
.bonus-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.bonus-number { display: inline-block; background: var(--gold); color: var(--navy); border-radius: 50px; padding: 4px 16px; font-family: var(--font-heading); font-size: 12px; font-weight: 800; letter-spacing: 1px; margin-bottom: 20px; }
.bonus-card img { width: 100%; max-width: 280px; height: 300px; object-fit: cover; border-radius: var(--radius-sm); margin: 0 auto 20px; }
.bonus-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.bonus-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.bonus-value { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--gold); }

/* ===== INGREDIENTS ===== */
.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ingredient-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 28px; transition: transform var(--transition), border-color var(--transition); }
.ingredient-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.ing-icon { font-size: 32px; margin-bottom: 12px; }
.ingredient-card h3 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.ingredient-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.ingredient-card strong { color: var(--white); }

/* ===== SCIENCE ===== */
.science-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.science-item { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 28px; }
.science-item h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.science-item p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.science-item strong { color: var(--white); }
.science-disclaimer { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); border-radius: var(--radius-sm); padding: 20px 24px; margin-top: 32px; }
.science-disclaimer p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== GUARANTEE ===== */
.guarantee-intro { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.8; }
.guarantee-intro strong { color: var(--white); }
.guarantee-points { display: flex; flex-direction: column; gap: 24px; }
.guarantee-point { display: flex; gap: 16px; align-items: flex-start; }
.g-icon { font-size: 28px; min-width: 40px; }
.guarantee-point h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.guarantee-point p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.guarantee-point strong { color: var(--white); }

/* ===== BENEFITS ===== */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 24px; transition: border-color var(--transition), transform var(--transition); }
.benefit-item:hover { border-color: var(--gold); transform: translateX(4px); }
.benefit-check { font-size: 22px; min-width: 28px; }
.benefit-item h3 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.benefit-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 860px; margin: 0 auto; }
.faq-item { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left; color: var(--white); font-family: var(--font-heading); font-size: clamp(14px, 1.6vw, 16px); font-weight: 700; min-height: 64px; transition: background var(--transition); }
.faq-header:hover { background: rgba(200,168,75,0.06); }
.faq-header[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-icon { color: var(--gold); font-size: 24px; font-weight: 300; transition: transform var(--transition); min-width: 28px; text-align: center; flex-shrink: 0; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-body.open { max-height: 400px; padding: 0 24px 20px; }
.faq-body p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.faq-body strong { color: var(--white); }

/* ===== FINAL CTA ===== */
.final-cta { background: radial-gradient(ellipse at center, rgba(200,168,75,0.08) 0%, transparent 70%), var(--navy); position: relative; overflow: hidden; }
.final-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.cta-glow-orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.cta-orb1 { width: 500px; height: 500px; background: rgba(200,168,75,0.1); top: -200px; right: -200px; }
.cta-orb2 { width: 300px; height: 300px; background: rgba(30,111,165,0.1); bottom: -100px; left: -100px; }
.cta-bottle-img { max-height: 460px; width: auto; margin: 0 auto; filter: drop-shadow(0 20px 60px rgba(200,168,75,0.35)); }
.cta-headline { font-family: var(--font-heading); font-size: clamp(26px, 3.5vw, 44px); font-weight: 900; color: var(--white); margin-bottom: 24px; line-height: 1.2; }
.cta-price-block { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.cta-regular { font-size: 18px; color: var(--text-muted); }
.cta-special { font-family: var(--font-heading); font-size: clamp(42px, 6vw, 68px); font-weight: 900; color: var(--gold); line-height: 1; }
.cta-special span { font-size: 22px; }
.cta-trust-row { display: flex; flex-wrap: wrap; gap: 16px; margin: 16px 0; font-size: 14px; color: var(--text-muted); font-family: var(--font-heading); font-weight: 600; }

/* ===== FOOTER ===== */
.footer { background: #060e17; border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text { font-size: 28px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); margin-top: 12px; line-height: 1.7; max-width: 300px; }
.social-icons { display: flex; gap: 12px; margin-top: 20px; }
.social-icon { width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: var(--transition); }
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.footer-links-col h4 { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links-col a { display: block; font-size: 14px; color: var(--text-muted); padding: 5px 0; transition: color var(--transition); }
.footer-links-col a:hover { color: var(--gold); }
.footer-order-link { color: var(--gold) !important; font-weight: 700; }
.footer-legal-links { display: flex; flex-direction: column; }
.footer-disclaimer { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 24px; margin-bottom: 32px; }
.footer-disclaimer p { font-size: 12px; color: var(--text-muted); line-height: 1.8; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom a { color: var(--gold); }

/* ===== PURCHASE POPUP ===== */
.purchase-popup { position: fixed; bottom: 24px; left: 24px; z-index: 2000; background: var(--navy2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow); transform: translateX(-120%); transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); max-width: 280px; }
.purchase-popup.show { transform: translateX(0); }
.popup-img { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; flex-shrink: 0; }
.popup-content p { font-size: 13px; color: var(--text); line-height: 1.5; }
.popup-name { font-family: var(--font-heading); font-weight: 700; color: var(--white); }
.popup-time { font-size: 11px; color: var(--text-muted); }
.popup-close { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 20px; line-height: 1; padding: 4px; flex-shrink: 0; align-self: flex-start; }

/* ===== EXIT POPUP ===== */
.exit-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 2990; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.exit-overlay.active { opacity: 1; pointer-events: all; }
.exit-popup { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.85); z-index: 3000; background: var(--navy2); border: 2px solid var(--gold); border-radius: var(--radius); padding: 40px 32px; max-width: 520px; width: calc(100% - 40px); text-align: center; box-shadow: var(--shadow-gold); opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; }
.exit-popup.active { opacity: 1; pointer-events: all; transform: translate(-50%, -50%) scale(1); }
.exit-close { position: absolute; top: 16px; right: 16px; background: var(--gold); color: var(--navy); border: none; cursor: pointer; border-radius: 50px; padding: 6px 14px; font-family: var(--font-heading); font-size: 12px; font-weight: 700; }
.exit-badge { display: inline-block; background: var(--red); color: var(--white); border-radius: 50px; padding: 6px 18px; font-family: var(--font-heading); font-size: 13px; font-weight: 800; margin-bottom: 16px; }
.exit-popup h3 { font-family: var(--font-heading); font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.exit-popup p { font-size: 15px; color: var(--text-muted); margin-bottom: 16px; }
.exit-popup strong { color: var(--white); }
.exit-img { max-height: 160px; width: auto; margin: 0 auto 20px; }
.exit-dismiss { display: block; margin-top: 12px; font-size: 12px; color: var(--text-muted); text-decoration: underline; cursor: pointer; }

/* ===== SCROLL TO TOP ===== */
.scroll-top { position: fixed; bottom: 30px; right: 24px; z-index: 1500; width: 56px; height: 56px; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--navy); border: none; border-radius: 50%; font-size: 22px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-gold); opacity: 0; pointer-events: none; transition: opacity var(--transition), transform var(--transition); }
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: scale(1.1) translateY(-4px); }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .float-anim { animation: none; }
  .orb { animation: none; }
}

/* ===== RESPONSIVE — TABLET (max 1024px) ===== */
@media (max-width: 1024px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .science-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ===== RESPONSIVE — TABLET (max 768px) ===== */
@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  /* NAV */
  .hamburger { display: flex; }
  .nav-links { position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--navy); flex-direction: column; align-items: center; justify-content: center; gap: 32px; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.77,0,0.175,1); z-index: 999; }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 20px; }
  .nav-cta { font-size: 17px; padding: 14px 36px; }
  /* HERO */
  .hero-container { grid-template-columns: 1fr; gap: 32px; text-align: center; padding: 40px 20px; }
  .hero-image-wrap { order: -1; }
  .hero-bottle { max-height: 320px; }
  .hero-glow-ring { width: 260px; height: 260px; }
  .hero-badge-float { position: static; display: inline-flex; margin-top: 16px; }
  .hero-stars { justify-content: center; }
  .btn-hero { width: 100%; }
  /* SPLIT */
  .split-layout, .split-layout.reverse { grid-template-columns: 1fr; gap: 32px; }
  .split-image { order: -1; }
  /* REVIEWS */
  .reviews-grid { grid-template-columns: 1fr; }
  /* PRICING */
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .price-card.popular { transform: none; }
  /* BONUS */
  .bonus-grid { grid-template-columns: 1fr; }
  /* INGREDIENTS */
  .ingredients-grid { grid-template-columns: 1fr; }
  /* BENEFITS */
  .benefits-grid { grid-template-columns: 1fr; }
  /* FINAL CTA */
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-trust-row { justify-content: center; }
  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== RESPONSIVE — PHONE (max 576px) ===== */
@media (max-width: 576px) {
  .badges-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .countdown { padding: 12px 20px; }
  .cd-num { font-size: 36px; }
  .cd-colon { font-size: 36px; }
  .purchase-popup { left: 12px; right: 12px; max-width: none; bottom: 72px; }
  .btn-hero { font-size: 16px; padding: 16px 24px; }
  .hero-h1 { font-size: 26px; }
  .science-grid { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE — SMALL PHONE (max 380px) ===== */
@media (max-width: 380px) {
  .hero-h1 { font-size: 22px; }
  .cta-headline { font-size: 22px; }
  .nav-container { padding: 0 14px; }
}
