/* =============================================
   VIGOR PEAK - PREMIUM LANDING PAGE
   Design concept: "Summit Ascent" — deep steel-blue
   night, an electric ice-cyan accent, and a mountain
   peak silhouette as the signature climbing motif.
   Fonts: Rajdhani (headings) + Mulish (body) + Fira Code (data)
   ============================================= */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Mulish:wght@400;500;600;700;800&family=Fira+Code:wght@500;600&display=swap');

/* === CSS VARIABLES === */
:root {
  --ice: #00d9ff;
  --ice-light: #6eefff;
  --ice-deep: #00a8cc;
  --ink: #0a0e14;
  --slate: #131a24;
  --steel: #1d2733;
  --steel2: #263344;
  --text: #e4eaf0;
  --text-muted: #93a1b2;
  --accent: #ff5c72;
  --green: #2fd48a;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(0,217,255,0.14);
  --shadow-lg: 0 20px 60px rgba(0,217,255,0.22);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Mulish', sans-serif;
  --font-mono: 'Fira Code', monospace;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
* { -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
:focus-visible { outline: 2px solid var(--ice); outline-offset: 3px; }

/* === UTILITY === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.text-gold { color: var(--ice); }
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  min-height: 48px;
  line-height: 1.4;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--ice), var(--ice-deep));
  color: #041014;
}
.btn-hero {
  background: linear-gradient(135deg, var(--ice-light), var(--ice), var(--ice-deep));
  color: #041014;
  font-size: 1rem;
  padding: 18px 40px;
  box-shadow: 0 8px 30px rgba(0,217,255,0.35);
  letter-spacing: 0.3px;
}
.pulse-btn { animation: pulseBg 2.5s ease-in-out infinite; }
@keyframes pulseBg {
  0%,100% { box-shadow: 0 8px 30px rgba(0,217,255,0.35); }
  50% { box-shadow: 0 12px 50px rgba(0,217,255,0.6); }
}

/* ===== SECTION 1: NAVBAR (signature: peak mark) ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,14,20,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,217,255,0.16);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,14,20,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.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: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ice);
}
.nav-logo img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-peak-mark { width: 30px; height: 18px; flex-shrink: 0; }
.nav-peak-mark svg { width: 100%; height: 100%; }
.nav-peak-mark polyline { fill: none; stroke: var(--ice); stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
.nav-peak-mark circle { fill: var(--ice-light); animation: peakClimb 2.2s ease-in-out infinite; }
@keyframes peakClimb { 0%, 100% { opacity: 0.5; r: 1.6; } 50% { opacity: 1; r: 2.6; } }
@media (prefers-reduced-motion: reduce) { .nav-peak-mark circle { animation: none; } }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.nav-link:hover { color: var(--ice); }
.nav-cta {
  background: linear-gradient(135deg, var(--ice), var(--ice-deep));
  color: #041014;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 50px;
  transition: var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-cta:hover { transform: translateY(-2px); 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: 2px;
  background: var(--ice);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== SECTION 2: HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,217,255,0.09) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,92,114,0.05) 0%, transparent 50%),
              var(--ink);
}
.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
  animation: float 8s ease-in-out infinite;
}
.orb1 { width: 400px; height: 400px; background: var(--ice); top: -100px; left: -150px; animation-delay: 0s; }
.orb2 { width: 300px; height: 300px; background: #ff5c72; top: 50%; right: -100px; animation-delay: -3s; }
.orb3 { width: 250px; height: 250px; background: var(--ice-deep); bottom: -80px; left: 40%; animation-delay: -5s; }
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-inner {
  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-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: conic-gradient(var(--ice), var(--ice-deep), var(--ice-light), var(--ice));
  animation: spin 8s linear infinite;
  opacity: 0.25;
  filter: blur(20px);
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-product-img {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0,217,255,0.35));
  animation: heroFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
.hero-badge-float {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--ice), var(--ice-deep));
  color: #041014;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 50px;
  z-index: 3;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-pill {
  display: inline-block;
  background: rgba(0,217,255,0.12);
  border: 1px solid rgba(0,217,255,0.35);
  color: var(--ice);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.18;
  margin-bottom: 24px;
  color: #fff;
}
.highlight-grad {
  background: linear-gradient(135deg, var(--ice-light), var(--ice));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-star-img { height: 28px; width: auto; }
.hero-stars span { font-size: 0.88rem; color: var(--text-muted); font-weight: 600; font-family: var(--font-mono); }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  font-family: var(--font-mono);
}

/* ===== SECTION HEADINGS ===== */
section h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 0.5rem;
  color: #fff;
}

/* ===== SECTION 3: WHY CHOOSE ===== */
.why-choose {
  padding: 80px 0;
  background: var(--slate);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.why-card {
  background: var(--steel);
  border: 1px solid rgba(0,217,255,0.13);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--ice);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 16px;
  border-radius: 50%;
}
.why-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ice);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SECTION 4: WHAT IS ===== */
.what-is {
  padding: 80px 0;
  background: var(--ink);
}
.what-is-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.what-is-content h2 { text-align: left; }
.what-is-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
.what-is-content .btn { margin-top: 12px; }
.what-is-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  border: 1px solid rgba(0,217,255,0.18);
}

