/* ===== ROOT & RESET ===== */
:root {
  --primary: #0d6e4f;
  --primary-dark: #094d38;
  --primary-light: #1a9968;
  --accent: #f5a623;
  --accent-dark: #d4891a;
  --green-light: #e8f7f2;
  --white: #ffffff;
  --off-white: #f8faf9;
  --dark: #0a1a12;
  --dark-2: #1c2e23;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --text: #1f2937;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(13,110,79,0.12);
  --shadow-lg: 0 12px 48px rgba(13,110,79,0.2);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

*, *::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: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-size: 16px; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.2; }
.section-title { font-size: clamp(24px, 4vw, 38px); text-align: center; margin-bottom: 12px; color: var(--dark); }
.section-sub { text-align: center; color: var(--gray); font-size: clamp(15px, 2vw, 17px); margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }
.accent { color: var(--primary); }
.highlight-text { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245,166,35,0.4); } 50% { transform: scale(1.04); box-shadow: 0 0 0 16px rgba(245,166,35,0); } }
@keyframes float { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-12px) rotate(2deg); } }
@keyframes badgeFloat { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
@keyframes particleMove { 0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.6; } 100% { transform: translateY(-100vh) translateX(20px) scale(0.5); opacity: 0; } }
@keyframes glow { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 0.9; transform: scale(1.08); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ringPulse { 0%, 100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.15); opacity: 0.6; } }

.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease var(--delay,0s), transform 0.7s ease var(--delay,0s); }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* ===== PURCHASE POPUP ===== */
.purchase-popup { position: fixed; bottom: 20px; left: 20px; background: var(--dark); color: var(--white); padding: 12px 20px; border-radius: 40px; display: flex; align-items: center; gap: 10px; z-index: 9999; font-size: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.3); opacity: 0; transform: translateX(-120%); transition: all 0.4s ease; max-width: calc(100vw - 40px); }
.purchase-popup.show { opacity: 1; transform: translateX(0); }
.popup-close { cursor: pointer; opacity: 0.7; font-size: 12px; background: rgba(255,255,255,0.2); border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.popup-icon { font-size: 18px; flex-shrink: 0; }

/* ===== EXIT POPUP ===== */
.exit-popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 99999; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.exit-popup-overlay.active { opacity: 1; pointer-events: all; }
.exit-popup-box { background: var(--white); border-radius: var(--radius); padding: 40px 32px; max-width: 480px; width: 100%; text-align: center; position: relative; border-top: 6px solid var(--accent); }
.exit-popup-close { position: absolute; top: 12px; right: 16px; font-size: 20px; color: var(--gray); cursor: pointer; }
.exit-popup-badge { display: inline-block; background: #ef4444; color: white; font-family: var(--font-head); font-weight: 800; font-size: 13px; padding: 4px 16px; border-radius: 40px; margin-bottom: 16px; }
.exit-popup-box h3 { font-size: 24px; margin-bottom: 12px; color: var(--dark); }
.exit-popup-box p { color: var(--gray); margin-bottom: 24px; line-height: 1.6; }
.exit-popup-btn { display: inline-block; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; font-family: var(--font-head); font-weight: 800; padding: 16px 32px; border-radius: 40px; font-size: 17px; transition: transform 0.2s, box-shadow 0.2s; box-shadow: var(--shadow); }
.exit-popup-btn:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }
.exit-popup-small { margin-top: 12px; font-size: 13px; color: var(--gray); }

/* ===== SCROLL TOP ===== */
.scroll-top-btn { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: var(--primary); color: white; border-radius: 50%; font-size: 22px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); z-index: 1000; opacity: 0; pointer-events: none; transition: all 0.3s; }
.scroll-top-btn.visible { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover { background: var(--primary-dark); transform: scale(1.05); }

/* ===== NAVIGATION ===== */
.main-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(13,110,79,0.1); transition: box-shadow 0.3s, padding 0.3s; }
.main-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 20px; color: var(--dark); font-weight: 700; }
.nav-logo img { border-radius: 8px; }
.nav-logo strong { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--dark); padding: 8px 14px; border-radius: 8px; transition: all 0.2s; }
.nav-link:hover { background: var(--green-light); color: var(--primary); }
.nav-cta-btn { display: inline-block; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; font-family: var(--font-head); font-weight: 700; font-size: 14px; padding: 10px 22px; border-radius: 40px; transition: transform 0.2s, box-shadow 0.2s; box-shadow: var(--shadow); min-height: 44px; display: flex; align-items: center; }
.nav-cta-btn:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; display: block; }
.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-section { min-height: 100vh; background: linear-gradient(160deg, #0d2e1f 0%, #0d6e4f 50%, #1a9968 100%); position: relative; display: flex; align-items: center; padding: 100px 0 60px; overflow: hidden; }
.hero-bg-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle { position: absolute; background: rgba(255,255,255,0.15); border-radius: 50%; animation: particleMove linear infinite; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.hero-image-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-glow { position: absolute; width: 320px; height: 320px; background: radial-gradient(circle, rgba(245,166,35,0.3), transparent 70%); border-radius: 50%; animation: glow 3s ease-in-out infinite; }
.hero-bottle { width: 100%; max-width: 340px; filter: drop-shadow(0 24px 48px rgba(0,0,0,0.4)); animation: float 4s ease-in-out infinite; position: relative; z-index: 2; }
.hero-badge-float { position: absolute; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); color: white; font-family: var(--font-head); font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.3); z-index: 3; animation: badgeFloat 3s ease-in-out infinite; }
.badge-1 { top: 10%; left: -10%; animation-delay: 0s; }
.badge-2 { bottom: 25%; right: -8%; animation-delay: 0.5s; }
.badge-3 { bottom: 10%; left: 5%; animation-delay: 1s; }
.hero-content { color: white; }
.hero-tag { display: inline-block; background: rgba(245,166,35,0.2); border: 1px solid rgba(245,166,35,0.4); color: var(--accent); font-family: var(--font-head); font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 40px; margin-bottom: 20px; letter-spacing: 0.5px; }
.hero-h1 { font-size: clamp(28px, 4.5vw, 52px); font-weight: 900; margin-bottom: 24px; line-height: 1.15; }
.hero-desc { font-size: clamp(15px, 1.5vw, 17px); opacity: 0.9; margin-bottom: 16px; line-height: 1.7; }
.hero-stars { font-size: 18px; margin-bottom: 24px; }
.hero-stars span { font-size: 14px; opacity: 0.8; margin-left: 8px; }
.hero-cta-btn { display: inline-flex; flex-direction: column; align-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--dark); font-family: var(--font-head); font-weight: 900; font-size: 18px; padding: 18px 36px; border-radius: 50px; min-height: 64px; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 8px 32px rgba(245,166,35,0.4); width: 100%; max-width: 440px; text-align: center; animation: pulse 2.5s ease-in-out infinite; }
.hero-cta-btn:hover { transform: scale(1.05); animation: none; box-shadow: 0 12px 48px rgba(245,166,35,0.5); }
.btn-sub { font-size: 12px; font-weight: 600; opacity: 0.8; margin-top: 4px; }
.pulse-btn { animation: pulse 2.5s ease-in-out infinite; }
.pulse-btn:hover { animation: none; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.hero-trust span { font-size: 13px; opacity: 0.8; background: rgba(255,255,255,0.1); padding: 6px 14px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.2); }

