/* ===== MEMOCEPT STYLES — Medical Professional + Luxury Hybrid ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #3c064e;
  --primary-light: #6d1a8a;
  --accent: #c084fc;
  --accent2: #d8b4fe;
  --gold: #d4af37;
  --gradient: linear-gradient(135deg, #9449b5 0%, #a855f7 50%, #c084fc 100%);
  --gradient-btn: linear-gradient(135deg, #9449b5, #c084fc);
  --gradient-hero: linear-gradient(135deg, #5d2d73 0%, #9449b5 50%, #b06cd0 100%);
  --white: #ffffff;
  --off-white: #f8faff;
  --gray-light: #e8eef7;
  --gray: #64748b;
  --dark: #0f172a;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --card-shadow: 0 4px 24px rgba(60,6,78,0.10);
  --card-shadow-hover: 0 12px 40px rgba(60,6,78,0.22);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ===== 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);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-pad { padding: 80px 0; }
.bg-alt { background: var(--off-white); }
.gradient-text {
  color: #3c064e;
  -webkit-text-fill-color: #3c064e;
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-header p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg,#f3e8ff,#ede9fe);
  color: var(--primary-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.strike {
  text-decoration: line-through;
  color: var(--gray);
  font-weight: 400;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  min-height: 48px;
  text-align: center;
  letter-spacing: 0.3px;
}
.btn:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(60,6,78,0.35); }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--gradient-btn); color: var(--white); }
.btn-nav { background: var(--gradient-btn); color: var(--white); padding: 10px 24px; font-size: 14px; }
.btn-hero {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: var(--white);
  font-size: clamp(15px, 2vw, 18px);
  padding: 18px 40px;
  border-radius: 50px;
  box-shadow: 0 6px 30px rgba(239,68,68,0.35);
  animation: pulseBtn 2.5s infinite;
  width: 100%;
  max-width: 460px;
}
.btn-order {
  background: var(--gradient-btn);
  color: var(--white);
  width: 100%;
  margin: 12px 0 8px;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: 10px;
}
.btn-popular { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.btn-final {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: var(--white);
  font-size: clamp(16px, 2.5vw, 20px);
  padding: 20px 48px;
  border-radius: 50px;
  box-shadow: 0 8px 35px rgba(239,68,68,0.40);
  animation: pulseBtn 2.5s infinite;
  width: 100%;
  max-width: 500px;
}
@keyframes pulseBtn {
  0%,100% { box-shadow: 0 6px 30px rgba(239,68,68,0.35); }
  50% { box-shadow: 0 10px 45px rgba(239,68,68,0.60); transform: scale(1.02); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(60,6,78,0.08);
  transition: var(--transition);
  padding: 12px 0;
}
.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(60,6,78,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 22px;
  color: #3c064e;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-link:hover { background: var(--gray-light); color: var(--primary-light); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  background: var(--gradient-hero);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  background: rgba(60,6,78,0.15);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(60,6,78,0.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}
.hero-bottle {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(60,6,78,0.4));
  animation: bottleFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes bottleFloat {
  0%,100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
.hero-badge-float {
  position: absolute;
  top: 10px; right: 0;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(245,158,11,0.5);
  animation: badgeBounce 2s ease-in-out infinite;
  z-index: 3;
}
@keyframes badgeBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-tag {
  display: inline-block;
  background: rgba(60,6,78,0.15);
  border: 1px solid rgba(60,6,78,0.4);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero-h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-p {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  line-height: 1.75;
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 28px;
}
.hero-stars span { color: rgba(255,255,255,0.8); }
.hero-guarantee {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}
.why-card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: var(--card-shadow-hover);
}
.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon img { width: 100%; height: 100%; object-fit: cover; }
.why-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== WHAT IS ===== */
.what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.what-image img {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(60,6,78,0.15);
  width: 100%;
}
.what-content h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}
.what-content p {
  font-size: clamp(14px, 1.6vw, 16px);
  color: #334155;
  margin-bottom: 16px;
  line-height: 1.75;
}

