/* =============================================
   APEX SUGAR SHIELD — OFFER PAGE (V1)
   Dark Mode | Premium | Futuristic
   style-v1.css
   ============================================= */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --clr-bg:           #0D0010;
  --clr-bg-alt:       #1a0520;
  --clr-purple:       #8E24AA;
  --clr-purple-deep:  #3A0050;
  --clr-magenta:      #C2185B;
  --clr-neon:         #E040FB;
  --clr-silver:       #C0C0C0;
  --clr-silver-lt:    #E8E8E8;
  --clr-white:        #FFFFFF;
  --clr-muted:        rgba(255,255,255,0.6);

  --grad-primary:     linear-gradient(135deg, #3A0050, #8E24AA, #C2185B);
  --grad-cta:         linear-gradient(90deg, #8E24AA, #E040FB, #C2185B);
  --grad-chrome:      linear-gradient(180deg, #FFFFFF 0%, #C0C0C0 40%, #8E8E8E 70%, #C0C0C0 100%);

  --glow-purple:      0 0 30px rgba(142,36,170,.6), 0 0 60px rgba(142,36,170,.25);
  --glow-cta:         0 0 20px rgba(224,64,251,.7), 0 0 40px rgba(194,24,91,.4), 0 4px 20px rgba(142,36,170,.5);

  --ff-display:       'Orbitron', sans-serif;
  --ff-body:          'Rajdhani', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--clr-bg);
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== AMBIENT BG PARTICLES ===== */
.bg-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142,36,170,.14) 0%, transparent 70%);
  animation: particleDrift 14s ease-in-out infinite;
}
.p1 { width: 420px; height: 420px; top: -100px; left: -120px; animation-delay: 0s; }
.p2 { width: 320px; height: 320px; top: 30%; right: -80px; animation-delay: -4s;
      background: radial-gradient(circle, rgba(194,24,91,.1) 0%, transparent 70%); }
.p3 { width: 520px; height: 520px; bottom: 8%; left: 15%; animation-delay: -7s; }
.p4 { width: 220px; height: 220px; top: 60%; right: 28%; animation-delay: -2s;
      background: radial-gradient(circle, rgba(224,64,251,.12) 0%, transparent 70%); }
.p5 { width: 380px; height: 380px; top: 12%; left: 45%; animation-delay: -10s; }
.p6 { width: 260px; height: 260px; bottom: 4%; right: 4%; animation-delay: -5s;
      background: radial-gradient(circle, rgba(194,24,91,.07) 0%, transparent 70%); }

@keyframes particleDrift {
  0%,100% { transform: translate(0, 0) scale(1);   opacity: .6; }
  33%      { transform: translate(28px,-18px) scale(1.08); opacity: .9; }
  66%      { transform: translate(-18px,28px) scale(.92); opacity: .4; }
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
section { position: relative; z-index: 1; }

/* ===== CHROME & ACCENT TEXT ===== */
.chrome-text {
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent-text {
  color: var(--clr-neon);
  -webkit-text-fill-color: var(--clr-neon);
}

/* ===== TYPOGRAPHY UTILITIES ===== */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.2rem;
}
.section-title-sm {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-tag {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--clr-neon);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: .3rem .9rem;
  border: 1px solid rgba(224,64,251,.3);
  border-radius: var(--radius-xl);
  background: rgba(224,64,251,.05);
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--clr-muted);
  line-height: 1.75;
}

/* ===== STICKY HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: padding .35s var(--ease-out), background .35s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(13,0,16,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .9rem 0;
  border-bottom: 1px solid rgba(142,36,170,.2);
  box-shadow: 0 4px 30px rgba(142,36,170,.15);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-apex {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .14em;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-family: var(--ff-display);
  font-size: .5rem;
  font-weight: 500;
  letter-spacing: .32em;
  color: var(--clr-neon);
  -webkit-text-fill-color: var(--clr-neon);
}

/* Nav */
.header-nav { display: flex; align-items: center; gap: 2rem; }
.header-nav a {
  font-family: var(--ff-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--clr-silver);
  text-transform: uppercase;
  transition: color .2s;
}
.header-nav a:hover { color: var(--clr-neon); }
.nav-cta {
  padding: .55rem 1.2rem !important;
  background: var(--grad-cta) !important;
  border-radius: var(--radius-xl) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: var(--glow-cta) !important;
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(224,64,251,.9), 0 0 60px rgba(194,24,91,.5) !important;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--clr-white);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

