/* ============================================================
   HORMOVANCE — styles.css
   Design: Modern Medical Premium
   Palette: Deep teal #0B4F6C, Vibrant teal #1A936F, 
            Warm gold #FAC748, Light #F0F8FF, White #FFFFFF
   Fonts: Montserrat (headings) + Open Sans (body)
   ============================================================ */

/* === 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; }

body {
  font-family: 'Open Sans', sans-serif;
  color: #1a2332;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}

/* === CSS VARIABLES === */
:root {
  --deep: #0B4F6C;
  --teal: #1A936F;
  --gold: #FAC748;
  --light: #F0F8FF;
  --white: #FFFFFF;
  --text: #1a2332;
  --muted: #5a6a7a;
  --border: #d0e8f0;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(11,79,108,0.12);
  --shadow-lg: 0 16px 56px rgba(11,79,108,0.18);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --gradient: linear-gradient(135deg, #0B4F6C 0%, #1A936F 100%);
  --gradient-gold: linear-gradient(135deg, #FAC748 0%, #f59e0b 100%);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--deep);
}
h1 { font-size: clamp(24px, 5vw, 52px); }
h2 { font-size: clamp(22px, 4vw, 40px); }
h3 { font-size: clamp(18px, 3vw, 24px); }
h4 { font-size: clamp(16px, 2.5vw, 20px); }
p { color: var(--muted); line-height: 1.8; }
strong { color: var(--deep); font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* === UTILITY === */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.bg-light { background: var(--light); }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow { display: inline-block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); background: rgba(26,147,111,0.1); padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.section-sub { color: var(--muted); font-size: 18px; max-width: 600px; margin: 12px auto 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; flex-direction: column;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
  padding: 16px 36px; border-radius: 100px; border: none; cursor: pointer;
  transition: var(--transition); text-align: center; gap: 4px;
  min-height: 56px; line-height: 1.2;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(26,147,111,0.35);
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 10px 36px rgba(26,147,111,0.45); }
.btn-primary:active { transform: scale(0.98); }
.btn-outline {
  background: transparent; color: var(--deep);
  border: 2px solid var(--deep);
}
.btn-outline:hover { background: var(--deep); color: var(--white); transform: scale(1.05); }
.btn-lg { padding: 20px 48px; font-size: 18px; min-height: 64px; }
.btn-xl { padding: 22px 60px; font-size: 20px; min-height: 72px; }
.btn-full { width: 100%; }
.btn-sub { font-size: 12px; font-weight: 500; opacity: 0.85; font-family: 'Open Sans', sans-serif; }

/* === NAVIGATION === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; max-width: 1200px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; color: var(--deep); }
.nav-logo img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 15px; color: var(--deep); transition: var(--transition); position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--teal); transition: var(--transition); }
.nav-link:hover::after { width: 100%; }
.nav-cta { background: var(--gradient); color: white !important; padding: 10px 24px; border-radius: 100px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; transition: var(--transition); }
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(26,147,111,0.35); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; min-width: 44px; min-height: 44px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--deep); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #051a28 0%, #0B4F6C 50%, #0d6b5c 100%);
  position: relative; overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg-anim { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); animation: orbFloat 8s ease-in-out infinite; }
.orb1 { width: 400px; height: 400px; background: rgba(26,147,111,0.25); top: -100px; right: -100px; animation-delay: 0s; }
.orb2 { width: 300px; height: 300px; background: rgba(250,199,72,0.15); bottom: -80px; left: 10%; animation-delay: 3s; }
.orb3 { width: 250px; height: 250px; background: rgba(11,79,108,0.4); top: 40%; left: 40%; animation-delay: 5s; }
@keyframes orbFloat { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-20px) scale(1.05); } 66% { transform: translate(-20px,30px) scale(0.95); } }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-img-wrapper { position: relative; display: flex; justify-content: center; }
.product-hero-img { max-width: 380px; width: 100%; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)); animation: heroFloat 4s ease-in-out infinite; }
@keyframes heroFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-20px) rotate(2deg); } }
.hero-badge-float {
  position: absolute; top: 10%; right: -10px;
  background: var(--gold); color: #1a1a1a;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px;
  padding: 8px 16px; border-radius: 100px;
  box-shadow: 0 4px 16px rgba(250,199,72,0.5);
  animation: badgePop 2s ease-in-out infinite;
}
.hero-badge-float2 {
  position: absolute; bottom: 15%; left: -10px;
  background: var(--teal); color: white;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
  padding: 8px 16px; border-radius: 100px;
  box-shadow: 0 4px 16px rgba(26,147,111,0.5);
  animation: badgePop 2s ease-in-out infinite 1s;
}
@keyframes badgePop { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

.hero-content { color: white; }
.hero-eyebrow { display: inline-block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); background: rgba(250,199,72,0.15); padding: 6px 16px; border-radius: 100px; margin-bottom: 20px; }
.hero-h1 { color: white; margin-bottom: 24px; }
.hero-p { color: rgba(255,255,255,0.85); margin-bottom: 16px; font-size: 17px; }
.hero-stars { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; font-size: 18px; color: var(--gold); }
.hero-stars span { font-size: 14px; color: rgba(255,255,255,0.7); }
.hero-cta { background: var(--gradient-gold); color: #1a1a1a; box-shadow: 0 8px 32px rgba(250,199,72,0.4); margin-bottom: 20px; }
.hero-cta:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(250,199,72,0.55); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-trust span { font-size: 13px; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); padding: 6px 14px; border-radius: 100px; font-family: 'Montserrat', sans-serif; font-weight: 600; }

/* === WHY CHOOSE US === */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.why-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 24px;
  text-align: center; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: var(--transition);
}
.why-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.why-icon { margin-bottom: 20px; }
.why-icon img { width: 80px; height: 80px; margin: 0 auto; object-fit: contain; }
.why-card h3 { font-size: 17px; margin-bottom: 12px; color: var(--deep); }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* === SPLIT LAYOUT === */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }
.split-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split-content { display: flex; flex-direction: column; gap: 20px; }
.split-content h2 { margin: 0; }
.split-content p { margin: 0; }
.rounded-img { border-radius: var(--radius); }
.guarantee-img { max-width: 320px; margin: 0 auto; }

/* === HOW IT WORKS / ACCORDION === */
.accordion-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 8px rgba(11,79,108,0.06); }
.accordion-header {
  display: flex; align-items: center; gap: 16px; width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 24px; text-align: left; transition: var(--transition);
  min-height: 64px;
}
.accordion-header:hover { background: rgba(26,147,111,0.05); }
.accordion-item.active .accordion-header { background: rgba(26,147,111,0.08); }
.acc-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 24px; color: var(--teal); min-width: 40px; }
.acc-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 17px; color: var(--deep); flex: 1; }
.acc-icon { font-size: 24px; color: var(--teal); font-weight: 700; transition: var(--transition); min-width: 24px; text-align: center; }
.accordion-item.active .acc-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.accordion-item.active .accordion-body { max-height: 600px; }
.accordion-body p { padding: 0 24px 24px 80px; font-size: 15px; line-height: 1.8; }

