/* ===========================
   VIGOROX PRO — styles.css
   Design: Bold & Energetic
   =========================== */

/* --- FONTS & RESET --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

*, *::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: 'Open Sans', sans-serif; background: #0a0a0f; color: #e8e8f0; line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea { font-size: 16px; }

/* --- CSS VARIABLES --- */
:root {
  --primary: #c8102e;
  --primary-dark: #9b0d23;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --accent: #ff6b35;
  --dark: #0a0a0f;
  --dark2: #12121a;
  --dark3: #1a1a28;
  --card-bg: #16161f;
  --text: #e8e8f0;
  --text-muted: #9090b0;
  --green: #22c55e;
  --blue: #3b82f6;
  --border: rgba(200,16,46,0.25);
  --glow: 0 0 40px rgba(200,16,46,0.35);
  --radius: 16px;
  --radius-sm: 10px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(26px, 5vw, 52px); font-weight: 900; }
h2 { font-size: clamp(22px, 4vw, 40px); font-weight: 800; }
h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; }
h4 { font-size: clamp(16px, 2vw, 20px); font-weight: 700; }
p { font-size: 16px; line-height: 1.8; color: #c0c0d8; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #ff2244);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  min-height: 52px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 30px rgba(200,16,46,0.5);
  letter-spacing: 0.5px;
  text-align: center;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 10px 40px rgba(200,16,46,0.7); }
.btn-primary:active { transform: scale(0.98); }

.pulse-btn { animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(200,16,46,0.5); }
  50% { box-shadow: 0 6px 50px rgba(200,16,46,0.85), 0 0 0 12px rgba(200,16,46,0.1); }
}

.mt-20 { margin-top: 20px; }

/* --- PURCHASE POPUP --- */
.purchase-popup {
  position: fixed;
  bottom: 20px;
  left: 16px;
  background: linear-gradient(135deg, #1a1a28, #22223a);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  max-width: 320px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.purchase-popup.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.popup-avatar { font-size: 24px; }
.popup-text { flex: 1; font-size: 13px; color: var(--text); }
.popup-text strong { color: var(--gold); }
.popup-close {
  background: var(--green);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  min-height: 32px;
  display: flex;
  align-items: center;
}

/* --- EXIT POPUP --- */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.exit-popup-overlay.active { opacity: 1; pointer-events: all; }
.exit-popup-box {
  background: var(--dark3);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  padding: 32px 24px 24px;
  position: relative;
  animation: popIn 0.4s ease;
}
@keyframes popIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.exit-popup-close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  min-width: 32px;
  min-height: 32px;
}
.exit-popup-content { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.exit-popup-img { width: 120px; flex-shrink: 0; border-radius: 8px; }
.exit-popup-text h3 { font-family: 'Montserrat', sans-serif; font-size: 20px; color: var(--gold); margin-bottom: 8px; }
.exit-popup-text p { font-size: 14px; margin-bottom: 6px; }
.exit-popup-strike { color: var(--text-muted); }
.exit-cta { margin-top: 12px; font-size: 14px; padding: 12px 20px; }
.exit-popup-dismiss { display: block; margin-top: 10px; font-size: 12px; color: var(--text-muted); text-decoration: underline; cursor: pointer; }
.exit-popup-dismiss:hover { color: var(--primary); }

/* --- SCROLL TOP --- */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 888;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px rgba(200,16,46,0.5);
}
.scroll-top-btn.show { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--primary-dark); }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, padding 0.3s;
}
.navbar.scrolled { background: rgba(10,10,15,0.98); }
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  gap: 16px;
}
.nav-logo { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 900; color: #fff; }
.logo-v { color: var(--primary); }
.logo-pro { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { font-size: 14px; padding: 12px 24px; min-height: 44px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 6px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.mobile-menu.open { max-height: 400px; }
.mobile-link { display: block; padding: 16px 24px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 15px; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s, background 0.2s; }
.mobile-link:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
.mobile-cta { margin: 16px 20px 20px; text-align: center; border-radius: 50px; }

@media (max-width: 767px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0f 0%, #120814 50%, #0a0a0f 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow {
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(200,16,46,0.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%, 100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.15); opacity: 1; } }
.hero-bottle {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 20px 60px rgba(200,16,46,0.4));
  animation: floatBottle 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes floatBottle {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}
.hero-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 20px;
  z-index: 2;
  animation: badgeBounce 2s infinite;
}
@keyframes badgeBounce { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.hero-content { position: relative; z-index: 1; }
.hero-tag {
  display: inline-block;
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.4);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-h1 { margin-bottom: 20px; }
.hero-desc { margin-bottom: 14px; font-size: 16px; }
.hero-stars { display: flex; align-items: center; gap: 8px; margin: 18px 0; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: 600; color: var(--gold); }
.btn-hero { font-size: 16px; padding: 18px 36px; margin-top: 8px; width: 100%; max-width: 380px; }
.hero-guarantee { margin-top: 14px; font-size: 13px; color: var(--text-muted); }

/* Hero Animations */
.fade-in-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s, transform 0.8s; }
.fade-in-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s, transform 0.8s; }
.fade-in-left.visible, .fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Particle Canvas */
#heroParticles, #finalParticles { position: absolute; inset: 0; }

