/* ==============================
   VISUAL EASE — STYLES.CSS
   Design: Medical Professional + Premium Luxury Hybrid
   Colors: Deep Navy, Sky Blue, Gold Accent
   Fonts: Montserrat (headings) + Open Sans (body)
   ============================== */

/* === CSS VARIABLES === */
:root {
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;
  --accent: #d4af37;
  --accent-light: #fbbf24;
  --success: #10b981;
  --danger: #ef4444;
  --sky: #e0f2fe;
  --white: #ffffff;
  --off-white: #f0f9ff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --text: #1e293b;
  --text-light: #64748b;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(30,64,175,0.10);
  --shadow-lg: 0 8px 40px rgba(30,64,175,0.18);
  --shadow-card: 0 2px 16px rgba(30,64,175,0.08);
  --transition: all 0.3s cubic-bezier(.4,0,.2,1);
  --gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 60%, #06b6d4 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #fbbf24 100%);
  --section-pad: 80px 0;
}

/* === 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%;
}
body {
  font-family: 'Open Sans', 'Roboto', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
* { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.2; color: var(--gray-900); }

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

/* === GRADIENT TEXT === */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  min-height: 52px;
  gap: 2px;
  text-align: center;
  line-height: 1.3;
}
.btn:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }
.btn:active { transform: scale(0.98); }
.btn-sub { font-size: 0.72rem; font-weight: 500; opacity: 0.85; font-family: 'Open Sans', sans-serif; }

.btn-nav {
  background: var(--gradient);
  color: white;
  padding: 12px 24px;
  font-size: 0.9rem;
}
.btn-hero {
  background: var(--gradient-gold);
  color: #1a1a00;
  font-size: 1.1rem;
  padding: 18px 36px;
  box-shadow: 0 8px 32px rgba(212,175,55,0.35);
}
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow);
}
.btn-price {
  background: var(--gradient);
  color: white;
  width: 100%;
  margin: 12px 0 8px;
}
.btn-price-popular {
  background: var(--gradient-gold);
  color: #1a1a00;
  width: 100%;
  margin: 12px 0 8px;
  font-size: 1rem;
}
.btn-final {
  background: var(--gradient-gold);
  color: #1a1a00;
  font-size: 1.15rem;
  padding: 20px 40px;
  box-shadow: 0 8px 40px rgba(212,175,55,0.4);
}
.pulse-btn { animation: pulseShadow 2s infinite; }
@keyframes pulseShadow {
  0%,100% { box-shadow: 0 8px 32px rgba(212,175,55,0.35); }
  50% { box-shadow: 0 12px 48px rgba(212,175,55,0.65); }
}

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-tag {
  display: inline-block;
  background: var(--sky);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 16px rgba(30,64,175,0.08);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(30,64,175,0.15); }
.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: 1.4rem;
  color: var(--primary-dark);
}
.nav-logo img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.logo-accent { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-700);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--primary-light);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { transform: scaleX(1); }
.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: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* === HERO === */
.hero {
  position: relative;
  background: linear-gradient(160deg, #f0f9ff 0%, #e0f2fe 40%, #dbeafe 100%);
  padding: 120px 0 0;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 60px;
}
.hero-image-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img-glow {
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-bottle { position: relative; z-index: 2; max-width: 360px; filter: drop-shadow(0 24px 48px rgba(30,64,175,0.2)); }
.hero-badge {
  position: absolute;
  bottom: 20px; right: 0;
  background: var(--gradient-gold);
  color: #1a1a00;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(212,175,55,0.4);
  z-index: 3;
  white-space: nowrap;
}
.hero-tag {
  display: inline-block;
  background: white;
  border: 2px solid var(--primary-light);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.hero-h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.18;
}
.hero-para {
  font-size: 1.02rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin: 24px 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary);
}
.stat-label { font-size: 0.8rem; color: var(--text-light); font-weight: 600; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 600;
}
.hero-trust img { max-height: 32px; width: auto; }
.hero-wave { margin-top: -2px; }
.hero-wave svg { display: block; }

/* === FLOATING ANIMATION === */
@keyframes floating {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.floating { animation: floating 4s ease-in-out infinite; }

/* === WHY CHOOSE === */
.why-choose { background: var(--off-white); padding: var(--section-pad); }
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.badge-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.badge-card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.badge-icon-wrap {
  width: 80px; height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sky);
  display: flex; align-items: center; justify-content: center;
}
.badge-icon-wrap img { width: 64px; height: 64px; object-fit: contain; }
.badge-card h3 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}
.badge-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; }