/* ===== WHY CHOOSE US ===== */
.why-section { padding: 80px 0; background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: white; border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; border: 1px solid var(--gray-light); }
.why-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow-lg); }
.why-icon { display: flex; justify-content: center; margin-bottom: 16px; }
.why-icon img { width: 80px; height: 80px; object-fit: contain; }
.icon-fallback { font-size: 48px; }
.why-card h3 { font-size: 15px; font-family: var(--font-head); font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ===== WHAT IS ===== */
.what-section { padding: 80px 0; background: white; }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.what-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.what-content h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 20px; color: var(--dark); }
.what-content p { margin-bottom: 16px; color: var(--gray); font-size: 16px; }
.cta-btn-secondary { display: inline-block; background: var(--primary); color: white; font-family: var(--font-head); font-weight: 700; padding: 14px 28px; border-radius: 40px; margin-top: 8px; transition: transform 0.2s, box-shadow 0.2s; }
.cta-btn-secondary:hover { transform: scale(1.05); box-shadow: var(--shadow); }

/* ===== HOW IT WORKS ===== */
.how-section { padding: 80px 0; background: linear-gradient(135deg, var(--green-light), white); }
.accordion-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--gray-light); }
.accordion-header { width: 100%; display: flex; align-items: center; gap: 16px; padding: 20px 24px; font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--dark); transition: background 0.2s; cursor: pointer; text-align: left; min-height: 44px; }
.accordion-header:hover { background: var(--green-light); }
.accordion-header[aria-expanded="true"] { background: var(--primary); color: white; }
.acc-icon { font-size: 22px; flex-shrink: 0; }
.acc-title { flex: 1; }
.acc-arrow { transition: transform 0.3s; font-size: 12px; flex-shrink: 0; }
.accordion-header[aria-expanded="true"] .acc-arrow { transform: rotate(180deg); }
.accordion-body { padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.accordion-body.open { max-height: 300px; padding: 20px 24px; }
.accordion-body p { color: var(--gray); font-size: 15px; line-height: 1.7; }

/* ===== REVIEWS ===== */
.reviews-section { padding: 80px 0; background: var(--dark); }
.reviews-section .section-title { color: white; }
.reviews-section .section-sub { color: rgba(255,255,255,0.7); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: rgba(255,255,255,0.07); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 28px 24px; transition: transform 0.3s, box-shadow 0.3s; }
.review-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.3); }
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-light); flex-shrink: 0; }
.avatar-fallback { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; flex-shrink: 0; }
.review-top strong { color: white; display: block; font-size: 15px; }
.review-location { color: rgba(255,255,255,0.6); font-size: 13px; display: block; }
.review-stars { font-size: 14px; margin-top: 4px; }
.review-text { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.7; }

