/* =============================================
   NEUROVERA - STYLES.CSS
   Medical Professional Design Theme
   Colors: Deep Teal + Emerald + White
============================================= */

/* === IMPORTS & VARIABLES === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0F766E;
  --primary-dark: #0D6560;
  --primary-light: #14B8A6;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --bg-dark: #0A1628;
  --bg-mid: #0F2240;
  --bg-light: #F0FDFA;
  --white: #FFFFFF;
  --text-dark: #1E293B;
  --text-mid: #475569;
  --text-light: #94A3B8;
  --gradient: linear-gradient(135deg, #0F766E, #14B8A6);
  --gradient-hero: linear-gradient(135deg, #0A1628 0%, #0F2240 50%, #0F766E 100%);
  --shadow-sm: 0 2px 8px rgba(15, 118, 110, 0.15);
  --shadow-md: 0 8px 32px rgba(15, 118, 110, 0.2);
  --shadow-lg: 0 24px 64px rgba(15, 118, 110, 0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --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: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  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 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(26px, 5vw, 52px); font-weight: 900; }
h2 { font-size: clamp(22px, 3.5vw, 40px); font-weight: 700; }
h3 { font-size: clamp(18px, 2.5vw, 26px); font-weight: 600; }
h4 { font-size: clamp(16px, 2vw, 20px); font-weight: 600; }
p { font-size: 16px; line-height: 1.75; color: var(--text-mid); }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
section { padding: 60px 0; }
@media (min-width: 768px) { section { padding: 90px 0; } }
@media (min-width: 1024px) { section { padding: 110px 0; } }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 18px; color: var(--text-mid); max-width: 600px; margin: 0 auto; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #1a0a00;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  min-height: 56px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: scale(0.98); }
.btn-sub { font-size: 12px; font-weight: 400; margin-top: 4px; opacity: 0.8; }
.btn-large { font-size: 20px; padding: 20px 40px; min-height: 70px; }
.pulse-btn { animation: pulseBtn 2s infinite; }
@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(245, 158, 11, 0.7); }
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 184, 166, 0.2);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(10, 22, 40, 0.98); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
}
.nav-logo img { width: 36px; height: 36px; object-fit: contain; border-radius: 8px; }
.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--primary-light); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: #1a0a00 !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .nav-container { padding: 14px 30px; }
}

/* Mobile nav overlay */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 65px; left: 0; right: 0;
  background: rgba(10, 22, 40, 0.98);
  padding: 24px;
  gap: 16px;
  animation: slideDown 0.3s ease;
  border-bottom: 1px solid rgba(20,184,166,0.2);
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === HERO SECTION === */
.hero {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-image {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 380px;
}
.hero-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}
.hero-bottle {
  position: relative;
  z-index: 2;
  width: 220px;
  filter: drop-shadow(0 20px 40px rgba(20,184,166,0.3));
  animation: floatBottle 4s ease-in-out infinite;
}
@keyframes floatBottle {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
.floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 3;
}
.badge-1 { top: 10%; right: -10px; animation: badgeFloat 3s ease-in-out infinite 0s; }
.badge-2 { bottom: 30%; left: -20px; animation: badgeFloat 3s ease-in-out infinite 1s; }
.badge-3 { bottom: 10%; right: 0; animation: badgeFloat 3s ease-in-out infinite 2s; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-content { color: white; text-align: center; width: 100%; }
.hero-tag {
  display: inline-block;
  background: rgba(20, 184, 166, 0.2);
  border: 1px solid rgba(20, 184, 166, 0.4);
  color: var(--primary-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.hero-content h1 { color: white; margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,0.8); margin-bottom: 16px; font-size: 17px; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.hero-cta { width: 100%; max-width: 360px; margin: 0 auto 20px; }
.trust-strip img { margin: 0 auto; max-width: 280px; opacity: 0.7; }

@media (min-width: 768px) {
  .hero-container { flex-direction: row; align-items: center; gap: 60px; padding: 60px 30px; }
  .hero-image { width: 45%; max-width: none; }
  .hero-bottle { width: 300px; }
  .hero-content { text-align: left; }
  .hero-stats { justify-content: flex-start; }
  .hero-cta { margin: 0 0 20px; }
  .trust-strip img { margin: 0; }
  .badge-1 { right: -20px; }
  .badge-2 { left: -30px; }
}
@media (min-width: 1024px) {
  .hero-bottle { width: 360px; }
  .hero-glow { width: 400px; height: 400px; }
}

/* === WHY CHOOSE === */
.why-choose { background: var(--bg-light); }
.badges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.badge-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 118, 110, 0.1);
  transition: var(--transition);
}
.badge-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow-lg); }
.badge-icon { margin: 0 auto 20px; width: 80px; height: 80px; }
.badge-icon img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto; }
.badge-card h3 { margin-bottom: 12px; color: var(--primary-dark); }
.badge-card p { font-size: 15px; }
@media (min-width: 576px) { .badges-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .badges-grid { grid-template-columns: repeat(4, 1fr); } }

