/* ==========================================
   SLIMSURE - styles.css
   Design: Premium Natural Health (Deep Green + Gold)
   Font: Playfair Display + DM Sans
   ========================================== */

:root {
  --primary: #0d4f38;
  --primary-dark: #083329;
  --primary-light: #1a6b4f;
  --gold: #c9a227;
  --gold-light: #e8c565;
  --accent: #e85d04;
  --white: #ffffff;
  --off-white: #f8faf9;
  --text: #1a1a2e;
  --text-muted: #5c6b73;
  --card-bg: #ffffff;
  --border: #e0ede8;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(13,79,56,0.12);
  --shadow-lg: 0 20px 60px rgba(13,79,56,0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: transparent; }
body { font-family: 'DM Sans', sans-serif; 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; }

/* UTILITY */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.gradient-text { background: linear-gradient(135deg, var(--primary), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-label { display: inline-block; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; padding: 6px 16px; border-radius: 100px; margin-bottom: 14px; text-transform: uppercase; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; margin: 0 auto 40px; text-align: center; }

/* BUTTONS */
.btn-primary, .btn-hero, .btn-final {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), #ff7b35);
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 1.1rem; padding: 16px 36px;
  border-radius: 100px; border: none; cursor: pointer;
  transition: var(--transition); box-shadow: 0 8px 24px rgba(232,93,4,0.35);
  min-height: 54px; text-align: center; width: 100%;
}
.btn-primary:hover, .btn-hero:hover, .btn-final:hover { transform: scale(1.05); box-shadow: 0 12px 32px rgba(232,93,4,0.45); }
.btn-primary:active, .btn-hero:active, .btn-final:active { transform: scale(0.98); }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition); padding: 0 20px;
}
.navbar.scrolled { box-shadow: var(--shadow); padding: 0 20px; }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; color: var(--primary); }
.nav-logo em { font-style: normal; color: var(--gold); }
.logo-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.9rem; font-weight: 600; color: var(--text); transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important; color: var(--white) !important; padding: 10px 22px; border-radius: 100px; font-weight: 700 !important; box-shadow: 0 4px 16px rgba(13,79,56,0.25); }
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(13,79,56,0.35) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 767px) {
  .hamburger { display: flex; }
  .nav-links { position: fixed; top: 70px; left: 0; right: 0; background: white; flex-direction: column; gap: 0; padding: 0; box-shadow: var(--shadow); transform: translateY(-120%); opacity: 0; transition: var(--transition); pointer-events: none; }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { padding: 16px 24px; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-cta { margin: 12px 24px; border-radius: var(--radius) !important; }
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh; padding: 100px 20px 60px;
  background: linear-gradient(145deg, #0a3a28 0%, #0d4f38 40%, #1a6b4f 70%, #0d4f38 100%);
  position: relative; overflow: hidden; display: flex; align-items: center;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 60px; position: relative; z-index: 1; }
.hero-image { flex: 0 0 auto; text-align: center; position: relative; }
.hero-img-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 350px; height: 350px; background: radial-gradient(circle, rgba(201,162,39,0.3), transparent 70%); border-radius: 50%; animation: pulse 3s ease-in-out infinite; }
.hero-bottle { width: 280px; max-width: 100%; position: relative; z-index: 1; animation: float 4s ease-in-out infinite; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4)); }
@keyframes float { 0%, 100% { transform: translateY(0px) rotate(-2deg); } 50% { transform: translateY(-20px) rotate(2deg); } }
@keyframes pulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; } 50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; } }
.hero-badge, .hero-badge2 { position: absolute; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--primary-dark); font-size: 0.75rem; font-weight: 800; padding: 8px 14px; border-radius: 100px; white-space: nowrap; box-shadow: 0 4px 16px rgba(201,162,39,0.4); }
.hero-badge { top: 30px; right: -20px; animation: badge-float 3s ease-in-out infinite; }
.hero-badge2 { bottom: 30px; left: -20px; animation: badge-float 3s ease-in-out infinite reverse; }
@keyframes badge-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-content { flex: 1; }
.hero-tag { display: inline-block; background: rgba(201,162,39,0.2); border: 1px solid var(--gold); color: var(--gold-light); font-size: 0.8rem; font-weight: 700; padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; letter-spacing: 0.05em; text-transform: uppercase; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 5vw, 52px); color: var(--white); line-height: 1.2; margin-bottom: 20px; font-weight: 900; }
.hero h1 .gradient-text { background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 12px; line-height: 1.7; }
.hero-desc2 { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 20px; }
.hero-stars { color: var(--gold-light); font-size: 0.9rem; margin-bottom: 24px; }
.hero-stars span { color: rgba(255,255,255,0.7); margin-left: 6px; }
.btn-hero { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--primary-dark); font-size: 1.15rem; font-weight: 800; box-shadow: 0 8px 32px rgba(201,162,39,0.4); max-width: 400px; margin-bottom: 20px; }
.btn-hero:hover { box-shadow: 0 12px 40px rgba(201,162,39,0.55); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust span { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); font-size: 0.8rem; padding: 6px 12px; border-radius: 100px; }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { width: 100%; height: 80px; }

