/* ============================================
   EROS LIFT - PREMIUM MALE ENHANCEMENT
   Design: Bold & Energetic with Dark Luxury
   Fonts: Montserrat (headings) + Open Sans (body)
   Colors: Deep navy, crimson gold, white
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --primary: #C0392B;
  --primary-dark: #96281B;
  --gold: #D4AF37;
  --gold-light: #F0CF6E;
  --navy: #0D1B2A;
  --navy-mid: #1B2C3E;
  --navy-light: #243447;
  --white: #FFFFFF;
  --off-white: #F8F5F0;
  --gray: #6B7280;
  --light-gray: #E5E7EB;
  --gradient: linear-gradient(135deg, #C0392B, #D4AF37);
  --gradient-cool: linear-gradient(135deg, #0D1B2A, #1B2C3E);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.18);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.3);
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- 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: 'Open Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

input, select, textarea { font-size: 16px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.25;
}

.section-title {
  font-size: clamp(24px, 4vw, 40px);
  text-align: center;
  margin-bottom: 12px;
  color: var(--navy);
}

.section-title.left { text-align: left; }

.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: clamp(15px, 2vw, 18px);
  margin-bottom: 40px;
}

.gradient-text {
  background: var(--gradient);
  -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;
}

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

/* ---- BUTTONS ---- */
.btn-primary, .btn-hero, .btn-price, .popular-btn, .btn-final, .btn-popup {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  min-height: 52px;
  line-height: 52px;
  padding: 0 32px;
  font-size: 16px;
  white-space: nowrap;
}

.btn-hero {
  background: var(--gradient);
  color: var(--white);
  font-size: clamp(16px, 2.5vw, 20px);
  width: 100%;
  max-width: 480px;
  box-shadow: 0 8px 32px rgba(192,57,43,0.4);
  animation: pulse-btn 2.5s infinite;
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 8px 32px rgba(192,57,43,0.4); }
  50% { box-shadow: 0 8px 48px rgba(212,175,55,0.6); }
}

.btn-hero:hover { transform: scale(1.05); box-shadow: 0 12px 48px rgba(192,57,43,0.6); }

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  margin-top: 24px;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }

.btn-price {
  width: 100%;
  background: var(--gradient-cool);
  color: var(--white);
  margin: 16px 0 12px;
  font-size: 15px;
}

.btn-price:hover { transform: scale(1.05); background: var(--navy-mid); }

.popular-btn { background: var(--gradient); }
.popular-btn:hover { transform: scale(1.05); }

.btn-final {
  background: var(--gradient);
  color: var(--white);
  font-size: clamp(16px, 2.5vw, 20px);
  width: 100%;
  max-width: 540px;
  box-shadow: 0 8px 32px rgba(192,57,43,0.45);
  animation: pulse-btn 2.5s infinite;
  line-height: 1.3;
  min-height: 60px;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-final:hover { transform: scale(1.04); }

/* Touch feedback */
@media (hover: none) {
  .btn-hero:active, .btn-primary:active, .btn-price:active, .btn-final:active {
    transform: scale(0.98);
  }
}

/* ============================================
   SECTION 1: NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(212,175,55,0.3);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-accent { color: var(--gold); }

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

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

.nav-link {
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover { color: var(--gold); }

.nav-cta {
  background: var(--gradient);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.nav-cta:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(192,57,43,0.5); }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

/* Mobile Nav */
@media (max-width: 767px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    padding: 80px 30px 30px;
    z-index: 999;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -4px 0 24px rgba(0,0,0,0.5);
  }

  .nav-links.open { right: 0; }

  .nav-link {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 16px;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    font-size: 16px;
    min-height: 52px;
  }
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
}

.mobile-overlay.active { display: block; }

