/* ============================================
   JELLY BURN - PREMIUM LANDING PAGE STYLES
   Design: Modern Luxury (Dark + Gold + Green)
   Mobile-First Approach
   ============================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

* { -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #0a0f1e;
  color: #e8eaf0;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #F5C842;
  --gold-dark: #D4A017;
  --green: #10B981;
  --green-dark: #059669;
  --blue: #3B82F6;
  --dark: #0a0f1e;
  --dark2: #111827;
  --dark3: #1a2235;
  --card-bg: #151c2e;
  --border: rgba(245,200,66,0.15);
  --text: #e8eaf0;
  --text-muted: #94a3b8;
  --radius: 16px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(26px, 5vw, 56px); font-weight: 900; }
h2 { font-size: clamp(22px, 4vw, 40px); font-weight: 700; }
h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; }
h4 { font-size: clamp(16px, 2vw, 20px); font-weight: 600; }
p { font-size: 16px; line-height: 1.75; color: var(--text-muted); }

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

/* ---- GRADIENTS ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--gold), #F97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-height: 48px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(16,185,129,0.3);
}

.btn-primary:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(16,185,129,0.5); }
.btn-primary:active { transform: scale(0.98); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1a1a;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-height: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(245,200,66,0.4);
}

.btn-gold:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(245,200,66,0.6); }
.btn-gold:active { transform: scale(0.98); }
.btn-full { width: 100%; justify-content: center; }
.btn-xl { padding: 20px 48px; font-size: 20px; }

.pulse-btn {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(245,200,66,0.4); }
  50% { box-shadow: 0 8px 40px rgba(245,200,66,0.7), 0 0 0 8px rgba(245,200,66,0.1); }
}

/* ---- SECTION STYLES ---- */
section { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 12px; color: var(--text); }
.section-title.left { text-align: left; }
.section-sub { text-align: center; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; }

/* ============================================
   SECTION 1: NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,15,30,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.navbar.scrolled { background: rgba(10,15,30,0.97); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 900; text-decoration: none; }
.logo-jelly { color: var(--green); }
.logo-burn { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  font-size: 15px;
}
.nav-link:hover { color: var(--gold); background: rgba(245,200,66,0.08); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1a1a;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(245,200,66,0.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   SECTION 2: HERO
   ============================================ */
.hero {
  padding: 120px 0 80px;
  position: relative;
  background: radial-gradient(ellipse at 30% 50%, rgba(16,185,129,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(245,200,66,0.06) 0%, transparent 60%),
              var(--dark);
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) scale(1.2); opacity: 0; }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-image-col {
  display: flex;
  justify-content: center;
  order: -1;
}

.hero-img-wrapper {
  position: relative;
  display: inline-block;
}

.hero-bottle {
  width: 100%;
  max-width: 300px;
  height: auto;
  animation: heroFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(16,185,129,0.3));
  display: block;
  margin: 0 auto;
}

@keyframes heroFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16,185,129,0.4), transparent 70%);
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  filter: blur(30px);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:0.6;} 50%{opacity:1;} }

.hero-badge {
  position: absolute;
  top: 10px;
  right: -10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1a1a;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  gap: 6px;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 16px rgba(245,200,66,0.4);
}

.hero-tag {
  display: inline-block;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-h1 { margin-bottom: 20px; }

.hero-desc { color: var(--text-muted); margin-bottom: 14px; }

.hero-stats {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  flex: 1;
  min-width: 80px;
}
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }

.hero-cta { margin: 24px 0 12px; font-size: 17px; padding: 16px 32px; }
.hero-small { font-size: 13px; color: var(--text-muted); }

/* ============================================
   SECTION 3: WHY CHOOSE US
   ============================================ */
.why-us {
  background: var(--dark2);
  padding: 70px 0;
}

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

.badge-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(30px);
}
.badge-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--delay, 0s), transform 0.6s var(--delay, 0s), box-shadow 0.3s;
}
.badge-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: 0 20px 50px rgba(245,200,66,0.15); }

.badge-card img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 16px; display: block; }
.badge-card h3 { color: var(--gold); margin-bottom: 10px; font-size: 18px; }
.badge-card p { font-size: 14px; line-height: 1.6; }

/* ============================================
   SECTION 4: WHAT IS
   ============================================ */
.what-is { background: var(--dark); padding: 70px 0; }

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

.what-is-image {
  display: flex;
  justify-content: center;
  order: -1;
}
.what-is-image img {
  max-width: 280px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(16,185,129,0.2);
  animation: heroFloat 5s ease-in-out infinite;
}

.what-is-content h2 { margin-bottom: 20px; }
.what-is-content p { margin-bottom: 16px; }
.what-is-content .btn-primary { margin-top: 10px; }