/* ===== VIDEO SECTION — mobile only ===== */
.vid-section {
  display: none;
  background: #0a0f1a;
  padding: 24px 5% 12px;
  position: relative;
  overflow: hidden;
}
.vid-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, #df40fb50 0%, transparent 70%);
  pointer-events: none;
}
.vid-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.vid-header {
  text-align: center;
  margin-bottom: 16px;
}
.vid-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
}
.vid-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #e040fbcc;
  line-height: 1.15;
  margin-bottom: 14px;
  font-weight: 700;
}
.vid-sub {
  font-size: 0.9rem;
  color: #ffffff;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}
.vid-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 8px; overflow: hidden;
  border: 1px solid #e040fbcc;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.vid-frame-wrap iframe,
.vid-frame-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  display: block;
}
.vid-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #0a0f1a;
  cursor: pointer;
  transition: opacity 0.3s;
  border-radius: 8px;
}
.vid-placeholder:hover { opacity: 0.88; }
.vid-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #e040fbcc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, background 0.25s;
}
.vid-placeholder:hover .vid-play-btn {
  transform: scale(1.1);
  background: #e040fbcc;
}
.vid-play-btn svg {
  width: 28px;
  height: 28px;
  fill: #e040fbcc;
  margin-left: 4px;
}
.vid-play-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e040fbcc;
  font-weight: 600;
}
.vid-caption {
  text-align: center;
  margin-top: 18px;
  font-size: 0.75rem;
  color: #e040fbcc;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .vid-section { display: block; }
}
/* ===== END VIDEO SECTION ===== */

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}
/* Diagonal background accent */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: -200px;
  width: 60%; height: 100%;
  background: linear-gradient(135deg, transparent, rgba(58,0,80,.4), rgba(142,36,170,.12));
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--clr-bg));
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content { display: flex; flex-direction: column; gap: 1.5rem; }

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff-display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--clr-neon);
  text-transform: uppercase;
  width: fit-content;
}
.badge-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--clr-neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--clr-neon);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.75); }
}

