/* ===== HERPAFEND - STYLE.CSS ===== */
/* Font: Montserrat (headings) + Open Sans (body) */
/* Design: Medical Professional + Premium Luxury hybrid */

/* ===== 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; background: #fff; color: #1a1a2e; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
input, select, textarea { font-size: 16px; }

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1E3A8A;
  --primary-dark: #142c6b;
  --secondary: #0EA5E9;
  --accent: #10B981;
  --gold: #D4AF37;
  --red: #EF4444;
  --white: #ffffff;
  --light: #F0F7FF;
  --light2: #E8F4FD;
  --gray: #64748B;
  --dark: #0F1B3C;
  --shadow: 0 4px 24px rgba(30,58,138,0.12);
  --shadow-lg: 0 8px 48px rgba(30,58,138,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(26px, 5vw, 52px); }
h2 { font-size: clamp(22px, 4vw, 40px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: clamp(16px, 2vw, 20px); }
p { line-height: 1.7; font-size: 16px; }
.section-title { text-align: center; margin-bottom: 12px; color: var(--dark); }
.section-title span { color: var(--primary); }
.section-eyebrow { display: block; text-align: center; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 2px; color: var(--secondary); text-transform: uppercase; margin-bottom: 10px; }
.section-subtitle { text-align: center; color: var(--gray); max-width: 700px; margin: 0 auto 40px; font-size: 16px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 16px; padding: 16px 36px; border-radius: 50px;
  border: none; cursor: pointer; transition: var(--transition);
  box-shadow: 0 6px 24px rgba(30,58,138,0.3); min-height: 52px;
  text-align: center; letter-spacing: 0.5px;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 10px 32px rgba(30,58,138,0.4); }
.btn-price {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 15px; padding: 14px 24px; border-radius: 50px;
  border: none; cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(16,185,129,0.3); min-height: 50px; width: 100%;
}
.btn-price:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(16,185,129,0.4); }
.popular-btn { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); box-shadow: 0 4px 16px rgba(30,58,138,0.3); }
.popular-btn:hover { box-shadow: 0 8px 24px rgba(30,58,138,0.4); }

/* ===== PULSE ANIMATION ===== */
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(30,58,138,0.4); }
  50% { box-shadow: 0 6px 36px rgba(14,165,233,0.6), 0 0 0 8px rgba(14,165,233,0.1); }
}
.pulse-btn { animation: pulse 2s infinite; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--light2); transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-lg); padding: 0; }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; max-width: 1200px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 40px; height: 40px; object-fit: contain; border-radius: 50%; }
.nav-logo span { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22px; color: var(--primary); letter-spacing: -0.5px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; color: var(--dark); transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: #fff !important; padding: 10px 22px; border-radius: 50px; font-size: 14px !important; transition: var(--transition) !important; }
.nav-cta:hover { transform: scale(1.05) !important; box-shadow: var(--shadow); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #0F1B3C 0%, #1E3A8A 50%, #0EA5E9 100%);
  position: relative; overflow: hidden; padding-top: 80px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; opacity: 0.08; }
.shape1 { width: 500px; height: 500px; background: var(--secondary); top: -100px; right: -100px; }
.shape2 { width: 300px; height: 300px; background: var(--accent); bottom: -80px; left: -80px; }
.shape3 { width: 200px; height: 200px; background: var(--gold); top: 50%; left: 50%; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 20px; }
.hero-image { position: relative; display: flex; justify-content: center; }
.hero-img-wrapper { position: relative; display: inline-block; }
.hero-bottle {
  max-width: 460px; width: 100%;
  animation: none;
  filter: drop-shadow(0 20px 60px rgba(14,165,233,0.4));
}
.hero-badge {
  position: absolute; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px); border-radius: 50px;
  padding: 8px 16px; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 12px; color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1); white-space: nowrap;
  animation: none;
}
.hero-badge-1 { top: 10%; left: -10%; }
.hero-badge-2 { top: 50%; right: -10%; }
.hero-badge-3 { bottom: 10%; left: -5%; }
.hero-eyebrow { display: inline-block; background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%); color: #000; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; }
.hero-h1 { color: #fff; margin-bottom: 20px; font-size: clamp(26px, 4vw, 48px); line-height: 1.15; }
.hero-highlight { color: var(--gold); position: relative; }
.hero-desc { color: rgba(255,255,255,0.88); margin-bottom: 14px; font-size: 16px; }
.hero-stars { font-size: 22px; margin-bottom: 24px; color: var(--gold); }
.hero-stars span { color: rgba(255,255,255,0.7); font-size: 14px; font-family: 'Open Sans', sans-serif; }
.hero-btn { font-size: 17px; padding: 18px 40px; width: 100%; max-width: 400px; margin-bottom: 16px; }
.hero-guarantee { color: rgba(255,255,255,0.75); font-size: 13px; font-family: 'Montserrat', sans-serif; font-weight: 600; }

/* ===== WHY CHOOSE US ===== */
.why-choose { padding: 80px 0; background: var(--light); }
.badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.badge-card {
  background: #fff; border-radius: var(--radius); padding: 32px 24px;
  text-align: center; box-shadow: var(--shadow); transition: var(--transition);
  border-top: 4px solid var(--primary); position: relative; overflow: hidden;
}
.badge-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--light) 0%, transparent 100%); opacity: 0; transition: var(--transition); }
.badge-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow-lg); }
.badge-card:hover::before { opacity: 1; }
.badge-icon { width: 100px; height: 100px; margin: 0 auto 16px; }
.badge-icon img { width: 100px; height: 100px; object-fit: contain; }
.badge-card h3 { font-size: 16px; margin-bottom: 12px; color: var(--primary); }
.badge-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ===== WHAT IS ===== */
.what-is { padding: 80px 0; background: #fff; }
.what-is-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.what-is-image { position: relative; }
.what-is-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.what-is-badge { position: absolute; bottom: 20px; right: -20px; background: var(--accent); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; padding: 10px 20px; border-radius: 50px; box-shadow: var(--shadow); }
.what-is-content h2 { color: var(--dark); margin-bottom: 20px; }
.what-is-content h2 span { color: var(--primary); }
.what-is-content p { color: var(--gray); margin-bottom: 16px; }
.what-is-content .btn-primary { margin-top: 10px; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 80px 0; background: var(--light); }
.accordion-list { max-width: 860px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 14px; }
.accordion-item { background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow); overflow: hidden; border-left: 4px solid var(--primary); }
.accordion-header {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 18px 24px; background: none; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
  color: var(--dark); text-align: left; transition: var(--transition); min-height: 60px;
}
.accordion-header:hover { background: var(--light); color: var(--primary); }
.acc-num { font-size: 22px; font-weight: 900; color: var(--primary); opacity: 0.5; min-width: 36px; }
.acc-icon { margin-left: auto; font-size: 22px; color: var(--primary); transition: var(--transition); font-weight: 300; }
.accordion-item.active .acc-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-body p { padding: 0 24px 20px 24px; color: var(--gray); font-size: 15px; line-height: 1.7; }
.accordion-item.active .accordion-body { max-height: 300px; }

