/* ===== VISIVRA - STYLES.CSS ===== */
/* Design concept: "Optical Clarity" — deep dusk navy,
   a warm horizon-coral accent, and concentric aperture
   rings as the signature motif (the eye's own geometry). */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --ink: #0d1424;
  --navy: #182640;
  --indigo: #24365c;
  --slate: #3a4d72;
  --horizon: #ff6b4a;
  --horizon-deep: #e24f30;
  --horizon-light: #ff9270;
  --mist: #f2f5f7;
  --mist-dim: #e6ebef;
  --text: #131a2b;
  --text-light: #5b6472;
  --border: #dfe4ea;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(13,20,36,0.08);
  --shadow-lg: 0 10px 40px rgba(13,20,36,0.16);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --gradient: linear-gradient(135deg, #ff6b4a 0%, #ff9270 100%);
  --gradient-hero: linear-gradient(160deg, #0d1424 0%, #182640 55%, #24365c 100%);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', 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);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
input, select, textarea { font-size: 16px; }
:focus-visible { outline: 2px solid var(--horizon); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--text); letter-spacing: -0.01em; }
h1 { font-size: clamp(27px, 5vw, 50px); font-weight: 700; }
h2 { font-size: clamp(22px, 4vw, 38px); }
h3 { font-size: clamp(18px, 2.5vw, 23px); }
h4 { font-size: clamp(16px, 2vw, 19px); }
p { font-size: 16px; line-height: 1.8; color: var(--text-light); }
strong { color: var(--text); }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
section { padding: 76px 0; }

/* ===== SECTION TAG ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff1ec;
  color: var(--horizon-deep);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid #ffd9cb;
}
.section-sub {
  color: var(--text-light);
  font-size: 17px;
  max-width: 600px;
  margin: 12px auto 40px;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-hero, .btn-final, .btn-cart, .btn-exit, .btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  border-radius: 50px;
  min-height: 48px;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  padding: 14px 32px;
  font-size: 15px;
  box-shadow: 0 6px 22px rgba(255,107,74,0.32);
}
.btn-nav {
  background: var(--gradient);
  color: var(--white);
  padding: 10px 24px;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(255,107,74,0.28);
}
.btn-hero {
  background: var(--gradient);
  color: var(--white);
  padding: 18px 40px;
  font-size: 17px;
  box-shadow: 0 8px 30px rgba(255,107,74,0.4);
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.btn-cart {
  background: var(--indigo);
  color: var(--white);
  padding: 14px 24px;
  font-size: 15px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(24,38,64,0.25);
  border-radius: 12px;
  min-height: 52px;
}
.btn-cart-popular {
  background: var(--gradient);
  box-shadow: 0 6px 20px rgba(255,107,74,0.35);
}
.btn-final {
  background: var(--gradient);
  color: var(--white);
  padding: 20px 48px;
  font-size: 18px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 10px 34px rgba(255,107,74,0.4);
  border-radius: 50px;
}
.btn-exit {
  background: var(--gradient);
  color: var(--white);
  padding: 16px 36px;
  font-size: 16px;
  width: 100%;
  box-shadow: 0 6px 22px rgba(255,107,74,0.4);
  border-radius: 12px;
}
.btn-primary:hover, .btn-hero:hover, .btn-final:hover, .btn-cart:hover, .btn-nav:hover, .btn-exit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
@media (hover: none) {
  .btn-primary:active, .btn-hero:active, .btn-final:active, .btn-cart:active {
    transform: scale(0.98);
  }
}

/* ===== NAVBAR (signature: aperture rings) ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,20,36,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,107,74,0.15);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--white);
}
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.nav-reg { font-size: 11px; color: var(--horizon-light); }
.nav-aperture {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.nav-aperture i {
  position: absolute; inset: 0;
  border: 1.5px solid rgba(255,107,74,0.55);
  border-radius: 50%;
  animation: apertureSpin 6s linear infinite;
}
.nav-aperture i:nth-child(1) { inset: 6px; border-color: var(--horizon); animation-duration: 4s; }
.nav-aperture i:nth-child(2) { inset: 3px; animation-direction: reverse; }
.nav-aperture i:nth-child(3) { inset: 0; opacity: 0.5; animation-duration: 9s; }
@keyframes apertureSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .nav-aperture i { animation: none; } }

.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-link {
  color: rgba(242,245,247,0.8);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--horizon-light); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px; min-height: 44px;
  justify-content: center; align-items: center;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  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; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(13,20,36,0.98);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 20px 0 30px;
    border-bottom: 1px solid rgba(255,107,74,0.18);
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-links.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }
  .nav-link { padding: 14px 20px; font-size: 16px; width: 100%; text-align: center; }
  .btn-nav { margin-top: 10px; width: 80%; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 50%; right: 8%;
  width: 560px; height: 560px;
  border: 1px solid rgba(255,107,74,0.14);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: 50%; right: 8%;
  width: 400px; height: 400px;
  border: 1px solid rgba(255,107,74,0.1);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,107,74,0.14);
  animation: float-particle 8s infinite ease-in-out;
}
@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-40px) scale(1.1); opacity: 1; }
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow {
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,107,74,0.28) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}
.hero-bottle {
  position: relative;
  z-index: 2;
  max-height: 460px;
  width: auto;
  filter: drop-shadow(0 20px 50px rgba(255,107,74,0.35));
  animation: float-bottle 4s ease-in-out infinite;
}
@keyframes float-bottle {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
.hero-badge {
  position: absolute;
  top: 20px; right: 0;
  background: var(--gradient);
  color: white;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(255,107,74,0.4);
  z-index: 3;
  animation: bounce-badge 2s ease-in-out infinite;
}
@keyframes bounce-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-content { color: var(--white); }
.hero-eyebrow {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  color: var(--horizon-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.12;
}
.hero-content p { color: rgba(242,245,247,0.82); margin-bottom: 16px; font-size: 17px; }
.hero-stars {
  display: flex; align-items: center; gap: 10px;
  margin: 20px 0;
  font-size: 20px;
}
.hero-stars span {
  color: rgba(242,245,247,0.68);
  font-size: 13px;
  font-family: var(--font-mono);
}
.hero-guarantee {
  margin-top: 16px;
  font-size: 12px !important;
  color: rgba(242,245,247,0.55) !important;
  font-family: var(--font-mono);
}

@media (max-width: 767px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px 60px;
    text-align: center;
  }
  /* Content first, image below — mobile reading order */
  .hero-content { order: 1; }
  .hero-image { order: 2; }
  .hero-bottle { max-height: 280px; }
  .hero-glow { width: 220px; height: 220px; }
  .hero-badge { right: 10%; }
  .btn-hero { max-width: 100%; font-size: 16px; padding: 16px 24px; }
  .hero-stars { justify-content: center; }
}