/* Headline */
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  display: flex;
  flex-direction: column;
  gap: .08em;
}
.hero-headline .chrome-text { font-size: .85em; }
.hero-headline .glow-text {
  font-size: 1.1em;
  color: var(--clr-neon);
  -webkit-text-fill-color: var(--clr-neon);
  text-shadow: 0 0 40px rgba(224,64,251,.8), 0 0 80px rgba(224,64,251,.4);
  animation: glowPulse 3.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { text-shadow: 0 0 40px #e040fbcc, 0 0 80px rgba(224,64,251,.35); }
  50%      { text-shadow: 0 0 60px rgba(224,64,251,1), 0 0 120px rgba(224,64,251,.6), 0 0 200px rgba(194,24,91,.3); }
}

/* Sub copy */
.hero-sub {
  font-size: 1.05rem;
  color: var(--clr-muted);
  line-height: 1.78;
  max-width: 520px;
}
.hero-sub strong { color: var(--clr-white); font-weight: 600; }

/* Proof bar */
.hero-proof-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(142,36,170,.22);
  border-radius: var(--radius-md);
  width: fit-content;
}
.proof-item { display: flex; flex-direction: column; gap: .2rem; }
.proof-number {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-label {
  font-size: .7rem;
  color: var(--clr-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.proof-divider { width: 1px; height: 36px; background: rgba(142,36,170,.3); }

/* CTA buttons */
.hero-ctas { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1.1rem 2.5rem;
  background: var(--grad-cta);
  border-radius: var(--radius-xl);
  font-family: var(--ff-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: #fff;
  text-transform: uppercase;
  box-shadow: var(--glow-cta);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-primary-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .5s var(--ease-out);
}
.btn-primary-cta:hover::before { left: 100%; }
.btn-primary-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(224,64,251,.9), 0 0 80px rgba(194,24,91,.5), 0 8px 30px rgba(0,0,0,.4);
}
.btn-arrow { font-size: 1.1rem; transition: transform .2s; }
.btn-primary-cta:hover .btn-arrow { transform: translateX(5px); }
.btn-ghost-cta {
  font-family: var(--ff-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--clr-silver);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(192,192,192,.3);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-ghost-cta:hover { color: var(--clr-neon); border-color: var(--clr-neon); }

/* Trust badges */
.hero-trust-badges { display: flex; flex-wrap: wrap; gap: .7rem; }
.trust-badge {
  font-size: .75rem;
  font-weight: 600;
  color: var(--clr-silver);
  padding: .3rem .8rem;
  border: 1px solid rgba(192,192,192,.2);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.025);
  letter-spacing: .03em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-glow-ring {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142,36,170,.22) 0%, transparent 70%);
  animation: ringPulse 4s ease-in-out infinite;
}
.ring2 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(194,24,91,.1) 0%, transparent 70%);
  animation: ringPulse 4s ease-in-out infinite reverse;
  animation-delay: -2s;
}
@keyframes ringPulse {
  0%,100% { transform: scale(1);   opacity: .7; }
  50%      { transform: scale(1.1); opacity: 1; }
}
.shield-icon-wrap {
  position: absolute;
  top: -24px; right: -24px;
  width: 110px; height: 132px;
  animation: shieldFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 0 16px rgba(224,64,251,.7));
  z-index: 2;
}
.shield-svg { width: 100%; height: 100%; }
@keyframes shieldFloat {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-14px) rotate(4deg); }
}
.product-image {
  position: relative;
  z-index: 1;
  animation: productFloat 5.5s ease-in-out infinite;
  filter: drop-shadow(0 20px 50px rgba(142,36,170,.55)) drop-shadow(0 0 30px rgba(224,64,251,.25));
  max-height: 500px;
  width: auto;
  object-fit: contain;
}
@keyframes productFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-display);
  font-size: .6rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.3);
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, rgba(142,36,170,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; }
  50%      { opacity: 1; }
}

