/* ===========================
   MEMO GENESIS - styles.css
   Design: Premium Medical Blue
   =========================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary: #0a2463;
  --primary-light: #1e40af;
  --accent: #3b82f6;
  --accent2: #06b6d4;
  --gold: #f59e0b;
  --green: #10b981;
  --red: #ef4444;
  --white: #ffffff;
  --bg: #f0f4ff;
  --bg2: #e8eeff;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(10,36,99,0.12);
  --shadow-lg: 0 8px 40px rgba(10,36,99,0.18);
  --radius: 16px;
  --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%; }
* { -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; }
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(24px, 5vw, 52px); }
h2 { font-size: clamp(20px, 4vw, 38px); }
h3 { font-size: clamp(16px, 2.5vw, 22px); }
p { margin-bottom: 0.9em; }
p:last-child { margin-bottom: 0; }

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

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(59,130,246,0.35);
  min-height: 52px;
  text-align: center;
  white-space: nowrap;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(59,130,246,0.5); }
.btn-primary:active { transform: scale(0.98); }
.btn-glow { animation: glowPulse 2s infinite; }
@keyframes glowPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(59,130,246,0.35); }
  50% { box-shadow: 0 4px 40px rgba(59,130,246,0.7), 0 0 60px rgba(6,182,212,0.3); }
}

/* ---------- SECTION HEADER ---------- */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 17px; max-width: 600px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-tag.urgent { background: linear-gradient(135deg, var(--red), var(--gold)); }

/* ---------- 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 var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
}
.nav-logo img { border-radius: 8px; }
.logo-accent { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 50px;
  transition: var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: var(--shadow); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-close {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  min-width: 44px;
  min-height: 44px;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 50%, #0369a1 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 3s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: scale(0.9); opacity: 0.6; }
  to { transform: scale(1.1); opacity: 1; }
}
.hero-bottle {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
  animation: heroFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(1deg); }
  66% { transform: translateY(-8px) rotate(-1deg); }
}
.hero-badge {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 50px;
  animation: badgePulse 2s infinite;
  z-index: 2;
}
@keyframes badgePulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.hero-content { color: white; }
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease both;
}
.hero-h1 {
  color: white;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-desc {
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin: 20px 0;
  animation: fadeInUp 0.8s ease 0.5s both;
}
.hero-stars span { color: rgba(255,255,255,0.8); }
.btn-hero {
  font-size: 18px;
  padding: 20px 40px;
  animation: fadeInUp 0.8s ease 0.6s both;
  background: linear-gradient(135deg, var(--gold), #d97706);
  box-shadow: 0 8px 30px rgba(245,158,11,0.5);
}
.btn-hero:hover { background: linear-gradient(135deg, #d97706, var(--gold)); box-shadow: 0 12px 40px rgba(245,158,11,0.7); }
.hero-guarantee {
  margin-top: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  animation: fadeInUp 0.8s ease 0.7s both;
}
.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ---------- WHY CHOOSE US ---------- */
.why-choose {
  background: var(--bg);
  padding: 80px 0;
}
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.badge-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.badge-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow-lg); }
.badge-icon { width: 80px; height: 80px; margin: 0 auto 20px; }
.badge-icon img { width: 100%; height: 100%; object-fit: contain; }
.badge-card h3 { font-size: 16px; margin-bottom: 12px; color: var(--primary); }
.badge-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ---------- WHAT IS ---------- */
.what-is {
  background: white;
  padding: 80px 0;
}
.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.what-is-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.what-is-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.what-is-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.what-is-content h2 { margin-bottom: 20px; }
.what-is-content p { color: var(--text-muted); font-size: 16px; margin-bottom: 18px; }
.what-is-content .btn-primary { margin-top: 12px; }

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  background: var(--bg);
  padding: 80px 0;
}
.accordion-wrap { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.accordion-item {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  min-height: 64px;
}
.accordion-header:hover { background: var(--bg); }
.acc-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--accent);
  min-width: 32px;
  background: var(--bg2);
  padding: 4px 8px;
  border-radius: 8px;
}
.acc-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  flex: 1;
}
.acc-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  transition: var(--transition);
  min-width: 24px;
  text-align: center;
}
.accordion-item.active .acc-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.accordion-item.active .accordion-body { max-height: 500px; }
.accordion-body p { padding: 0 24px 24px; color: var(--text-muted); font-size: 15px; line-height: 1.8; }

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

/* ---------- PRICING ---------- */
.pricing { background: var(--bg); padding: 80px 0; }
.pricing-2 { background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%); }
.pricing-2 .section-header h2 { color: white; }
.pricing-2 .section-header p { color: rgba(255,255,255,0.8); }