/* ===== WHY CHOOSE US ===== */
.why-us { background: var(--mist); text-align: center; }
.why-us h2 { margin-bottom: 8px; }
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.badge-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
  text-align: center;
}
.badge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,107,74,0.3);
}
.badge-card img {
  width: 72px; height: 72px;
  object-fit: contain;
  margin: 0 auto 16px;
}
.badge-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--horizon-deep); }
.badge-card p { font-size: 14px; line-height: 1.6; }

@media (max-width: 991px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .badges-grid { grid-template-columns: 1fr; }
}

/* ===== WHAT IS ===== */
.what-is { background: var(--white); }
.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.what-is-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.what-is-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-height: 300px;
  object-fit: cover;
  background: var(--indigo);
}
.what-is-float {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--gradient);
  color: white;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 50px;
}
.what-is-content .section-tag { display: inline-flex; width: fit-content; }
.what-is-content h2 { margin-bottom: 20px; }
.what-is-content p { margin-bottom: 16px; }
.what-is-content .btn-primary { margin-top: 8px; }

@media (max-width: 767px) {
  .what-is-grid { grid-template-columns: 1fr; gap: 32px; }
  .what-is-content { order: 1; }
  .what-is-image { order: 2; }
}

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--mist); text-align: center; }
.how-it-works h2 { margin-bottom: 8px; }