/* No acc-num in science/faq */
.science-list .accordion-body p,
.faq-list .accordion-body p { padding-left: 24px; }

/* === REVIEWS === */
.reviews-rating { font-size: 22px; margin-top: 8px; color: var(--deep); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); box-shadow: var(--shadow); transition: var(--transition); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.review-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid var(--teal); flex-shrink: 0; }
.review-header h4 { font-size: 16px; margin-bottom: 2px; }
.review-location { font-size: 12px; color: var(--muted); }
.stars { font-size: 16px; margin-top: 4px; }
.review-text { font-size: 15px; line-height: 1.7; color: var(--muted); margin-bottom: 12px; }
.review-verified { font-size: 12px; color: var(--teal); font-weight: 600; font-family: 'Montserrat', sans-serif; }

/* === PRICING === */
.countdown-wrap { text-align: center; margin-bottom: 40px; }
.countdown-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 18px; color: var(--deep); margin-bottom: 12px; }
.countdown { display: inline-flex; align-items: center; gap: 12px; background: var(--deep); color: white; padding: 20px 40px; border-radius: var(--radius); box-shadow: var(--shadow); }
.cd-unit { display: flex; flex-direction: column; align-items: center; min-width: 80px; }
.cd-unit span { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 52px; line-height: 1; color: var(--gold); }
.cd-unit small { font-size: 12px; color: rgba(255,255,255,0.7); font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: 2px; margin-top: 4px; }
.cd-sep { font-size: 48px; font-weight: 900; color: var(--gold); line-height: 1; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.price-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 24px;
  text-align: center; border: 2px solid var(--border);
  box-shadow: var(--shadow); transition: var(--transition); position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.popular { border-color: var(--teal); background: linear-gradient(to bottom, rgba(26,147,111,0.05) 0%, var(--white) 100%); transform: scale(1.03); box-shadow: 0 20px 60px rgba(26,147,111,0.2); }
.popular-badge { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: white; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; padding: 8px 24px; border-radius: 100px; white-space: nowrap; }
.price-label { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 2px; color: var(--teal); text-transform: uppercase; margin-bottom: 8px; }
.price-bottles { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 28px; color: var(--deep); }
.price-supply { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.price-img { max-width: 140px; margin: 16px auto; }
.price-main { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 52px; color: var(--deep); line-height: 1; }
.price-main small { font-size: 20px; color: var(--muted); font-weight: 600; }
.price-was { font-size: 16px; color: var(--muted); margin: 8px 0 16px; }
.price-was s { color: #e53e3e; }
.price-badges { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.p-badge { display: inline-block; padding: 6px 12px; border-radius: 100px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; }
.p-badge.green { background: rgba(26,147,111,0.1); color: var(--teal); }
.p-badge.blue { background: rgba(11,79,108,0.1); color: var(--deep); }
.price-btn { margin-bottom: 12px; min-height: 56px; }
.atc-img { width: 24px; height: 24px; margin-right: 8px; display: inline-block; }
.cards-img { max-width: 180px; margin: 8px auto 0; }
.price-stars { text-align: center; }
.price-stars img { max-width: 200px; margin: 0 auto 12px; }

/* === BONUS === */
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.bonus-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); display: flex; flex-direction: column; }
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bonus-num { background: var(--gradient); color: white; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 3px; padding: 10px 24px; text-align: center; }
.bonus-img { width: 100%; height: 220px; object-fit: cover; }
.bonus-content { padding: 28px; }
.bonus-free-tag { display: inline-block; background: rgba(250,199,72,0.2); color: #b45309; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; }
.bonus-content h3 { margin-bottom: 12px; }
.bonus-content p { font-size: 15px; }

/* === INGREDIENTS === */
.ing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ing-card { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); display: flex; gap: 20px; align-items: flex-start; box-shadow: 0 2px 8px rgba(11,79,108,0.06); transition: var(--transition); }
.ing-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.ing-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 32px; color: rgba(26,147,111,0.2); min-width: 48px; line-height: 1; }
.ing-body h3 { font-size: 17px; margin-bottom: 8px; }
.ing-body p { font-size: 14px; line-height: 1.7; }

/* === SCIENCE === */
.science-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

/* === GUARANTEE === */
.guarantee-points { display: flex; flex-direction: column; gap: 20px; margin: 4px 0; }
.g-point { display: flex; gap: 16px; align-items: flex-start; }
.g-icon { font-size: 32px; min-width: 48px; }
.g-point h4 { font-size: 16px; margin-bottom: 6px; }
.g-point p { font-size: 14px; }

/* === BENEFITS === */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 960px; margin: 0 auto; }
.benefit-item { display: flex; gap: 20px; align-items: flex-start; background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(11,79,108,0.06); transition: var(--transition); }
.benefit-item:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-2px); }
.benefit-icon { font-size: 36px; min-width: 48px; }
.benefit-item h3 { font-size: 17px; margin-bottom: 8px; }
.benefit-item p { font-size: 14px; }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-list .acc-num { display: none; }