/* ===== PRICING ===== */
.pricing-section { padding: 80px 0; background: linear-gradient(180deg, var(--off-white) 0%, white 100%); }
.pricing-section-2 { background: linear-gradient(180deg, white 0%, var(--green-light) 100%); }
.countdown-wrap { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.countdown-label { font-family: var(--font-head); font-weight: 700; color: var(--dark); font-size: 16px; }
.countdown-timer { display: flex; align-items: center; gap: 8px; }
.timer-block { background: var(--dark); color: white; border-radius: 10px; padding: 12px 18px; text-align: center; min-width: 72px; }
.timer-block span { display: block; font-family: var(--font-head); font-size: 32px; font-weight: 900; line-height: 1; }
.timer-block small { font-size: 10px; opacity: 0.7; font-weight: 700; letter-spacing: 1px; }
.timer-sep { font-size: 32px; font-weight: 900; color: var(--dark); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.price-card { background: white; border-radius: var(--radius); padding: 32px 24px; text-align: center; border: 2px solid var(--gray-light); box-shadow: var(--shadow); position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.popular { border-color: var(--primary); background: linear-gradient(135deg, #e8f7f2, white); transform: scale(1.04); }
.price-card.popular:hover { transform: scale(1.04) translateY(-6px); }
.popular-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; font-family: var(--font-head); font-size: 12px; font-weight: 800; padding: 6px 20px; border-radius: 40px; white-space: nowrap; }
.price-label { font-family: var(--font-head); font-size: 13px; font-weight: 800; color: var(--gray); letter-spacing: 2px; margin-bottom: 4px; }
.price-bottles { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--dark); }
.price-supply { color: var(--gray); font-size: 13px; margin-bottom: 16px; }
.price-img { width: 100%; max-width: 160px; margin: 0 auto 16px; }
.price-amount { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 4px; }
.price-old { font-family: var(--font-head); font-size: 20px; text-decoration: line-through; color: #ef4444; opacity: 0.7; }
.price-new { font-family: var(--font-head); font-size: 40px; font-weight: 900; color: var(--primary); }
.price-per { color: var(--gray); font-size: 13px; margin-bottom: 16px; }
.price-bonus-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-bottom: 16px; }
.bonus-tag { background: var(--accent); color: var(--dark); font-size: 11px; font-weight: 700; font-family: var(--font-head); padding: 4px 12px; border-radius: 20px; }
.price-btn { display: block; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; font-family: var(--font-head); font-weight: 800; font-size: 16px; padding: 16px 24px; border-radius: 40px; margin-bottom: 16px; transition: transform 0.2s, box-shadow 0.2s; min-height: 52px; display: flex; align-items: center; justify-content: center; }
.price-btn:hover { transform: scale(1.05); box-shadow: var(--shadow); }
.popular-btn { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--dark); }
.payment-icons { max-width: 180px; margin: 0 auto; }
.rating-center { text-align: center; }
.five-star-img { max-width: 240px; margin: 0 auto; }
.star-fallback { font-size: 18px; color: var(--accent); }

/* ===== BONUS ===== */
.bonus-section { padding: 80px 0; background: var(--dark-2); }
.bonus-section .section-title { color: white; }
.bonus-section .section-sub { color: rgba(255,255,255,0.7); }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 800px; margin: 0 auto; }
.bonus-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: transform 0.3s; }
.bonus-card:hover { transform: translateY(-6px); }
.bonus-number { display: inline-block; background: var(--accent); color: var(--dark); font-family: var(--font-head); font-size: 12px; font-weight: 800; padding: 4px 16px; border-radius: 20px; margin-bottom: 16px; letter-spacing: 1px; }
.bonus-card img { width: 100%; max-width: 200px; margin: 0 auto 20px; border-radius: 12px; }
.bonus-img-fallback { font-size: 72px; margin-bottom: 16px; }
.bonus-card h3 { font-size: 20px; color: white; margin-bottom: 12px; }
.bonus-card p { color: rgba(255,255,255,0.75); font-size: 15px; }