@media (max-width: 767px) {
  .hero { padding: 90px 20px 80px; }
  .hero-container { flex-direction: column; gap: 30px; text-align: center; }
  .hero-image { order: 0; }
  .hero-content { order: 1; }
  .hero-bottle { width: 200px; }
  .hero-badge { right: 0; top: 10px; font-size: 0.7rem; }
  .hero-badge2 { left: 0; bottom: 10px; font-size: 0.7rem; }
  .hero-trust { justify-content: center; }
  .btn-hero { max-width: 100%; }
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-us { padding: 80px 0; background: var(--off-white); text-align: center; }
.why-us h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 40px); margin-bottom: 12px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.why-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 24px; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); }
.why-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow-lg); }
.why-icon { width: 80px; height: 80px; margin: 0 auto 20px; }
.why-icon img { width: 100%; height: 100%; object-fit: contain; }
.why-card h3 { font-size: 1rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 991px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .why-grid { grid-template-columns: 1fr; } }

/* ==========================================
   WHAT IS
   ========================================== */
.what-is { padding: 80px 0; background: var(--white); }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.what-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 20px; }
.what-content p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.what-content .btn-primary { max-width: 250px; margin-top: 10px; }
.img-frame { background: linear-gradient(135deg, #e8f5ee, #d4edda); border-radius: var(--radius-lg); padding: 30px; text-align: center; box-shadow: var(--shadow); }
.img-frame img { max-width: 260px; margin: 0 auto; }

@media (max-width: 767px) {
  .what-grid { grid-template-columns: 1fr; gap: 30px; }
  .what-content .btn-primary { max-width: 100%; }
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-it-works { padding: 80px 0; background: var(--off-white); text-align: center; }
.how-it-works h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 40px); margin-bottom: 12px; }
.accordion { max-width: 860px; margin: 40px auto 0; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.accordion-header { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); transition: var(--transition); min-height: 64px; text-align: left; gap: 12px; }
.accordion-item.active .accordion-header { color: var(--primary); background: rgba(13,79,56,0.04); }
.acc-icon { font-size: 0.9rem; color: var(--primary); transition: var(--transition); flex-shrink: 0; }
.accordion-item.active .acc-icon { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-item.active .accordion-body { max-height: 400px; }
.accordion-body p { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; }

/* ==========================================
   REVIEWS
   ========================================== */
.reviews { padding: 80px 0; background: var(--white); text-align: center; }
.reviews h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 40px); margin-bottom: 12px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0 30px; }
.review-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 28px; text-align: left; border: 1px solid var(--border); box-shadow: var(--shadow); transition: var(--transition); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-header img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); }
.review-header strong { display: block; font-weight: 700; color: var(--text); }
.review-header span { font-size: 0.8rem; color: var(--text-muted); }
.stars { font-size: 0.9rem; }
.review-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.rating-display { text-align: center; margin-top: 20px; }
.rating-display img { max-width: 200px; margin: 0 auto 8px; }
.rating-display p { font-size: 0.9rem; color: var(--text-muted); }