/* === FINAL CTA === */
.final-cta {
  background: linear-gradient(135deg, #051a28 0%, #0B4F6C 60%, #0d6b5c 100%);
  position: relative; overflow: hidden;
}
.final-cta::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse at center, rgba(26,147,111,0.15) 0%, transparent 60%); animation: ctaPulse 6s ease-in-out infinite; }
@keyframes ctaPulse { 0%,100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 1; } }
.final-cta-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.final-cta-img { max-width: 340px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); animation: heroFloat 4s ease-in-out infinite; margin: 0 auto; }
.final-cta-content { color: white; }
.final-cta-content .section-eyebrow { background: rgba(250,199,72,0.15); color: var(--gold); }
.final-cta-content h2 { color: white; margin: 12px 0 20px; }
.final-price { margin-bottom: 20px; }
.was-price { display: block; font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.now-price { display: block; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 36px; color: var(--gold); }
.final-p { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 17px; }
.final-btn { background: var(--gradient-gold); color: #1a1a1a; box-shadow: 0 8px 32px rgba(250,199,72,0.4); margin-bottom: 20px; }
.final-btn:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(250,199,72,0.55); }
.pulse-btn { animation: pulseCTA 2.5s ease-in-out infinite; }
@keyframes pulseCTA { 0%,100% { box-shadow: 0 8px 32px rgba(250,199,72,0.4); } 50% { box-shadow: 0 8px 48px rgba(250,199,72,0.7), 0 0 0 8px rgba(250,199,72,0.1); } }
.final-trust { display: flex; flex-wrap: wrap; gap: 12px; }
.final-trust span { font-size: 13px; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); padding: 6px 14px; border-radius: 100px; font-family: 'Montserrat', sans-serif; font-weight: 600; }

