/* ============================================================
   MemoPryl — styles.css
   Design: Medical-Premium with Deep Navy + Electric Teal + Gold
   Fonts: Montserrat (headings) + Open Sans (body)
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0A1628;
  --accent: #00D4AA;
  --accent2: #1E6FFF;
  --gold: #F4B942;
  --white: #FFFFFF;
  --light: #F0F6FF;
  --text: #1A2A3A;
  --text-muted: #5A6A7A;
  --card-bg: #FFFFFF;
  --shadow: 0 8px 40px rgba(0,30,80,0.12);
  --shadow-lg: 0 20px 60px rgba(0,30,80,0.18);
  --radius: 18px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --gradient: linear-gradient(135deg, #0A1628 0%, #1E3A5F 50%, #0D2B45 100%);
  --accent-gradient: linear-gradient(135deg, #00D4AA, #1E6FFF);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
* { -webkit-tap-highlight-color: transparent; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  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, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}
.section-title {
  font-size: clamp(22px, 4vw, 36px);
  color: var(--primary);
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 48px;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0,212,170,0.35); }
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent-gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30,111,255,0.3);
}
.btn-hero {
  background: linear-gradient(135deg, #F4B942, #FF6B2B);
  color: var(--white);
  font-size: 18px;
  padding: 18px 36px;
  box-shadow: 0 8px 30px rgba(244,185,66,0.4);
}
.btn-nav {
  background: var(--accent-gradient);
  color: var(--white);
  font-size: 14px;
  padding: 10px 22px;
}
.pulse-btn { animation: pulseCTA 2.5s infinite; }
@keyframes pulseCTA {
  0%,100% { box-shadow: 0 8px 30px rgba(244,185,66,0.4); }
  50% { box-shadow: 0 8px 50px rgba(244,185,66,0.7), 0 0 0 10px rgba(244,185,66,0.1); }
}
.atc-icon { width: 20px; height: 20px; object-fit: contain; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,212,170,0.15);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10,22,40,0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
}
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 14px;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width: 100%; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.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 {
  display: none;
  flex-direction: column;
  padding: 0 20px 20px;
  gap: 10px;
  background: rgba(10,22,40,0.99);
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition);
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-link {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-cta { margin-top: 10px; width: 100%; }

/* ===== HERO SECTION ===== */
.hero {
  background: var(--gradient);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,170,0.3), transparent);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow {
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,212,170,0.3), transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}
.hero-bottle {
  max-width: 320px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0,212,170,0.4));
  position: relative;
  z-index: 2;
}
.floating { animation: floatBottle 4s ease-in-out infinite; }
@keyframes floatBottle {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-18px) rotate(1deg); }
  66% { transform: translateY(-8px) rotate(-0.5deg); }
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-block;
  background: rgba(0,212,170,0.15);
  border: 1px solid rgba(0,212,170,0.4);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: clamp(26px, 4.5vw, 52px);
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero-desc {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
  line-height: 1.8;
}
.hero-stars {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-stars span { color: rgba(255,255,255,0.7); }
.btn-hero.pulse-btn { margin-bottom: 16px; }
.hero-guarantee {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ===== WHY CHOOSE ===== */
.why-choose {
  background: var(--light);
  padding: 80px 0;
}
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.badge-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--accent);
}
.badge-card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: var(--shadow-lg);
}
.badge-icon { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 16px; }
.badge-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}
.badge-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== WHAT IS ===== */
.what-is { padding: 80px 0; background: var(--white); }
.what-is-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.what-is-text h2 { text-align: left; margin-bottom: 20px; }
.what-is-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.what-is-text .btn { margin-top: 12px; }
.what-is-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--light); padding: 80px 0; }
.accordion-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.science-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.accordion-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 16px rgba(0,30,80,0.07);
  overflow: hidden;
  border: 1px solid rgba(0,212,170,0.15);
}
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
  min-height: 48px;
  transition: background var(--transition);
}
.accordion-header:hover { background: var(--light); }
.accordion-icon { font-size: 22px; font-weight: 400; color: var(--accent); flex-shrink: 0; transition: transform var(--transition); }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion-item.open .accordion-body { max-height: 400px; }
.accordion-body p { padding: 0 24px 20px; color: var(--text-muted); font-size: 15px; line-height: 1.8; }