/* ===== ACCORDION (HOW IT WORKS + SCIENCE) ===== */
.accordion-list, .science-list, .faq-list { display: flex; flex-direction: column; gap: 12px; }
.acc-item, .science-item, .faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--gray-light);
  overflow: hidden;
}
.acc-header, .sci-header, .faq-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  min-height: 56px;
}
.acc-header:hover, .sci-header:hover, .faq-header:hover { background: var(--off-white); }
.acc-icon { font-size: 20px; flex-shrink: 0; }
.acc-arrow { margin-left: auto; font-size: 12px; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; }
.acc-item.active .acc-arrow, .science-item.open .acc-arrow, .faq-item.open .acc-arrow { transform: rotate(180deg); }
.acc-body, .sci-body, .faq-body {
  display: none;
  padding: 0 24px 20px;
}
.acc-item.active .acc-body, .science-item.open .sci-body, .faq-item.open .faq-body { display: block; }
.acc-body p, .sci-body p, .faq-body p {
  font-size: clamp(14px, 1.5vw, 15px);
  color: #475569;
  line-height: 1.75;
}
.sci-header, .faq-header { justify-content: space-between; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  flex-shrink: 0;
}
.review-top strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  display: block;
}
.review-location { font-size: 13px; color: var(--gray); }
.stars { font-size: 16px; margin-top: 4px; }
.review-card p { font-size: 14px; color: #475569; line-height: 1.7; }
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.overall-rating img { max-height: 30px; width: auto; }
.overall-rating span { font-family: var(--font-heading); font-weight: 700; color: var(--primary); font-size: 15px; }

/* ===== PRICING ===== */
.countdown-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.countdown-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
}
.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cd-block {
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  padding: 12px 18px;
  text-align: center;
  min-width: 64px;
}
.cd-block span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1;
}
.cd-block small {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 1px;
  opacity: 0.75;
  margin-top: 4px;
  display: block;
}
.cd-sep { font-family: var(--font-heading); font-weight: 900; font-size: 28px; color: var(--primary); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--card-shadow);
  border: 2px solid var(--gray-light);
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow-hover); }
.price-card.popular {
  border-color: var(--accent);
  background: linear-gradient(180deg, #f9f0ff 0%, #fff 100%);
  transform: scale(1.04);
}
.price-card.popular:hover { transform: scale(1.04) translateY(-8px); }
.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.price-label {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 6px;
}
.price-bottles {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 4px;
}
.price-supply {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 16px;
}
.price-img {
  max-height: 150px;
  width: auto;
  margin: 0 auto 16px;
  object-fit: contain;
}
.price-amount {
  font-size: 28px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.price-amount strong { color: var(--success); font-family: var(--font-heading); font-weight: 900; font-size: 34px; }
.price-per { font-size: 13px; color: var(--primary-light); font-weight: 600; margin-bottom: 10px; }
.price-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 4px;
}
.price-badges span {
  background: linear-gradient(135deg, #f3e8ff, #ede9fe);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 50px;
}
.atc-img { max-height: 24px; width: auto; display: inline; }
.cards-img { max-height: 28px; width: auto; margin: 6px auto 0; }
.price-stars { text-align: center; margin-top: 32px; }
.price-stars img { max-height: 35px; width: auto; margin: 0 auto; }

/* ===== BONUSES ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.bonus-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--gray-light);
  text-align: center;
  transition: var(--transition);
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.bonus-num {
  display: inline-block;
  background: var(--gradient);
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.bonus-card img { max-height: 200px; width: auto; margin: 0 auto 18px; border-radius: 10px; }
.bonus-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--primary);
  margin-bottom: 12px;
}
.bonus-card p { font-size: 14px; color: #475569; line-height: 1.7; margin-bottom: 14px; }
.bonus-value { font-family: var(--font-heading); font-size: 15px; color: var(--success); font-weight: 700; }
.bonus-value .strike { color: var(--gray); font-weight: 400; margin-right: 6px; }

/* ===== INGREDIENTS ===== */
.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ing-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.ing-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); border-color: var(--accent); }
.ing-icon { font-size: 32px; margin-bottom: 12px; }
.ing-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 10px;
}
.ing-card p { font-size: 13px; color: #475569; line-height: 1.65; margin-bottom: 10px; }
.ing-benefit {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 50px;
}

/* ===== GUARANTEE ===== */
.guarantee-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}
.guarantee-image img {
  max-width: 300px;
  width: 100%;
  filter: drop-shadow(0 10px 30px rgba(60,6,78,0.15));
}
.guarantee-content h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--primary);
  margin-bottom: 28px;
  line-height: 1.2;
}
.guarantee-point {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.gp-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.guarantee-point h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 6px;
}
.guarantee-point p { font-size: 14px; color: #475569; line-height: 1.7; }

/* ===== BENEFITS ===== */
.benefits-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.benefits-img img {
  max-width: 300px;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(60,6,78,0.15);
}
.benefit-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.benefit-check { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.benefit-item h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 6px;
}
.benefit-item p { font-size: 14px; color: #475569; line-height: 1.7; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  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='%2306b6d4' fill-opacity='0.05'%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-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.final-content { text-align: center; }
.final-content h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 46px);
  color: var(--white);
  margin-bottom: 8px;
}
.final-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--accent);
  margin-bottom: 16px;
}
.final-content p {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.final-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}
.final-strike { font-size: 18px; color: rgba(255,255,255,0.5); }
.final-special {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(22px, 3.5vw, 36px);
  color: var(--gold);
}
.final-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.final-trust span {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 5px;
}
.final-img img {
  max-width: 320px;
  filter: drop-shadow(0 20px 50px rgba(60,6,78,0.35));
  animation: bottleFloat 4s ease-in-out infinite;
}
.floating-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(60,6,78,0.06);
  animation: shapeDrift linear infinite;
}
.s1 { width: 300px; height: 300px; top: -100px; left: -80px; animation-duration: 15s; }
.s2 { width: 200px; height: 200px; bottom: -60px; right: 10%; animation-duration: 20s; animation-direction: reverse; }
.s3 { width: 150px; height: 150px; top: 50%; right: -50px; animation-duration: 12s; }
@keyframes shapeDrift {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(30px,20px) rotate(120deg); }
  66% { transform: translate(-20px,30px) rotate(240deg); }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 12px; color: rgba(255,255,255,0.6); }