/* === SPLIT LAYOUT === */
.split-layout {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}
.split-layout.reverse { flex-direction: column-reverse; }
.split-image { flex: 0 0 auto; width: 100%; max-width: 380px; }
.split-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.split-content { flex: 1; }
.section-tag {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(15,118,110,0.2);
}
.split-content h2 { margin-bottom: 20px; }
.split-content p { margin-bottom: 16px; }
.split-content .btn-primary { margin-top: 12px; display: inline-flex; }
@media (min-width: 768px) {
  .split-layout { flex-direction: row; gap: 60px; }
  .split-layout.reverse { flex-direction: row-reverse; }
  .split-image { width: 40%; max-width: none; }
}

/* === ACCORDION === */
.accordion-list, .science-accordion, .faq-list { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  border: 1px solid rgba(15, 118, 110, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  min-height: 56px;
  transition: var(--transition);
}
.accordion-header:hover { background: var(--bg-light); }
.acc-icon { font-size: 20px; flex-shrink: 0; }
.acc-arrow { margin-left: auto; font-size: 12px; transition: transform 0.3s ease; flex-shrink: 0; color: var(--primary); }
.accordion-header.active .acc-arrow { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
}
.accordion-body.open { max-height: 500px; padding: 0 20px 20px; }
.accordion-body p { font-size: 15px; }

/* === REVIEWS === */
.reviews { background: var(--bg-dark); }
.reviews .section-header h2 { color: white; }
.reviews .section-header p { color: rgba(255,255,255,0.6); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.reviewer-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}
.review-header h4 { color: white; margin-bottom: 2px; font-family: 'DM Sans', serif; font-size: 16px; }
.reviewer-loc { font-size: 13px; color: rgba(255,255,255,0.5); }
.stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.review-card > p { color: rgba(255,255,255,0.8); font-size: 15px; }
.rating-bar {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.rating-bar img { max-width: 200px; margin: 0 auto; }
.rating-bar p { color: rgba(255,255,255,0.7); }
@media (min-width: 576px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* === PRICING === */
.pricing { background: var(--bg-light); }
.pricing-2 { background: white; }
.countdown-wrapper {
  text-align: center;
  margin-bottom: 40px;
}
.countdown-wrapper > p { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-dark);
  padding: 16px 28px;
  border-radius: 12px;
}
.count-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}
.count-block span {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.count-block label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.count-sep { font-size: 36px; color: var(--accent); font-weight: 700; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.price-card {
  background: white;
  border: 2px solid rgba(15,118,110,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.popular {
  border-color: var(--primary);
  background: linear-gradient(160deg, #f0fdfa 0%, #fff 100%);
  box-shadow: var(--shadow-md);
}
.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.price-card h3 { font-family: 'DM Sans', sans-serif; font-size: 24px; margin-bottom: 4px; }
.supply { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.price-card > img { margin: 0 auto 16px; max-height: 160px; object-fit: contain; }
.price-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 12px; }
.badge-green { background: #DCFCE7; color: #16A34A; padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; }
.badge-blue { background: #DBEAFE; color: #2563EB; padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; }
.price-block { margin: 16px 0; }
.old-price { font-size: 18px; color: var(--text-light); text-decoration: line-through; display: block; }
.new-price { font-family: 'Playfair Display', serif; font-size: 42px; color: var(--primary-dark); font-weight: 700; display: block; line-height: 1.1; }
.per-bottle { font-size: 14px; color: var(--text-light); }
.price-btn { width: 100%; margin-bottom: 12px; min-height: 52px; font-size: 15px; }
.payment-logos { max-width: 180px; margin: 0 auto; opacity: 0.7; }
@media (min-width: 576px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

/* === BONUS === */
.bonus-section { background: var(--bg-mid); }
.bonus-section .section-header h2 { color: white; }
.bonus-section .section-header p { color: rgba(255,255,255,0.6); }
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.bonus-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.bonus-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.bonus-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.bonus-card img { margin: 0 auto 20px; max-height: 140px; object-fit: contain; }
.bonus-card h3 { color: white; margin-bottom: 12px; }
.bonus-card p { color: rgba(255,255,255,0.7); font-size: 15px; }
@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }

/* === INGREDIENTS === */
.ingredients { background: white; }
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.ingredient-card {
  background: var(--bg-light);
  border: 1px solid rgba(15,118,110,0.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.ingredient-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ing-icon { font-size: 32px; margin-bottom: 12px; }
.ingredient-card h3 { color: var(--primary-dark); margin-bottom: 8px; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.ingredient-card p { font-size: 15px; }
@media (min-width: 576px) { .ingredients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ingredients-grid { grid-template-columns: repeat(3, 1fr); } }

/* === SCIENCE === */
.science { background: var(--bg-light); }

/* === GUARANTEE === */
.guarantee { background: white; }

/* === GUARANTEE POINTS === */
.guarantee-points { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
.guar-item { display: flex; gap: 16px; align-items: flex-start; }
.guar-icon { font-size: 28px; flex-shrink: 0; }
.guar-item h4 { margin-bottom: 6px; color: var(--primary-dark); }
.guar-item p { font-size: 15px; }

/* === BENEFITS === */
.benefits { background: var(--bg-light); }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.benefit-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.benefit-check { font-size: 22px; flex-shrink: 0; }
.benefit-item h4 { margin-bottom: 6px; color: var(--primary-dark); }
.benefit-item p { font-size: 15px; }
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }

/* === FINAL CTA === */
.final-cta {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(20,184,166,0.15) 0%, transparent 60%);
}
.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.final-cta-img { max-width: 280px; filter: drop-shadow(0 20px 40px rgba(20,184,166,0.3)); animation: floatBottle 4s ease-in-out infinite; }
.final-cta-content { color: white; }
.urgency-badge {
  display: inline-block;
  background: rgba(245,158,11,0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.final-cta-content h2 { color: white; margin-bottom: 16px; }
.final-cta-content > p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.price-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}
.final-old-price { font-size: 18px; color: rgba(255,255,255,0.5); text-decoration: line-through; }
.final-new-price { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--accent); }
.final-trust img { max-width: 240px; margin: 16px auto 0; opacity: 0.6; }
@media (min-width: 768px) {
  .final-cta-inner { flex-direction: row; text-align: left; }
  .final-cta-img { max-width: 320px; }
  .price-display { align-items: flex-start; }
  .final-trust img { margin: 16px 0 0; }
}

/* === FOOTER === */
.site-footer { background: #060F1E; color: rgba(255,255,255,0.7); padding: 60px 0 20px; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { width: 50px; height: 50px; object-fit: contain; }
.footer-brand h3 { color: white; font-family: 'Playfair Display', serif; }
.footer-brand p { font-size: 14px; line-height: 1.6; }
.footer-links, .footer-legal-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-legal-links-col h4 { color: white; font-family: 'DM Sans', sans-serif; margin-bottom: 4px; }
.footer-links a, .footer-legal-links-col a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover, .footer-legal-links-col a:hover { color: var(--primary-light); }
.footer-social { display: flex; gap: 12px; justify-content: center; margin-bottom: 32px; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-icon:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.footer-disclaimer {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
}
.footer-disclaimer p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; }
.footer-legal-links a { font-size: 12px; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-legal-links a:hover { color: var(--primary-light); }
.footer-legal-links span { color: rgba(255,255,255,0.2); }
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr; }
  .footer-social { justify-content: flex-start; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* === PURCHASE NOTIFICATION === */
.notif-popup {
  position: fixed;
  bottom: 20px;
  left: 16px;
  z-index: 9999;
  display: none;
  animation: slideInLeft 0.4s ease;
  max-width: calc(100vw - 32px);
}
@keyframes slideInLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.notif-inner {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--primary);
  max-width: 320px;
}
.notif-inner img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.notif-text { flex: 1; }
.notif-text strong { font-size: 14px; display: block; }
.notif-text span { font-size: 12px; color: var(--text-light); }
.notif-text p { font-size: 13px; color: var(--text-mid); margin: 0; }
.notif-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-light);
  min-width: 24px;
  min-height: 24px;
  padding: 0;
}

/* === EXIT POPUP === */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-popup-overlay.show { display: flex; }
.exit-popup {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: popIn 0.3s ease;
}
@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.exit-popup-close {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.1);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-popup-content { text-align: center; }
.exit-popup-content img { max-width: 160px; margin: 0 auto 16px; }
.exit-popup-content h3 { margin-bottom: 12px; color: var(--text-dark); }
.exit-popup-content p { margin-bottom: 20px; color: var(--text-mid); }
.exit-popup-content .btn-primary { width: 100%; }

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 16px;
  width: 56px; height: 56px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 999;
  transition: var(--transition);
}
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }
.scroll-top.show { display: flex; }

/* === AOS ANIMATIONS === */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos].aos-animate { opacity: 1; transform: none; }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="50"] { transition-delay: 0.05s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="250"] { transition-delay: 0.25s; }

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

/* === MOBILE RESPONSIVE === */
@media (max-width: 575px) {
  .container { padding: 0 16px; }
  .hero-bottle { width: 180px; }
  .count-block span { font-size: 32px; }
  .count-block { min-width: 48px; }
  .btn-large { font-size: 17px; padding: 16px 24px; }
}
