/* ============================================
   PINEAL AWAKENING - MYSTIC PREMIUM DESIGN
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============ CSS Variables ============ */
:root {
  --navy: #07091a;
  --deep-purple: #130a2e;
  --purple: #6b21d6;
  --purple-light: #9b59f5;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #a07d10;
  --white: #ffffff;
  --off-white: #f4f0ff;
  --text-light: #c8b8f0;
  --text-muted: #8a7aaa;
  --green: #10b981;
  --red: #ef4444;
  --shadow-gold: 0 0 30px rgba(212,175,55,0.3);
  --shadow-purple: 0 0 30px rgba(107,33,214,0.4);
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius: 16px;
  --radius-sm: 8px;
}

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; outline: none; }

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

.section-title {
  font-family: 'Cinzel Decorative', serif;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

.gold-text { color: var(--gold); }
.highlight { color: var(--purple-light); }

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  color: var(--navy);
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
  min-height: 48px;
  text-align: center;
  border: 2px solid var(--gold-light);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 35px rgba(212,175,55,0.6);
}

.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--transition);
  min-height: 48px;
  text-align: center;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.05);
}

/* Fade-in animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Star Rating */
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

/* ============ SECTION 1: NAVIGATION ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(7,9,26,0.97);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.2rem;
  color: var(--gold);
  white-space: nowrap;
  text-shadow: 0 0 20px rgba(212,175,55,0.5);
}

.nav-logo span { color: var(--purple-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-transform: uppercase;
}

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

.nav-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7,9,26,0.98);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.4rem;
  color: var(--white);
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

/* ============ SECTION 2: HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: radial-gradient(ellipse at 20% 50%, rgba(107,33,214,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.12) 0%, transparent 50%),
              linear-gradient(180deg, var(--deep-purple) 0%, var(--navy) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(107,33,214,0.08) 0%, transparent 60%);
  animation: pulse-bg 6s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

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

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

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,33,214,0.4) 0%, rgba(212,175,55,0.1) 50%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-bottle {
  position: relative;
  z-index: 1;
  max-height: 500px;
  filter: drop-shadow(0 20px 60px rgba(107,33,214,0.5)) drop-shadow(0 0 40px rgba(212,175,55,0.3));
  animation: float-bottle 4s ease-in-out infinite;
}

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

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-badge::before { content: '✦'; font-size: 0.7rem; }

.hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white) 30%, var(--gold) 70%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-cta-btn {
  font-size: 1.1rem;
  padding: 18px 44px;
  width: fit-content;
}

.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-guarantee::before { content: '🔒'; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ============ SECTION 3: WHY CHOOSE ============ */
.why-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--deep-purple) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,0.3), transparent);
}

.why-title {
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--white);
  margin-bottom: 8px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.why-card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 20px 50px rgba(212,175,55,0.2);
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
}

.why-card:hover::before { opacity: 1; }

.why-card img {
  width: 80px; height: 80px;
  object-fit: contain;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 12px rgba(212,175,55,0.3));
}

.why-card h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

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

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

.what-is-image {
  position: relative;
}

.what-is-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(107,33,214,0.2), rgba(212,175,55,0.1));
  z-index: 0;
}

.what-is-image img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  filter: drop-shadow(0 20px 50px rgba(107,33,214,0.4));
  margin: auto;
  max-height: 450px;
  width: auto;
}

.what-is-content h2 {
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 24px;
}

.what-is-content p {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.9;
}

.what-is-content .btn-primary { margin-top: 16px; }

/* ============ SECTION 5: HOW IT WORKS ============ */
.how-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--deep-purple) 0%, var(--navy) 100%);
}

.how-title { font-size: clamp(24px, 3.5vw, 40px); color: var(--white); }

.accordion {
  max-width: 860px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(107,33,214,0.3);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover { border-color: rgba(212,175,55,0.4); }

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  color: var(--white);
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-align: left;
  min-height: 48px;
  transition: var(--transition);
}

.accordion-header:hover { color: var(--gold); }

