/* =============================================
   GENESIS REVIVAL - STYLES.CSS
   Design: Premium Luxury (Dark Gold Elegance)
   ============================================= */

/* CSS Variables */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A07830;
  --dark: #0A0A0F;
  --dark-2: #12121A;
  --dark-3: #1A1A28;
  --dark-4: #22223A;
  --white: #FFFFFF;
  --off-white: #F5F0E8;
  --text-body: #C8C0D0;
  --text-muted: #8A8299;
  --accent: #4A90D9;
  --green: #2ECC71;
  --red: #E74C3C;
  --radius: 16px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }

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

/* Section spacing */
section { padding: 80px 0; }

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(15px, 2vw, 18px);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.highlight {
  color: var(--gold);
  font-style: italic;
}

/* ===== BUTTONS ===== */
.btn-hero, .btn-final, .btn-price, .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-hero {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 40px;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  width: 100%;
  max-width: 420px;
}
.btn-hero:hover { transform: scale(1.04); box-shadow: 0 12px 40px rgba(201,168,76,0.6); }
.btn-final {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 40px;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  width: 100%;
  max-width: 420px;
}
.btn-final:hover { transform: scale(1.04); box-shadow: 0 12px 40px rgba(201,168,76,0.6); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,15,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}
.nav-logo img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--text-body);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 14px;
  min-height: 40px;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 50%, #0D0D1F 100%);
}
.hero-bg-anim {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(74,144,217,0.05) 0%, transparent 50%);
  animation: heroAnim 8s ease-in-out infinite alternate;
}
@keyframes heroAnim {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}
.hero-bottle {
  position: relative;
  z-index: 1;
  max-width: 380px;
  filter: drop-shadow(0 30px 60px rgba(201,168,76,0.3));
  animation: bottleFloat 4s ease-in-out infinite;
}
@keyframes bottleFloat {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
.hero-badge-float {
  position: absolute;
  bottom: 20px;
  right: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 50px;
  animation: badgeFloat 3s ease-in-out infinite alternate;
  white-space: nowrap;
  z-index: 2;
}
@keyframes badgeFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
.hero-content { display: flex; flex-direction: column; gap: 20px; }
.hero-label {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  width: fit-content;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  color: var(--white);
  line-height: 1.15;
  font-weight: 700;
}
.hero-content p { color: var(--text-body); font-size: 16px; line-height: 1.8; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.stat { text-align: center; }
.stat strong { display: block; color: var(--gold); font-size: 24px; font-family: var(--font-display); font-weight: 700; }
.stat span { font-size: 12px; color: var(--text-muted); }
.hero-sub { font-size: 13px; color: var(--text-muted); margin-top: -8px; }

/* Fade animations */
.fade-left { animation: fadeLeft 1s ease both; }
.fade-right { animation: fadeRight 1s ease 0.2s both; }
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WHY CHOOSE US ===== */
.why-choose { background: var(--dark-2); }
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.badge-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.badge-card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 20px 50px rgba(201,168,76,0.15);
  border-color: var(--gold);
}
.badge-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 16px;
}
.badge-card h3 { color: var(--white); font-size: 15px; margin-bottom: 10px; font-weight: 700; }
.badge-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== WHAT IS ===== */
.what-is { background: var(--dark); }
.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.what-is-content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}
.what-is-content p { margin-bottom: 16px; font-size: 15px; line-height: 1.8; }
.what-is-image img {
  border-radius: var(--radius);
  filter: drop-shadow(0 20px 40px rgba(201,168,76,0.2));
  margin: 0 auto;
}

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--dark-2); }
.accordion-list { max-width: 800px; margin: 0 auto; }
.accordion-item {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  min-height: 60px;
  transition: background var(--transition);
}
.accordion-btn:hover { background: rgba(201,168,76,0.08); }
.accordion-btn.active { color: var(--gold); }
.acc-icon {
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.accordion-btn.active .acc-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion-body.open { max-height: 300px; }
.accordion-body p {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
}

/* ===== REVIEWS ===== */
.reviews { background: var(--dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.reviewer-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--gold);
}
.stars { color: var(--gold); font-size: 20px; margin-bottom: 16px; }
.review-text { font-size: 14px; line-height: 1.7; color: var(--text-body); margin-bottom: 16px; }
.reviewer-info { display: flex; flex-direction: column; gap: 2px; }
.reviewer-info strong { color: var(--white); font-size: 15px; }
.reviewer-info span { color: var(--text-muted); font-size: 12px; }

/* ===== PRICING ===== */
.pricing { background: var(--dark-2); }
.pricing-2 { background: var(--dark); }
.countdown-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.countdown-wrap p { color: var(--text-muted); margin-bottom: 16px; font-size: 15px; }
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cd-block {
  background: var(--dark);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 12px 20px;
  min-width: 80px;
  text-align: center;
}
.pricing-2 .cd-block { background: var(--dark-2); }
.cd-block span {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
}
.cd-block small { font-size: 11px; color: var(--text-muted); }
.cd-sep { font-size: 36px; color: var(--gold); font-weight: 700; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.pricing-card.popular {
  border-color: var(--gold);
  background: linear-gradient(145deg, var(--dark-3), rgba(201,168,76,0.08));
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(201,168,76,0.2);
}
.pricing-card.popular:hover { transform: scale(1.04) translateY(-6px); }
.popular-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px;
  text-align: center;
}
.price-label { color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: 1px; margin-bottom: 4px; }
.price-qty { color: var(--white); font-size: 20px; font-weight: 700; font-family: var(--font-display); margin-bottom: 4px; }
.price-supply { color: var(--text-muted); font-size: 12px; margin-bottom: 20px; }
.pricing-card img:not(.cards-img) { max-width: 150px; margin: 0 auto 20px; }
.price-per { font-size: 32px; font-weight: 700; color: var(--gold); font-family: var(--font-display); }
.price-per small { font-size: 14px; color: var(--text-muted); }
.price-total { font-size: 16px; color: var(--text-body); margin: 8px 0 16px; }
.price-total del { color: var(--text-muted); }
.price-badges { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.pbadge { background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 50px; display: inline-block; }
.pbadge.green { background: rgba(46,204,113,0.15); border-color: rgba(46,204,113,0.3); color: var(--green); }
.btn-price {
  display: block;
  margin: 12px auto;
  min-height: 48px;
  transition: transform var(--transition);
}
.btn-price:hover { transform: scale(1.05); }
.btn-price img { margin: 0 auto; max-width: 200px; }
.cards-img { margin: 8px auto 0; max-width: 180px; opacity: 0.8; }
.rating-wrap { text-align: center; }
.rating-wrap img { margin: 0 auto 8px; max-width: 180px; }
.rating-wrap p { color: var(--text-muted); font-size: 13px; }

/* ===== BONUSES ===== */
.bonuses { background: var(--dark-3); }
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.bonus-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.bonus-num {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.bonus-card img { max-width: 180px; margin: 0 auto 20px; }
.bonus-card h3 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.bonus-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== INGREDIENTS ===== */
.ingredients { background: var(--dark-2); }
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ingredient-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color var(--transition), transform var(--transition);
}
.ingredient-card:hover { border-color: rgba(201,168,76,0.4); transform: translateX(4px); }
.ing-num {
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(201,168,76,0.4);
  flex-shrink: 0;
  line-height: 1;
  min-width: 36px;
}
.ingredient-card h3 { color: var(--white); font-size: 16px; margin-bottom: 8px; }
.ingredient-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ===== SCIENCE ===== */
.science { background: var(--dark); }
.science-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.science-card {
  background: var(--dark-3);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 24px;
}
.science-card h3 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.science-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* ===== GUARANTEE ===== */
.guarantee { background: var(--dark-2); }
.guarantee-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}
.guarantee-image img { max-width: 280px; margin: 0 auto; }
.guarantee-content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 36px);
  color: var(--white);
  margin-bottom: 32px;
}
.guarantee-point { margin-bottom: 24px; }
.guarantee-point h3 { color: var(--gold); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.guarantee-point p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* ===== BENEFITS ===== */
.benefits { background: var(--dark); }
.benefits-grid { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto; }
.benefit-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.benefit-item:hover { border-color: var(--gold); transform: translateX(6px); }
.benefit-icon {
  font-size: 32px;
  text-align: center;
  line-height: 1;
  padding-top: 4px;
}
.benefit-item h3 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.benefit-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== FAQ ===== */
.faq { background: var(--dark-2); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  min-height: 60px;
  transition: background var(--transition);
}
.faq-btn:hover { background: rgba(201,168,76,0.08); }
.faq-icon { color: var(--gold); font-size: 22px; flex-shrink: 0; transition: transform 0.3s; }
.faq-btn.active .faq-icon { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-body.open { max-height: 300px; }
.faq-body p { padding: 0 24px 24px; font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, #0D0D1F, var(--dark-3), #0D0D1F);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
}
.final-bg-anim {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
  animation: heroAnim 6s ease-in-out infinite alternate;
}
.final-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.final-image img {
  max-width: 350px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(201,168,76,0.25));
  animation: bottleFloat 4s ease-in-out infinite;
}
.final-text { text-align: left; }
.final-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.final-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 38px);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.final-text p { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }
.final-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}
.old-price { color: var(--text-muted); font-size: 16px; }
.old-price del { text-decoration: line-through; }
.new-price { color: var(--gold); font-size: 28px; font-family: var(--font-display); }
.final-guarantee { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 60px 0 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}
.footer-brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 4px; }
.footer-col a { color: var(--text-muted); font-size: 13px; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}
.legal-link { color: var(--text-muted); font-size: 12px; transition: color var(--transition); }
.legal-link:hover { color: var(--gold); }
.link-separator { color: rgba(255,255,255,0.2); }
.footer-disclaimer { max-width: 900px; margin-bottom: 24px; }
.footer-disclaimer p { font-size: 11px; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; }
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-icon:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 22px;
  font-weight: 700;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: scale(1.1); }

