/* =====================================================
   MAXFORCE — PREMIUM DARK GOLD DESIGN SYSTEM
   Font: Montserrat (headings) + Open Sans (body)
   Palette: Deep Navy/Dark + Gold + Electric Blue
   ===================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

* { -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Open Sans', sans-serif;
  background: #0f0f1a;
  color: #e8e8f0;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #FFD700;
  --gold-dark: #D4AF37;
  --gold-light: #FFF3B0;
  --navy: #0f0f1a;
  --navy-light: #1a1a2e;
  --navy-mid: #16213e;
  --blue: #0f3460;
  --blue-bright: #4F8EF7;
  --text: #e8e8f0;
  --text-muted: #9999bb;
  --white: #ffffff;
  --success: #10B981;
  --danger: #EF4444;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 30px rgba(255,215,0,0.2);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}

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

.section-pad { padding: 80px 0; }

.dark-section { background: var(--navy-light); }

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

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255,215,0,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}

.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, #1E40AF, var(--blue-bright));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(79,142,247,0.35);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
}

.btn-nav {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  font-size: 14px;
  padding: 10px 22px;
  min-height: 44px;
  border-radius: 100px;
}

.btn-hero {
  font-size: 18px;
  padding: 20px 40px;
  border-radius: 100px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 8px 40px rgba(79,142,247,0.5);
}

.btn-xl {
  font-size: 20px;
  padding: 22px 48px;
  width: 100%;
  border-radius: 100px;
  box-shadow: 0 8px 40px rgba(255,215,0,0.5);
}

.btn-sub {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 4px;
  font-family: 'Open Sans', sans-serif;
}

.btn-price {
  width: 100%;
  margin-top: 16px;
  border-radius: 100px;
}

.btn-exit {
  width: 100%;
  margin-top: 16px;
  border-radius: 100px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15,15,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,215,0,0.1);
  transition: all var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(15,15,26,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-link:hover { color: var(--gold); }

.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(--white);
  border-radius: 2px;
  transition: all 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 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(79,142,247,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,215,0,0.08) 0%, transparent 60%),
              var(--navy);
  overflow: hidden;
}

.hero-bg-anim {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 80%, rgba(79,142,247,0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(255,165,0,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,215,0,0.18) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-img {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(255,215,0,0.25));
  position: relative;
  z-index: 1;
}

.hero-badge-float {
  position: absolute;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
  z-index: 2;
}

.badge-1 { top: 20%; right: 0; animation: float-badge 3s ease-in-out infinite; }
.badge-2 { bottom: 25%; left: 0; animation: float-badge 3s ease-in-out infinite 1.5s; }

.hero-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 8px 16px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 100px;
}

.hero-h1 {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.stars { color: var(--gold); font-size: 20px; }
.star-text { font-size: 14px; color: var(--text-muted); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== FLOATING ANIMATION ===== */
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(1deg); }
  66% { transform: translateY(-6px) rotate(-0.5deg); }
}

/* ===== WHY CHOOSE US ===== */
.why-choose { background: var(--navy); }

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.badge-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.badge-card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: var(--shadow-gold);
  border-color: rgba(255,215,0,0.4);
}

.badge-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255,215,0,0.08);
  border: 2px solid rgba(255,215,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.badge-icon-wrap img { width: 56px; height: 56px; object-fit: contain; }

.badge-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
}

.badge-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== WHAT IS ===== */
.what-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.img-glow-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.img-glow-wrap::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255,215,0,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.img-glow-wrap img {
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.what-content h2 { font-size: clamp(24px, 3vw, 38px); margin-bottom: 20px; margin-top: 12px; }
.what-content p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.what-content .btn { margin-top: 20px; }

/* ===== HOW IT WORKS ===== */
.how-works { background: var(--navy); }

.accordion-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.accordion-item {
  background: var(--navy-light);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.accordion-item.active, .accordion-item:hover { border-color: rgba(255,215,0,0.35); }

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  min-height: 64px;
  transition: background var(--transition);
}

.accordion-header:hover { background: rgba(255,215,0,0.04); }

.acc-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  background: rgba(255,215,0,0.1);
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}