/* ===== PROBLEM BRIDGE ===== */
.problem-bridge {
  padding: 40px 0;
  background: linear-gradient(180deg, transparent, rgba(58,0,80,.2), transparent);
}
.problem-content { text-align: center; max-width: 820px; margin: 0 auto; }
.problem-text {
  font-size: 1.1rem;
  color: var(--clr-muted);
  line-height: 1.78;
  margin-bottom: 3rem;
}
.problem-text strong { color: var(--clr-neon); }
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ===== SCROLL REVEAL BASE ===== */
.stat-card,
.benefit-card,
.testimonial-card,
.pricing-card,
.ingredient-tier {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.ingredient-tier { transform: translateX(-20px); }
.stat-card.visible,
.benefit-card.visible,
.testimonial-card.visible,
.pricing-card.visible,
.ingredient-tier.visible { opacity: 1; transform: translate(0); }

/* Stat cards */
.stat-card {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.5rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(142,36,170,.2);
  border-radius: var(--radius-md);
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-desc { font-size: .875rem; color: var(--clr-muted); line-height: 1.5; }

/* ===== BENEFITS ===== */
.benefits { padding: 60px 0; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  position: relative;
  padding: 2rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(142,36,170,.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .35s, background .35s, transform .35s var(--ease-out), box-shadow .35s, opacity .6s var(--ease-out);
}
.benefit-card:hover {
  border-color: rgba(224,64,251,.38);
  background: rgba(142,36,170,.08);
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(142,36,170,.2);
}
.benefit-card--featured {
  background: rgba(58,0,80,.4);
  border-color: rgba(224,64,251,.35);
  box-shadow: var(--glow-purple);
}
.benefit-card--featured:hover {
  box-shadow: 0 0 40px rgba(224,64,251,.5), 0 20px 40px rgba(142,36,170,.3) !important;
}
.featured-label {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--clr-bg);
  background: var(--grad-cta);
  padding: .25rem .8rem;
  border-radius: var(--radius-xl);
  white-space: nowrap;
}
.benefit-icon { width: 60px; height: 60px; margin-bottom: 1.2rem; }
.benefit-title {
  font-family: var(--ff-display);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--clr-silver-lt);
  margin-bottom: .7rem;
  line-height: 1.3;
}
.benefit-desc { font-size: .9rem; color: var(--clr-muted); line-height: 1.68; }

/* ===== INGREDIENTS ===== */
.ingredients {
  padding: 60px 0;
  background: linear-gradient(180deg, transparent, rgba(26,5,32,.6), transparent);
}
.ingredients-showcase { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 3rem; }
.tier-label {
  font-family: var(--ff-display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .24em;
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.ingredient-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.ing-pill {
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(142,36,170,.25);
  background: rgba(255,255,255,.025);
  color: var(--clr-silver);
  transition: border-color .2s, background .2s, color .2s;
  letter-spacing: .02em;
  cursor: default;
}
.ing-pill:hover { border-color: rgba(224,64,251,.5); background: rgba(224,64,251,.08); color: var(--clr-white); }
.ing-pill--highlight { border-color: rgba(224,64,251,.42); background: rgba(58,0,80,.5); color: var(--clr-neon); }
.formula-callout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(58,0,80,.5), rgba(142,36,170,.15));
  border: 1px solid rgba(224,64,251,.2);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.formula-callout::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-neon), transparent);
}
.callout-icon { font-size: 2.4rem; flex-shrink: 0; }
.callout-content h3 {
  font-family: var(--ff-display);
  font-size: .95rem;
  font-weight: 700;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .7rem;
  letter-spacing: .05em;
}
.callout-content p { font-size: .93rem; color: var(--clr-muted); line-height: 1.72; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 60px 0; }
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: start;
}
.testimonial-card {
  padding: 2rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(142,36,170,.15);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.testimonial-card--center {
  background: rgba(58,0,80,.35);
  border-color: rgba(224,64,251,.25);
  margin-top: -16px;
  margin-bottom: -16px;
}
.testimonial-rating { color: #FFB800; font-size: .9rem; letter-spacing: .05em; }
.testimonial-text { font-size: .9rem; color: var(--clr-muted); line-height: 1.77; font-style: italic; flex: 1; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(142,36,170,.15);
  padding-top: 1.2rem;
}
.author-avatar { border-radius: 50%; border: 2px solid rgba(142,36,170,.4); }
.author-info { display: flex; flex-direction: column; gap: .2rem; }
.author-info strong {
  font-family: var(--ff-display);
  font-size: .78rem;
  font-weight: 700;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.author-info span { font-size: .74rem; color: var(--clr-muted); }
.testimonial-aggregate { text-align: center; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.aggregate-number {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 900;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.aggregate-stars { color: #FFB800; font-size: 1.2rem; letter-spacing: .1em; }
.aggregate-count { font-size: .85rem; color: var(--clr-muted); }

/* ===== LIVES CHANGED ===== */
.lives-changed { padding: 60px 0; }
.lc-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.lc-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.lc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease-out);
  filter: brightness(0.75) saturate(0.85);
}
.lc-photo-card:hover .lc-photo { transform: scale(1.04); }
.lc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,0,16,.92) 0%, rgba(58,0,80,.55) 45%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  gap: .9rem;
}
.lc-stat-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(13,0,16,.45);
  border: 1px solid rgba(224,64,251,.2);
  border-radius: var(--radius-md);
  padding: .75rem 1.4rem;
  width: fit-content;
}
.lc-stat { display: flex; flex-direction: column; gap: .15rem; }
.lc-stat-val {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 900;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.lc-stat-lbl { font-size: .72rem; color: var(--clr-neon); text-transform: uppercase; letter-spacing: .12em; }
.lc-stat-divider { width: 1px; height: 2.2rem; background: rgba(224,64,251,.3); }
.lc-quote { font-size: .95rem; color: var(--clr-silver-lt); line-height: 1.55; font-style: italic; }
.lc-name { font-family: var(--ff-display); font-size: .65rem; font-weight: 700; letter-spacing: .14em; color: var(--clr-neon); }

@media (max-width: 640px) {
  .lc-photo-grid { grid-template-columns: 1fr; }
}

/* ===== PRICING ===== */
.pricing { padding: 60px 0; position: relative; overflow: hidden; }
.pricing-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(58,0,80,.4) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-urgency { color: var(--clr-silver-lt) !important; font-weight: 500; }
.pricing-urgency strong { color: var(--clr-neon); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 4rem;
}
.pricing-card {
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(142,36,170,.2);
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}
.pricing-card--featured {
  background: rgba(58,0,80,.5);
  border-color: rgba(224,64,251,.4);
  box-shadow: var(--glow-purple);
  transform: scale(1.04);
}
.pricing-card--featured.visible { transform: scale(1.04) !important; }
.pricing-popular-badge {
  font-family: var(--ff-display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  background: var(--grad-cta);
  color: #fff;
  padding: .3rem .8rem;
  border-radius: var(--radius-xl);
}
.pricing-bottles {
  font-family: var(--ff-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-duration { font-size: .8rem; color: var(--clr-muted); }
/* Pricing image wrappers — stacked bottle effect */
.pricing-img-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 200px;
  margin: .5rem 0;
}
.pricing-img {
  height: 180px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(142,36,170,.45));
  transition: transform .3s var(--ease-out);
}
.pricing-card:hover .pricing-img { transform: translateY(-4px) scale(1.03); }

/* 1 bottle — single centered */
.pricing-img-wrap--1 .pricing-img { height: 170px; }

/* 3 bottles — ghost copies via CSS before/after */
.pricing-img-wrap--3 {
  height: 220px;
}
.pricing-img-wrap--3 .pricing-img {
  height: 190px;
  position: relative;
  z-index: 2;
}
.pricing-img-wrap--3::before,
.pricing-img-wrap--3::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 130px; height: 190px;
  background: url('../images/Diabetes%20-%20Apex%20Sugar%20Shield.png') center / contain no-repeat;
  opacity: .45;
  filter: brightness(.5) saturate(.4);
  z-index: 1;
}
.pricing-img-wrap--3::before { left: 0; transform: rotate(-8deg) translateX(10px); }
.pricing-img-wrap--3::after  { right: 0; transform: rotate(8deg) translateX(-10px); }

/* 6 bottles — stronger stacking effect */
.pricing-img-wrap--6 {
  height: 220px;
}
.pricing-img-wrap--6 .pricing-img {
  height: 190px;
  position: relative;
  z-index: 2;
}
.pricing-img-wrap--6::before,
.pricing-img-wrap--6::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 130px; height: 190px;
  background: url('../images/Diabetes%20-%20Apex%20Sugar%20Shield.png') center / contain no-repeat;
  opacity: .5;
  filter: brightness(.45) saturate(.3);
  z-index: 1;
}
.pricing-img-wrap--6::before {
  left: 0;
  transform: rotate(-12deg) translateX(4px);
  width: 110px;
}
.pricing-img-wrap--6::after {
  right: 0;
  transform: rotate(12deg) translateX(-4px);
  width: 110px;
}
.pricing-amount { display: flex; align-items: baseline; gap: .2rem; }
.price-current {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 900;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-per { font-size: .9rem; color: var(--clr-muted); }
.price-original { font-size: .8rem; color: var(--clr-neon); }
.price-original s { color: var(--clr-muted); }

.btn-pricing-cta {
  display: inline-block;
  padding: .9rem 2rem;
  background: rgba(142,36,170,.2);
  border: 1px solid rgba(142,36,170,.4);
  border-radius: var(--radius-xl);
  font-family: var(--ff-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--clr-silver);
  text-transform: uppercase;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
  width: 100%;
  text-align: center;
}
.btn-pricing-cta:hover { background: rgba(142,36,170,.35); border-color: rgba(224,64,251,.5); color: #fff; transform: translateY(-2px); }
.btn-pricing-featured {
  background: var(--grad-cta);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--glow-cta);
}
.btn-pricing-featured:hover {
  box-shadow: 0 0 30px rgba(224,64,251,.8), 0 8px 20px rgba(0,0,0,.3);
  color: #fff;
}
.pricing-note { font-size: .74rem; color: var(--clr-muted); }

/* Guarantee */
.guarantee-block {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(58,0,80,.4), rgba(26,5,32,.65));
  border: 1px solid rgba(192,192,192,.12);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.guarantee-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-silver), transparent);
}
.guarantee-icon { flex-shrink: 0; }
.guarantee-title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .75rem;
  letter-spacing: .04em;
}
.guarantee-content p { font-size: .95rem; color: var(--clr-muted); line-height: 1.72; }