@media (max-width: 767px) {
  .hero-section { padding: 100px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-image-wrap { order: 1; }
  .hero-content { order: 2; }
  .hero-bottle { max-width: 260px; margin: 0 auto; }
  .hero-glow { width: 220px; height: 220px; }
  .btn-hero { max-width: 100%; }
  .hero-h1 { font-size: 26px; }
}

/* ===========================
   SECTION COMMON
   =========================== */
section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 12px; }
.section-title.left-align { text-align: left; }
.section-sub { text-align: center; color: var(--text-muted); font-size: 16px; margin-bottom: 48px; }

/* Scroll Reveal */
.scroll-reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s, transform 0.7s; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   WHY CHOOSE US
   =========================== */
.why-section { background: var(--dark2); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-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;
}
.why-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--glow); }
.why-icon-wrap { width: 80px; height: 80px; margin: 0 auto 16px; }
.why-icon { width: 80px; height: 80px; object-fit: contain; border-radius: 12px; }
.why-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--gold); }
.why-card p { font-size: 14px; color: var(--text-muted); }

@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-section { background: var(--dark); }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.what-img { border-radius: var(--radius); box-shadow: 0 20px 60px rgba(200,16,46,0.25); width: 100%; }
.what-content p { margin-bottom: 16px; }
.what-content .section-title { margin-bottom: 20px; }