/* ===== INGREDIENTS ===== */
.ingredients-section { padding: 80px 0; background: white; }
.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ingredient-card { background: var(--off-white); border-radius: var(--radius); padding: 24px 20px; border: 1px solid var(--gray-light); transition: transform 0.2s, box-shadow 0.2s; }
.ingredient-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ing-emoji { font-size: 36px; margin-bottom: 12px; }
.ingredient-card h3 { font-size: 16px; color: var(--primary); font-family: var(--font-head); margin-bottom: 10px; font-weight: 700; }
.ingredient-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.ingredient-card em { color: var(--primary-dark); font-style: italic; font-weight: 600; }

/* ===== SCIENCE ===== */
.science-section { padding: 80px 0; background: var(--off-white); }
.science-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.science-card { background: white; border-radius: var(--radius); padding: 28px 24px; border-left: 4px solid var(--primary); box-shadow: var(--shadow); transition: transform 0.2s; }
.science-card:hover { transform: translateY(-4px); }
.science-card h3 { font-size: 17px; font-family: var(--font-head); color: var(--dark); margin-bottom: 12px; }
.science-card p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ===== GUARANTEE ===== */
.guarantee-section { padding: 80px 0; background: linear-gradient(135deg, #0d2e1f, #0d6e4f); color: white; }
.guarantee-section .section-title { color: white; }
.guarantee-grid { display: grid; grid-template-columns: 1fr 1.6fr; align-items: center; gap: 60px; }
.guarantee-image img { width: 100%; max-width: 320px; margin: 0 auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }
.guarantee-fallback { font-size: 100px; text-align: center; color: white; line-height: 1.1; font-family: var(--font-head); }
.guarantee-intro { font-size: 17px; margin-bottom: 28px; opacity: 0.9; line-height: 1.7; }
.guarantee-item { display: flex; gap: 16px; margin-bottom: 24px; }
.g-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.guarantee-item h3 { font-size: 17px; margin-bottom: 8px; color: var(--accent); }
.guarantee-item p { font-size: 14px; opacity: 0.85; line-height: 1.7; }

/* ===== BENEFITS ===== */
.benefits-section { padding: 80px 0; background: white; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; background: var(--off-white); border-radius: var(--radius); padding: 20px; border: 1px solid var(--gray-light); }
.b-check { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.benefit-item h3 { font-size: 16px; font-family: var(--font-head); color: var(--dark); margin-bottom: 6px; font-weight: 700; }
.benefit-item p { font-size: 14px; color: var(--gray); }

/* ===== FAQ ===== */
.faq-section { padding: 80px 0; background: var(--off-white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: white; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-light); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.faq-header { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--dark); cursor: pointer; min-height: 44px; transition: background 0.2s; text-align: left; gap: 12px; }
.faq-header:hover { background: var(--green-light); }
.faq-header[aria-expanded="true"] { background: var(--primary); color: white; }
.faq-arrow { font-size: 12px; transition: transform 0.3s; flex-shrink: 0; }
.faq-header[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-body.open { max-height: 400px; padding: 20px 24px; }
.faq-body p { color: var(--gray); font-size: 15px; line-height: 1.7; }

/* ===== FINAL CTA ===== */
.final-cta-section { padding: 80px 0; background: linear-gradient(160deg, #0d2e1f 0%, #0d6e4f 60%, #1a9968 100%); overflow: hidden; position: relative; }
.final-cta-inner { display: grid; grid-template-columns: 1fr 1.5fr; align-items: center; gap: 60px; }
.final-cta-image { position: relative; display: flex; justify-content: center; }
.final-img { max-width: 300px; width: 100%; animation: float 4s ease-in-out infinite; filter: drop-shadow(0 24px 48px rgba(0,0,0,0.4)); position: relative; z-index: 2; }
.final-glow-ring { position: absolute; width: 280px; height: 280px; border: 3px solid rgba(245,166,35,0.3); border-radius: 50%; animation: ringPulse 2.5s ease-in-out infinite; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.final-cta-content { color: white; }
.final-urgency-badge { display: inline-block; background: #ef4444; color: white; font-family: var(--font-head); font-size: 12px; font-weight: 800; padding: 6px 18px; border-radius: 40px; margin-bottom: 16px; letter-spacing: 1px; animation: pulse 2s ease-in-out infinite; }
.final-cta-content h2 { font-size: clamp(22px, 3vw, 36px); margin-bottom: 20px; line-height: 1.25; }
.final-regular { font-size: 16px; opacity: 0.7; margin-bottom: 8px; }
.strike-price { text-decoration: line-through; color: #f87171; }
.final-special { font-size: 32px; font-family: var(--font-head); font-weight: 900; color: var(--accent); margin-bottom: 24px; }
.final-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.final-features span { font-size: 15px; opacity: 0.9; }
.final-cta-btn { display: inline-flex; flex-direction: column; align-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--dark); font-family: var(--font-head); font-weight: 900; font-size: 18px; padding: 20px 36px; border-radius: 50px; min-height: 70px; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 8px 32px rgba(245,166,35,0.4); width: 100%; max-width: 460px; text-align: center; animation: pulse 2.5s ease-in-out infinite; }
.final-cta-btn:hover { transform: scale(1.05); animation: none; }
.final-disclaimer { margin-top: 20px; font-size: 12px; opacity: 0.6; line-height: 1.5; }

/* ===== FOOTER ===== */
.main-footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 20px; font-weight: 700; color: white; margin-bottom: 16px; }
.footer-logo strong { color: var(--primary-light); }
.footer-about { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; transition: background 0.2s; }
.social-icon:hover { background: var(--primary); color: white; }
.footer-col h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: white; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary-light); }
.footer-legal-links { display: flex; flex-direction: column; gap: 10px; }
.legal-link { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.legal-link:hover { color: var(--primary-light); }
.link-separator { display: none; }
.footer-cta-btn { display: inline-block; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; font-family: var(--font-head); font-weight: 700; padding: 14px 24px; border-radius: 40px; font-size: 15px; text-align: center; min-height: 48px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; transition: transform 0.2s; }
.footer-cta-btn:hover { transform: scale(1.05); }
.footer-guarantee { font-size: 13px; opacity: 0.7; }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--primary-light); }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { position: fixed; top: 70px; left: 0; right: 0; background: white; flex-direction: column; padding: 24px 20px; gap: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: translateY(-120%); opacity: 0; transition: transform 0.3s, opacity 0.3s; z-index: 999; }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-link { padding: 14px 16px; border-radius: 8px; font-size: 16px; }
  .nav-cta-btn { justify-content: center; width: 100%; min-height: 52px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero-image-wrap { order: -1; }
  .hero-bottle { max-width: 220px; margin: 0 auto; }
  .hero-h1 { font-size: 28px; }
  .hero-trust { justify-content: center; }
  .hero-cta-btn { max-width: 100%; font-size: 16px; }
  .badge-1 { left: 0; font-size: 11px; }
  .badge-2 { right: 0; font-size: 11px; }
  .badge-3 { left: 0; font-size: 11px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .what-grid { grid-template-columns: 1fr; }
  .what-image { order: -1; }
  .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; }
  .science-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .final-cta-btn { max-width: 100%; }
  .final-features { align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-legal-links { align-items: center; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 12px; }
}

@media (max-width: 576px) {
  .container { padding: 0 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 24px 20px; }
  .hero-section { padding: 90px 0 40px; }
  .pricing-grid { gap: 16px; }
  .hero-badge-float { display: none; }
  .timer-block span { font-size: 24px; }
  .price-new { font-size: 32px; }
  .accordion-header { font-size: 14px; padding: 16px; }
  .faq-header { font-size: 14px; padding: 16px; }
  section { padding: 60px 0; }
}

@media (max-width: 320px) {
  .hero-h1 { font-size: 22px; }
  .hero-cta-btn { font-size: 14px; padding: 16px 20px; }
}