/* ===== ADDED: BOTTLES SECTION ===== */
.bottles-section {
  padding: 60px 0;
  background: linear-gradient(180deg, transparent, rgba(26,5,32,.7), transparent);
  position: relative;
  z-index: 1;
}

.btl-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1.5rem;
  align-items: end;
  margin-top: 1rem;
}

.btl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.4rem;
  padding: 2rem 1.5rem 1.8rem;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(142,36,170,.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .3s var(--ease-out), border-color .3s, transform .3s var(--ease-out);
}
.btl-card:hover {
  box-shadow: 0 16px 40px rgba(142,36,170,.22);
  border-color: rgba(224,64,251,.3);
  transform: translateY(-4px);
}

.btl-card--featured {
  background: rgba(58,0,80,.55);
  border-color: rgba(142,36,170,.55);
  box-shadow: 0 24px 60px rgba(142,36,170,.3), 0 0 0 1px rgba(224,64,251,.2);
  padding-top: 2.8rem;
  padding-bottom: 2.2rem;
}
.btl-card--featured:hover {
  box-shadow: 0 32px 72px rgba(142,36,170,.45), 0 0 0 1px rgba(224,64,251,.4);
  transform: translateY(-6px);
}

.btl-best-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-cta);
  color: #fff;
  font-family: var(--ff-display);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .3rem 1.1rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--glow-cta);
  white-space: nowrap;
}

