/* ===== LIPO FIT - PREMIUM GREEN WELLNESS DESIGN ===== */
/* Font: Clash Display + DM Sans */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Syne:wght@700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #16a34a;
  --primary-dark: #15803d;
  --primary-light: #22c55e;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --dark: #0f1c0f;
  --dark2: #1a2e1a;
  --mid: #2d4a2d;
  --text: #1e1e1e;
  --text-light: #4a5568;
  --white: #ffffff;
  --off-white: #f0fdf4;
  --border: #d1fae5;
  --shadow: 0 4px 24px rgba(22, 163, 74, 0.15);
  --shadow-lg: 0 12px 48px rgba(22, 163, 74, 0.25);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

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

@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.section-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  min-height: 52px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
  text-align: center;
  line-height: 1.3;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(22, 163, 74, 0.5);
}

.btn-primary:active { transform: scale(0.98); }

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-accent:hover { box-shadow: 0 8px 32px rgba(245, 158, 11, 0.5); }

.btn-lg {
  font-size: 18px;
  padding: 20px 48px;
  min-height: 60px;
}

.btn-full { width: 100%; }

/* ===== FADE-IN ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===== NOTIFICATION POPUP ===== */
#notif-popup {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  z-index: 9999;
  transform: translateX(-400px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#notif-popup.show { transform: translateX(0); }

.notif-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.notif-text { flex: 1; }
.notif-text strong { display: block; font-size: 14px; color: var(--dark); }
.notif-text span { font-size: 12px; color: var(--text-light); }

#notif-popup .notif-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 18px;
  padding: 4px;
}

/* ===== EXIT POPUP ===== */
#exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#exit-popup-overlay.active { display: flex; }

#exit-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

#exit-popup h3 {
  font-family: var(--font-head);
  font-size: clamp(20px, 4vw, 28px);
  color: var(--dark);
  margin-bottom: 12px;
}

#exit-popup p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 15px;
}

.exit-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.exit-close-btn:hover { background: #e5e7eb; }

/* ===== SCROLL TO TOP ===== */
#scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

#scroll-top.show { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: var(--primary-dark); transform: translateY(-4px); }

/* ===== SECTION 1: NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

#navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  background: var(--primary);
  color: white;
  padding: 2px 10px;
  border-radius: 8px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--primary); }

.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

@media (min-width: 768px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px;
  gap: 16px;
}

#mobile-menu.open { display: flex; }

#mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

#mobile-menu .btn-primary { width: 100%; margin-top: 8px; border-bottom: none; }

/* ===== SECTION 2: HERO ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2e1a 0%, #1a4a2e 40%, #0f1c0f 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  order: -1;
}

@media (min-width: 768px) { .hero-image-wrap { order: 2; } }

.hero-bottle {
  max-width: 300px;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(34, 197, 94, 0.3));
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-16px) rotate(2deg); }
  66% { transform: translateY(-8px) rotate(-1deg); }
}

@media (min-width: 768px) { .hero-bottle { max-width: 420px; } }

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: var(--primary-light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  animation: pulse-border 2s ease infinite;
}

@keyframes pulse-border {
  0%, 100% { border-color: rgba(34, 197, 94, 0.4); }
  50% { border-color: rgba(34, 197, 94, 0.8); }
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-h1 .highlight {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-light);
}

.hero-stat .label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  display: block;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.hero-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }

/* ===== SECTION 3: WHY CHOOSE US ===== */
#why-choose {
  padding: 80px 0;
  background: var(--off-white);
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 576px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 2px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.trust-card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.trust-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.trust-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== SECTION 4: WHAT IS ===== */
#what-is {
  padding: 80px 0;
  background: var(--white);
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) { .what-grid { grid-template-columns: 1fr 1fr; } }

.what-image {
  max-width: 400px;
  margin: 0 auto;
}

.what-content .section-title { text-align: left; }
.what-content p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }

.what-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.pill {
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
}

/* ===== SECTION 5: HOW IT WORKS ===== */
#how-it-works {
  padding: 80px 0;
  background: var(--dark);
}