/* === WHAT IS === */
.what-is { padding: var(--section-pad); }
.what-is-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.img-frame img { width: 100%; height: auto; }
.what-is-content { display: flex; flex-direction: column; gap: 16px; }
.what-is-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.what-is-content p { font-size: 0.98rem; color: var(--gray-600); line-height: 1.8; }

/* === HOW IT WORKS === */
.how-it-works { background: linear-gradient(160deg, #1e3a8a 0%, #1e40af 60%, #2563eb 100%); padding: var(--section-pad); }
.how-it-works .section-header h2 { color: white; }
.how-it-works .section-header p { color: rgba(255,255,255,0.7); }
.how-it-works .section-tag { background: rgba(255,255,255,0.15); color: white; }

/* === ACCORDION === */
.accordion-list { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.how-it-works .accordion-item.active { background: rgba(255,255,255,0.15); }
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  min-height: 48px;
  transition: var(--transition);
}
.acc-icon { font-size: 1.3rem; flex-shrink: 0; }
.acc-title {
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  line-height: 1.4;
}
.acc-chevron {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.accordion-item.active .acc-chevron { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1);
}
.accordion-item.active .accordion-body { max-height: 600px; }
.accordion-body p {
  padding: 0 22px 20px;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* === REVIEWS === */
.reviews { background: var(--off-white); padding: var(--section-pad); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.reviewer-photo {
  width: 60px; height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--primary-light);
}
.reviewer-photo img { width: 100%; height: 100%; object-fit: cover; }
.reviewer-name { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--gray-900); }
.reviewer-loc { font-size: 0.82rem; color: var(--text-light); margin-bottom: 4px; }
.stars { color: #f59e0b; font-size: 0.95rem; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; color: var(--gray-600); line-height: 1.75; font-style: italic; }
.rating-strip {
  text-align: center;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary-dark);
}
.rating-strip img { max-height: 36px; width: auto; }

/* === PRICING === */
.pricing { padding: var(--section-pad); background: white; }
.pricing2 { background: var(--off-white); }
.countdown-wrap {
  text-align: center;
  margin-bottom: 36px;
}
.countdown-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--danger);
  font-size: 1rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.time-block {
  background: var(--gray-900);
  color: white;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}
.time-block span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
}
.time-block small {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.time-sep { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2rem; color: var(--danger); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-card.popular {
  border-color: var(--accent);
  background: linear-gradient(160deg, #fefce8 0%, #fffbeb 100%);
  transform: scale(1.04);
}
.price-card.popular:hover { transform: scale(1.07) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-gold);
  color: #1a1a00;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(212,175,55,0.4);
}
.price-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.price-bottles {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--gray-900);
}
.price-supply { color: var(--text-light); font-size: 0.88rem; margin-bottom: 16px; }
.price-img-wrap { margin: 16px auto; width: 140px; }
.price-img-wrap img { max-height: 160px; width: auto; margin: 0 auto; object-fit: contain; }
.price-badges-row { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.mini-badge {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 50px;
}
.mini-badge.green { background: #dcfce7; color: #16a34a; }
.mini-badge.blue { background: #dbeafe; color: #1d4ed8; }
.price-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--primary-dark);
  margin: 8px 0;
}
.price-main span { font-size: 1rem; font-weight: 600; color: var(--text-light); }
.price-total { font-size: 0.88rem; color: var(--text-light); margin-bottom: 4px; }
.price-total del { color: var(--danger); }
.payment-logos { max-height: 28px; width: auto; margin: 8px auto 0; }

/* === BONUS === */
.bonus { background: linear-gradient(160deg, #1e3a8a 0%, #1e40af 100%); padding: var(--section-pad); }
.bonus .section-header h2 { color: white; }
.bonus .section-header p { color: rgba(255,255,255,0.75); }
.bonus .section-tag { background: rgba(255,255,255,0.15); color: white; }
.bonus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.bonus-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.bonus-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.bonus-num {
  display: inline-block;
  background: var(--gradient-gold);
  color: #1a1a00;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.bonus-card img { max-width: 180px; max-height: 220px; margin: 0 auto 20px; object-fit: contain; }
.bonus-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; color: white; font-size: 1.1rem; margin-bottom: 12px; }
.bonus-card p { color: rgba(255,255,255,0.78); font-size: 0.92rem; line-height: 1.75; }
.bonus-value { margin-top: 12px; color: var(--accent-light); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; }
.bonus-value del { color: rgba(255,255,255,0.5); }

/* === INGREDIENTS === */
.ingredients { padding: var(--section-pad); background: var(--off-white); }
.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ing-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--primary-light);
  transition: var(--transition);
}
.ing-card:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }
.ing-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--primary-light);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}
.ing-card h3 { font-family: 'Montserrat', sans-serif; font-size: 0.98rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.ing-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; }