.accordion-icon {
  color: var(--gold);
  font-size: 1.2rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-item.open { border-color: var(--gold); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.accordion-item.open .accordion-body { max-height: 500px; }

.accordion-body-inner {
  padding: 0 24px 24px;
  color: var(--text-light);
  line-height: 1.9;
  font-size: 0.95rem;
}

/* ============ SECTION 6: REVIEWS ============ */
.reviews-section {
  padding: 90px 0;
  background: var(--navy);
  position: relative;
}

.reviews-title { font-size: clamp(24px, 3.5vw, 40px); color: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(107,33,214,0.25);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-family: 'Cinzel Decorative', serif;
  font-size: 4rem;
  color: rgba(212,175,55,0.15);
  line-height: 1;
}

.review-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(212,175,55,0.15);
  transform: translateY(-5px);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.reviewer-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.reviewer-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.reviewer-loc { font-size: 0.8rem; color: var(--text-muted); }

.review-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 12px;
}

/* ============ SECTION 7: PRICING ============ */
.pricing-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--deep-purple) 0%, var(--navy) 100%);
  position: relative;
}

.pricing-title { font-size: clamp(22px, 3.5vw, 40px); color: var(--white); }

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

.countdown-label {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.countdown-timer {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  min-width: 72px;
}

.timer-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.timer-label { font-size: 0.6rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

.timer-colon { font-family: 'Cinzel Decorative', serif; font-size: 2rem; color: var(--gold); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(107,33,214,0.3);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.price-card:hover { transform: translateY(-5px); }

.price-card.popular {
  background: linear-gradient(135deg, rgba(107,33,214,0.25), rgba(212,175,55,0.1));
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}

.price-card.popular:hover { transform: scale(1.03) translateY(-5px); }

.price-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.price-card-label {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.price-card-bottles { font-size: 1.5rem; font-weight: 700; color: var(--white); }
.price-card-supply { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }

.price-card img {
  max-height: 160px;
  width: auto;
  margin: 20px auto;
}

.price-per {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.price-per span { font-size: 1rem; }

.price-total {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-total s { color: var(--red); }

.price-badge {
  display: inline-block;
  background: rgba(16,185,129,0.15);
  color: var(--green);
  border: 1px solid var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
  margin: 4px 2px;
}

.price-cta {
  width: 100%;
  margin-top: 20px;
  font-size: 0.9rem;
  padding: 16px 20px;
}

.price-payments {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.price-payments img { max-height: 28px; width: auto; margin: 0 auto; }

.price-5star { display: block; margin: 40px auto 0; max-width: 280px; opacity: 0.9; }

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

.bonus-title { font-size: clamp(22px, 3vw, 38px); color: var(--white); }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-card {
  background: linear-gradient(135deg, rgba(107,33,214,0.1), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}

.bonus-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.bonus-badge {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.bonus-card img { max-height: 200px; width: auto; margin: 0 auto 24px; }

.bonus-card h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.bonus-card p { color: var(--text-light); font-size: 0.9rem; }

/* ============ SECTION 9: INGREDIENTS ============ */
.ingredients-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--deep-purple) 0%, var(--navy) 100%);
}

.ingredients-title { font-size: clamp(24px, 3.5vw, 40px); color: var(--white); }

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.ingredient-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(107,33,214,0.25);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}

.ingredient-card:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.04);
  transform: translateY(-3px);
}

.ingredient-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.ingredient-card h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.9rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.ingredient-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.8; }

/* ============ SECTION 10: SCIENTIFIC EVIDENCE ============ */
.science-section {
  padding: 90px 0;
  background: var(--navy);
}

.science-title { font-size: clamp(24px, 3.5vw, 40px); color: var(--white); }

.science-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.science-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(107,33,214,0.2);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}

.science-card:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-3px); }

.science-card h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.science-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.9; }

.science-ref {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 12px;
}

/* ============ SECTION 11: GUARANTEE ============ */
.guarantee-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--deep-purple) 0%, var(--navy) 100%);
}

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

.guarantee-image { text-align: center; position: relative; }

.guarantee-image::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
}

.guarantee-image img {
  max-width: 280px;
  margin: auto;
  filter: drop-shadow(0 20px 50px rgba(212,175,55,0.3));
  position: relative;
  z-index: 1;
}

.guarantee-content h2 {
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 28px;
}