/* ===== REVIEWS ===== */
.reviews { background: var(--white); padding: 80px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.review-top { display: flex; gap: 16px; align-items: center; margin-bottom: 16px; }
.review-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 3px solid var(--accent); }
.review-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: var(--primary); }
.review-location { font-size: 13px; color: var(--text-muted); }
.review-stars { font-size: 16px; margin-top: 2px; }
.review-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* ===== PRICING ===== */
.pricing { background: var(--gradient); padding: 80px 0; }
.pricing .section-title { color: var(--white); }
.pricing .section-subtitle { color: rgba(255,255,255,0.7); }
.pricing-2 { background: var(--light); }
.pricing-2 .section-title { color: var(--primary); }
.pricing-2 .section-subtitle { color: var(--text-muted); }
.countdown-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  gap: 8px;
}
.countdown-label { color: var(--gold); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; }
.pricing-2 .countdown-label { color: var(--accent2); }
.countdown-timer { display: flex; align-items: center; gap: 10px; }
.timer-block {
  background: rgba(0,0,0,0.3);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  min-width: 80px;
}
.pricing-2 .timer-block { background: var(--white); border-color: var(--accent2); }
.timer-block span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}
.pricing-2 .timer-block span { color: var(--accent2); }
.timer-block small { font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 700; letter-spacing: 1px; }
.pricing-2 .timer-block small { color: var(--text-muted); }
.timer-sep { font-size: 40px; font-weight: 900; color: var(--gold); line-height: 1; }
.pricing-2 .timer-sep { color: var(--accent2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(10px);
}
.pricing-2 .price-card { background: var(--white); border-color: rgba(0,212,170,0.2); box-shadow: var(--shadow); }
.price-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.price-card.popular {
  background: rgba(0,212,170,0.12);
  border: 2px solid var(--accent);
  transform: scale(1.04);
}
.pricing-2 .price-card.popular {
  background: linear-gradient(135deg, rgba(0,212,170,0.05), rgba(30,111,255,0.05));
  border-color: var(--accent);
}
.popular-badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.price-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.price-qty { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; color: var(--white); margin-bottom: 4px; }
.pricing-2 .price-qty { color: var(--primary); }
.price-supply { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.pricing-2 .price-supply { color: var(--text-muted); }
.price-img { max-height: 160px; object-fit: contain; margin: 0 auto 20px; }
.price-amount { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 32px; color: var(--white); }
.pricing-2 .price-amount { color: var(--primary); }
.old-price { text-decoration: line-through; font-size: 18px; color: rgba(255,255,255,0.5); margin-right: 6px; }
.pricing-2 .old-price { color: var(--text-muted); }
.price-per { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.pricing-2 .price-per { color: var(--text-muted); }
.badge-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.mini-badge {
  background: rgba(0,212,170,0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.price-card .btn { width: 100%; margin-bottom: 14px; }
.cards-img { max-height: 28px; object-fit: contain; margin: 0 auto; }
.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}
.pricing-2 .rating-row { color: var(--primary); }
.rating-row img { max-height: 32px; }

/* ===== BONUS ===== */
.bonus { background: var(--white); padding: 80px 0; }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.bonus-card {
  display: flex;
  gap: 24px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--accent);
  transition: transform var(--transition);
}
.bonus-card:hover { transform: translateY(-5px); }
.bonus-card img { width: 120px; min-width: 120px; height: 140px; object-fit: cover; border-radius: var(--radius-sm); }
.bonus-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.bonus-info h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
.bonus-info p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== INGREDIENTS ===== */
.ingredients { background: var(--light); padding: 80px 0; }
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ingredient-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--accent);
}
.ingredient-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ing-icon { font-size: 36px; margin-bottom: 14px; }
.ingredient-card h3 { font-size: 17px; color: var(--primary); margin-bottom: 10px; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.ingredient-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

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

/* ===== GUARANTEE ===== */
.guarantee { background: var(--light); padding: 80px 0; }
.guarantee-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
}
.guarantee-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 250px;
  margin: 0 auto;
}
.guarantee-content h2 { text-align: left; margin-bottom: 16px; }
.guarantee-content > p { color: var(--text-muted); margin-bottom: 28px; }
.guarantee-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(0,30,80,0.06);
}
.gp-icon { font-size: 28px; flex-shrink: 0; }
.guarantee-point h3 { font-size: 17px; color: var(--primary); margin-bottom: 6px; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.guarantee-point p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.guarantee-content .btn { margin-top: 12px; }

/* ===== BENEFITS ===== */
.benefits { background: var(--primary); padding: 80px 0; }
.benefits .section-title { color: var(--white); }
.benefits .section-subtitle { color: rgba(255,255,255,0.6); }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid rgba(0,212,170,0.2);
  transition: background var(--transition), transform var(--transition);
}
.benefit-item:hover { background: rgba(0,212,170,0.1); transform: translateX(6px); }
.benefit-check { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.benefit-item h3 { font-size: 16px; color: var(--white); margin-bottom: 6px; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.benefit-item p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ===== FAQ ===== */
.faq { background: var(--light); padding: 80px 0; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  padding: 80px 0;
  background: var(--gradient);
  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='%2300D4AA' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.final-cta-container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.final-img-wrap { display: flex; justify-content: center; align-items: center; }
.final-img {
  max-width: 340px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0,212,170,0.3));
  animation: floatBottle 4s ease-in-out infinite;
}
.final-title { font-size: clamp(24px, 3.5vw, 38px); color: var(--white); margin-bottom: 20px; }
.final-desc { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 16px; line-height: 1.8; }
.final-price { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.final-old { font-size: 16px; color: rgba(255,255,255,0.5); }
.final-new { font-size: 28px; font-family: 'Montserrat', sans-serif; font-weight: 900; color: var(--gold); }
.btn-final { font-size: 18px; padding: 20px 40px; width: 100%; max-width: 460px; }
.final-note { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.6); }

/* ===== FOOTER ===== */
.footer { background: #040D1A; padding: 60px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-logo img { width: 36px; border-radius: 8px; object-fit: cover; }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 20px; }
.social-icons { display: flex; gap: 12px; }
.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);
  font-size: 14px; font-weight: 700;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-icon:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--white); margin-bottom: 16px; font-size: 16px; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.legal-link { font-size: 13px !important; }