/* === SCIENCE === */
.science { padding: var(--section-pad); background: white; }
.science-list { display: flex; flex-direction: column; gap: 12px; }
.science-item {
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.science-item.active { border-color: var(--primary-light); }
.science-header .acc-title { color: var(--gray-900); }
.science-header .acc-chevron { color: var(--text-light); }
.science-item .accordion-body p { color: var(--gray-600); }
.sci-ref { margin-top: 12px; font-size: 0.83rem; color: var(--text-light); font-style: italic; }

/* === GUARANTEE === */
.guarantee { padding: var(--section-pad); background: linear-gradient(160deg, #f0f9ff 0%, #e0f2fe 100%); }
.guarantee-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}
.guarantee-img img { width: 260px; height: 260px; object-fit: contain; }
.guarantee-content { display: flex; flex-direction: column; gap: 20px; }
.guarantee-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.guarantee-point { display: flex; gap: 18px; align-items: flex-start; }
.g-icon {
  font-size: 1.8rem;
  background: white;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}
.guarantee-point h3 { font-family: 'Montserrat', sans-serif; font-size: 1rem; color: var(--primary-dark); margin-bottom: 6px; }
.guarantee-point p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; }

/* === BENEFITS === */
.benefits { padding: var(--section-pad); background: white; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.benefit-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-card); }
.check {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-item h3 { font-family: 'Montserrat', sans-serif; font-size: 1rem; color: var(--primary-dark); margin-bottom: 6px; }
.benefit-item p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; }

/* === FAQ === */
.faq { padding: var(--section-pad); background: var(--off-white); }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
}
.faq-item.active { border-color: var(--primary-light); }
.faq-header { border: none; background: none; cursor: pointer; width: 100%; display: flex; align-items: center; gap: 12px; padding: 18px 22px; min-height: 54px; }
.faq-header .acc-title { color: var(--gray-900); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.98rem; }
.faq-header .acc-chevron { color: var(--text-light); }
.faq-item .accordion-body p { color: var(--gray-600); }

/* === FINAL CTA === */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  padding: var(--section-pad);
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(59,130,246,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at bottom left, rgba(212,175,55,0.15) 0%, transparent 60%);
}
.final-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}
.final-bottle img { width: 280px; max-width: 100%; filter: drop-shadow(0 24px 48px rgba(0,0,0,0.3)); }
.final-content { display: flex; flex-direction: column; gap: 18px; }
.final-h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: white; line-height: 1.25; }
.final-price-row { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.regular-price { font-family: 'Montserrat', sans-serif; color: rgba(255,255,255,0.6); font-size: 1rem; }
.regular-price del { color: rgba(255,255,255,0.5); }
.special-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: var(--accent-light);
  font-weight: 800;
}
.final-desc { color: rgba(255,255,255,0.82); font-size: 0.96rem; line-height: 1.8; }
.urgency-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(239,68,68,0.2);
  border: 1px solid rgba(239,68,68,0.4);
  color: #fca5a5;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 50px;
}

/* === FOOTER === */
.footer { background: var(--gray-900); color: rgba(255,255,255,0.75); padding: 60px 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 14px; max-width: 320px; }
.footer-logo { color: white; }
.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  color: white;
  transition: var(--transition);
  text-decoration: none;
}
.social-icon:hover { background: var(--primary-light); transform: translateY(-2px); }
.footer-links-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-links-col a:hover { color: white; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 28px 0; }
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.legal-link { color: rgba(255,255,255,0.55); font-size: 0.82rem; transition: color 0.2s; }
.legal-link:hover { color: white; }
.link-separator { color: rgba(255,255,255,0.25); }
.disclaimer-text { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 14px; max-width: 900px; }
.copyright { font-size: 0.82rem; color: rgba(255,255,255,0.4); text-align: center; margin-top: 8px; }
.copyright a { color: var(--accent-light); }

/* === SCROLL TOP === */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: none;
  align-items: center; justify-content: center;
  z-index: 998;
  transition: var(--transition);
  font-weight: 700;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-3px) scale(1.08); }