.btl-card-header { display: flex; flex-direction: column; gap: .3rem; }
.btl-qty {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btl-supply {
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 600;
  color: var(--clr-neon);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0;
}

/* Bottle images container */
.btl-imgs {
  position: relative;
  width: 100%;
  height: 170px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.btl-card--featured .btl-imgs { height: 200px; }

/* 6 bottles: clustered/stacked layout with 6 visible units */
.btl-imgs--6 {
  height: 210px;
}
.btl-imgs--6 .btl-img {
  position: absolute;
  width: auto;
  filter: drop-shadow(0 8px 20px rgba(142,36,170,.4));
}
.btl6-b3,
.btl6-b2,
.btl6-b1 {
  height: 112px;
}
.btl6-f1,
.btl6-f2,
.btl6-f3 {
  height: 136px;
}


.btl-img {
  position: absolute;
  bottom: 0;
  width: auto;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(142,36,170,.4));
}
.btl-card--featured .btl-img { height: 165px; }

/* 1 bottle */
.btl-solo { left: 50%; transform: translateX(-50%); }

/* 3 bottles — 2 back + 1 front */
.btl3-b2 { left: 50%; transform: translateX(-90%) translateY(4px) scale(.82); z-index: 1; filter: drop-shadow(0 6px 14px rgba(0,0,0,.5)) brightness(.7); }
.btl3-b1 { left: 50%; transform: translateX(-10%) translateY(4px) scale(.82); z-index: 2; filter: drop-shadow(0 6px 14px rgba(0,0,0,.45)) brightness(.75); }
.btl3-f1 { left: 50%; transform: translateX(-50%); z-index: 3; }

/* 6 bottles — 3 back + 3 front */
.btl6-b3 { left: 50%; transform: translateX(-96%) translateY(-20px) scale(.84); z-index: 3; filter: drop-shadow(0 6px 14px rgba(0,0,0,.42)) brightness(.94); }
.btl6-b2 { left: 50%; transform: translateX(-50%) translateY(-58px) scale(.8); z-index: 2; filter: drop-shadow(0 6px 14px rgba(0,0,0,.4)) brightness(.94); }
.btl6-b1 { left: 50%; transform: translateX(-4%) translateY(-20px) scale(.84); z-index: 3; filter: drop-shadow(0 6px 14px rgba(0,0,0,.42)) brightness(.94); }
.btl6-f1 { left: 50%; transform: translateX(-128%) translateY(0) scale(.94); z-index: 4; }
.btl6-f2 { left: 50%; transform: translateX(-50%) translateY(-3px) scale(1); z-index: 5; }
.btl6-f3 { left: 50%; transform: translateX(28%) translateY(0) scale(.94); z-index: 4; }

/* Pricing block */
.btl-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
}
.btl-price-old {
  font-family: var(--ff-display);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.38);
  text-decoration: line-through;
}
.btl-price-now {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.btl-per {
  font-size: .74rem;
  color: var(--clr-muted);
  letter-spacing: .04em;
  margin: 0;
}

/* Buttons */
.btl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .85rem 1.5rem;
  border-radius: var(--radius-xl);
  font-family: var(--ff-display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.btl-btn--primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: var(--glow-cta);
}
.btl-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(224,64,251,.85), 0 8px 20px rgba(0,0,0,.35);
  color: #fff;
}
.btl-btn--secondary {
  background: rgba(142,36,170,.12);
  color: var(--clr-silver);
  border: 1px solid rgba(142,36,170,.35);
}
.btl-btn--secondary:hover {
  background: rgba(142,36,170,.22);
  border-color: rgba(224,64,251,.5);
  color: #fff;
  transform: translateY(-2px);
}