@media (max-width: 991px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ==========================================
   PRICING
   ========================================== */
.pricing { padding: 80px 0; background: linear-gradient(145deg, #0a3a28, #0d4f38); text-align: center; }
.pricing-2 { background: var(--off-white); }
.pricing h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3.5vw, 38px); color: var(--white); margin-bottom: 8px; }
.pricing-2 h2 { color: var(--text); }
.pricing .section-sub { color: rgba(255,255,255,0.8); }
.pricing-2 .section-sub { color: var(--text-muted); }
.pricing .section-label { background: rgba(201,162,39,0.25); border: 1px solid var(--gold); color: var(--gold-light); }
.pricing-2 .section-label { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; border: none; }
.countdown-wrap { margin: 24px 0 40px; }
.countdown-label { font-size: 0.95rem; font-weight: 600; color: var(--gold-light); margin-bottom: 10px; }
.pricing-2 .countdown-label { color: var(--primary); }
.countdown { display: inline-flex; align-items: center; gap: 10px; }
.time-block { background: rgba(255,255,255,0.1); border: 2px solid var(--gold); border-radius: 12px; padding: 12px 20px; min-width: 80px; }
.pricing-2 .time-block { background: white; border-color: var(--primary); }
.time-block span { display: block; font-size: 2.5rem; font-weight: 900; color: var(--gold-light); font-family: 'Playfair Display', serif; line-height: 1; }
.pricing-2 .time-block span { color: var(--primary); }
.time-block small { display: block; font-size: 0.65rem; color: rgba(255,255,255,0.7); font-weight: 700; letter-spacing: 0.1em; margin-top: 4px; }
.pricing-2 .time-block small { color: var(--text-muted); }
.time-sep { font-size: 2rem; font-weight: 900; color: var(--gold); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; backdrop-filter: blur(10px); transition: var(--transition); position: relative; }
.pricing-2 .price-card { background: white; border-color: var(--border); box-shadow: var(--shadow); }
.price-card.popular { background: rgba(255,255,255,0.12); border-color: var(--gold); transform: scale(1.03); box-shadow: 0 0 40px rgba(201,162,39,0.25); }
.pricing-2 .price-card.popular { background: linear-gradient(145deg, #f0faf4, #e8f5ee); border-color: var(--primary); transform: scale(1.03); box-shadow: var(--shadow-lg); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--primary-dark); font-size: 0.75rem; font-weight: 800; padding: 6px 20px; border-radius: 100px; white-space: nowrap; }
.price-label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; color: var(--gold-light); margin-bottom: 4px; }
.pricing-2 .price-label { color: var(--primary); }
.price-qty { font-size: 1.4rem; font-weight: 800; color: var(--white); }
.pricing-2 .price-qty { color: var(--text); }
.price-supply { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.pricing-2 .price-supply { color: var(--text-muted); }
.price-card img { max-height: 160px; margin: 0 auto 16px; object-fit: contain; }
.price-amount { font-size: 1.8rem; font-weight: 900; color: var(--white); margin: 8px 0 4px; }
.pricing-2 .price-amount { color: var(--text); }
.old-price { text-decoration: line-through; color: rgba(255,255,255,0.4); font-size: 1.2rem; margin-right: 8px; }
.pricing-2 .old-price { color: var(--text-muted); }
.new-price { color: var(--gold-light); }
.pricing-2 .new-price { color: var(--primary); }
.price-per { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.pricing-2 .price-per { color: var(--text-muted); }
.price-badges { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.badge-green { background: rgba(26,107,79,0.25); border: 1px solid rgba(26,107,79,0.4); color: #7dd8b0; font-size: 0.8rem; font-weight: 700; padding: 6px 12px; border-radius: 8px; }
.pricing-2 .badge-green { background: rgba(13,79,56,0.08); border-color: rgba(13,79,56,0.2); color: var(--primary); }
.btn-price { display: block; margin: 0 auto 12px; max-width: 180px; transition: var(--transition); }
.btn-price:hover { transform: scale(1.08); }
.btn-price:active { transform: scale(0.97); }
.cards-img { max-width: 160px; margin: 0 auto; opacity: 0.85; }

@media (max-width: 767px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: scale(1); }
}
@media (min-width: 576px) and (max-width: 991px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card:last-child { grid-column: 1 / -1; max-width: 360px; margin: 0 auto; width: 100%; }
}

/* ==========================================
   BONUSES
   ========================================== */
.bonuses { padding: 80px 0; background: var(--white); text-align: center; }
.bonuses h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3.5vw, 38px); margin-bottom: 40px; }
.bonus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.bonus-card { background: linear-gradient(145deg, #f0faf4, #e8f5ee); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: var(--transition); }
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.bonus-num { display: inline-block; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--primary-dark); font-size: 0.75rem; font-weight: 800; padding: 6px 18px; border-radius: 100px; margin-bottom: 16px; letter-spacing: 0.1em; }
.bonus-card img { max-height: 180px; margin: 0 auto 20px; border-radius: 12px; object-fit: cover; }
.bonus-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--primary); margin-bottom: 12px; }
.bonus-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.bonus-value { margin-top: 16px; font-size: 0.9rem; font-weight: 700; color: var(--accent); }

@media (max-width: 767px) { .bonus-grid { grid-template-columns: 1fr; } }

/* ==========================================
   INGREDIENTS
   ========================================== */
.ingredients { padding: 80px 0; background: var(--off-white); text-align: center; }
.ingredients h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 40px); margin-bottom: 12px; }
.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; text-align: left; }
.ingredient-card { background: var(--white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: var(--transition); }
.ingredient-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.ing-icon { font-size: 2rem; margin-bottom: 12px; }
.ingredient-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.ingredient-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 991px) { .ingredients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .ingredients-grid { grid-template-columns: 1fr; } }