.footer-links-col h4, .footer-social h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.legal-link {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  transition: var(--transition);
}
.legal-link:hover { color: var(--accent); }
.link-separator { color: rgba(255,255,255,0.3); }
.social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  min-width: 44px;
  min-height: 44px;
}
.social-icon:hover { background: var(--accent); color: var(--white); }
.social-icon svg { width: 18px; height: 18px; }
.footer-disclaimer {
  padding: 24px 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-copy {
  background: rgba(0,0,0,0.3);
  padding: 16px 20px;
}
.footer-copy p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.footer-copy a { color: var(--accent); }

/* ===== PURCHASE POPUP ===== */
.purchase-popup {
  position: fixed;
  bottom: 20px; left: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  max-width: 320px;
  border-left: 4px solid var(--success);
  transform: translateX(-400px);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.purchase-popup.show { transform: translateX(0); }
.popup-img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.popup-text { font-size: 13px; color: var(--dark); flex: 1; line-height: 1.4; }
.popup-text strong { display: block; color: var(--primary); font-family: var(--font-heading); }
.popup-close { background: none; border: none; cursor: pointer; color: var(--gray); font-size: 16px; padding: 4px; min-width: 28px; min-height: 28px; display: flex; align-items: center; justify-content: center; }

/* ===== EXIT POPUP ===== */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-overlay.show { display: flex; }
.exit-popup {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.exit-close {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gray-light);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  cursor: pointer;
  font-size: 14px;
  min-width: 44px; min-height: 44px;
}
.exit-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.exit-popup h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 10px;
}
.exit-popup p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 22px;
  line-height: 1.6;
}
.exit-cta {
  display: inline-flex;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  min-height: 48px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.exit-cta:hover { transform: scale(1.03); box-shadow: 0 8px 30px rgba(239,68,68,0.4); }
.exit-small { font-size: 12px; color: var(--gray); margin-top: 12px; margin-bottom: 0; }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(60,6,78,0.35);
  transition: var(--transition);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}
.scroll-top.show { display: flex; }
.scroll-top:hover { transform: translateY(-4px) scale(1.1); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ===== RESPONSIVE — TABLET (768px) ===== */
@media (max-width: 991px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .ing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.popular { transform: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .what-inner { grid-template-columns: 1fr; gap: 40px; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-image { text-align: center; }
  .guarantee-image img { margin: 0 auto; }
  .guarantee-point { text-align: left; }
  .benefits-wrap { grid-template-columns: 1fr; }
  .benefits-img { display: none; }
  .final-inner { grid-template-columns: 1fr; text-align: center; }
  .final-img { display: none; }
}

/* ===== RESPONSIVE — MOBILE (768px) ===== */
@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 40px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    z-index: 999;
    gap: 6px;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; animation: slideInRight 0.3s ease; }
  @keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
  .nav-link { font-size: 16px; padding: 14px 12px; width: 100%; border-radius: 10px; }
  .btn-nav { width: 100%; text-align: center; margin-top: 12px; }
  .hamburger { display: flex; }
  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-bottle { max-width: 260px; }
  .hero-glow { width: 240px; height: 240px; }
  .hero-badge-float { right: 50%; transform: translateX(50%); top: -20px; }
  .hero-stars { justify-content: center; }
  .btn-hero { max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .bonus-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-disclaimer { font-size: 12px; }
  .purchase-popup { left: 12px; right: 12px; max-width: none; bottom: 12px; }
  .countdown-wrap { flex-direction: column; gap: 12px; }
  .acc-header, .sci-header, .faq-header { font-size: 14px; padding: 16px 18px; }
  .cd-block { min-width: 70px; padding: 14px 20px; }
  .cd-block span { font-size: 28px; }
}

/* ===== RESPONSIVE — SMALL PHONES (480px) ===== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-h1 { font-size: 24px; }
  .section-header h2 { font-size: 22px; }
  .final-content h2 { font-size: 24px; }
  .price-amount strong { font-size: 28px; }
}

/* ===== MOBILE OVERLAY FOR NAV ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.nav-overlay.show { display: block; }