/* ============================================
   SECTION 2: HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--gradient-cool);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(192,57,43,0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

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

@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

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

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    min-height: calc(100vh - 200px);
  }
}

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

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

.hero-image-wrap {
  position: relative;
  display: inline-block;
  max-width: 400px;
  width: 100%;
}

.hero-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(212,175,55,0.4) 0%, rgba(192,57,43,0.2) 50%, transparent 80%);
  top: 10%;
  left: 10%;
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
  filter: blur(30px);
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero-bottle {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  animation: floatBottle 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}

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

.hero-badge-float, .hero-badge-float2 {
  position: absolute;
  background: rgba(212,175,55,0.95);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 50px;
  z-index: 3;
  box-shadow: var(--shadow-md);
  animation: badgeFloat 3s ease-in-out infinite;
}

.hero-badge-float { top: 10%; right: -10px; animation-delay: 0s; }
.hero-badge-float2 { bottom: 15%; left: -10px; animation-delay: 1.5s; }

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

.hero-tag {
  display: inline-block;
  background: rgba(212,175,55,0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-h1 {
  font-size: clamp(28px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-desc {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 20px;
}

.hero-stars span {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.hero-security {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   SECTION 3: WHY CHOOSE US
   ============================================ */
.why-section {
  padding: 80px 0;
  background: var(--off-white);
}

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

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

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.why-card.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.why-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.why-title {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   SECTION 4: WHAT IS EROS LIFT
   ============================================ */
.what-section {
  padding: 80px 0;
  background: var(--white);
}

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

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

.what-image-col {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.7s ease;
}

.what-image-col.aos-animate { opacity: 1; transform: translateX(0); }

.what-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.what-content-col {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.7s ease 0.2s;
}

.what-content-col.aos-animate { opacity: 1; transform: translateX(0); }

.what-content-col p {
  font-size: clamp(15px, 1.8vw, 17px);
  color: #374151;
  margin-bottom: 18px;
}

/* ============================================
   SECTION 5: HOW IT WORKS
   ============================================ */
.how-section {
  padding: 80px 0;
  background: var(--navy);
}

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

.accordion-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.acc-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(255,255,255,0.04);
}

.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 2vw, 17px);
  color: var(--white);
  min-height: 60px;
  transition: var(--transition);
}

.acc-header:hover { background: rgba(212,175,55,0.08); }
.acc-header[aria-expanded="true"] { color: var(--gold-light); }

.acc-icon {
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gold);
  width: 30px;
  text-align: center;
}

.acc-header[aria-expanded="true"] .acc-icon { transform: rotate(45deg); }

.acc-body {
  display: none;
  padding: 0 24px 20px;
}

.acc-body.open { display: block; }

.acc-body p {
  font-size: clamp(14px, 1.8vw, 16px);
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

/* ============================================
   SECTION 6: REVIEWS
   ============================================ */
.reviews-section {
  padding: 80px 0;
  background: var(--off-white);
}

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

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

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.review-card.aos-animate { opacity: 1; transform: translateY(0); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

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

.reviewer-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}

.reviewer-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}

.reviewer-loc {
  font-size: 13px;
  color: var(--gray);
  margin: 2px 0;
}

.stars { font-size: 16px; }

.review-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
}

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

.pricing-section-2 {
  background: var(--off-white);
}

.countdown-wrap {
  text-align: center;
  margin: 32px 0 48px;
}

.countdown-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 12px;
}

.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  padding: 16px 32px;
  border-radius: 16px;
  border: 2px solid var(--gold);
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.time-block span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 5vw, 48px);
  color: var(--gold-light);
  line-height: 1;
}

.time-block small {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  margin-top: 4px;
}

.time-sep {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 2px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.price-card.aos-animate { opacity: 1; transform: translateY(0); }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.popular {
  border-color: var(--gold);
  background: var(--navy);
  color: var(--white);
  transform: scale(1.03);
}
.price-card.popular.aos-animate { transform: scale(1.03) translateY(0); }
.price-card.popular:hover { transform: scale(1.03) translateY(-6px); }

.popular-banner {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.price-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 4px;
}

.popular .price-label { color: var(--gold-light); }

.price-bottles {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 4px;
}

.popular .price-bottles { color: var(--white); }

.price-supply {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
}

.popular .price-supply { color: rgba(255,255,255,0.7); }

.price-img {
  width: 140px;
  max-width: 100%;
  margin: 0 auto 16px;
}

.price-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 4px;
}