/* ==========================================
   SCIENCE
   ========================================== */
.science { padding: 80px 0; background: var(--white); text-align: center; }
.science h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 40px); margin-bottom: 12px; }
.science-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; text-align: left; }
.science-card { background: linear-gradient(145deg, #f0faf4, #fdfffe); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: var(--transition); }
.science-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.science-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.science-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 10px; }

@media (max-width: 767px) { .science-grid { grid-template-columns: 1fr; } }

/* ==========================================
   GUARANTEE
   ========================================== */
.guarantee { padding: 80px 0; background: linear-gradient(145deg, #f0faf4, #e8f5ee); }
.guarantee-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.guarantee-img img { max-width: 320px; margin: 0 auto; filter: drop-shadow(0 20px 40px rgba(13,79,56,0.15)); }
.guarantee-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3.5vw, 36px); color: var(--primary); margin-bottom: 28px; }
.guarantee-point { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.gp-icon { font-size: 2rem; flex-shrink: 0; }
.guarantee-point h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.guarantee-point p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.guarantee-content .btn-primary { max-width: 280px; margin-top: 8px; }

@media (max-width: 767px) {
  .guarantee-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .guarantee-point { flex-direction: column; align-items: center; text-align: center; }
  .guarantee-content .btn-primary { max-width: 100%; }
}

/* ==========================================
   BENEFITS
   ========================================== */
.benefits { padding: 80px 0; background: var(--white); text-align: center; }
.benefits h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 40px); margin-bottom: 12px; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; text-align: left; }
.benefit-item { display: flex; gap: 16px; background: var(--off-white); border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); transition: var(--transition); align-items: flex-start; }
.benefit-item:hover { border-color: var(--primary); background: linear-gradient(135deg, #f0faf4, #f8fffe); }
.benefit-check { font-size: 1.5rem; flex-shrink: 0; }
.benefit-item h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.benefit-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

@media (max-width: 767px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ==========================================
   FAQ
   ========================================== */
.faq { padding: 80px 0; background: var(--off-white); text-align: center; }
.faq h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 40px); margin-bottom: 40px; }
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.faq-item { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); text-align: left; min-height: 64px; gap: 12px; transition: var(--transition); }
.faq-item.open .faq-question { color: var(--primary); background: rgba(13,79,56,0.04); }
.faq-icon { font-size: 1.4rem; font-weight: 400; color: var(--primary); transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; }

/* ==========================================
   FINAL CTA
   ========================================== */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(145deg, #0a3a28, #0d4f38, #1a6b4f);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.1) 0%, transparent 70%);
}
.final-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.final-img { max-width: 280px; margin: 0 auto 30px; animation: float 4s ease-in-out infinite; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); }
.final-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 42px); color: var(--white); margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.final-price { margin-bottom: 28px; }
.old-price-big { display: block; font-size: 1.2rem; color: rgba(255,255,255,0.5); text-decoration: line-through; margin-bottom: 6px; }
.new-price-big { display: block; font-size: 2.2rem; font-weight: 900; color: var(--gold-light); font-family: 'Playfair Display', serif; }
.btn-final { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--primary-dark); font-size: 1.2rem; font-weight: 800; max-width: 460px; margin: 0 auto 20px; box-shadow: 0 12px 40px rgba(201,162,39,0.4); }
.btn-final:hover { box-shadow: 0 16px 50px rgba(201,162,39,0.55); }
.final-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 16px; }
.final-trust span { color: rgba(255,255,255,0.75); font-size: 0.85rem; background: rgba(255,255,255,0.08); padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.15); }