.acc-title {
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.acc-arrow {
  color: var(--gold);
  transition: transform var(--transition);
  font-size: 12px;
  flex-shrink: 0;
}

.accordion-item.active .acc-arrow { transform: rotate(180deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body { max-height: 400px; }

.accordion-body p {
  padding: 0 24px 24px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 15px;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }

.review-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review-top img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.review-top h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.review-loc { font-size: 13px; color: var(--text-muted); display: block; }
.rev-stars { color: var(--gold); font-size: 14px; margin-top: 4px; }
.review-card p { color: var(--text-muted); font-size: 15px; line-height: 1.8; }

/* ===== PRICING ===== */
.pricing { background: var(--navy); }

.countdown-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.countdown-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--danger);
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-block {
  background: var(--navy-light);
  border: 2px solid var(--danger);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  text-align: center;
  min-width: 72px;
}

.time-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--danger);
  line-height: 1;
}

.time-lbl {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-top: 4px;
}

.time-sep {
  font-size: 32px;
  font-weight: 900;
  color: var(--danger);
  line-height: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  background: var(--navy-light);
  border: 2px solid rgba(255,215,0,0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.price-card:hover { transform: translateY(-6px); }

.price-card.popular {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(255,215,0,0.08) 0%, var(--navy-light) 100%);
  transform: scale(1.03);
  box-shadow: 0 8px 48px rgba(255,215,0,0.2);
}

.price-card.popular:hover { transform: scale(1.03) translateY(-6px); }

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 1px;
}

.price-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.price-bottles {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}

.price-supply {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.price-card img:first-of-type {
  max-width: 160px;
  margin: 16px auto;
}

.price-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 12px 0;
}

.mini-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(79,142,247,0.15);
  border: 1px solid rgba(79,142,247,0.3);
  color: var(--blue-bright);
}

.mini-badge.green {
  background: rgba(16,185,129,0.15);
  border-color: rgba(16,185,129,0.3);
  color: var(--success);
}

.price-amount {
  margin-bottom: 4px;
}

.price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 18px;
  margin-right: 8px;
}

.price-new {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
}

.price-per {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.payment-icons {
  max-width: 160px;
  margin-top: 12px;
  opacity: 0.7;
}

.five-star-wrap {
  text-align: center;
  margin-top: 40px;
}

.five-star-wrap img { max-width: 200px; margin: 0 auto 12px; }
.five-star-wrap p { color: var(--text-muted); font-size: 15px; }

/* ===== BONUS ===== */
.bonus { background: var(--navy-mid); }

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.bonus-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }

.bonus-num {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  border: 1px solid rgba(255,215,0,0.3);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.bonus-card img { max-width: 220px; margin: 0 auto 20px; border-radius: var(--radius-sm); }
.bonus-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--gold); }
.bonus-card p { color: var(--text-muted); font-size: 15px; line-height: 1.8; }

.bonus-value {
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
}

.bonus-value strong { color: var(--success); font-size: 16px; }

.bonus-cta-wrap { text-align: center; margin-top: 40px; }

/* ===== INGREDIENTS ===== */
.ingredients { background: var(--navy); }

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ingredient-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: transform var(--transition), border-color var(--transition);
}

.ingredient-card:hover { transform: translateX(4px); border-color: rgba(255,215,0,0.35); }

.ing-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}

.ingredient-card h3 { font-size: 16px; color: var(--gold); margin-bottom: 8px; }
.ingredient-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== SCIENCE ===== */
.science-list { display: flex; flex-direction: column; gap: 20px; max-width: 900px; margin: 0 auto; }

.science-item {
  background: var(--navy-mid);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 28px;
  transition: transform var(--transition);
}