/* ===== SECTION 5: HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 0;
  background: var(--slate);
}

/* ===== ACCORDIONS ===== */
.accordion-list, .faq-list, .science-list { max-width: 860px; margin: 0 auto; }
.accordion-item, .faq-item, .science-item {
  background: var(--steel);
  border: 1px solid rgba(0,217,255,0.13);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  text-align: left;
  gap: 12px;
  min-height: 48px;
  transition: var(--transition);
}
.accordion-header:hover { color: var(--ice); }
.accordion-header[aria-expanded="true"] { color: var(--ice); border-bottom: 1px solid rgba(0,217,255,0.13); }
.acc-icon {
  font-size: 1.4rem;
  color: var(--ice);
  transition: var(--transition);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.accordion-header[aria-expanded="true"] .acc-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}
.accordion-body.open {
  max-height: 400px;
  padding: 16px 24px 20px;
}
.accordion-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* ===== SECTION 6: REVIEWS ===== */
.reviews {
  padding: 80px 0;
  background: var(--ink);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--steel);
  border: 1px solid rgba(0,217,255,0.13);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-6px); border-color: var(--ice); box-shadow: var(--shadow); }
.review-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--ice);
}
.review-stars { font-size: 1.1rem; margin-bottom: 14px; }
.review-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.review-name { font-family: var(--font-head); font-weight: 700; color: var(--ice); font-size: 0.9rem; }

/* ===== SECTION 7 & 13: PRICING ===== */
.pricing {
  padding: 80px 0;
  background: var(--slate);
}
.pricing--alt { background: var(--steel); }

/* Countdown */
.countdown-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.countdown-label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--steel);
  border: 2px solid var(--ice);
  border-radius: var(--radius);
  padding: 16px 32px;
  box-shadow: 0 0 30px rgba(0,217,255,0.16);
}
.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.time-block span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 2.3rem;
  color: var(--ice);
  line-height: 1;
  min-width: 60px;
  text-align: center;
}
.time-block small {
  font-size: 0.68rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-weight: 600;
}
.time-sep {
  font-size: 1.9rem;
  color: var(--ice);
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 0;
  align-items: start;
}
.price-card {
  background: var(--steel2);
  border: 1px solid rgba(0,217,255,0.18);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--ice); }