/* ============================================
   SECTION 5: HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--dark2);
  padding: 70px 0;
}

.accordion { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }

.accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  min-height: 56px;
  gap: 12px;
  transition: background 0.2s;
}
.accordion-header:hover { background: rgba(245,200,66,0.05); }
.accordion-header span { flex: 1; }

.acc-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s;
}
.accordion-item.active .acc-icon { transform: rotate(180deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.accordion-item.active .accordion-body {
  max-height: 300px;
  padding: 0 20px 20px;
}

/* ============================================
   SECTION 6: REVIEWS
   ============================================ */
.reviews { background: var(--dark); padding: 70px 0; }

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

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  opacity: 0;
  transform: translateY(30px);
}
.review-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--delay, 0s), transform 0.6s var(--delay, 0s);
}

.review-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin-bottom: 14px;
  display: block;
}
.review-stars { font-size: 20px; margin-bottom: 8px; }
.review-name { font-weight: 700; color: var(--text); margin-bottom: 10px; }
.review-name span { color: var(--text-muted); font-weight: 400; font-size: 14px; }
.review-text { font-size: 15px; line-height: 1.7; }

/* ============================================
   SECTION 7 & 13: PRICING
   ============================================ */
.pricing {
  background: var(--dark2);
  padding: 70px 0;
}
.pricing2 { background: var(--dark); }

.countdown-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.countdown-label { color: var(--gold); font-weight: 600; font-size: 16px; margin-bottom: 12px; }
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 16px 28px;
}
.cd-block { text-align: center; }
.cd-block span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  min-width: 70px;
}
.cd-block small { font-size: 11px; color: var(--text-muted); font-weight: 600; letter-spacing: 2px; }
.cd-sep { font-size: 40px; color: var(--gold); font-weight: 900; }

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

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pricing-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(245,200,66,0.08), rgba(212,160,23,0.05));
  transform: scale(1.02);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1a1a;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.pricing-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
}
.pricing-supply { font-size: 22px; font-weight: 800; color: var(--text); }
.pricing-days { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }

.pricing-card img {
  max-width: 140px;
  width: 100%;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}

.price-strike { color: var(--text-muted); text-decoration: line-through; font-size: 18px; }
.price-main { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; color: var(--green); }
.price-main span { font-size: 16px; color: var(--text-muted); }
.price-total { color: var(--text-muted); font-size: 14px; margin-bottom: 12px; }

.bonus-tags { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.bonus-tags span {
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

.atc-img { height: 24px; width: auto; }

.cards-img {
  max-width: 200px;
  width: 100%;
  margin: 12px auto 0;
  display: block;
  opacity: 0.8;
  filter: grayscale(0.3);
}

.rating-center {
  text-align: center;
  margin-top: 40px;
}
.star-img {
  max-width: 180px;
  width: 100%;
  margin: 0 auto 10px;
  display: block;
}
.rating-center p { color: var(--text-muted); }

/* ============================================
   SECTION 8: BONUS
   ============================================ */
.bonus {
  background: var(--dark);
  padding: 70px 0;
}

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

.bonus-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}
.bonus-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--delay, 0s), transform 0.6s var(--delay, 0s);
}

.bonus-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.bonus-content { padding: 24px; }
.bonus-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}
.bonus-card h3 { margin-bottom: 10px; }

/* ============================================
   SECTION 9: INGREDIENTS
   ============================================ */
.ingredients {
  background: var(--dark2);
  padding: 70px 0;
}

.ing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.ing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
}
.ing-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s var(--delay, 0s), transform 0.5s var(--delay, 0s);
}
.ing-icon { font-size: 32px; flex-shrink: 0; }
.ing-card h3 { color: var(--gold); margin-bottom: 8px; font-size: 17px; }
.ing-card p { font-size: 14px; }

/* ============================================
   SECTION 10: SCIENCE
   ============================================ */
.science {
  background: var(--dark);
  padding: 70px 0;
}
.sci-accordion { margin-top: 40px; }

/* ============================================
   SECTION 11: GUARANTEE
   ============================================ */
.guarantee {
  background: var(--dark2);
  padding: 70px 0;
}

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

.guarantee-image { display: flex; justify-content: center; }
.guarantee-image img {
  max-width: 260px;
  width: 100%;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 0 40px rgba(245,200,66,0.3);
}

.guarantee-point {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.g-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(245,200,66,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-point h4 { color: var(--text); margin-bottom: 6px; }

/* ============================================
   SECTION 12: BENEFITS
   ============================================ */
.benefits {
  background: var(--dark);
  padding: 70px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  opacity: 0;
  transform: translateX(-20px);
}
.benefit-item.animated {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s var(--delay, 0s), transform 0.5s var(--delay, 0s);
}
.check { font-size: 24px; flex-shrink: 0; }
.benefit-item h4 { color: var(--gold); margin-bottom: 4px; }
.benefit-item p { font-size: 14px; }

/* ============================================
   SECTION 14: FAQ
   ============================================ */
.faq {
  background: var(--dark2);
  padding: 70px 0;
}

.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  min-height: 56px;
  gap: 12px;
}
.faq-q svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 20px 20px; }

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

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,200,66,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.final-cta-image img {
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  display: block;
  animation: heroFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(245,200,66,0.3));
}