.countdown-wrap { text-align: center; margin-bottom: 40px; }
.countdown-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: var(--red); margin-bottom: 12px; }
.pricing-2 .countdown-label { color: var(--gold); }
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 16px 28px;
  border-radius: var(--radius);
  color: white;
}
.cd-box { display: flex; flex-direction: column; align-items: center; }
.cd-box span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1;
  min-width: 60px;
  text-align: center;
}
.cd-box small { font-size: 11px; letter-spacing: 1.5px; opacity: 0.8; margin-top: 4px; }
.cd-sep { font-size: 36px; font-weight: 900; opacity: 0.7; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}
.price-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card.popular {
  border-color: var(--accent);
  transform: scale(1.04);
  box-shadow: 0 12px 50px rgba(59,130,246,0.25);
}
.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, var(--accent), var(--accent2));
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 8px;
}
.price-qty { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; color: var(--primary); }
.price-supply { color: var(--text-muted); font-size: 13px; margin-bottom: 16px; }
.price-img { max-width: 180px; margin: 0 auto 20px; }
.price-amount { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-bottom: 4px; }
.price-old { font-size: 18px; color: var(--text-muted); text-decoration: line-through; }
.price-new { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 38px; color: var(--green); }
.price-per { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.price-badges { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.price-badges span {
  background: linear-gradient(135deg, var(--green), #059669);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
}
.btn-price { width: 100%; margin-bottom: 16px; }
.payment-logos { max-width: 200px; margin: 0 auto; }
.rating-img-wrap { text-align: center; }
.rating-img-wrap img { max-width: 250px; margin: 0 auto; }

/* ---------- BONUSES ---------- */
.bonuses { background: white; padding: 80px 0; }
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.bonus-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.bonus-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 5px 18px;
  border-radius: 20px;
}
.bonus-card img { max-width: 240px; margin: 0 auto 24px; border-radius: var(--radius); }
.bonus-card h3 { margin-bottom: 12px; color: var(--primary); }
.bonus-card p { color: var(--text-muted); font-size: 15px; }

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

/* ---------- SCIENCE ---------- */
.science { background: white; padding: 80px 0; }
.science-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.science-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}
.science-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.science-card h3 { font-size: 16px; color: var(--primary); margin-bottom: 12px; }
.science-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.sci-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 14px;
  letter-spacing: 0.5px;
}