/* ===== REVIEWS ===== */
.reviews { padding: 80px 0; background: #fff; }
.reviews-stars-bar { text-align: center; font-family: 'Montserrat', sans-serif; font-size: 18px; color: var(--gray); margin-bottom: 40px; }
.reviews-stars-bar strong { color: var(--primary); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
  background: var(--light); border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow); border-top: 4px solid var(--gold); transition: var(--transition);
  position: relative;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.review-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; position: relative; }
.review-photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); flex-shrink: 0; }
.review-header h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 2px; }
.review-location { font-size: 12px; color: var(--gray); }
.review-stars { font-size: 14px; margin-top: 2px; }
.verified-badge { background: var(--accent); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 10px; padding: 4px 10px; border-radius: 50px; margin-left: auto; height: fit-content; white-space: nowrap; }
.review-card p { font-size: 15px; color: var(--gray); font-style: italic; line-height: 1.7; }

/* ===== PRICING ===== */
.pricing { padding: 80px 0; background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%); }
.pricing .section-title { color: #fff; }
.pricing .section-title span { color: var(--gold); }
.pricing .section-eyebrow { color: var(--gold); }
.pricing .section-subtitle { color: rgba(255,255,255,0.8); }
.pricing-2 { background: var(--light); }
.pricing-2 .section-title { color: var(--dark); }
.pricing-2 .section-title span { color: var(--primary); }
.pricing-2 .section-eyebrow { color: var(--red); }
.pricing-2 .section-subtitle { color: var(--gray); }
.pricing-2 .countdown-label { color: var(--dark); }

/* Countdown */
.countdown-wrapper { text-align: center; margin-bottom: 40px; }
.countdown-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: rgba(255,255,255,0.9); margin-bottom: 12px; }
.countdown { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 16px 28px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.2); }
.countdown-box { text-align: center; }
.countdown-box span { display: block; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 42px; color: var(--gold); line-height: 1; }
.countdown-box label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; color: rgba(255,255,255,0.7); letter-spacing: 2px; margin-top: 4px; }
.countdown-sep { font-size: 36px; font-weight: 900; color: var(--gold); }
.pricing-2 .countdown { background: #fff; box-shadow: var(--shadow); border: 2px solid var(--light2); }
.pricing-2 .countdown-box span { color: var(--red); }
.pricing-2 .countdown-sep { color: var(--red); }
.pricing-2 .countdown-box label { color: var(--gray); }

/* Pricing Cards */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.price-card {
  background: #fff; border-radius: var(--radius); padding: 48px 28px;
  text-align: center; box-shadow: var(--shadow); transition: var(--transition);
  position: relative; display: flex; flex-direction: column; align-items: center;
  border: 2px solid transparent; min-height: 620px;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
.price-card.popular { border: 3px solid var(--gold); transform: scale(1.04); z-index: 1; background: linear-gradient(135deg, #fff 0%, var(--light) 100%); }
.price-card.popular:hover { transform: scale(1.04) translateY(-8px); }
.popular-ribbon { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%); color: #000; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 12px; padding: 6px 20px; border-radius: 50px; white-space: nowrap; }
.price-label { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 2px; color: var(--primary); margin-bottom: 4px; }
.price-qty { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22px; color: var(--dark); }
.price-supply { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.price-img { max-width: 200px; margin: 0 auto 16px; }
.price-amount { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; justify-content: center; }
.old-price { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 18px; color: var(--gray); text-decoration: line-through; }
.new-price { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 36px; color: var(--primary); }
.price-per { font-size: 14px; color: var(--gray); margin-bottom: 16px; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.price-badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 16px; }
.pbadge { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; padding: 4px 12px; border-radius: 50px; }
.pbadge.green { background: #d1fae5; color: #065f46; }
.pbadge.blue { background: #dbeafe; color: #1e3a8a; }
.payment-logos { max-width: 200px; margin: 12px auto 0; opacity: 0.8; }
.five-star-section { text-align: center; }
.five-star-section img { max-width: 360px; margin: 0 auto; }

/* ===== BONUS ===== */
.bonus { padding: 80px 0; background: var(--light2); }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.bonus-card { background: #fff; border-radius: var(--radius); padding: 36px 28px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); border-top: 4px solid var(--gold); }
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bonus-num { display: inline-block; background: var(--gold); color: #000; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 12px; padding: 4px 14px; border-radius: 50px; margin-bottom: 16px; letter-spacing: 1px; }
.bonus-card img { max-width: 260px; margin: 0 auto 20px; border-radius: var(--radius-sm); }
.bonus-card h3 { color: var(--primary); margin-bottom: 12px; font-size: 18px; }
.bonus-card p { color: var(--gray); font-size: 15px; }

/* ===== INGREDIENTS ===== */
.ingredients { padding: 80px 0; background: #fff; }
.ingredients-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.ingredient-card { background: var(--light); border-radius: var(--radius-sm); padding: 28px; box-shadow: var(--shadow); transition: var(--transition); border-left: 4px solid var(--primary); }
.ingredient-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); border-left-color: var(--accent); }
.ingr-icon { font-size: 36px; margin-bottom: 12px; }
.ingredient-card h3 { font-size: 16px; color: var(--dark); margin-bottom: 10px; }
.ingredient-card h3 em { font-size: 13px; color: var(--gray); font-style: normal; }
.ingredient-card p { font-size: 14px; color: var(--gray); margin-bottom: 12px; line-height: 1.6; }
.ingr-benefit { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: var(--accent); }

/* ===== HERO IMAGE WRAP (alternate layout) ===== */
.hero__image-wrap img {
  animation: none;
}

/* ===== SCIENCE ===== */
.science { padding: 80px 0; background: var(--light); }
.science-accordion { max-width: 860px; margin: 40px auto 0; }

/* ===== GUARANTEE ===== */
.guarantee { padding: 80px 0; background: #fff; }
.guarantee-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.guarantee-image img { max-width: 460px; margin: 0 auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.guarantee-content h2 { color: var(--dark); margin-bottom: 28px; }
.guarantee-content h2 span { color: var(--primary); }
.guarantee-point { display: flex; gap: 20px; margin-bottom: 24px; align-items: flex-start; }
.gp-icon { font-size: 32px; flex-shrink: 0; width: 52px; height: 52px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.guarantee-point h4 { font-family: 'Montserrat', sans-serif; font-size: 16px; color: var(--primary); margin-bottom: 6px; }
.guarantee-point p { font-size: 14px; color: var(--gray); }

/* ===== BENEFITS ===== */
.benefits { padding: 80px 0; background: linear-gradient(135deg, var(--dark) 0%, #1E3A8A 100%); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.benefits-content h2 { color: #fff; margin-bottom: 28px; }
.benefits-content h2 span { color: var(--gold); }
.benefits-content .section-eyebrow { text-align: left; color: var(--gold); }
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.benefits-list li { display: flex; gap: 12px; align-items: flex-start; }
.benefit-check { font-size: 20px; flex-shrink: 0; }
.benefits-list li div { font-size: 15px; color: rgba(255,255,255,0.9); line-height: 1.5; }
.benefits-list li strong { color: #fff; }
.benefits-image img { border-radius: var(--radius); box-shadow: 0 16px 48px rgba(0,0,0,0.3); width: 100%; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: var(--light2); }
.faq-list { max-width: 800px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow); overflow: hidden; }
.faq-header { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 24px; background: none; border: none; cursor: pointer; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--dark); text-align: left; transition: var(--transition); min-height: 56px; }
.faq-header:hover { background: var(--light); color: var(--primary); }
.faq-icon { font-size: 24px; color: var(--primary); transition: var(--transition); flex-shrink: 0; font-weight: 300; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--red); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-body p { padding: 4px 24px 20px; color: var(--gray); font-size: 15px; line-height: 1.7; }
.faq-item.active .faq-body { max-height: 300px; }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #0F1B3C 0%, #1E3A8A 60%, #0EA5E9 100%);
  position: relative; overflow: hidden;
}
.final-cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.fcta-shape1 { position: absolute; width: 600px; height: 600px; background: rgba(212,175,55,0.06); border-radius: 50%; top: -200px; right: -200px; }
.fcta-shape2 { position: absolute; width: 400px; height: 400px; background: rgba(14,165,233,0.08); border-radius: 50%; bottom: -150px; left: -150px; }
.final-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.final-cta-image { position: relative; display: flex; justify-content: center; }
.final-cta-image img { max-width: 460px; animation: none; filter: none; }
.fcta-glow { display: none; }
.fcta-badge { display: inline-block; background: var(--gold); color: #000; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; padding: 8px 20px; border-radius: 50px; margin-bottom: 16px; letter-spacing: 1px; }
.final-cta-content h2 { color: #fff; margin-bottom: 16px; font-size: clamp(24px, 3vw, 40px); }
.final-cta-content h2 span { color: var(--gold); }
.final-cta-content p { color: rgba(255,255,255,0.85); margin-bottom: 24px; font-size: 16px; }
.fcta-price { margin-bottom: 28px; }
.fcta-old { display: block; color: rgba(255,255,255,0.6); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.fcta-new { display: block; color: var(--gold); font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 36px; }
.fcta-btn { font-size: 18px; padding: 20px 48px; width: 100%; max-width: 380px; margin-bottom: 20px; }
.fcta-features { display: flex; gap: 20px; flex-wrap: wrap; }
.fcta-features span { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; color: rgba(255,255,255,0.8); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.85); padding: 60px 0 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand img { width: 50px; height: 50px; object-fit: contain; border-radius: 50%; }
.footer-brand span { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px; color: #fff; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-links-col { display: flex; flex-direction: column; gap: 8px; }
.footer-links-col h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--gold); margin-bottom: 8px; letter-spacing: 1px; text-transform: uppercase; }
.footer-links-col a { font-size: 14px; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-links-col a:hover { color: var(--secondary); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.legal-link { font-size: 13px; color: rgba(255,255,255,0.7); transition: var(--transition); }
.legal-link:hover { color: var(--gold); }
.link-separator { color: rgba(255,255,255,0.3); font-size: 12px; }
.footer-social { display: flex; gap: 12px; justify-content: center; margin-bottom: 28px; }
.social-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: #fff; transition: var(--transition); }
.social-icon:hover { background: var(--primary); transform: translateY(-3px); }
.footer-disclaimer { background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 20px; }
.footer-disclaimer p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-copy { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.footer-copy p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-copy a { color: var(--secondary); }

/* ===== SCROLL TO TOP ===== */
.scroll-top { display: none; position: fixed; bottom: 24px; right: 24px; width: 52px; height: 52px; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: #fff; border: none; border-radius: 50%; font-size: 20px; cursor: pointer; box-shadow: var(--shadow-lg); z-index: 999; transition: var(--transition); min-height: 52px; }
.scroll-top:hover { transform: translateY(-4px) scale(1.1); }
.scroll-top.visible { display: flex; align-items: center; justify-content: center; }

/* ===== PURCHASE POPUP ===== */
.purchase-popup { display: none; position: fixed; bottom: 20px; left: 20px; z-index: 9998; }
.purchase-popup.show { display: block; animation: slideUpIn 0.4s ease; }
@keyframes slideUpIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.popup-inner { background: #fff; border-radius: var(--radius-sm); padding: 14px 18px; box-shadow: 0 8px 32px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 12px; max-width: 300px; border-left: 4px solid var(--accent); }
.popup-close { position: absolute; top: 8px; right: 10px; background: none; border: none; cursor: pointer; font-size: 16px; color: var(--gray); min-width: 24px; min-height: 24px; }
.popup-img { font-size: 28px; flex-shrink: 0; }
.popup-text { font-size: 13px; color: var(--dark); line-height: 1.4; }
.popup-product { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary); display: block; }

/* ===== EXIT POPUP ===== */
.exit-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 9999; align-items: center; justify-content: center; }
.exit-overlay.show { display: flex; }
.exit-popup { background: #fff; border-radius: var(--radius); padding: 40px 36px; max-width: 480px; width: 90%; text-align: center; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,0.3); }
.exit-close { position: absolute; top: 14px; right: 14px; background: var(--light); border: none; border-radius: 50%; width: 36px; height: 36px; font-size: 16px; cursor: pointer; color: var(--gray); transition: var(--transition); }
.exit-close:hover { background: var(--red); color: #fff; }
.exit-badge { display: inline-block; background: var(--red); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; padding: 6px 16px; border-radius: 50px; margin-bottom: 14px; }
.exit-popup h2 { font-size: clamp(20px, 4vw, 28px); color: var(--dark); margin-bottom: 12px; }
.exit-highlight { color: var(--primary); }
.exit-popup p { color: var(--gray); margin-bottom: 16px; font-size: 16px; }
.exit-price { margin-bottom: 20px; }
.exit-old { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 18px; color: var(--gray); text-decoration: line-through; margin-right: 12px; }
.exit-new { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 32px; color: var(--red); }
.exit-cta { display: block; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 16px; padding: 16px 32px; border-radius: 50px; transition: var(--transition); box-shadow: var(--shadow); margin-bottom: 12px; }
.exit-cta:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }
.exit-skip { font-size: 13px; color: var(--gray); cursor: pointer; text-decoration: underline; }
.exit-skip:hover { color: var(--red); }

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

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

/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 70px; left: 0; width: 100%;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
    flex-direction: column; padding: 20px; gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 999;
    border-bottom: 2px solid var(--light2);
  }
  .nav-links.open { display: flex; animation: slideDown 0.3s ease; }
  @keyframes slideDown { from { transform: translateY(-10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
  .nav-links a { padding: 12px 16px; font-size: 15px; border-radius: var(--radius-sm); }
  .nav-cta { text-align: center; }

  .hero-container { grid-template-columns: 1fr; gap: 30px; padding: 40px 20px; }
  .hero-image { order: -1; }
  .hero-bottle { max-width: 240px; }
  .hero-badge-1 { top: 0; left: 0; font-size: 10px; padding: 5px 10px; }
  .hero-badge-2 { right: 0; top: 30%; font-size: 10px; padding: 5px 10px; }
  .hero-badge-3 { display: none; }
  .hero-btn { width: 100%; }

  .badges-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .what-is-grid { grid-template-columns: 1fr; gap: 30px; }
  .what-is-image { order: -1; }
  .what-is-badge { right: 10px; bottom: 10px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .bonus-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; gap: 30px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 30px; }
  .benefits-content .section-eyebrow { text-align: center; }
  .benefits-content h2 { text-align: center; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .final-cta-image img { max-width: 240px; margin: 0 auto; }
  .fcta-features { justify-content: center; }
  .fcta-btn { width: 100%; max-width: 100%; }
  .hero-btn { max-width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-legal-links { flex-direction: column; }
  .link-separator { display: none; }
  .footer-copy { text-align: center; }
  .purchase-popup { bottom: 10px; left: 10px; right: 10px; }
  .popup-inner { max-width: 100%; }
  .scroll-top { bottom: 16px; right: 16px; }
  .countdown-box span { font-size: 36px; }
}

@media (max-width: 480px) {
  .badges-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  .countdown-box span { font-size: 32px; }
  .new-price { font-size: 28px; }
  .fcta-new { font-size: 28px; }
  .exit-popup { padding: 28px 20px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .price-card { padding: 24px 16px; }
  .new-price { font-size: 28px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-container { gap: 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}