.guarantee-point {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.guarantee-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.guarantee-point h4 {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  font-size: 1rem;
}

.guarantee-point p { color: var(--text-light); font-size: 0.9rem; line-height: 1.8; }

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

.benefits-title { font-size: clamp(24px, 3.5vw, 40px); color: var(--white); }

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(107,33,214,0.2);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.benefit-item:hover { border-color: var(--gold); background: rgba(212,175,55,0.04); transform: translateX(4px); }

.benefit-check {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #34d399);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.benefit-item h4 { font-weight: 700; color: var(--white); margin-bottom: 4px; font-size: 1rem; }
.benefit-item p { color: var(--text-light); font-size: 0.85rem; }

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

.faq-title { font-size: clamp(24px, 3.5vw, 40px); color: var(--white); }

/* ============ SECTION 15: FINAL CTA ============ */
.final-cta-section {
  padding: 100px 0;
  background: radial-gradient(ellipse at center, rgba(107,33,214,0.3) 0%, var(--deep-purple) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.final-cta-bottle {
  max-height: 320px;
  width: auto;
  margin: 0 auto 40px;
  filter: drop-shadow(0 20px 60px rgba(107,33,214,0.5));
  animation: float-bottle 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.final-cta-section h2 {
  font-size: clamp(22px, 3.5vw, 42px);
  margin-bottom: 20px;
  position: relative;
}

.final-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 28px 0 36px;
  position: relative;
}

.final-old-price { font-size: 1.2rem; color: var(--red); text-decoration: line-through; }

.final-new-price {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold);
  text-shadow: var(--shadow-gold);
}

.final-cta-btn { font-size: 1.2rem; padding: 20px 50px; }

/* ============ SECTION 16: FOOTER ============ */
.footer {
  background: #03040d;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(212,175,55,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.8; max-width: 380px; }

.footer-links h4 {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a { color: var(--text-muted); font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: var(--text-muted);
}

.social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 0 0 24px; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 16px;
}

.legal-link { color: var(--text-muted); font-size: 0.75rem; transition: var(--transition); }
.legal-link:hover { color: var(--gold); }

.link-separator { color: rgba(255,255,255,0.15); }

.footer-copy { font-size: 0.75rem; color: var(--text-muted); }

.footer-disclaimer {
  margin-top: 24px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.05);
}

.footer-disclaimer p { font-size: 0.72rem; color: rgba(255,255,255,0.3); line-height: 1.7; }

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

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

.popup-box {
  background: linear-gradient(135deg, #130a2e, #0a0e27);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), var(--shadow-gold);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

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

.popup-close {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.popup-close:hover { color: var(--gold); }

.popup-badge {
  display: inline-block;
  background: rgba(239,68,68,0.15);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.4);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.popup-box h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.popup-box p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 24px; }

/* Purchase Notification */
.purchase-notif {
  position: fixed;
  bottom: 20px; left: 20px;
  background: rgba(7,9,26,0.95);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 2000;
  max-width: 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(8px);
}

.purchase-notif.show { transform: translateX(0); }

.notif-icon { font-size: 1.5rem; }
.notif-name { font-weight: 700; font-size: 0.85rem; color: var(--gold); }
.notif-text { font-size: 0.75rem; color: var(--text-muted); }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 80px; right: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition);
  border: none;
}

.scroll-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 8px 30px rgba(212,175,55,0.5); }

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

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

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; }
  .hero-bottle { max-height: 300px; }
  .hero-glow { width: 260px; height: 260px; }
  .hero-cta-btn { width: 100%; }
  .hero-stats { justify-content: center; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

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

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

  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-5px); }

  .bonus-grid { grid-template-columns: 1fr; max-width: 420px; }

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

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

  .guarantee-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .guarantee-point { flex-direction: column; align-items: center; text-align: center; }

  .benefits-list { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-social { justify-content: center; }
  .footer-legal { justify-content: center; }
  .footer-copy { text-align: center; }

  .popup-box { padding: 28px 20px; }
  .purchase-notif { max-width: 240px; }

  .timer-block { min-width: 60px; padding: 8px 14px; }
  .timer-num { font-size: 1.6rem; }
}

@media (max-width: 576px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.2rem; }

  .timer-block { min-width: 52px; padding: 6px 10px; }
  .timer-num { font-size: 1.4rem; }

  .final-cta-btn { width: 100%; }
}

/* Touch feedback */
@media (hover: none) {
  .btn-primary:active { transform: scale(0.98); }
  .why-card:hover { transform: none; }
  .why-card:active { transform: scale(0.98); }
}