.price-amount small {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray);
}

.popular .price-amount { color: var(--gold-light); }

.price-old {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 8px;
}

.popular .price-old { color: rgba(255,255,255,0.6); }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 4px;
}

.badge-green {
  background: rgba(16,185,129,0.15);
  color: #059669;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(16,185,129,0.3);
}

.popular .badge-green { background: rgba(16,185,129,0.25); }

.payment-img {
  max-width: 180px;
  margin: 0 auto;
  opacity: 0.7;
}

.star-rating-wrap {
  text-align: center;
  margin-top: 40px;
}

.star-rating-wrap img { max-width: 280px; margin: 0 auto; }

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

.bonus-section .section-title { color: var(--white); }

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

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

.bonus-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.bonus-card.aos-animate { opacity: 1; transform: translateY(0); }
.bonus-card:hover { border-color: var(--gold); transform: translateY(-4px); }

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

.bonus-info { padding: 24px; }

.bonus-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

.bonus-info h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}

.bonus-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

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

.ing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.ing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.ing-card.aos-animate { opacity: 1; transform: translateY(0); }
.ing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-left-color: var(--primary); }

.ing-card h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 10px;
}

.ing-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   SECTION 10: SCIENCE
   ============================================ */
.science-section {
  padding: 80px 0;
  background: var(--white);
}

.science-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.sci-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-20px);
}

.sci-item.aos-animate { opacity: 1; transform: translateX(0); }
.sci-item:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }

.sci-icon {
  font-size: 36px;
  flex-shrink: 0;
  width: 56px;
  text-align: center;
}

.sci-content h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.sci-content p {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
}

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

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

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

.guarantee-img-col {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.7s ease;
}

.guarantee-img-col.aos-animate { opacity: 1; transform: translateX(0); }

.guarantee-img {
  max-width: 340px;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.guarantee-content-col {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.7s ease 0.2s;
}

.guarantee-content-col.aos-animate { opacity: 1; transform: translateX(0); }

.guarantee-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--light-gray);
}

.gp-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}

.guarantee-point h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}

.guarantee-point p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

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

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

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

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

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.2);
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-15px);
}

.benefit-item.aos-animate { opacity: 1; transform: translateX(0); }
.benefit-item:hover { border-color: var(--gold); background: rgba(212,175,55,0.08); }