/* === PURCHASE POPUP === */
.purchase-popup {
  position: fixed;
  bottom: 24px; left: 24px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 997;
  transform: translateX(-200%);
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  max-width: 280px;
  border: 1.5px solid var(--gray-200);
}
.purchase-popup.show { transform: translateX(0); }
.popup-avatar { font-size: 2rem; }
.popup-text { flex: 1; }
.popup-text strong { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; display: block; }
.popup-text small { color: var(--text-light); font-size: 0.78rem; }
.popup-close {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 28px; height: 28px;
  cursor: pointer;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

/* === EXIT POPUP === */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.exit-overlay.show { display: flex; }
.exit-popup {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: popIn 0.35s cubic-bezier(.4,0,.2,1);
}
@keyframes popIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.exit-close {
  position: absolute;
  top: 14px; right: 18px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600);
  transition: var(--transition);
}
.exit-close:hover { background: var(--gray-200); }
.exit-emoji { font-size: 3.5rem; margin-bottom: 12px; }
.exit-popup h3 { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; color: var(--gray-900); margin-bottom: 12px; }
.exit-popup p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.exit-price { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.exit-price del { color: var(--danger); font-size: 1.1rem; }
.exit-btn { width: 100%; margin-bottom: 14px; }
.exit-no { color: var(--text-light); font-size: 0.85rem; display: block; text-decoration: underline; cursor: pointer; }

/* === ANIMATIONS === */
@keyframes fadeInLeft { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes slideUp { from { opacity:0; transform:translateY(50px); } to { opacity:1; transform:translateY(0); } }

.fade-in-left, .fade-in-right, .fade-in-up, .slide-up { opacity: 0; }
.fade-in-left.animated { animation: fadeInLeft 0.7s cubic-bezier(.4,0,.2,1) forwards; }
.fade-in-right.animated { animation: fadeInRight 0.7s cubic-bezier(.4,0,.2,1) forwards; animation-delay: var(--delay, 0s); }
.fade-in-up.animated { animation: fadeInUp 0.6s cubic-bezier(.4,0,.2,1) forwards; animation-delay: var(--delay, 0s); }
.slide-up.animated { animation: slideUp 0.6s cubic-bezier(.4,0,.2,1) forwards; animation-delay: var(--delay, 0s); }

/* === REDUCE MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .floating { animation: none; }
  .pulse-btn { animation: none; }
}

/* ============================
   RESPONSIVE — MOBILE FIRST
   ============================ */

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

/* Tablet 768px */
@media (max-width: 768px) {
  :root { --section-pad: 56px 0; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 75%;
    max-width: 300px;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 24px 32px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    z-index: 998;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { padding: 14px 0; font-size: 1.05rem; width: 100%; border-bottom: 1px solid var(--gray-100); }
  .btn-nav { margin-top: 20px; width: 100%; text-align: center; padding: 14px; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; padding-top: 20px; }
  .hero-image-wrap { order: -1; }
  .hero-bottle { max-width: 240px; margin: 0 auto; }
  .hero-stats { justify-content: center; }
  .hero-trust { justify-content: center; }
  .btn-hero { width: 100%; }
  .hero-h1 { font-size: 1.75rem; }
  .what-is-inner { grid-template-columns: 1fr; gap: 28px; }
  .what-is-img { order: -1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .bonus-grid { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .guarantee-img { display: flex; justify-content: center; }
  .guarantee-img img { width: 200px; height: 200px; }
  .guarantee-point { text-align: left; }
  .benefits-grid { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .final-bottle { display: flex; justify-content: center; }
  .final-bottle img { width: 200px; }
  .final-price-row { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .footer-legal-links { justify-content: center; }
  .copyright { text-align: center; }
  .purchase-popup { left: 12px; right: 12px; bottom: 16px; max-width: none; }
  .scroll-top { bottom: 16px; right: 16px; width: 48px; height: 48px; }
}

/* Phone 576px */
@media (max-width: 576px) {
  .badges-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 1.5rem; }
  .section-header h2 { font-size: 1.5rem; }
  .time-block { min-width: 64px; padding: 12px 18px; }
  .time-block span { font-size: 1.8rem; }
  .btn-hero, .btn-final { padding: 16px 24px; font-size: 1rem; }
  .exit-popup { padding: 28px 20px; }
}

/* Small phone 380px */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .hero-h1 { font-size: 1.35rem; }
  .nav-logo span { font-size: 1.15rem; }
}