@media (max-width: 767px) {
  .what-grid { grid-template-columns: 1fr; gap: 30px; }
  .what-img-wrap { order: 1; }
  .what-content { order: 2; }
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-section { background: var(--dark2); }
.accordion-wrap { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  min-height: 56px;
  transition: background 0.2s;
  gap: 12px;
}
.accordion-btn:hover { background: rgba(200,16,46,0.1); }
.acc-icon { font-size: 22px; font-weight: 300; color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.accordion-item.open .acc-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-body p { padding: 0 22px 20px; font-size: 15px; }

/* ===========================
   REVIEWS
   =========================== */
.reviews-section { background: var(--dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); flex-shrink: 0; }
.review-location { font-size: 13px; color: var(--text-muted); margin: 2px 0; }
.stars { font-size: 16px; }
.review-card p { font-size: 14px; line-height: 1.8; }
.review-overall { text-align: center; margin-top: 32px; }
.five-star-img { max-width: 200px; margin: 0 auto; }

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

/* ===========================
   PRICING
   =========================== */
.pricing-section { background: var(--dark2); }
.pricing-section-2 { background: var(--dark); }
.countdown-wrap { text-align: center; margin-bottom: 32px; }
.countdown-label { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary); font-size: 16px; margin-bottom: 10px; }
.countdown-timer { display: inline-flex; align-items: center; gap: 8px; background: var(--card-bg); border: 2px solid var(--primary); border-radius: var(--radius); padding: 14px 28px; }
.countdown-block { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.countdown-block span { font-family: 'Montserrat', sans-serif; font-size: clamp(36px, 6vw, 56px); font-weight: 900; color: var(--primary); line-height: 1; }
.countdown-block small { font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; }
.countdown-sep { font-size: 40px; font-weight: 900; color: var(--primary); line-height: 1; padding-bottom: 10px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--glow); }
.pricing-card.popular {
  border: 2px solid var(--gold);
  background: linear-gradient(145deg, #1c1c28, #222238);
  box-shadow: 0 0 40px rgba(212,175,55,0.25);
  transform: scale(1.04);
}
.pricing-card.popular:hover { transform: scale(1.04) translateY(-6px); }
.popular-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 11px;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.pricing-label { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }
.pricing-label.gold { color: var(--gold); }
.pricing-card h3 { font-size: 20px; color: #fff; margin: 0; }
.supply-label { font-size: 13px; color: var(--text-muted); }
.pricing-img { max-width: 130px; margin: 8px auto; }
.price-per { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 900; color: var(--primary); }
.price-per small { font-size: 14px; color: var(--text-muted); }
.price-total { font-size: 15px; color: var(--text-muted); }
.price-total strong { color: var(--green); font-size: 18px; }
.bonus-badges { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.badge-green { background: rgba(34,197,94,0.15); border: 1px solid var(--green); color: var(--green); font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 20px; font-family: 'Montserrat', sans-serif; }
.badge-blue { background: rgba(59,130,246,0.15); border: 1px solid var(--blue); color: var(--blue); font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 20px; font-family: 'Montserrat', sans-serif; }
.btn-pricing { width: 100%; font-size: 14px; padding: 14px 20px; }
.payment-logos { max-width: 160px; margin: 4px auto 0; opacity: 0.7; }

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

/* ===========================
   BONUS
   =========================== */
.bonus-section { background: var(--dark); }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.bonus-card { background: var(--card-bg); border: 1px solid rgba(212,175,55,0.3); border-radius: var(--radius); padding: 32px 28px; text-align: center; }
.bonus-img { max-width: 180px; margin: 0 auto 20px; border-radius: 12px; }
.bonus-card h3 { color: var(--gold); margin-bottom: 8px; }
.bonus-card h4 { margin-bottom: 12px; color: #fff; }
.bonus-card p { font-size: 14px; color: var(--text-muted); }
.bonus-value { color: var(--green) !important; font-weight: 700; margin-top: 12px; }

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

/* ===========================
   INGREDIENTS
   =========================== */
.ingredients-section { background: var(--dark2); }
.ingredients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ingredient-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 24px 18px; transition: transform 0.3s, box-shadow 0.3s; }
.ingredient-card:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.ing-icon { font-size: 32px; margin-bottom: 12px; }
.ingredient-card h3 { font-size: 16px; color: var(--gold); margin-bottom: 8px; }
.ingredient-card p { font-size: 13px; color: var(--text-muted); }

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

/* ===========================
   SCIENCE
   =========================== */
.science-section { background: var(--dark); }
.science-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.science-card { background: var(--card-bg); border-left: 4px solid var(--primary); border-radius: var(--radius-sm); padding: 24px; }
.science-card h3 { font-size: 16px; color: var(--gold); margin-bottom: 12px; }
.science-card p { font-size: 14px; color: var(--text-muted); }

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

/* ===========================
   GUARANTEE
   =========================== */
.guarantee-section { background: var(--dark2); }
.guarantee-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; }
.guarantee-img { border-radius: var(--radius); max-width: 280px; margin: 0 auto; }
.guarantee-content p { margin-bottom: 24px; }
.guarantee-points { display: flex; flex-direction: column; gap: 20px; }
.guarantee-point { display: flex; gap: 16px; align-items: flex-start; }
.g-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.guarantee-point h4 { color: var(--gold); margin-bottom: 6px; }
.guarantee-point p { font-size: 14px; color: var(--text-muted); }

@media (max-width: 767px) { .guarantee-grid { grid-template-columns: 1fr; gap: 30px; } .guarantee-img { max-width: 200px; } }

/* ===========================
   BENEFITS
   =========================== */
.benefits-section { background: var(--dark); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 18px; }
.benefit-check { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.benefit-item h3 { font-size: 16px; color: var(--gold); margin-bottom: 6px; }
.benefit-item p { font-size: 13px; color: var(--text-muted); }

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

/* ===========================
   FAQ
   =========================== */
.faq-section { background: var(--dark2); }
.faq-wrap { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; background: transparent; border: none; color: var(--text); font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; cursor: pointer; text-align: left; min-height: 56px; gap: 12px; transition: background 0.2s; }
.faq-btn:hover { background: rgba(200,16,46,0.08); }
.faq-icon { font-size: 22px; color: var(--primary); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-body p { padding: 0 22px 20px; font-size: 15px; }

/* ===========================
   FINAL CTA
   =========================== */
.final-cta-section {
  background: linear-gradient(135deg, #0d0d18, #1a0810, #0d0d18);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.final-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.final-cta-img { position: relative; text-align: center; }
.final-glow { position: absolute; inset: 0; background: radial-gradient(circle, rgba(200,16,46,0.4) 0%, transparent 70%); animation: glowPulse 3s ease-in-out infinite; }
.final-bottle {
  max-width: 360px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 60px rgba(200,16,46,0.5));
  animation: floatBottle 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.final-tag { display: inline-block; background: rgba(200,16,46,0.2); border: 1px solid rgba(200,16,46,0.5); color: var(--primary); font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 800; padding: 6px 16px; border-radius: 20px; margin-bottom: 16px; letter-spacing: 1.5px; text-transform: uppercase; animation: tagBlink 1.5s infinite; }
@keyframes tagBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
.final-cta-content h2 { margin-bottom: 20px; }
.final-cta-content p { margin-bottom: 20px; }
.final-price-wrap { margin: 20px 0; }
.final-old-price { display: block; font-size: 16px; color: var(--text-muted); margin-bottom: 8px; }
.final-new-price { display: block; font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 900; color: var(--gold); }
.btn-final { font-size: 18px; padding: 20px 40px; width: 100%; max-width: 420px; margin: 8px 0; }
.final-note { font-size: 13px; color: var(--text-muted); margin-top: 12px; }

@media (max-width: 767px) {
  .final-cta-grid { grid-template-columns: 1fr; gap: 30px; }
  .final-bottle { max-width: 240px; }
  .btn-final { max-width: 100%; }
  .final-new-price { font-size: 28px; }
}

/* ===========================
   FOOTER
   =========================== */
.footer { background: #060608; border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 900; margin-bottom: 14px; }
.footer-desc { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-icon { width: 40px; height: 40px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; transition: background 0.2s, border-color 0.2s; }
.social-icon:hover { background: var(--primary); border-color: var(--primary); }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: var(--gold); margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-disclaimer { background: var(--dark2); border-radius: var(--radius-sm); padding: 20px; margin-bottom: 24px; }
.footer-disclaimer p { font-size: 12px; color: var(--text-muted); line-height: 1.8; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.legal-link { font-size: 12px; color: var(--text-muted); transition: color 0.2s; }
.legal-link:hover { color: var(--primary); }
.link-separator { color: var(--border); font-size: 12px; }
.copyright { font-size: 12px; color: var(--text-muted); }

@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal-links { justify-content: center; }
}

/* ===========================
   MEDIA — GLOBAL MOBILE
   =========================== */
@media (max-width: 575px) {
  section { padding: 60px 0; }
  .section-title { font-size: 22px; }
  .section-sub { font-size: 14px; }
  .container { padding: 0 16px; }
  .countdown-block span { font-size: 40px; }
  .pricing-grid { max-width: 100%; }
}

/* ===========================
   REDUCED MOTION
   =========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-bottle, .hero-badge, .pulse-btn, .hero-glow, .final-glow, .final-bottle { animation: none !important; }
}