.btl-shipping {
  font-size: .72rem;
  color: rgba(255,255,255,.38);
  margin: 0;
}
.btl-card--featured .btl-shipping { color: var(--clr-neon); }
/* ===== END: BOTTLES SECTION ===== */

/* ===== ADDED: FOOTER (4 columns) ===== */
.site-footer {
  background: rgba(13,0,16,.96);
  border-top: 1px solid rgba(142,36,170,.15);
}

.footer-top-area { padding: 70px 0 50px; }

.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-col--brand { padding-right: 1rem; }

.footer-bio {
  font-size: .88rem;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-top: .8rem;
  margin-bottom: 1rem;
}
.footer-legal {
  font-size: .74rem;
  color: rgba(255,255,255,.28);
  line-height: 1.6;
  margin: 0;
}

.footer-col h4 {
  font-family: var(--ff-display);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.1rem;
}
.footer-col a { display: block; font-size: .875rem; color: var(--clr-muted); margin-bottom: .55rem; transition: color .2s; }
.footer-col a:hover { color: var(--clr-neon); }

.footer-col--contact p {
  font-size: .875rem;
  color: var(--clr-muted);
  line-height: 1.6;
  margin-bottom: .55rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-bottom {
  border-top: 1px solid rgba(142,36,170,.1);
  padding: 1.8rem 0;
}
.footer-disclaimer { font-size: .7rem; color: rgba(255,255,255,.25); line-height: 1.65; margin-bottom: 1rem; }

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-copyright { font-size: .72rem; color: rgba(255,255,255,.3); }
.footer-policy-links { display: flex; gap: 1.5rem; }
.footer-policy-links a { font-size: .72rem; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-policy-links a:hover { color: var(--clr-neon); }
/* ===== END: FOOTER ===== */

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card--center { margin-top: 0; margin-bottom: 0; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .pricing-card--featured { transform: none !important; }
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
  .footer-col--brand { grid-column: span 2; padding-right: 0; }
  .problem-stats { gap: 1rem; }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 767px) {
  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; max-width: 300px; margin: 0 auto; }
  .product-image { max-height: 380px; }
  .product-glow-ring { width: 280px; height: 280px; }
  .ring2 { width: 370px; height: 370px; }
  .shield-icon-wrap { width: 72px; height: 86px; top: -10px; right: -10px; }
  .hero-proof-bar { flex-wrap: wrap; gap: 1rem; width: 100%; justify-content: center; }
  .proof-divider { display: none; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary-cta { width: 100%; justify-content: center; }

  /* Mobile nav */
  .header-nav {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(13,0,16,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(142,36,170,.2);
    z-index: 999;
  }
  .header-nav.nav-open { display: flex; }
  .mobile-menu-btn { display: block; }

  .benefits-grid { grid-template-columns: 1fr; }
  .problem-stats { grid-template-columns: 1fr; gap: 1rem; }
  .testimonials-track { grid-template-columns: 1fr; }
  .testimonial-card--center { margin: 0; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto 4rem; }
  .pricing-card--featured { transform: none !important; }

  .btl-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 1rem auto 0;
    align-items: stretch;
  }
  .btl-card,
  .btl-card--featured {
    transform: none !important;
  }
  .btl-card--featured {
    order: -1;
  }
  .btl-imgs {
    height: 150px;
  }
  .btl-card--featured .btl-imgs {
    min-height: 170px;
  }
  .btl-imgs--6 { height: 188px; }
  .btl6-b3,
  .btl6-b2,
  .btl6-b1 { height: 96px; }
  .btl6-f1,
  .btl6-f2,
  .btl6-f3 { height: 118px; }
  .btl6-b3 { transform: translateX(-96%) translateY(-15px) scale(.84); filter: drop-shadow(0 6px 14px rgba(0,0,0,.42)) brightness(.94); }
  .btl6-b2 { transform: translateX(-50%) translateY(-44px) scale(.8); z-index: 2; filter: drop-shadow(0 6px 14px rgba(0,0,0,.38)) brightness(.94); }
  .btl6-b1 { transform: translateX(-4%) translateY(-15px) scale(.84); filter: drop-shadow(0 6px 14px rgba(0,0,0,.42)) brightness(.94); }
  .btl6-f1 { transform: translateX(-124%) translateY(0) scale(.93); }
  .btl6-f3 { transform: translateX(24%) translateY(0) scale(.93); }

  .footer-top-area { padding: 50px 0 36px; }
  .footer-cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-col--brand { grid-column: auto; }
  .footer-col h4 { margin-bottom: .65rem; }
  .footer-col a,
  .footer-col--contact p,
  .footer-bio { font-size: .95rem; }
  .footer-bottom { padding: 1.2rem 0; }
  .footer-policy-links {
    width: 100%;
    justify-content: space-between;
    gap: .75rem;
    flex-wrap: wrap;
  }

  .guarantee-block { flex-direction: column; text-align: center; padding: 2rem; gap: 1.5rem; }
  .formula-callout { flex-direction: column; gap: 1rem; }

  /* ── Hide hero on mobile (vid-section replaces it) ── */
  .hero { display: none !important; }
  .hero-scroll-hint { display: none !important; }

  /* ── Reduce section padding on mobile ── */
  .problem-bridge { padding: 24px 0 !important; }
  .benefits { padding: 32px 0 !important; }
  .ingredients { padding: 32px 0 !important; }
  .testimonials { padding: 32px 0 !important; }
  .lives-changed { padding: 32px 0 !important; }
  .bottles-section { padding: 32px 0 !important; }
  .pricing { padding: 32px 0 !important; }

  /* ── Reduce section headers and internal spacing on mobile ── */
  .section-header { margin-bottom: 1.5rem !important; }
  .problem-text { margin-bottom: 1.5rem !important; }
  .pricing-grid { margin-bottom: 2rem !important; }
  .testimonials-track { margin-bottom: 1.5rem !important; }
  .ingredients-showcase { margin-bottom: 1.5rem !important; }
  .footer-top-area { padding: 36px 0 24px !important; }
  .footer-cols { gap: 1.2rem !important; }
}

/* ===== RESPONSIVE: SMALL MOBILE ===== */
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(1.9rem, 7.5vw, 2.8rem); }
  .section-title { font-size: clamp(1.7rem, 6.5vw, 2.4rem); }
  .hero-visual { max-width: 260px; }
  .product-image { max-height: 320px; }
  .footer-policy-links { justify-content: flex-start; }
  .hero-trust-badges { gap: .5rem; }
  .trust-badge { font-size: .68rem; }
}