.science-item:hover { transform: translateX(4px); }
.science-item h3 { font-size: 17px; color: var(--white); margin-bottom: 12px; }
.science-item p { color: var(--text-muted); line-height: 1.8; font-size: 15px; }

/* ===== GUARANTEE ===== */
.guarantee { background: var(--navy); }

.guarantee-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.guarantee-image img {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 12px 40px rgba(255,215,0,0.2));
}

.guarantee-content h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 28px; margin-top: 12px; }

.guarantee-point {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--navy-light);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,215,0,0.08);
}

.g-icon { font-size: 28px; flex-shrink: 0; }
.guarantee-point h3 { font-size: 16px; color: var(--gold); margin-bottom: 8px; }
.guarantee-point p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.guarantee-content .btn { margin-top: 16px; }

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--navy-mid);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,215,0,0.08);
  transition: transform var(--transition), border-color var(--transition);
}

.benefit-item:hover { transform: translateY(-4px); border-color: rgba(255,215,0,0.25); }

.benefit-check {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.4;
}

.benefit-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--white); }
.benefit-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

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

.faq-item {
  background: var(--navy-mid);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  min-height: 64px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  transition: background var(--transition);
}

.faq-header:hover { background: rgba(255,215,0,0.04); }
.faq-arrow { color: var(--gold); transition: transform var(--transition); font-size: 12px; flex-shrink: 0; }
.faq-item.active .faq-arrow { transform: rotate(180deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-body { max-height: 400px; }
.faq-body p {
  padding: 0 24px 24px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 15px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: radial-gradient(ellipse at 30% 50%, rgba(255,215,0,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(79,142,247,0.07) 0%, transparent 60%),
              var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.final-cta-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.final-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.final-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.final-img { max-width: 360px; width: 100%; position: relative; z-index: 1; }

.final-content h2 { font-size: clamp(24px, 3vw, 40px); margin-bottom: 20px; margin-top: 12px; }
.final-content p { color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 24px; }

.final-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.final-old {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
}

.final-new {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  color: var(--gold);
}

.final-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.stock-bar-wrap { margin-top: 24px; }
.stock-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--danger);
  margin-bottom: 10px;
}

.stock-bar {
  background: rgba(239,68,68,0.15);
  border-radius: 100px;
  height: 10px;
  overflow: hidden;
}

.stock-fill {
  height: 100%;
  width: 23%;
  background: linear-gradient(90deg, var(--danger), #ff6b6b);
  border-radius: 100px;
  animation: stockPulse 2s ease-in-out infinite;
}

@keyframes stockPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,215,0,0.1);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 380px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 44px;
  height: 44px;
  background: var(--navy-light);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--text-muted);
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links h4 { font-size: 14px; color: var(--gold); margin-bottom: 8px; letter-spacing: 1px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-legal-wrap {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}

.legal-link {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.legal-link:hover { color: var(--gold); }
.link-separator { color: rgba(255,255,255,0.2); }

.footer-disclaimer {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}

.footer-disclaimer p { font-size: 12px; color: var(--text-muted); line-height: 1.8; }

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-copy a { color: var(--gold); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(255,215,0,0.35);
}

.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { transform: scale(1.1) translateY(-3px); }

/* ===== PURCHASE POPUP ===== */
.purchase-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.purchase-popup.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

.popup-content {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-light);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  max-width: 300px;
}

.popup-content img { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; flex-shrink: 0; }
.popup-text { flex: 1; font-size: 13px; }
.popup-text strong { display: block; color: var(--white); font-weight: 700; }
.popup-text span { color: var(--text-muted); }
.popup-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  min-width: 28px;
  min-height: 28px;
  transition: color var(--transition);
}
.popup-close:hover { color: var(--white); }

/* ===== EXIT POPUP ===== */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.exit-overlay.show { opacity: 1; pointer-events: auto; }

.exit-popup {
  background: var(--navy-light);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 80px rgba(0,0,0,0.7);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.exit-overlay.show .exit-popup { transform: scale(1); }

.exit-close {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  transition: all var(--transition);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exit-close:hover { background: rgba(255,255,255,0.2); color: var(--white); }

.exit-badge {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: var(--danger);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}

.exit-popup img { max-width: 160px; margin: 0 auto 20px; }
.exit-popup h3 { font-size: 26px; color: var(--gold); margin-bottom: 12px; }
.exit-popup p { color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.exit-decline {
  margin-top: 12px !important;
  font-size: 12px !important;
  color: var(--text-muted) !important;
  cursor: pointer;
  text-decoration: underline;
}

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.animated, .fade-in-left.animated, .fade-in-right.animated { opacity: 1; transform: none; }

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, .floating, .fade-up, .fade-in-left, .fade-in-right {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== MOBILE RESPONSIVE ===== */

/* Large tablets */
@media (max-width: 1100px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-container { gap: 40px; }
  .what-container { gap: 40px; }
  .guarantee-container { gap: 40px; }
}

/* Tablets */
@media (max-width: 991px) {
  .section-pad { padding: 60px 0; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-6px); }
}

/* Mobile (<768px) */
@media (max-width: 767px) {
  .section-pad { padding: 48px 0; }

  /* NAV */
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: rgba(15,15,26,0.98);
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,215,0,0.1);
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    backdrop-filter: blur(20px);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { font-size: 16px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; text-align: center; }
  .btn-nav { width: 100%; min-height: 48px; border-radius: var(--radius-sm); }
  .hamburger { display: flex; }

  /* HERO */
  .hero { padding: 90px 0 0; min-height: auto; }
  .hero-container { grid-template-columns: 1fr; gap: 24px; padding-bottom: 60px; }
  .hero-image-wrap { order: 1; }
  .hero-content { order: 2; }
  .hero-img { max-width: 260px; }
  .hero-h1 { font-size: 28px; }
  .hero-btn { max-width: 100%; }
  .hero-trust { justify-content: center; }
  .hero-stars { justify-content: center; }
  .hero-content { text-align: center; }
  .hero-eyebrow { font-size: 11px; }

  /* BADGES */
  .badges-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* WHAT IS */
  .what-container { grid-template-columns: 1fr; gap: 32px; }
  .what-image { order: 1; }
  .what-content { order: 2; }

  /* REVIEWS */
  .reviews-grid { grid-template-columns: 1fr; }

  /* BONUS */
  .bonus-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* INGREDIENTS */
  .ingredients-grid { grid-template-columns: 1fr; }

  /* GUARANTEE */
  .guarantee-container { grid-template-columns: 1fr; }
  .guarantee-image { text-align: center; }

  /* FINAL CTA */
  .final-cta-container { grid-template-columns: 1fr; gap: 32px; }
  .final-img-wrap { order: 1; }
  .final-content { order: 2; text-align: center; }
  .final-trust-row { justify-content: center; }
  .final-price { align-items: center; }
  .btn-xl { font-size: 16px; padding: 18px 24px; }

  /* COUNTDOWN */
  .time-num { font-size: 28px; }
  .time-block { padding: 10px 16px; min-width: 60px; }

  /* FOOTER */
  .footer-top { gap: 32px; }
  .footer-legal-links { justify-content: center; }
  .footer-copy { margin-top: 16px; }

  /* PURCHASE POPUP */
  .purchase-popup { left: 12px; right: 12px; bottom: 12px; }
  .popup-content { max-width: 100%; }

  /* SCROLL TOP */
  .scroll-top { bottom: 20px; right: 16px; width: 52px; height: 52px; }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .badges-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 24px; }
  .section-header h2 { font-size: 22px; }
  .btn-hero { font-size: 16px; padding: 16px 24px; }
  .time-num { font-size: 24px; }
  .final-price .final-new { font-size: 18px; }
  .exit-popup { padding: 32px 20px; }
  .exit-popup h3 { font-size: 22px; }
}
