/* ============================================
   TINA PSYCHIC - STYLES.CSS
   Theme: Mystical Luxury - Deep Purple & Gold
   Mobile-First Design
   ============================================ */

/* === GOOGLE FONTS IMPORT === */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Raleway:wght@300;400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
  --primary: #6B21A8;
  --primary-light: #9333EA;
  --primary-dark: #3B0764;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #A88A20;
  --bg-dark: #0D0620;
  --bg-card: #1A0D35;
  --bg-section: #130929;
  --text-light: #F3E8FF;
  --text-muted: #C4B5FD;
  --white: #FFFFFF;
  --border: rgba(212, 175, 55, 0.25);
  --glow: rgba(107, 33, 168, 0.5);
  --gold-glow: rgba(212, 175, 55, 0.3);
  --font-heading: 'Cinzel', serif;
  --font-body: 'Raleway', sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 10px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.25);
}

/* === 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: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-size: 16px; font-family: inherit; }
s { color: var(--text-muted); opacity: 0.7; }

/* === UTILITY === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-pad { padding: 60px 0; }
.dark-section { background: var(--bg-section); }
.center { text-align: center; }
.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-text { color: var(--gold); font-weight: 700; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--white);
}
.section-title.left-align { text-align: left; }
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* === STARS BACKGROUND === */
.hero-stars, .cta-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-stars::before, .hero-stars::after,
.cta-stars::before, .cta-stars::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(212,175,55,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 10%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 80%, rgba(147,51,234,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 40%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 20% 90%, rgba(212,175,55,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 30%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 50%, rgba(147,51,234,0.4) 0%, transparent 100%);
  background-size: 300px 300px, 400px 400px, 250px 250px, 350px 350px, 280px 280px, 320px 320px, 380px 380px, 260px 260px;
  animation: twinkle 4s ease-in-out infinite alternate;
}
.hero-stars::after, .cta-stars::after {
  background-size: 200px 200px, 500px 500px, 150px 150px, 450px 450px, 220px 220px, 420px 420px, 180px 180px, 360px 360px;
  animation-delay: 2s;
  animation-duration: 6s;
}
@keyframes twinkle {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 6, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(13, 6, 32, 0.97);
  box-shadow: 0 4px 30px rgba(107,33,168,0.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--gold); background: rgba(212,175,55,0.08); }
.btn-nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-nav-cta:hover { transform: scale(1.05); box-shadow: 0 0 20px var(--gold-glow); }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(212,175,55,0.1);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
@media (max-width: 767px) {
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(13, 6, 32, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s;
  }
  .nav-links.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }
  .nav-link { font-size: 16px; padding: 14px 20px; border-radius: 10px; width: 100%; }
  .btn-nav-cta { width: 100%; text-align: center; padding: 14px 20px; font-size: 16px; }
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: radial-gradient(ellipse at 20% 50%, rgba(107,33,168,0.35) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.1) 0%, transparent 50%),
              var(--bg-dark);
  overflow: hidden;
}
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.hero-image-wrap {
  position: relative;
  flex-shrink: 0;
  order: 0;
}
.hero-glow-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, var(--primary-light), var(--gold), transparent, var(--primary), transparent);
  animation: rotateRing 6s linear infinite;
  opacity: 0.5;
  filter: blur(8px);
}
@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-product-img {
  width: min(280px, 70vw);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(107,33,168,0.6));
  animation: floatImg 4s ease-in-out infinite;
  border-radius: var(--radius);
  margin: 0 auto;
}
@keyframes floatImg {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}
.floating-badge {
  position: absolute;
  top: -12px;
  right: -10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(212,175,55,0.5);
  white-space: nowrap;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.hero-content { flex: 1; text-align: center; }
.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
h1.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.hero-stars-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gold);
  justify-content: center;
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-stars-row span { color: var(--text-muted); }
.btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #B8860B, var(--gold));
  background-size: 200% 200%;
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(212,175,55,0.4);
  animation: shimmer 3s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 56px;
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.btn-hero:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(212,175,55,0.6); }
.btn-hero:active { transform: scale(0.98); }
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-guarantee {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

@media (min-width: 768px) {
  .hero-container { flex-direction: row; text-align: left; }
  .hero-content { text-align: left; }
  .hero-stars-row { justify-content: flex-start; }
  .btn-hero { width: auto; }
  .hero-product-img { width: 340px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(107,33,168,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 52px;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 12px 35px rgba(107,33,168,0.6); }
.btn-primary:active { transform: scale(0.98); }
.btn-price {
  display: block;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 50px;
  text-align: center;
  width: 100%;
  min-height: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 16px;
  box-shadow: 0 6px 20px rgba(107,33,168,0.4);
}
.btn-price:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(107,33,168,0.6); }
.btn-price:active { transform: scale(0.98); }
.popular-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}
.popular-btn:hover { box-shadow: 0 10px 30px rgba(212,175,55,0.6); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.badges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
.badge-card {
  background: linear-gradient(135deg, var(--bg-card), rgba(107,33,168,0.15));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  animation-delay: var(--delay, 0s);
}
.badge-card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: var(--shadow-gold);
}
.badge-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  overflow: hidden;
}
.badge-icon { width: 60px; height: 60px; object-fit: contain; }
.badge-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.badge-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
@media (min-width: 576px) { .badges-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .badges-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================
   SPLIT LAYOUT
   ============================================ */
.split-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.split-layout.reverse .split-image { order: -1; }
.split-image {
  position: relative;
  flex-shrink: 0;
}
.split-image img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin: 0 auto;
}
.img-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--gold), var(--primary-light));
  z-index: -1;
  filter: blur(20px);
  opacity: 0.4;
}
.split-content { flex: 1; }
.split-content p { color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.split-content .btn-primary { margin-top: 8px; }
@media (min-width: 768px) {
  .split-layout { flex-direction: row; text-align: left; }
  .split-layout.reverse { flex-direction: row-reverse; }
  .split-layout.reverse .split-image { order: 0; }
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion-list, .faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s;
  animation-delay: var(--delay, 0s);
}
.accordion-item:hover { box-shadow: 0 4px 20px var(--glow); }
.accordion-header {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  text-align: left;
  min-height: 60px;
  cursor: pointer;
  transition: background 0.2s;
}
.accordion-header:hover { background: rgba(107,33,168,0.15); }
.acc-icon { font-size: 20px; flex-shrink: 0; }
.acc-title { flex: 1; }
.acc-arrow {
  font-size: 12px;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.accordion-header[aria-expanded="true"] .acc-arrow { transform: rotate(180deg); }
.accordion-header[aria-expanded="true"] { color: var(--gold); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.accordion-body.open { max-height: 400px; }
.accordion-body p {
  padding: 0 20px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: linear-gradient(135deg, var(--bg-card), rgba(107,33,168,0.1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.review-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.reviewer-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.reviewer-name { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--white); }
.reviewer-loc { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.stars { font-size: 14px; margin-top: 4px; }
.review-text { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.stars-img-wrap { text-align: center; margin-top: 32px; }
.five-star-img { max-width: 260px; margin: 0 auto; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================
   PRICING
   ============================================ */
.countdown-wrap {
  text-align: center;
  margin: 20px 0 40px;
}
.countdown-label {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}
.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 12px 24px;
  box-shadow: var(--shadow-gold);
}
.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.time-block span {
  font-family: var(--font-heading);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  min-width: 60px;
  text-align: center;
  display: block;
}
.time-block small {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
}
.time-sep {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  color: var(--gold);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.price-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(59,7,100,0.8) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(107,33,168,0.4); }
.price-card.popular {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}
.price-card.popular:hover { transform: scale(1.03) translateY(-8px); }
.popular-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  position: absolute;
  top: 0; left: 0; right: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.price-label {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.price-card.popular .price-label { margin-top: 32px; }
.price-bottles {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.price-supply { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.price-img { width: 140px; margin: 0 auto 16px; filter: drop-shadow(0 10px 20px rgba(107,33,168,0.5)); }
.price-per {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
}
.per-unit { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.price-total { font-size: 17px; color: var(--text-muted); margin-top: 4px; font-weight: 600; }
.bonus-tags { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.bonus-tag {
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  padding: 5px 12px;
  display: inline-block;
}
.payment-icons { max-width: 180px; margin: 14px auto 0; opacity: 0.75; }
.rating-bar { text-align: center; margin-top: 32px; }
@media (min-width: 576px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================
   BONUS
   ============================================ */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}
.bonus-card {
  background: linear-gradient(135deg, var(--bg-card), rgba(107,33,168,0.15));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.bonus-ribbon {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 8px 20px;
  position: absolute;
  top: 16px; right: -20px;
  transform: rotate(45deg) translateX(20px);
  width: 140px;
  text-align: center;
}
.bonus-card img { width: 100%; max-width: 320px; border-radius: var(--radius); margin: 0 auto 20px; }
.bonus-card h3 { font-family: var(--font-heading); font-size: 18px; color: var(--gold); margin-bottom: 12px; }
.bonus-card p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 10px; }
.bonus-value { font-weight: 700; color: var(--text-light) !important; font-size: 16px !important; }
@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   INGREDIENTS
   ============================================ */
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
.ingredient-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  animation-delay: var(--delay, 0s);
}
.ingredient-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px var(--glow); border-color: rgba(212,175,55,0.4); }
.ing-emoji { font-size: 32px; display: block; margin-bottom: 12px; }
.ingredient-card h3 { font-family: var(--font-heading); font-size: 16px; color: var(--gold); margin-bottom: 8px; }
.ingredient-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
@media (min-width: 576px) { .ingredients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .ingredients-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================
   SCIENCE
   ============================================ */
.science-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
.science-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 4px solid var(--gold);
  transition: transform 0.3s;
  animation-delay: var(--delay, 0s);
}
.science-card:hover { transform: translateX(6px); }
.science-card h3 { font-family: var(--font-heading); font-size: 17px; color: var(--gold); margin-bottom: 12px; }
.science-card p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
@media (min-width: 768px) { .science-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee-points { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
.guarantee-item { display: flex; gap: 16px; align-items: flex-start; }
.guar-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.guarantee-item h3 { font-family: var(--font-heading); font-size: 16px; color: var(--gold); margin-bottom: 6px; }
.guarantee-item p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   BENEFITS
   ============================================ */
.benefits-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }
.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation-delay: var(--delay, 0s);
}
.benefit-item:hover { transform: translateX(8px); box-shadow: 0 6px 25px var(--glow); }
.benefit-check { font-size: 28px; flex-shrink: 0; }
.benefit-item h3 { font-family: var(--font-heading); font-size: 16px; color: var(--gold); margin-bottom: 6px; }
.benefit-item p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  position: relative;
  background: radial-gradient(ellipse at 30% 50%, rgba(107,33,168,0.4) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(212,175,55,0.1) 0%, transparent 50%),
              var(--bg-dark);
  overflow: hidden;
}
.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, var(--bg-card), rgba(59,7,100,0.5));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}
.final-cta-img {
  width: min(240px, 60vw);
  filter: drop-shadow(0 20px 40px rgba(107,33,168,0.7));
  animation: floatImg 4s ease-in-out infinite;
}
.final-cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.final-cta-price-old { font-size: 18px; color: var(--text-muted); margin-bottom: 4px; }
.final-cta-price { font-family: var(--font-heading); font-size: clamp(24px, 4vw, 36px); font-weight: 900; color: var(--white); margin-bottom: 20px; }
.final-cta-desc { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; max-width: 560px; }
.btn-final {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #B8860B, var(--gold));
  background-size: 200% 200%;
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 900;
  padding: 20px 48px;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(212,175,55,0.5);
  animation: shimmer 2.5s ease-in-out infinite, pulseCta 2s ease-in-out infinite;
  transition: transform 0.2s;
  min-height: 60px;
  text-align: center;
}
.btn-final:hover { transform: scale(1.05); }
.btn-final:active { transform: scale(0.97); }
@keyframes pulseCta {
  0%, 100% { box-shadow: 0 10px 40px rgba(212,175,55,0.5); }
  50% { box-shadow: 0 15px 60px rgba(212,175,55,0.8); }
}
.final-guarantee { font-size: 13px; color: var(--text-muted); margin-top: 14px; }
.final-stars { font-size: 15px; color: var(--gold); font-weight: 600; margin-top: 10px; }
@media (min-width: 768px) {
  .final-cta-inner { flex-direction: row; text-align: left; padding: 56px 48px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #080413;
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-top: 10px; max-width: 320px; }
.footer-logo { font-size: 22px; }
.social-icons { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 44px; height: 44px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background 0.2s, transform 0.2s;
}
.social-link:hover { background: rgba(212,175,55,0.2); transform: scale(1.1); }
.footer-links-col h4 { font-family: var(--font-heading); font-size: 15px; color: var(--gold); margin-bottom: 16px; font-weight: 700; }
.footer-links-col a { display: block; font-size: 14px; color: var(--text-muted); margin-bottom: 10px; transition: color 0.2s; }
.footer-links-col a:hover { color: var(--gold); }
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.legal-link { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.legal-link:hover { color: var(--gold); }
.link-separator { color: var(--border); }
.footer-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
}
.footer-bottom { text-align: center; font-size: 13px; color: var(--text-muted); }
.footer-bottom a { color: var(--gold); }
@media (min-width: 576px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .footer-top { grid-template-columns: 2fr 1fr 1fr; } }

/* ============================================
   SCROLL TOP BUTTON
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 20px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  border-radius: 50%;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 25px rgba(212,175,55,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 900;
  cursor: pointer;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: scale(1.1); }
.scroll-top:active { transform: scale(0.95); }

/* ============================================
   PURCHASE POPUP
   ============================================ */
.purchase-popup {
  position: fixed;
  bottom: 90px; left: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 40px 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 0.5s, transform 0.5s;
  z-index: 800;
  max-width: 280px;
}
.purchase-popup.show { opacity: 1; transform: translateX(0); }
.popup-flag { font-size: 24px; flex-shrink: 0; }
.popup-text { font-size: 13px; color: var(--text-light); line-height: 1.5; }
.popup-text strong { color: var(--gold); }
.popup-text small { color: var(--text-muted); }
.popup-close {
  position: absolute;
  top: 8px; right: 8px;
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  font-size: 11px;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}

/* ============================================
   EXIT POPUP
   ============================================ */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.exit-overlay.open { opacity: 1; visibility: visible; }
.exit-popup {
  background: linear-gradient(135deg, var(--bg-card), var(--primary-dark));
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  transform: scale(0.8);
  transition: transform 0.4s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
.exit-overlay.open .exit-popup { transform: scale(1); }
.exit-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  font-size: 14px;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.exit-close:hover { background: rgba(255,255,255,0.2); }
.exit-eyebrow { font-size: 12px; letter-spacing: 2px; color: var(--gold); font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.exit-popup h3 { font-family: var(--font-heading); font-size: 24px; color: var(--white); margin-bottom: 14px; }
.exit-popup p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.exit-price { font-family: var(--font-heading); font-size: 28px; color: var(--white); margin-bottom: 24px; }
.exit-special { color: var(--gold); font-weight: 900; }
.btn-exit {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  min-height: 52px;
  box-shadow: 0 8px 25px rgba(212,175,55,0.4);
  transition: transform 0.2s;
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}
.btn-exit:hover { transform: scale(1.05); }
.exit-decline { font-size: 12px; color: var(--text-muted); }
.exit-decline a { color: var(--text-muted); text-decoration: underline; }

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal-up, .fade-left, .fade-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-up { transform: translateY(40px); }
.fade-left { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }
.reveal-up.in-view,
.fade-left.in-view,
.fade-right.in-view {
  opacity: 1;
  transform: translate(0);
}

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

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (min-width: 768px) {
  .section-pad { padding: 80px 0; }
}
@media (min-width: 1024px) {
  .section-pad { padding: 100px 0; }
}