.price-card--popular {
  background: linear-gradient(135deg, rgba(0,217,255,0.08), rgba(0,217,255,0.02));
  border: 2px solid var(--ice);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.price-card--popular:hover { transform: scale(1.04) translateY(-6px); }
.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--ice-light), var(--ice));
  color: #041014;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.price-label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.price-bottles {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 4px;
}
.price-supply {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.price-card img { max-height: 160px; object-fit: contain; margin: 0 auto 20px; }
.price-main {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--ice);
  margin-bottom: 8px;
}
.price-main small { font-size: 1rem; }
.price-orig {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-family: var(--font-mono);
}
.price-orig s { color: var(--accent); }
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
.mini-badge {
  background: rgba(47,212,138,0.16);
  border: 1px solid rgba(47,212,138,0.35);
  color: var(--green);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 50px;
}
.btn-price {
  width: 100%;
  background: linear-gradient(135deg, #26374a, #324a63);
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: block;
  transition: var(--transition);
}
.btn-price:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.btn-price--gold {
  background: linear-gradient(135deg, var(--ice-light), var(--ice), var(--ice-deep));
  color: #041014;
}
.payment-logos { height: 28px; object-fit: contain; margin: 0 auto; }
.rating-row {
  text-align: center;
  margin-top: 32px;
}
.rating-row img { height: 40px; object-fit: contain; margin: 0 auto; }

/* ===== SECTION 9: INGREDIENTS ===== */
.ingredients {
  padding: 80px 0;
  background: var(--ink);
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.ingredient-card {
  background: var(--steel);
  border: 1px solid rgba(0,217,255,0.11);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  transition: var(--transition);
}
.ingredient-card:hover { border-color: var(--ice); box-shadow: var(--shadow); transform: translateY(-4px); }
.ingredient-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ice);
  margin-bottom: 10px;
}
.ingredient-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ===== SECTION 10: SCIENCE ===== */
.science {
  padding: 80px 0;
  background: var(--slate);
}
.science-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SECTION 11: GUARANTEE ===== */
.guarantee {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--slate), rgba(0,217,255,0.03));
}
.guarantee-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}
.guarantee-image img {
  max-width: 260px;
  filter: drop-shadow(0 20px 40px rgba(0,217,255,0.25));
}
.guarantee-content h2 { text-align: left; }
.guarantee-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--steel);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--ice);
}
.gp-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.guarantee-point h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
}
.guarantee-point p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ===== SECTION 12: BENEFITS ===== */
.benefits {
  padding: 80px 0;
  background: var(--steel);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 2.5rem;
}
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--steel2);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,217,255,0.09);
  transition: var(--transition);
}
.benefit-item:hover { border-color: var(--ice); transform: translateX(4px); }
.benefit-check { font-size: 1.4rem; flex-shrink: 0; }
.benefit-item h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
}
.benefit-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ===== SECTION 14: FAQ ===== */
.faq {
  padding: 80px 0;
  background: var(--slate);
}

/* ===== SECTION 15: FINAL CTA ===== */
.final-cta {
  padding: 100px 0;
  background: radial-gradient(ellipse at center, rgba(0,217,255,0.09) 0%, transparent 70%), var(--ink);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  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='%2300d9ff' fill-opacity='0.03'%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-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.final-cta-image { position: relative; display: flex; justify-content: center; }
.final-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,217,255,0.25), transparent);
  border-radius: 50%;
  animation: pulseBg 3s ease-in-out infinite;
}
.final-product-img {
  max-width: 320px;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(0,217,255,0.4));
  animation: heroFloat 5s ease-in-out infinite;
  position: relative;
}
.final-tag {
  display: inline-block;
  background: rgba(255,92,114,0.14);
  border: 1px solid rgba(255,92,114,0.35);
  color: #ff8a9a;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.final-cta-content h2 {
  text-align: left;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.final-cta-content p { color: var(--text-muted); margin-bottom: 24px; font-size: 1rem; line-height: 1.8; }
.final-price-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}
.final-orig { color: var(--text-muted); font-size: 1rem; font-family: var(--font-mono); }
.final-orig s { color: var(--accent); }
.final-special {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--ice);
}
.btn-final { margin-bottom: 20px; }
.final-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  font-family: var(--font-mono);
}

/* ===== FOOTER ===== */
.footer {
  background: #05070a;
  border-top: 1px solid rgba(0,217,255,0.13);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.footer-brand span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ice);
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; max-width: 260px; }
.footer-links-col h4, .footer-social-col h4 {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--ice);
  margin-bottom: 16px;
}
.footer-links-col a, .footer-legal-links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  margin-bottom: 8px;
}
.footer-links-col a:hover, .footer-legal-links a:hover { color: var(--ice); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.link-separator { color: var(--text-muted); font-size: 0.9rem; }
.footer-legal-links .legal-link { margin: 0; padding: 2px 4px; }
.social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--steel);
  border: 1px solid rgba(0,217,255,0.18);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: var(--transition);
}
.social-icon:hover { border-color: var(--ice); transform: scale(1.1); background: rgba(0,217,255,0.08); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  margin-bottom: 20px;
}
.footer-disclaimer p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.7; }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom a { color: var(--ice); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--ice), var(--ice-deep));
  color: #041014;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,217,255,0.35);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: scale(1.1); }