/* ===== ACCORDION ===== */
.accordion-wrapper, .science-accordion, .faq-list { max-width: 800px; margin: 0 auto; }
.accordion-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  text-align: left;
  min-height: 56px;
  transition: background var(--transition);
}
.accordion-btn:hover { background: var(--mist); }
.acc-icon {
  font-size: 20px;
  color: var(--horizon);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
  font-family: var(--font-mono);
}
.accordion-item.active .acc-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion-item.active .accordion-body { max-height: 600px; }
.accordion-body p {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
}

@media (max-width: 767px) {
  .accordion-btn { font-size: 15px; padding: 16px 18px; min-height: 60px; }
  .accordion-body p { padding: 0 18px 18px; }
}

/* ===== REVIEWS ===== */
.reviews { background: var(--white); text-align: center; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.review-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.review-header img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--horizon-light);
  flex-shrink: 0;
}
.review-header strong { font-family: var(--font-display); font-size: 15px; display: block; }
.review-header span { font-size: 13px; color: var(--text-light); display: block; }
.stars { font-size: 14px; margin-top: 4px; }
.review-card p { font-size: 15px; line-height: 1.7; }
.reviews-rating {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
}
.reviews-rating img { max-width: 200px; margin: 0 auto; }
.reviews-rating p { font-size: 16px; color: var(--text); }