.link-separator { color: rgba(255,255,255,0.3); }
.footer-disclaimer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  line-height: 1.7;
}
.footer-copyright { text-align: center; color: rgba(255,255,255,0.35); font-size: 13px; }
.footer-copyright a { color: var(--accent); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: var(--accent-gradient);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(30,111,255,0.35);
  transition: all var(--transition);
  z-index: 999;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-3px) scale(1.1); }

/* ===== NOTIFICATION POPUP ===== */
.notif-popup {
  position: fixed;
  bottom: 20px; left: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  padding: 14px 18px;
  max-width: 300px;
  z-index: 998;
  display: none;
  border-left: 4px solid var(--accent);
  animation: slideInLeft 0.4s ease;
}
.notif-popup.show { display: block; }
@keyframes slideInLeft {
  from { transform: translateX(-120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.notif-content { display: flex; align-items: center; gap: 12px; }
.notif-avatar { font-size: 28px; }
.notif-text { flex: 1; font-size: 13px; color: var(--text); }
.notif-text strong { color: var(--primary); }
.notif-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  flex-shrink: 0;
}
.notif-close:hover { color: var(--primary); }

/* ===== EXIT POPUP ===== */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.exit-popup-overlay.show { display: flex; }
.exit-popup {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.exit-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-emoji { font-size: 48px; margin-bottom: 16px; }
.exit-popup h3 { font-size: 24px; color: var(--primary); margin-bottom: 12px; font-family: 'Montserrat', sans-serif; font-weight: 800; }
.exit-popup p { color: var(--text-muted); margin-bottom: 24px; font-size: 16px; }
.exit-btn { width: 100%; font-size: 17px; padding: 18px; margin-bottom: 12px; }
.exit-note { font-size: 13px; color: var(--text-muted); }

/* ===== FADE-UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.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; }

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

@media (max-width: 768px) {
  /* Nav */
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  /* Hero */
  .hero { padding: 100px 0 50px; }
  .hero-container { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-bottle { max-width: 220px; }
  .hero-glow { width: 250px; height: 250px; }
  .hero-stars { justify-content: center; }
  .hero-guarantee { text-align: center; }
  /* Sections */
  .what-is-container { grid-template-columns: 1fr; gap: 30px; }
  .what-is-text h2 { text-align: center; }
  .what-is-text .btn { display: block; text-align: center; }
  .what-is-image { order: -1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 30px; }
  .price-card.popular { transform: none; }
  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-card { flex-direction: column; }
  .bonus-card img { width: 100%; height: 200px; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .guarantee-container { grid-template-columns: 1fr; gap: 30px; }
  .guarantee-image { order: -1; text-align: center; }
  .guarantee-content h2 { text-align: center; }
  .guarantee-content .btn { display: block; text-align: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .final-cta-container { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .final-img { max-width: 250px; margin: 0 auto; }
  .final-title { text-align: center; }
  .btn-final { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .social-icons { justify-content: center; }
  .footer-legal-links { justify-content: center; }
  /* Timers */
  .timer-block span { font-size: 36px; }
  .timer-block { min-width: 70px; padding: 12px 18px; }
}

@media (max-width: 576px) {
  .section-title { font-size: 22px; }
  .badges-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .timer-block span { font-size: 32px; }
  .scroll-top { bottom: 16px; right: 16px; }
  .notif-popup { max-width: calc(100vw - 40px); }
}

@media (min-width: 576px) and (max-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid .price-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
}

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