.final-cta-text h2 { margin-bottom: 16px; font-size: clamp(22px, 4vw, 36px); }
.final-cta-text p { max-width: 500px; margin: 0 auto 24px; }

.final-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.f-regular { color: var(--text-muted); font-size: 18px; }
.f-regular del { color: #ef4444; }
.f-special { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: var(--gold); }

.final-note { font-size: 14px; color: var(--text-muted); margin-top: 16px; }

/* ============================================
   SECTION 16: FOOTER
   ============================================ */
.footer {
  background: #060b16;
  padding: 60px 0 20px;
  border-top: 1px solid var(--border);
}

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

.footer-brand .nav-logo { margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 14px; color: var(--text-muted); max-width: 300px; }

.footer-links-col h4 { color: var(--gold); margin-bottom: 12px; font-size: 15px; }
.footer-links-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
}
.social-btn {
  width: 44px;
  height: 44px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.social-btn:hover { background: var(--gold); color: #1a1a1a; transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; }

.footer-legal { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}
.legal-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.legal-link:hover { color: var(--gold); }
.link-separator { color: var(--border); }

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.6;
}
.footer-copy { font-size: 13px; color: var(--text-muted); }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: #1a1a1a;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(245,200,66,0.5);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 900;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { transform: translateY(-4px) scale(1.1); }

/* ============================================
   PURCHASE POPUP
   ============================================ */
.purchase-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1100;
  transform: translateX(-200px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
  pointer-events: none;
  max-width: calc(100vw - 40px);
}
.purchase-popup.show { transform: translateX(0); opacity: 1; pointer-events: all; }

.pp-content {
  background: var(--card-bg);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.pp-icon { font-size: 28px; }
.pp-name { color: var(--text); font-weight: 700; font-size: 14px; }
.pp-msg { color: var(--text-muted); font-size: 12px; }
.pp-cta {
  background: var(--gold);
  color: #1a1a1a;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.pp-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  border-radius: 4px;
}

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.exit-overlay.show { opacity: 1; pointer-events: all; }

.exit-popup {
  background: var(--dark2);
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 40px 30px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn { from { transform: scale(0.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.exit-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
}
.exit-icon { font-size: 48px; margin-bottom: 12px; }
.exit-popup h3 { margin-bottom: 12px; font-size: 24px; }
.exit-popup p { margin-bottom: 16px; }
.exit-price { font-size: 28px; font-weight: 800; color: var(--gold); margin-bottom: 20px; }
.exit-price del { color: #ef4444; font-size: 20px; }
.exit-sub { font-size: 13px; color: var(--text-muted); margin-top: 12px; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-anim] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-anim="fade-in"] { transform: translateY(0); }
[data-anim="zoom-in"] { transform: scale(0.9); }
[data-anim="slide-up"] { transform: translateY(30px); }
[data-anim].animated { opacity: 1; transform: translateY(0) scale(1); }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet: 576px+ */
@media (min-width: 576px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .ing-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

/* Medium: 768px+ */
@media (min-width: 768px) {
  .hamburger { display: none !important; }
  .nav-links { display: flex !important; position: static !important; background: none !important; flex-direction: row !important; box-shadow: none !important; }

  .hero-container { grid-template-columns: 1fr 1fr; }
  .hero-image-col { order: 0; }
  .hero-bottle { max-width: 400px; }

  .what-is-grid { grid-template-columns: 1fr 1fr; }
  .what-is-image { order: 1; }

  .guarantee-grid { grid-template-columns: 1fr 1fr; }

  .final-cta-content { grid-template-columns: 1fr 1fr; text-align: left; }
  .final-price { justify-content: flex-start; }
  .final-cta-image img { max-width: 300px; }

  .footer-top { grid-template-columns: 2fr 1fr 1fr; }
}

/* Desktop: 992px+ */
@media (min-width: 992px) {
  .badges-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .ing-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 90px 0; }
}

/* Mobile Nav */
@media (max-width: 767px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(10,15,30,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    transform: translateY(-110%);
    transition: transform 0.3s cubic-bezier(0.77,0.2,0.05,1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { width: 100%; padding: 14px 16px; border-radius: 12px; font-size: 16px; }
  .nav-cta { width: 100%; justify-content: center; padding: 14px 16px; border-radius: 12px; }

  .pricing-card.featured { transform: scale(1); }
}

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