.benefit-check {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item div {
  font-size: clamp(14px, 1.8vw, 15px);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.benefit-item strong { color: var(--white); }

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

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  background: var(--off-white);
}

.faq-item .acc-header { color: var(--navy); }
.faq-item .acc-header:hover { background: rgba(192,57,43,0.05); }
.faq-item .acc-header[aria-expanded="true"] { color: var(--primary); }
.faq-item .acc-body p { color: #374151; }
.faq-item .acc-icon { color: var(--primary); }

/* ============================================
   SECTION 15: FINAL CTA
   ============================================ */
.final-cta-section {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.final-cta-bg {
  background: var(--gradient-cool);
  padding: 80px 0;
  position: relative;
}

.final-cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(192,57,43,0.2) 0%, transparent 70%);
}

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

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

.final-img-col {
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.final-img-col.aos-animate { opacity: 1; transform: translateX(0); }

.final-bottle-img {
  max-width: 320px;
  width: 100%;
  animation: floatBottle 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}

.final-content-col {
  color: var(--white);
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease 0.2s;
}

.final-content-col.aos-animate { opacity: 1; transform: translateX(0); }

.final-urgency {
  display: inline-block;
  background: rgba(192,57,43,0.3);
  border: 1px solid rgba(192,57,43,0.6);
  color: #FCA5A5;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.final-h2 {
  font-size: clamp(26px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.final-price-wrap {
  margin-bottom: 24px;
}

.final-price-old {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.final-price-new {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--gold-light);
}

.final-content-col p {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  line-height: 1.75;
}

.final-security {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #070E17;
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer-brand .logo-text {
  font-size: 28px;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}

.social-link:hover { background: var(--primary); transform: scale(1.1); }

.footer-links-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-links-col a:hover { color: var(--gold); padding-left: 4px; }

.footer-legal {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  align-items: center;
}

.legal-link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.legal-link:hover { color: var(--gold); }
.link-separator { color: rgba(255,255,255,0.3); }

.footer-disclaimer {
  padding: 24px 0;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 12px;
}

.footer-disclaimer a { color: var(--gold); }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
}

.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { transform: translateY(-4px) scale(1.1); }

/* ============================================
   PURCHASE NOTIFICATION
   ============================================ */
.purchase-notif {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 950;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s ease;
  max-width: calc(100vw - 40px);
}

.purchase-notif.show { opacity: 1; transform: translateY(0); pointer-events: all; }

.notif-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  border: 1px solid var(--light-gray);
  border-left: 4px solid var(--gold);
}

.notif-icon { font-size: 22px; }

.notif-text {
  font-size: 14px;
  color: var(--navy);
  flex: 1;
}

.notif-close-link {
  background: var(--gradient);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 36px;
  display: flex;
  align-items: center;
}

/* ============================================
   POPUP
   ============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.show { opacity: 1; pointer-events: all; }

.popup-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  border-top: 5px solid var(--primary);
}

.popup-overlay.show .popup-box { transform: scale(1); }

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

.popup-close-btn:hover { background: var(--primary); color: var(--white); }

.popup-tag {
  display: inline-block;
  background: rgba(192,57,43,0.1);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.popup-box h3 {
  font-size: clamp(20px, 3.5vw, 28px);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.popup-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.popup-old {
  font-size: 20px;
  color: var(--gray);
  text-decoration: line-through;
}

.popup-new {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--primary);
}

.popup-box p {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-popup {
  display: block;
  background: var(--gradient);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(192,57,43,0.35);
  transition: var(--transition);
  min-height: 52px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-popup:hover { transform: scale(1.04); }

.popup-skip {
  margin-top: 14px;
  font-size: 13px;
  color: var(--gray);
  cursor: pointer;
  text-decoration: underline;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-skip:hover { color: var(--primary); }

/* Mobile Banner */
.mobile-popup-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1900;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 12px 16px;
  align-items: center;
  gap: 12px;
}

@media (max-width: 767px) {
  .mobile-popup-banner { display: flex; }
  .purchase-notif { bottom: 80px; }
  .scroll-top { bottom: 90px; }
}

.mobile-banner-link {
  flex: 1;
  font-size: 14px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.mobile-banner-link strong {
  display: block;
  color: var(--gold-light);
}

.mobile-banner-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   AOS (SCROLL ANIMATIONS)
   ============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
.why-grid .why-card:nth-child(1) { transition-delay: 0s; }
.why-grid .why-card:nth-child(2) { transition-delay: 0.1s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.2s; }
.why-grid .why-card:nth-child(4) { transition-delay: 0.3s; }

.pricing-grid .price-card:nth-child(1) { transition-delay: 0s; }
.pricing-grid .price-card:nth-child(2) { transition-delay: 0.15s; }
.pricing-grid .price-card:nth-child(3) { transition-delay: 0.3s; }

.ing-grid .ing-card:nth-child(odd) { transition-delay: 0s; }
.ing-grid .ing-card:nth-child(even) { transition-delay: 0.1s; }

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-bottle { animation: none; }
  .hero-glow { animation: none; }
  .btn-hero, .btn-final { animation: none; }
}

/* ============================================
   UTILITY
   ============================================ */
@media (max-width: 575px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .price-card.popular.aos-animate { transform: translateY(0); }
  .price-card.popular:hover { transform: translateY(-6px); }
}