@media (max-width: 991px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== PRICING ===== */
.pricing { background: var(--gradient-hero); text-align: center; color: var(--white); }
.pricing h2 { color: var(--white); }
.pricing .section-sub { color: rgba(242,245,247,0.75); }
.pricing .section-tag { background: rgba(255,107,74,0.14); color: var(--horizon-light); border-color: rgba(255,107,74,0.3); }
.pricing-2 { background: var(--mist); }
.pricing-2 h2 { color: var(--text); }
.pricing-2 .section-sub { color: var(--text-light); }
.pricing-2 .section-tag { background: #fff1ec; color: var(--horizon-deep); border-color: #ffd9cb; }

/* Countdown */
.countdown-wrapper {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  margin: 0 auto 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  padding: 14px 28px;
  width: fit-content;
  border: 1px solid rgba(255,107,74,0.25);
}
.pricing-2 .countdown-wrapper {
  background: var(--indigo);
  border-color: var(--slate);
}
.countdown-label { font-family: var(--font-mono); font-weight: 600; font-size: 14px; color: var(--white); }
.countdown-timer { display: flex; align-items: center; gap: 8px; }
.time-block {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  min-width: 64px;
  text-align: center;
}
.time-block span { font-family: var(--font-mono); font-weight: 700; font-size: 26px; color: var(--horizon-light); display: block; line-height: 1; }
.time-block small { font-size: 10px; color: rgba(255,255,255,0.6); font-family: var(--font-mono); font-weight: 600; letter-spacing: 1px; }
.colon { font-family: var(--font-mono); font-weight: 700; font-size: 26px; color: var(--white); }

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  text-align: center;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 18px 50px rgba(13,20,36,0.3); }
.price-card.popular {
  border-color: var(--horizon);
  transform: scale(1.04);
  box-shadow: 0 14px 46px rgba(255,107,74,0.32);
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.price-label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--horizon-deep);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.price-qty {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 4px;
}
.price-supply { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.price-card img:not(.payment-logos) {
  max-height: 160px;
  margin: 0 auto 16px;
  object-fit: contain;
}
.price-amount { margin-bottom: 4px; }
.price-old { font-size: 17px; text-decoration: line-through; color: #9aa3b0; margin-right: 8px; font-family: var(--font-mono); font-weight: 500; }
.price-new { font-size: 32px; font-family: var(--font-display); font-weight: 700; color: var(--horizon-deep); }
.price-per { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.price-badges { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.pbadge {
  background: #fff1ec;
  color: var(--horizon-deep);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid #ffd9cb;
}
.payment-logos { max-width: 180px; margin: 14px auto 0; opacity: 0.8; }

@media (max-width: 767px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 28px; }
  .price-card.popular { transform: none; }
  .countdown-wrapper { padding: 12px 20px; }
  .time-block span { font-size: 22px; }
  .time-block { min-width: 54px; }
}
@media (min-width: 576px) and (max-width: 991px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ===== BONUSES ===== */
.bonuses { background: var(--white); text-align: center; }
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.bonus-card {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 2px solid var(--border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bonus-number {
  display: inline-block;
  background: var(--gradient);
  color: white;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.bonus-card img { max-height: 180px; margin: 0 auto 20px; object-fit: contain; }
.bonus-card h3 { margin-bottom: 12px; }

@media (max-width: 767px) {
  .bonus-grid { grid-template-columns: 1fr; }
}

/* ===== INGREDIENTS ===== */
.ingredients { background: var(--mist); text-align: center; }
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.ingredient-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid var(--border);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
}
.ingredient-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(255,107,74,0.25); }
.ing-icon { font-size: 30px; margin-bottom: 10px; }
.ingredient-card h3 { color: var(--horizon-deep); margin-bottom: 8px; font-size: 17px; }
.ingredient-card p { font-size: 14px; line-height: 1.7; }

@media (max-width: 991px) {
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .ingredients-grid { grid-template-columns: 1fr; }
}

/* ===== SCIENCE ===== */
.science { background: var(--white); text-align: center; }

/* ===== GUARANTEE ===== */
.guarantee { background: linear-gradient(135deg, #fff4ef 0%, #ffe4d8 100%); }
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.guarantee-image img {
  max-width: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 12px 32px rgba(255,107,74,0.25));
}
.guarantee-content .section-tag { display: inline-flex; width: fit-content; }
.guarantee-content h2 { margin-bottom: 16px; }
.guarantee-content > p { margin-bottom: 28px; }
.guarantee-points { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.guarantee-point { display: flex; gap: 16px; align-items: flex-start; }
.gp-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.guarantee-point h4 { margin-bottom: 6px; }
.guarantee-point p { font-size: 15px; }

@media (max-width: 767px) {
  .guarantee-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .guarantee-content { order: 1; }
  .guarantee-image { order: 2; }
  .guarantee-content .section-tag { margin: 0 auto; }
  .guarantee-point { text-align: left; }
}

/* ===== BENEFITS ===== */
.benefits { background: var(--white); text-align: center; }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}
.benefit-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--mist);
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.benefit-item:hover { transform: translateX(4px); }
.benefit-check {
  width: 36px; height: 36px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
  flex-shrink: 0;
}
.benefit-item h4 { margin-bottom: 6px; font-size: 16px; }
.benefit-item p { font-size: 14px; }

@media (max-width: 767px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--gradient-hero);
  color: var(--white);
  padding: 76px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,107,74,0.22) 0%, transparent 70%);
  animation: pulse-bg 5s ease-in-out infinite;
}
@keyframes pulse-bg {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.final-cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.final-bottle {
  max-height: 320px;
  filter: drop-shadow(0 20px 50px rgba(255,107,74,0.45));
  animation: float-bottle 4s ease-in-out infinite;
}
.final-cta .section-tag { background: rgba(255,107,74,0.14); color: var(--horizon-light); border-color: rgba(255,107,74,0.3); }
.final-cta h2 { color: var(--white); margin-bottom: 20px; }
.final-price {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 20px;
}
.price-old-final {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 18px;
  color: rgba(242,245,247,0.45);
  text-decoration: line-through;
}
.price-new-final {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--horizon-light);
}
.final-cta p { color: rgba(242,245,247,0.82); margin-bottom: 28px; font-size: 17px; }
.final-guarantees {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 20px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
  color: rgba(242,245,247,0.6);
}

@media (max-width: 767px) {
  .final-cta-content { order: 1; }
  .final-cta-image { order: 2; }
  .final-bottle { max-height: 220px; }
  .btn-final { font-size: 16px; padding: 18px 32px; }
  .price-new-final { font-size: 25px; }
}

/* ===== FAQ ===== */
.faq { background: var(--mist); text-align: center; }

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: rgba(242,245,247,0.68);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand img {
  width: 50px; height: 50px;
  border-radius: 10px;
  object-fit: cover;
}
.footer-brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
}
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 280px; }
.social-icons {
  display: flex; gap: 12px; margin-top: 8px;
}
.social-icons a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(242,245,247,0.6);
  transition: background var(--transition), color var(--transition);
  min-width: 44px; min-height: 44px;
}
.social-icons a:hover { background: var(--horizon); color: white; }
.footer-links-col { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col h4 {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.footer-links-col a {
  font-size: 14px;
  color: rgba(242,245,247,0.6);
  transition: color var(--transition);
  padding: 4px 0;
}
.footer-links-col a:hover { color: var(--horizon-light); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-disclaimer p { font-size: 13px; line-height: 1.7; color: rgba(242,245,247,0.42); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(242,245,247,0.38); }
.footer-bottom a { color: var(--horizon-light); }

@media (max-width: 767px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-brand p { text-align: center; }
  .social-icons { justify-content: center; }
  .footer-links-col { align-items: center; }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 24px;
  width: 54px; height: 54px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: transform var(--transition);
  font-family: var(--font-display);
  font-weight: 700;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: scale(1.08) translateY(-2px); }

/* ===== NOTIFICATION POPUP ===== */
.notification-popup {
  position: fixed;
  bottom: 20px; left: 20px;
  background: white;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 10px 34px rgba(13,20,36,0.18);
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  max-width: 290px;
  border-left: 4px solid var(--horizon);
  animation: slide-in-notif 0.4s ease;
}
@keyframes slide-in-notif {
  from { transform: translateX(-120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.notification-popup.show { display: flex; }
.notif-avatar { font-size: 28px; flex-shrink: 0; }
.notif-text { font-size: 13px; line-height: 1.5; flex: 1; }
.notif-text strong { display: block; font-family: var(--font-display); }
.notif-close {
  background: none; border: none; cursor: pointer;
  font-size: 16px; color: #9aa3b0;
  min-width: 24px; min-height: 24px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .notification-popup { bottom: 80px; left: 12px; right: 12px; max-width: none; }
}

/* ===== EXIT POPUP ===== */
.exit-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(13,20,36,0.72);
  z-index: 2000;
  backdrop-filter: blur(4px);
}
.exit-overlay.active { display: block; }
.exit-popup {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 420px;
  width: calc(100% - 40px);
  z-index: 2001;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  animation: pop-in 0.4s cubic-bezier(.175,.885,.32,1.275);
}
@keyframes pop-in {
  from { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
  to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
.exit-popup.active { display: block; }
.exit-close {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--mist);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.exit-close a { color: var(--text-light); font-size: 16px; font-weight: 700; }
.exit-emoji { font-size: 46px; margin-bottom: 12px; }
.exit-popup h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 12px; }
.exit-popup p { margin-bottom: 20px; font-size: 15px; }
.exit-skip {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-light);
  text-decoration: underline;
}

/* ===== AOS (custom) ===== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="slide-up"] { transform: translateY(40px); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ===== UTILITY ===== */
@media (max-width: 575px) {
  section { padding: 48px 0; }
  h2 { text-align: center; }
  .section-sub { font-size: 15px; }
}