/* ===== PURCHASE NOTIFICATION ===== */
.notif-popup {
  position: fixed;
  bottom: -100px;
  left: 20px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 14px 18px;
  max-width: 300px;
  z-index: 9998;
  transition: bottom 0.5s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.notif-popup.show { bottom: 20px; }
.notif-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.notif-icon { font-size: 24px; flex-shrink: 0; }
.notif-content > div strong { display: block; color: var(--white); font-size: 13px; }
.notif-content > div p { color: var(--text-muted); font-size: 12px; }
.notif-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  margin-left: auto;
  padding: 4px;
  flex-shrink: 0;
}

/* ===== EXIT POPUP ===== */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  display: none;
  backdrop-filter: blur(4px);
}
.exit-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--dark-3);
  border: 2px solid var(--gold);
  border-radius: 20px;
  z-index: 10000;
  max-width: 420px;
  width: 90%;
  display: none;
  transition: transform 0.3s ease;
}
.exit-popup.show { display: block; }
.exit-overlay.show { display: block; }
.exit-popup-inner { padding: 40px 32px; text-align: center; position: relative; }
.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.exit-popup-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}
.exit-popup-content p { color: var(--text-muted); margin-bottom: 16px; }
.exit-price {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 24px;
}
.exit-price del { color: var(--text-muted); }
.exit-price strong { color: var(--gold); font-family: var(--font-display); }
.exit-cta-btn {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
  margin: 0 auto;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-cta-btn:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.exit-small { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

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

@media (max-width: 767px) {
  section { padding: 60px 0; }
  
  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(10,10,15,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; padding: 12px 0; }
  .nav-cta { width: 100%; text-align: center; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-container { grid-template-columns: 1fr; gap: 30px; padding: 100px 20px 60px; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-bottle { max-width: 220px; }
  .hero-badge-float { right: 20%; font-size: 11px; }
  .hero-label { margin: 0 auto; }
  .btn-hero { margin: 0 auto; }
  .hero-sub { text-align: center; }

  /* Grids */
  .badges-grid { grid-template-columns: 1fr; }
  .what-is-grid { grid-template-columns: 1fr; gap: 30px; }
  .what-is-image { order: -1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .science-grid { grid-template-columns: 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; gap: 30px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: scale(1); }
  .final-content { grid-template-columns: 1fr; gap: 30px; }
  .final-text { text-align: center; }
  .btn-final { margin: 0 auto; }

  /* Footer */
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { flex-direction: column; gap: 24px; align-items: center; text-align: center; }
  .footer-legal-links { justify-content: center; }
  .footer-social { justify-content: center; }

  /* Scroll top */
  .scroll-top { bottom: 20px; right: 16px; width: 48px; height: 48px; }

  /* Notif popup */
  .notif-popup { left: 10px; right: 10px; max-width: none; }

  /* Countdown */
  .cd-block { min-width: 70px; padding: 10px 16px; }
  .cd-block span { font-size: 30px; }
}

@media (min-width: 576px) and (max-width: 767px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .hero-stats { grid-template-columns: 1fr; gap: 12px; }
  .benefit-item { grid-template-columns: 1fr; }
}

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