/* === FOOTER === */
.footer { background: #051a28; color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { width: 50px; height: 50px; border-radius: 12px; object-fit: cover; margin-bottom: 12px; }
.footer-brand h3 { color: white; font-size: 22px; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.social-icons { display: flex; gap: 12px; }
.social-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-icon:hover { background: var(--teal); transform: translateY(-2px); }
.social-icon svg { width: 18px; height: 18px; color: white; }
.footer-links-col h4 { color: white; font-size: 16px; margin-bottom: 16px; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { font-size: 14px; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-links-col a:hover { color: var(--teal); padding-left: 4px; }

.footer-legal-links { display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: center; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.legal-link { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.legal-link:hover { color: var(--teal); }
.link-separator { color: rgba(255,255,255,0.3); }

.footer-disclaimer { max-width: 900px; margin: 24px auto; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); }
.footer-disclaimer p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-bottom { text-align: center; padding: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: var(--teal); }

/* === SCROLL TOP === */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient); color: white; border: none; cursor: pointer;
  font-size: 22px; box-shadow: var(--shadow); transition: var(--transition);
  opacity: 0; transform: translateY(20px) scale(0.8); pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.scroll-top:hover { transform: scale(1.1); box-shadow: var(--shadow-lg); }

/* === PURCHASE POPUP === */
.purchase-popup {
  position: fixed; bottom: 24px; left: 24px; z-index: 950;
  background: var(--white); border-radius: 16px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); max-width: 320px;
  transform: translateX(-400px); transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.purchase-popup.show { transform: translateX(0); pointer-events: all; }
.pp-inner { display: flex; align-items: center; gap: 12px; padding: 16px; }
.pp-img { width: 50px; height: 50px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.pp-text { font-size: 13px; color: var(--muted); flex: 1; line-height: 1.5; }
.pp-text strong { color: var(--deep); }
.pp-close { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 16px; min-width: 32px; min-height: 32px; }

/* === EXIT POPUP === */
.exit-popup-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.exit-popup-overlay.show { opacity: 1; pointer-events: all; }
.exit-popup { background: var(--white); border-radius: 24px; max-width: 480px; width: 100%; padding: 48px 40px; text-align: center; position: relative; box-shadow: 0 32px 80px rgba(0,0,0,0.3); }
.exit-close { position: absolute; top: 16px; right: 16px; background: none; border: none; cursor: pointer; font-size: 20px; color: var(--muted); min-width: 40px; min-height: 40px; }
.exit-popup-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.exit-eyebrow { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: #e53e3e; text-transform: uppercase; letter-spacing: 2px; }
.exit-popup h3 { font-size: clamp(20px, 4vw, 28px); }
.exit-img { max-width: 200px; }
.exit-no { font-size: 13px; color: var(--muted); margin-top: 8px; }
.exit-no a { color: var(--muted); text-decoration: underline; }

/* === AOS ANIMATIONS === */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="slide-up"] { transform: translateY(40px); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Tablet smaller */
@media (max-width: 991px) {
  .section-pad { padding: 60px 0; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-image { order: -1; }
  .hero-trust { justify-content: center; }
  .hero-stars { justify-content: center; }
  .hero-badge-float { right: 5%; }
  .hero-badge-float2 { left: 5%; }
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .split-layout.reverse { direction: ltr; }
  .split-image { order: -1; }
  .guarantee-img { max-width: 240px; }
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .final-trust { justify-content: center; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .price-card.popular { transform: scale(1); }
  .ing-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; max-width: 600px; }
  .bonus-grid { grid-template-columns: 1fr; }
}

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0; z-index: 1100;
    background: var(--white); flex-direction: column; justify-content: center;
    gap: 28px; padding: 80px 40px; width: 280px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 18px; }
  .nav-cta { padding: 14px 32px; font-size: 16px; }

  /* Hero */
  .product-hero-img { max-width: 260px; }
  .hero-h1 { font-size: clamp(24px, 7vw, 36px); }
  .hero-p { font-size: 15px; }

  /* Countdown */
  .countdown { padding: 16px 24px; gap: 8px; }
  .cd-unit span { font-size: 40px; }
  .cd-sep { font-size: 36px; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; }

  /* Accordion */
  .accordion-header { padding: 16px 20px; }
  .accordion-body p { padding: 0 20px 20px; }
  .acc-num { font-size: 20px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }

  /* Purchase popup */
  .purchase-popup { max-width: calc(100vw - 48px); bottom: 80px; }

  /* Exit popup */
  .exit-popup { padding: 36px 24px; }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 48px 0; }
  .hero { padding: 90px 0 48px; }
  .hero-trust { flex-direction: column; align-items: center; }
  .btn-xl { padding: 18px 32px; font-size: 17px; }
  .btn-lg { padding: 16px 28px; font-size: 16px; }
  .price-card { padding: 24px 16px; }
  .cd-unit { min-width: 60px; }
  .cd-unit span { font-size: 32px; }
  .ing-card { flex-direction: column; gap: 8px; }
  .benefit-item { flex-direction: column; gap: 12px; }
  .g-point { flex-direction: column; }
  .final-cta-inner { gap: 32px; }
  .final-price .now-price { font-size: 28px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Prevent animations on reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}