/* ==========================================
   FOOTER
   ========================================== */
.footer { background: #0a1a12; padding: 50px 0 30px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); font-weight: 900; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { font-size: 1.5rem; opacity: 0.7; transition: var(--transition); }
.footer-social a:hover { opacity: 1; transform: translateY(-2px); }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 30px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: var(--transition); padding: 4px 0; }
.footer-links a:hover { color: var(--gold-light); }
.footer-links span { color: rgba(255,255,255,0.3); }
.footer-disclaimer { background: rgba(255,255,255,0.05); border-radius: var(--radius); padding: 20px; margin-bottom: 24px; }
.footer-disclaimer p { color: rgba(255,255,255,0.5); font-size: 0.8rem; line-height: 1.7; margin-bottom: 8px; }
.footer-copy { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }

@media (max-width: 767px) {
  .footer-top { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ==========================================
   SCROLL TOP
   ========================================== */
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; border: none; border-radius: 50%; font-size: 1.4rem; cursor: pointer; box-shadow: var(--shadow-lg); transition: var(--transition); opacity: 0; pointer-events: none; z-index: 999; display: flex; align-items: center; justify-content: center; }
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: scale(1.1) translateY(-2px); }

/* ==========================================
   PURCHASE POPUP
   ========================================== */
.purchase-popup { position: fixed; bottom: -100px; left: 20px; background: white; border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.15); padding: 14px 16px; display: flex; align-items: center; gap: 12px; z-index: 9999; transition: bottom 0.5s cubic-bezier(0.4,0,0.2,1); max-width: 300px; border-left: 4px solid var(--primary); }
.purchase-popup.show { bottom: 80px; }
.popup-avatar { font-size: 2rem; background: var(--off-white); border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.popup-text { font-size: 0.8rem; line-height: 1.4; color: var(--text); flex: 1; }
.popup-text strong { color: var(--primary); }
.popup-close { background: none; border: none; cursor: pointer; font-size: 1rem; color: var(--text-muted); padding: 4px; align-self: flex-start; }

@media (max-width: 767px) {
  .purchase-popup { left: 10px; right: 10px; max-width: none; bottom: -100px; }
  .purchase-popup.show { bottom: 16px; }
}

/* ==========================================
   EXIT POPUP
   ========================================== */
.exit-popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 10000; 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 { background: white; border-radius: 20px; max-width: 460px; width: 100%; padding: 32px 28px; text-align: center; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.3); }
.exit-popup-close { position: absolute; top: 12px; right: 12px; background: var(--off-white); border: none; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; font-size: 1rem; color: var(--text); transition: var(--transition); }
.exit-popup-badge { background: #ffedd5; color: #c2410c; font-size: 0.8rem; font-weight: 700; padding: 6px 14px; border-radius: 100px; display: inline-block; margin-bottom: 14px; }
.exit-popup h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--text); margin-bottom: 12px; }
.exit-popup p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.exit-popup-btn { display: block; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; font-weight: 700; padding: 14px 24px; border-radius: 100px; margin: 16px 0 10px; font-size: 0.95rem; transition: var(--transition); }
.exit-popup-btn:hover { transform: scale(1.03); }
.exit-popup-decline { display: block; font-size: 0.8rem; color: var(--text-muted); text-decoration: underline; }

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

@media (prefers-reduced-motion: reduce) {
  [data-aos] { opacity: 1; transform: none !important; transition: none; }
  .hero-bottle { animation: none; }
  .hero-badge, .hero-badge2 { animation: none; }
  .hero-img-glow { animation: none; }
  .final-img { animation: none; }
}

/* Section headers centered */
.why-us h2, .how-it-works h2, .reviews h2, .bonuses h2, .ingredients h2, .science h2, .benefits h2, .faq h2, .what-is h2 { text-align: center; }
.what-is h2, .what-is .section-label { text-align: left; }

/* Mobile padding */
@media (max-width: 575px) {
  section { padding: 60px 0; }
  .container { padding: 0 16px; }
}