/* ---------- GUARANTEE ---------- */
.guarantee {
  background: linear-gradient(135deg, var(--primary), #1e40af);
  padding: 80px 0;
  color: white;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 70px;
  align-items: center;
}
.guarantee-image img {
  max-width: 320px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.guarantee-content .section-tag { background: linear-gradient(135deg, var(--gold), #d97706); }
.guarantee-content h2 { color: white; margin-bottom: 32px; }
.guarantee-point {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.g-icon { font-size: 28px; min-width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.15); border-radius: 12px; }
.guarantee-point h3 { color: white; font-size: 17px; margin-bottom: 6px; }
.guarantee-point p { color: rgba(255,255,255,0.8); font-size: 15px; }
.guarantee-content .btn-primary { background: linear-gradient(135deg, var(--gold), #d97706); margin-top: 8px; }

/* ---------- BENEFITS ---------- */
.benefits { background: var(--bg); padding: 80px 0; }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.benefit-item {
  display: flex;
  gap: 18px;
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  align-items: flex-start;
}
.benefit-item:hover { transform: translateX(6px); border-color: var(--accent); }
.benefit-check { font-size: 24px; min-width: 32px; }
.benefit-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 6px; }
.benefit-item p { font-size: 14px; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq { background: white; padding: 80px 0; }
.faq-wrap { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.faq-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  transition: var(--transition);
  min-height: 64px;
}
.faq-header:hover { background: var(--bg2); }
.faq-icon { font-size: 22px; font-weight: 300; color: var(--accent); min-width: 24px; text-align: center; transition: var(--transition); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.active .faq-body { max-height: 400px; }
.faq-body p { padding: 0 24px 24px; color: var(--text-muted); font-size: 15px; line-height: 1.8; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #0369a1 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.final-cta-particles { position: absolute; inset: 0; pointer-events: none; }
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.final-cta-image { display: flex; justify-content: center; }
.final-bottle-img {
  max-width: 480px;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.4));
  animation: heroFloat 3s ease-in-out infinite;
}
.final-cta-content { color: white; }
.final-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.final-cta-content h2 { color: white; margin-bottom: 16px; font-size: clamp(22px, 4vw, 36px); }
.final-sub { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 24px; }
.final-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 16px 24px;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.final-old { color: rgba(255,255,255,0.6); font-size: 16px; }
.final-new { font-family: 'Montserrat', sans-serif; font-size: 28px; color: var(--gold); }
.btn-final {
  font-size: 20px;
  padding: 22px 40px;
  width: 100%;
  background: linear-gradient(135deg, var(--gold), #d97706);
  box-shadow: 0 8px 30px rgba(245,158,11,0.5);
  animation: glowPulse 2s infinite;
}
.final-trust {
  display: flex;
  gap: 20px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.final-trust span {
  color: rgba(255,255,255,0.8);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--primary);
  color: white;
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 12px;
}
.footer-brand img { border-radius: 8px; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-links-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 16px;
}
.footer-links-col a, .footer-legal-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  padding: 4px 0;
  transition: var(--transition);
}
.footer-links-col a:hover, .footer-legal-links a:hover { color: white; padding-left: 4px; }
.footer-social-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 16px;
}
.social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}
.social-icon:hover { background: var(--accent); transform: translateY(-3px); }
.footer-disclaimer {
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.footer-disclaimer p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: var(--accent2); }

/* ---------- POPUP ---------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,36,99,0.6);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.popup-overlay.show { opacity: 1; pointer-events: all; }
.popup-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 80px rgba(0,0,0,0.4);
  animation: popupIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes popupIn {
  from { transform: scale(0.7) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg);
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px 12px;
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.popup-close:hover { background: var(--accent); color: white; }
.popup-emoji { font-size: 52px; margin-bottom: 12px; }
.popup-box h3 { font-size: 22px; color: var(--primary); margin-bottom: 12px; }
.popup-box p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }
.popup-btn { width: 100%; font-size: 17px; }
.popup-note { margin-top: 14px !important; font-size: 13px !important; color: var(--text-muted) !important; }

/* ---------- NOTIFICATION ---------- */
.notif {
  position: fixed;
  bottom: -100px;
  left: 20px;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  max-width: 300px;
  transition: bottom 0.4s cubic-bezier(0.34,1.56,0.64,1);
  border-left: 4px solid var(--green);
}
.notif.show { bottom: 20px; }
.notif-icon { font-size: 28px; }
.notif-text { font-size: 13px; }
.notif-text strong { display: block; font-family: 'Montserrat', sans-serif; color: var(--primary); }
.notif-text span { color: var(--text-muted); }
.notif-text small { display: block; color: var(--gold); margin-top: 3px; }

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 998;
  box-shadow: var(--shadow);
}
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: scale(1.1); }

/* ---------- ANIMATION CLASSES ---------- */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].animated { opacity: 1; transform: translateY(0); }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- MOBILE STYLES ---------- */
@media (max-width: 1024px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .science-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 8px;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    z-index: 2000;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-close { display: flex; position: absolute; top: 16px; right: 16px; }
  .nav-link { font-size: 18px; padding: 10px 0; min-height: 48px; display: flex; align-items: center; }
  .nav-cta { width: 100%; justify-content: center; margin-top: 12px; }

  /* Hero */
  .hero-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-bottle { max-width: 240px; }
  .hero-glow { width: 280px; height: 280px; }
  .hero-stars { justify-content: center; }
  .btn-hero { width: 100%; font-size: 16px; padding: 18px 24px; }

  /* Sections */
  .badges-grid { grid-template-columns: 1fr 1fr; }
  .what-is-grid { grid-template-columns: 1fr; }
  .what-is-image { order: -1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: scale(1); }
  .bonus-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr 1fr; }
  .science-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; text-align: center; }
  .guarantee-image { justify-content: center; }
  .guarantee-image img { max-width: 220px; }
  .guarantee-point { text-align: left; }
  .benefits-grid { grid-template-columns: 1fr; }
  .final-cta-grid { grid-template-columns: 1fr; text-align: center; }
  .final-cta-image { order: -1; }
  .final-bottle-img { max-width: 300px; }
  .btn-final { font-size: 17px; padding: 20px 24px; }
  .final-trust { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .social-icons { justify-content: center; }
  .footer-legal-links { display: flex; flex-direction: column; align-items: center; }
  .cd-box span { font-size: 32px; }
  .notif { max-width: calc(100vw - 40px); left: 20px; right: 20px; }
}

@media (max-width: 576px) {
  .badges-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 50px; }
  section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  h2 { font-size: clamp(20px, 6vw, 32px); }
  .hero-h1 { font-size: clamp(22px, 7vw, 36px); }
}

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