/* ===== PURCHASE NOTIFICATION ===== */
.notif-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--steel);
  border: 1px solid rgba(0,217,255,0.35);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 890;
  max-width: 300px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.notif-popup.show { transform: translateX(0); }
.notif-icon { font-size: 1.4rem; }
.notif-text { flex: 1; font-size: 0.85rem; line-height: 1.4; }
.notif-text strong { color: var(--ice); display: block; }
.notif-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  min-width: 28px;
  min-height: 28px;
}

/* ===== EXIT POPUP ===== */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-overlay.active { opacity: 1; pointer-events: all; }
.exit-popup {
  background: var(--steel);
  border: 2px solid var(--ice);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 30px 80px rgba(0,217,255,0.25);
}
.exit-overlay.active .exit-popup { transform: scale(1); }
.exit-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,217,255,0.12);
  border: 1px solid var(--ice);
  color: var(--ice);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.exit-close:hover { background: var(--ice); color: #041014; }
.exit-emoji { font-size: 2.5rem; margin-bottom: 16px; }
.exit-popup h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 12px;
}
.exit-popup p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.7; }
.exit-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 16px; margin-bottom: 0; font-family: var(--font-mono); }

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.85); }
[data-aos="slide-up"] { transform: translateY(40px); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet: 768px */
@media (max-width: 992px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* NAV */
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--slate);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 28px;
    transform: translateX(110%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid rgba(0,217,255,0.18);
    z-index: 999;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; }
  .nav-cta { width: 100%; justify-content: center; font-size: 1rem; padding: 14px 24px; }
  /* HERO — content first, image below */
  .hero { padding: 100px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-content { order: 1; }
  .hero-image-wrap { order: 2; }
  .hero-product-img { max-width: 260px; margin: 0 auto; }
  .hero-glow-ring { width: 260px; height: 260px; }
  .hero-trust { justify-content: center; }
  .hero-stars { justify-content: center; }
  .btn-hero { width: 100%; }
  /* WHAT IS — content first, image below */
  .what-is-inner { grid-template-columns: 1fr; }
  .what-is-content { order: 1; }
  .what-is-content h2 { text-align: center; }
  .what-is-image { order: 2; }
  /* PRICING */
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .price-card--popular { transform: scale(1); }
  .price-card--popular:hover { transform: translateY(-6px); }
  /* REVIEWS */
  .reviews-grid { grid-template-columns: 1fr; }
  /* GUARANTEE — content first, image below */
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-content { order: 1; }
  .guarantee-content h2 { text-align: center; }
  .guarantee-image { order: 2; }
  .guarantee-image img { max-width: 180px; margin: 0 auto; }
  .guarantee-point { text-align: left; }
  /* BENEFITS */
  .benefits-grid { grid-template-columns: 1fr; }
  /* FINAL CTA — content first, image below */
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .final-cta-content { order: 1; }
  .final-cta-content h2 { text-align: center; }
  .final-cta-content .btn { width: 100%; }
  .final-trust { justify-content: center; }
  .final-cta-image { order: 2; }
  .final-product-img { max-width: 240px; margin: 0 auto; }
  /* FOOTER */
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-brand img { margin: 0 auto; }
  .footer-brand p { margin: 0 auto; }
  .footer-legal-links { justify-content: center; }
  .social-icons { justify-content: center; }
  /* NOTIF */
  .notif-popup { left: 12px; bottom: 12px; right: 12px; max-width: none; }
}

@media (max-width: 576px) {
  .why-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .time-block span { font-size: 1.9rem; min-width: 50px; }
  .final-special { font-size: 1.4rem; }
  .hero-content h1 { font-size: 1.8rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}