#how-it-works .section-title { color: var(--white); text-align: center; }
#how-it-works .section-subtitle { color: rgba(255,255,255,0.6); text-align: center; }

.accordion-list { margin-top: 48px; display: flex; flex-direction: column; gap: 16px; }

.accordion-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.open { border-color: var(--primary); }

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  min-height: 64px;
  text-align: left;
  gap: 16px;
}

.accordion-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.acc-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.accordion-header h3 {
  font-family: var(--font-head);
  font-size: clamp(16px, 2.5vw, 18px);
  color: var(--white);
  font-weight: 700;
}

.acc-chevron {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
  flex-shrink: 0;
}

.accordion-item.open .acc-chevron { transform: rotate(180deg); border-color: var(--primary); color: var(--primary-light); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.open .accordion-body { max-height: 400px; }

.accordion-body p {
  padding: 0 24px 24px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  font-size: 15px;
}

/* ===== SECTION 6: REVIEWS ===== */
#reviews {
  padding: 80px 0;
  background: var(--off-white);
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 576px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 2px solid var(--border);
  text-align: left;
  transition: var(--transition);
}

.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.review-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.reviewer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

.reviewer-info h4 { font-family: var(--font-head); font-size: 16px; color: var(--dark); }
.reviewer-info span { font-size: 13px; color: var(--text-light); }
.stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; display: block; margin-bottom: 12px; }
.review-text { font-size: 15px; color: var(--text-light); line-height: 1.8; }

/* ===== SECTION 7 & 13: PRICING ===== */
.pricing-section {
  padding: 80px 0;
  background: var(--dark2);
  text-align: center;
}

.pricing-section .section-title { color: var(--white); }
.pricing-section .section-subtitle { color: rgba(255,255,255,0.6); }

/* Countdown Timer */
.countdown-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 32px 0;
}

.countdown-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-num {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 12px;
  min-width: 80px;
  line-height: 1;
}

.timer-sep {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--primary-light);
  align-self: flex-start;
  margin-top: 12px;
}

.timer-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 576px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
}

.price-card:hover { border-color: var(--primary); transform: translateY(-4px); }

.price-card.popular {
  background: rgba(22, 163, 74, 0.15);
  border-color: var(--primary);
  transform: scale(1.03);
}

.price-card.popular:hover { transform: scale(1.05); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 1px;
}

.price-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 8px;
}

.price-bottles {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 4px;
}

.price-supply {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.price-img { max-width: 140px; margin: 0 auto 24px; }

.price-per-bottle {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  color: var(--primary-light);
}

.price-per-bottle span {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
}

.price-total {
  margin: 8px 0 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.price-total s { color: rgba(255,255,255,0.3); }
.price-total strong { color: var(--primary-light); }

.price-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.price-badge {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--primary-light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
}

.price-imgs { margin-top: 16px; }
.price-imgs img { max-width: 200px; margin: 8px auto 0; opacity: 0.7; }

.rating-wrap { margin-top: 40px; }
.rating-wrap img { max-width: 200px; margin: 0 auto; }

/* ===== SECTION 8: BONUSES ===== */
#bonuses {
  padding: 80px 0;
  background: var(--off-white);
  text-align: center;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }

.bonus-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 2px solid var(--border);
  transition: var(--transition);
}

.bonus-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary); }

.bonus-num {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.bonus-card img { max-width: 180px; margin: 0 auto 20px; }
.bonus-card h3 { font-family: var(--font-head); font-size: 18px; color: var(--dark); margin-bottom: 12px; }
.bonus-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ===== SECTION 9: INGREDIENTS ===== */
#ingredients {
  padding: 80px 0;
  background: var(--white);
}

#ingredients .section-title { text-align: center; }
#ingredients .section-subtitle { text-align: center; }

.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 576px) { .ingredients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .ingredients-grid { grid-template-columns: repeat(3, 1fr); } }

.ingredient-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  border: 2px solid var(--border);
  transition: var(--transition);
}

.ingredient-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }

.ing-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.ingredient-card h4 { font-family: var(--font-head); font-size: 16px; color: var(--dark); margin-bottom: 8px; font-weight: 800; }
.ingredient-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.ing-benefit {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 12px;
}

/* ===== SECTION 10: SCIENTIFIC EVIDENCE ===== */
#scientific {
  padding: 80px 0;
  background: var(--dark);
  text-align: center;
}

#scientific .section-title { color: var(--white); }
#scientific .section-subtitle { color: rgba(255,255,255,0.6); }

.science-accordion { margin-top: 48px; }

/* ===== SECTION 11: GUARANTEE ===== */
#guarantee {
  padding: 80px 0;
  background: var(--white);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) { .guarantee-grid { grid-template-columns: 1fr 1fr; } }

.guarantee-img { max-width: 320px; margin: 0 auto; }

.guarantee-content h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--dark);
  margin-bottom: 24px;
  font-weight: 800;
}

.guarantee-points { display: flex; flex-direction: column; gap: 20px; }

.gp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 2px solid var(--border);
}

.gp-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.gp-item h4 { font-family: var(--font-head); font-size: 15px; color: var(--dark); margin-bottom: 6px; }
.gp-item p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== SECTION 12: BENEFITS ===== */
#benefits {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--dark2));
  text-align: center;
}

#benefits .section-title { color: var(--white); }
#benefits .section-subtitle { color: rgba(255,255,255,0.7); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  text-align: left;
}

.benefit-item:hover { background: rgba(255,255,255,0.12); border-color: var(--primary-light); }

.benefit-check {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.benefit-item span { font-size: 15px; color: var(--white); font-weight: 500; }

/* ===== SECTION 14: FAQ ===== */
#faq {
  padding: 80px 0;
  background: var(--off-white);
}

#faq .section-title { text-align: center; }

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: var(--primary); }

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  min-height: 64px;
  text-align: left;
  gap: 16px;
}

.faq-btn h4 {
  font-family: var(--font-head);
  font-size: clamp(15px, 2.5vw, 17px);
  color: var(--dark);
  font-weight: 700;
}

.faq-chevron {
  width: 32px;
  height: 32px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); border-color: var(--primary); color: var(--primary); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-body { max-height: 400px; }

.faq-body p {
  padding: 0 24px 24px;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}

/* ===== SECTION 15: FINAL CTA ===== */
#final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f1c0f, #1a4a2e);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-img {
  max-width: 280px;
  margin: 0 auto 32px;
  filter: drop-shadow(0 20px 60px rgba(34, 197, 94, 0.3));
  animation: heroFloat 4s ease-in-out infinite;
}

.final-cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 38px);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.final-price {
  margin-bottom: 32px;
}

.final-price s {
  font-size: 20px;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 8px;
}

.final-price .big-price {
  font-family: var(--font-head);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  color: var(--primary-light);
}

/* ===== SECTION 16: FOOTER ===== */
#footer {
  background: var(--dark);
  padding: 60px 0 20px;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr 1fr; } }

.footer-logo {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.footer-desc { font-size: 14px; line-height: 1.8; }

.footer-links h4 {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--primary-light); padding-left: 8px; }

.footer-social h4 {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.social-btn:hover { background: var(--primary); color: white; transform: translateY(-3px); }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}

.footer-legal-links .legal-link {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: var(--transition);
}

.footer-legal-links .legal-link:hover { color: var(--primary-light); }

.link-separator {
  color: rgba(255,255,255,0.2);
  font-size: 13px;
}

/* ===== MOBILE SPECIFIC ===== */
@media (max-width: 576px) {
  .btn-lg {
    font-size: 16px;
    padding: 18px 32px;
  }

  .price-card.popular {
    transform: scale(1);
    order: -1;
  }

  .price-card.popular:hover { transform: translateY(-4px); }
}

/* ===== SECTION PADDING MOBILE ===== */
@media (max-width: 576px) {
  #hero { padding: 80px 0 40px; }

  section { padding-top: 60px !important; padding-bottom: 60px !important; }
}
