﻿/* ============================================================
   Vira-Cure — Click Funnel Stylesheet
   Blue & White | Parallax | Mobile-First
   ============================================================ */

/* ---------- Global hidden fix (overrides display:flex on [hidden] elements) ---------- */
[hidden] { display: none !important; }

/* ---------- CSS Custom Properties ---------- */
:root {
  --blue-deep:   #0a2463;
  --blue-royal:  #1565c0;
  --blue-bright: #1e90ff;
  --blue-cyan:   #00b4d8;
  --blue-light:  #e3f2fd;
  --blue-pale:   #f0f8ff;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --dark:        #0d1b2a;
  --dark-2:      #1a2840;
  --text-body:   #334155;
  --text-muted:  #64748b;
  --green:       #00c851;
  --red:         #f44336;
  --yellow:      #ffc107;
  --gold:        #ffd700;
  --gradient-1:  linear-gradient(135deg, #0a2463 0%, #1565c0 50%, #00b4d8 100%);
  --gradient-2:  linear-gradient(135deg, #1e90ff 0%, #00b4d8 100%);
  --gradient-hero: linear-gradient(160deg, #0a1628 0%, #0a2463 40%, #1565c0 80%, #00b4d8 100%);
  --shadow-sm:   0 2px 8px rgba(10,36,99,0.12);
  --shadow-md:   0 8px 24px rgba(10,36,99,0.18);
  --shadow-lg:   0 16px 48px rgba(10,36,99,0.25);
  --shadow-glow: 0 0 30px rgba(30,144,255,0.4);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading:'Montserrat', sans-serif;
  --font-body:   'Open Sans', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

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

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}

.gradient-text {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-blue { color: var(--blue-bright); }
.white-text { color: var(--white) !important; }

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

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 12px 0 16px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(30,144,255,0.1);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(30,144,255,0.25);
}

.section-eyebrow.light {
  color: var(--blue-cyan);
  background: rgba(0,180,216,0.15);
  border-color: rgba(0,180,216,0.3);
}

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

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-1);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
  justify-content: center;
}

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

.btn-primary:hover::before { background: rgba(255,255,255,0.12); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-primary:active { transform: translateY(0); }

.btn-glow { box-shadow: 0 4px 20px rgba(30,144,255,0.35); }
.btn-full { width: 100%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  justify-content: center;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  background: transparent;
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-whatsapp { background: linear-gradient(135deg, #128c7e 0%, #25d366 100%) !important; }
.btn-whatsapp:hover { box-shadow: 0 4px 20px rgba(37,211,102,0.4) !important; }

.btn-whatsapp-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 18px 40px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

.btn-whatsapp-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.btn-spinner { display: inline-flex; }

.mt-4 { margin-top: 24px; }

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-20px) rotate(2deg); }
}

@keyframes floatSlow {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(-2deg); }
}

@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 20px rgba(30,144,255,0.3); }
  50%      { box-shadow: 0 0 50px rgba(30,144,255,0.7); }
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes glow-ring {
  0%,100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.1); }
}

.animate-in { opacity: 0; animation: fadeInUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }

.float-anim { animation: float 6s ease-in-out infinite; }
.float-anim-slow { animation: floatSlow 8s ease-in-out infinite; }

.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 28, 60, 0.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}

.logo-icon {
  width: 38px; height: 38px;
  background: var(--gradient-2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--white);
}

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--white); }

.nav-cta-btn {
  background: var(--gradient-2) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 20px !important;
  transition: var(--transition) !important;
}

.nav-cta-btn:hover { box-shadow: var(--shadow-glow) !important; transform: translateY(-2px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
}

/* ── Hero background video ── */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Slight scale-up prevents letterbox lines on some browsers */
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Darker gradient overlay so text stays readable over any video */
  background: linear-gradient(
    160deg,
    rgba(10,18,40,0.88) 0%,
    rgba(10,36,99,0.75) 45%,
    rgba(21,101,192,0.60) 80%,
    rgba(0,180,216,0.45) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: rgba(30,144,255,0.5);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 3;
  flex: 1;
  padding-top: 100px;
  padding-bottom: 60px;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,144,255,0.2);
  border: 1px solid rgba(30,144,255,0.4);
  color: var(--blue-cyan);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue-cyan);
}

.stat span:not(.stat-num) {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue-cyan);
}

.stat small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-trust {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

.hero-trust i { margin-right: 4px; color: var(--blue-cyan); }

/* Hero product images */
.hero-product {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  max-width: 560px;
  z-index: 3;
  pointer-events: none;
}

.hero-pen {
  position: absolute;
  right: 60px;
  bottom: 0;
  width: 60%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.hero-pill {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 35%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

.hero-glow-ring {
  position: absolute;
  right: 80px;
  bottom: 100px;
  width: 300px; height: 300px;
  border: 2px solid rgba(30,144,255,0.3);
  border-radius: 50%;
  animation: glow-ring 4s ease-in-out infinite;
}

/* Scroll down arrow */
.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  animation: float 2s ease-in-out infinite;
  z-index: 4;
}

/* ---------- PARALLAX ---------- */
.parallax-section { background-attachment: fixed; }

@media (max-width: 768px) {
  .parallax-section { background-attachment: scroll; }
}

/* ---------- SOCIAL PROOF BAR ---------- */
.social-proof-bar {
  background: var(--blue-deep);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-wrap { overflow: hidden; }

.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.ticker-track i { color: var(--gold); margin-right: 6px; }

/* ---------- PROBLEM SECTION ---------- */
.problem-section { background: var(--off-white); }

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

.pain-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30,144,255,0.1);
  transition: var(--transition);
}

.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,144,255,0.3);
}

.pain-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(10,36,99,0.08) 0%, rgba(30,144,255,0.12) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--blue-royal);
}

.pain-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.problem-cta {
  text-align: center;
}

.big-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
}

/* ---------- SOLUTION SECTION ---------- */
.solution-section {
  background: var(--gradient-hero);
  position: relative;
}

.solution-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e90ff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.solution-desc {
  font-size: 1.05rem;
  margin: 20px 0 32px;
  opacity: 0.9;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.97rem;
}

.solution-list i {
  color: var(--blue-cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.product-showcase {
  position: relative;
  height: 500px;
}

.product-pen-main {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-60%);
  width: 60%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.product-pill-main {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 45%;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
}

.product-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.badge-1 { top: 40px; left: 0; }
.badge-2 { top: 160px; right: 0; }
.badge-3 { bottom: 80px; left: 10px; }

/* ---------- HOW IT WORKS ---------- */
.how-section { background: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 56px;
}

.step-card {
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-2);
}

.step-card:hover {
  border-color: var(--blue-bright);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(30,144,255,0.15);
  line-height: 1;
  margin-bottom: 8px;
}

.step-icon {
  width: 56px; height: 56px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  color: var(--white);
}

.step-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.step-tag {
  display: inline-block;
  margin-top: 16px;
  background: var(--gradient-2);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--blue-bright);
  padding-top: 80px;
  font-weight: 700;
}

/* Timeline */
.timeline-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(30,144,255,0.2);
}

.timeline-item {
  padding: 24px 20px;
  border-right: 1px solid rgba(30,144,255,0.15);
  text-align: center;
}

.timeline-item:last-child { border-right: none; }

.active-milestone {
  background: var(--gradient-1);
  color: var(--white);
}

.timeline-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-bright);
  margin-bottom: 6px;
}

.active-milestone strong { color: var(--blue-cyan); }

.timeline-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.active-milestone span { color: rgba(255,255,255,0.85); }

/* ---------- VIDEO SECTION ---------- */
.video-section {
  background: var(--gradient-hero);
  position: relative;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,24,40,0.5);
}

.video-container { position: relative; z-index: 2; }

.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 860px;
  margin: 0 auto 40px;
  background: var(--dark);
  aspect-ratio: 16/9;
}

.promo-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10,24,40,0.55);
  cursor: pointer;
  transition: var(--transition);
}

.video-play-overlay.hidden { opacity: 0; pointer-events: none; }

.play-btn {
  width: 80px; height: 80px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
  transition: var(--transition);
  animation: pulse-glow 2.5s ease-in-out infinite;
  padding-left: 6px;
}

.play-btn:hover { transform: scale(1.1); }

.video-play-overlay p {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-heading);
  font-weight: 600;
}

.video-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.v-stat {
  text-align: center;
  color: var(--white);
}

.v-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-cyan);
}

.v-stat span {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ---------- BEFORE & AFTER ---------- */
.results-section { background: var(--off-white); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 24px;
}

.ba-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.ba-images {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px;
  background: var(--blue-pale);
}

.ba-image { flex: 1; position: relative; }

.ba-placeholder {
  height: 160px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.ba-before-img { background: linear-gradient(135deg, #c8d6e5, #a8b9cc); color: rgba(50,70,90,0.4); }
.ba-after-img  { background: linear-gradient(135deg, #74b9ff, #0984e3); color: rgba(255,255,255,0.6); }

.ba-label {
  position: absolute;
  top: 8px; left: 8px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 10px;
}

.before-label { background: rgba(0,0,0,0.5); color: #fff; }
.after-label  { background: var(--gradient-2); color: #fff; }

.ba-arrow {
  padding: 0 10px;
  color: var(--blue-bright);
  font-size: 1.2rem;
}

.ba-info {
  padding: 16px 20px;
}

.ba-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.ba-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.ba-lost, .ba-weeks {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
}

.ba-lost  { background: rgba(0,200,81,0.1); color: #00a844; }
.ba-weeks { background: rgba(30,144,255,0.1); color: var(--blue-royal); }

.ba-stars { color: var(--gold); font-size: 0.8rem; }

.results-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  margin-top: 8px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  background: var(--gradient-hero);
  position: relative;
}

.testi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,18,40,0.6);
}

.testi-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.testi-hidden { display: none; }

.testi-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.testi-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.testi-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.testi-meta {
  flex: 1;
}

.testi-meta strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.testi-meta span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

.testi-stars { color: var(--gold); font-size: 0.75rem; margin-top: 4px; }

.testi-badge {
  flex-shrink: 0;
  background: rgba(0,200,81,0.2);
  color: #4afa87;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.testi-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}

.testi-verified {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.testi-verified i { color: #4afa87; }

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}

.testi-btn:hover { background: rgba(255,255,255,0.2); }

.testi-dots { display: flex; gap: 8px; }

.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: var(--transition);
  cursor: pointer;
}

.testi-dot.active {
  background: var(--blue-cyan);
  width: 24px;
  border-radius: 4px;
}

.load-more-wrap {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}

/* Trust badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
}

.trust-badge i {
  font-size: 1.6rem;
  color: var(--blue-cyan);
}

.trust-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
  line-height: 1.3;
}

/* ---------- PRODUCT DETAIL ---------- */
.product-detail-section { background: var(--white); }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-img-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--blue-pale);
  padding: 32px;
  margin-bottom: 16px;
  text-align: center;
}

.main-product-img {
  max-height: 360px;
  object-fit: contain;
  margin: 0 auto;
  transition: var(--transition);
}

.product-img-thumbs {
  display: flex;
  gap: 12px;
}

.thumb-btn {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  overflow: hidden;
  padding: 6px;
  background: var(--blue-pale);
  transition: var(--transition);
  cursor: pointer;
}

.thumb-btn.active, .thumb-btn:hover {
  border-color: var(--blue-bright);
}

.thumb-btn img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.product-label {
  display: inline-block;
  background: var(--gradient-2);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.product-detail-info h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars-row { color: var(--gold); font-size: 1.1rem; }

.product-rating-row span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-price-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.price-old {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.price-current {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue-deep);
}

.price-save {
  background: rgba(0,200,81,0.12);
  color: #00a844;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.kit-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.kit-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.kit-includes i { color: var(--green); }

.stock-warning {
  background: rgba(244,67,54,0.08);
  border: 1px solid rgba(244,67,54,0.2);
  color: #c62828;
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

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

.qty-row label {
  font-weight: 600;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--blue-pale);
  border-radius: 30px;
  padding: 8px 20px;
}

.qty-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-family: monospace;
  line-height: 1;
}

.qty-btn:hover { background: var(--blue-bright); color: var(--white); }

#qtyDisplay {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}

.qty-total {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--blue-deep);
}

.secure-payment {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ---------- SCIENCE / COMPARISON ---------- */
.science-section { background: var(--off-white); }

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

.science-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.science-card:hover {
  border-top-color: var(--blue-bright);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.science-icon {
  width: 64px; height: 64px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--white);
}

.science-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.science-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Comparison table */
.comparison-table h3 {
  text-align: center;
  margin-bottom: 28px;
  font-size: 1.4rem;
}

.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th {
  background: var(--blue-pale);
  padding: 14px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 2px solid rgba(30,144,255,0.2);
}

th.col-us {
  background: var(--gradient-1);
  color: var(--white);
}

td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(30,144,255,0.1);
}

td.col-us {
  background: rgba(30,144,255,0.05);
  font-weight: 600;
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(30,144,255,0.04); }

.green  { color: var(--green); }
.red    { color: var(--red); }
.yellow { color: #f59e0b; }

/* ---------- FAQ ---------- */
.faq-section { background: var(--white); }

.faq-container { max-width: 800px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid rgba(30,144,255,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(30,144,255,0.35); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  gap: 16px;
}

.faq-question[aria-expanded="true"] {
  background: var(--blue-pale);
  color: var(--blue-royal);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--blue-bright);
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-answer {
  padding: 0 24px 20px;
  background: var(--blue-pale);
}

.faq-answer p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- ORDER SECTION ---------- */
.order-section {
  background: var(--gradient-hero);
  position: relative;
}

.order-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,24,40,0.3);
}

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

.order-guarantee {
  margin: 28px 0;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.guarantee-badge > i {
  font-size: 2.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.guarantee-badge strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 4px;
}

.guarantee-badge span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.order-product-preview {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.order-kit-img {
  width: 100px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}

.price-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}

.order-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
}

.order-price del {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  margin-left: 8px;
}

.order-price-note {
  display: block;
  font-size: 0.8rem;
  color: rgba(0,200,81,0.9);
  margin-top: 4px;
  font-weight: 600;
}

/* Order form card */
.order-form-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.order-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.order-form-card h3 i { color: #25d366; }

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Forms */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.required { color: var(--red); }

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(30,144,255,0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(30,144,255,0.15);
}

.form-group input::placeholder { color: var(--text-muted); }

.field-error {
  display: block;
  font-size: 0.78rem;
  color: var(--red);
  margin-top: 4px;
  min-height: 18px;
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: none;
}

.form-message.success {
  background: rgba(0,200,81,0.1);
  color: #00a844;
  border: 1px solid rgba(0,200,81,0.3);
  display: block;
}

.form-message.error {
  background: rgba(244,67,54,0.1);
  color: var(--red);
  border: 1px solid rgba(244,67,54,0.3);
  display: block;
}

.order-footer-info {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--gradient-1);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.final-cta-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 10px;
}

.final-cta-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding-top: 64px;
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo i { color: var(--blue-cyan); margin-right: 8px; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--blue-bright);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--blue-cyan); }

.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-contact ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact i { color: var(--blue-cyan); font-size: 1rem; }
.footer-contact a { transition: color var(--transition); }
.footer-contact a:hover { color: var(--blue-cyan); }

.footer-newsletter p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.footer-email-form {
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}

.footer-email-form input {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255,255,255,0.06);
  border: none;
  color: var(--white);
  font-size: 0.85rem;
  font-family: var(--font-body);
}

.footer-email-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-email-form input:focus { outline: none; background: rgba(255,255,255,0.1); }

.footer-email-form button {
  background: var(--gradient-2);
  color: var(--white);
  padding: 10px 18px;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-email-form button:hover { opacity: 0.85; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ---------- EMAIL POPUP ---------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,18,40,0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: scaleIn 0.3s ease;
}

.popup-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 840px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  color: var(--dark);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.popup-close:hover { background: rgba(0,0,0,0.15); transform: rotate(90deg); }

.popup-left {
  background: var(--gradient-1);
  padding: 48px 36px;
  color: var(--white);
}

.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: var(--blue-cyan);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.popup-left h2 {
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.popup-left h2 span { color: var(--gold); }

.popup-left p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 24px;
  line-height: 1.7;
}

.popup-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.popup-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  opacity: 0.9;
}

.popup-benefits i { color: var(--gold); }

.popup-product-img {
  text-align: center;
}

.popup-product-img img {
  max-height: 120px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}

.popup-right {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

.popup-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--green);
  margin-bottom: 16px;
}

.popup-success h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.popup-success p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.discount-code-box {
  background: var(--blue-pale);
  border: 2px dashed var(--blue-bright);
  border-radius: var(--radius-md);
  padding: 16px;
  font-family: monospace;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue-deep);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #128c7e, #25d366);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: pulse-glow 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(37,211,102,0.7);
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
  border-right: none;
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 104px;
  right: 32px;
  z-index: 998;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-royal);
  color: var(--white);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
}

.back-to-top:not([hidden]) { opacity: 1; }
.back-to-top:hover { background: var(--blue-deep); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE — TABLET & MOBILE
   ============================================================ */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .pain-grid      { grid-template-columns: repeat(2, 1fr); }
  .science-grid   { grid-template-columns: repeat(2, 1fr); }
  .testi-slider   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: repeat(2, 1fr); }
  .hero-product   { width: 40%; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-connector { padding-top: 0; font-size: 1.2rem; }
}

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

  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,24,60,0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
    font-size: 1.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; z-index: 1001; position: relative; }

  /* Hero */
  .hero-content { max-width: 100%; padding-top: 120px; }
  .hero-product { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary, .hero-cta .btn-ghost { width: 100%; }

  /* Grids to 1 col */
  .solution-grid,
  .product-detail-grid,
  .order-grid { grid-template-columns: 1fr; gap: 36px; }

  .pain-grid,
  .science-grid  { grid-template-columns: repeat(2, 1fr); }

  .testi-slider  { grid-template-columns: 1fr; }

  .ba-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto; margin-right: auto;
  }

  .timeline-bar  { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Popup */
  .popup-card { grid-template-columns: 1fr; }
  .popup-left { display: none; }
  .popup-right { padding: 40px 28px; }

  /* Final CTA */
  .final-cta-inner { flex-direction: column; text-align: center; }
  .final-cta-buttons { justify-content: center; }

  /* Product showcase */
  .product-showcase { height: 280px; }

  /* Trust badges */
  .trust-badges { gap: 20px; justify-content: center; }
  .trust-badge { flex-direction: column; text-align: center; gap: 6px; }

  /* Video stats */
  .video-stats { gap: 30px; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .pain-grid, .science-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .timeline-bar { grid-template-columns: 1fr; }
  .order-form-card { padding: 28px 20px; }
  .product-detail-grid .product-img-thumbs { gap: 8px; }
  .thumb-btn { width: 60px; height: 60px; }
  .ba-images { padding: 12px; }
  .ba-placeholder { height: 120px; }
}

/* ── Hero all-products image ── */
.hero-all-products {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 55%;
  max-width: 620px;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.55));
  z-index: 3;
}

/* ============================================================
   PRODUCTS SHOP SECTION
   ============================================================ */
.products-section { background: var(--off-white); }

/* All-products banner */
.all-products-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
  height: 340px;
  box-shadow: var(--shadow-lg);
}

.all-products-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.all-products-banner:hover .all-products-img { transform: scale(1.04); }

.all-products-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,40,0.85) 0%, rgba(10,18,40,0.3) 60%, transparent 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 36px;
  text-align: center;
}

.all-products-banner-overlay h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-top: 10px;
}

/* Shop cards grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.shop-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}

.shop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30,144,255,0.3);
}

.featured-card {
  border-color: var(--blue-bright);
  box-shadow: var(--shadow-md);
}

.shop-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: linear-gradient(135deg, #0a2463, #1e90ff);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  z-index: 2;
  white-space: nowrap;
}

.mounjaro-badge { background: linear-gradient(135deg, #7c3aed, #c026d3) !important; }
.bundle-badge   { background: linear-gradient(135deg, #128c7e, #25d366) !important; }

.shop-card-img-wrap {
  width: 100%; height: 240px;
  background: var(--blue-pale);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}

.shop-card-img {
  max-height: 200px; width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.shop-card:hover .shop-card-img { transform: scale(1.08); }

.shop-card-body {
  padding: 24px;
  flex: 1; display: flex; flex-direction: column;
}

.shop-card-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-royal);
  background: rgba(30,144,255,0.1);
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 10px;
}

.mounjaro-tag { color: #7c3aed; background: rgba(124,58,237,0.1); }
.bundle-tag   { color: #128c7e; background: rgba(18,140,126,0.1); }

.shop-card-body h3 {
  font-size: 1.25rem; margin-bottom: 6px; color: var(--dark);
}

.shop-card-sub {
  display: block;
  font-size: 0.8rem; font-weight: 500; color: var(--text-muted);
}

.shop-card-stars {
  display: flex; align-items: center; gap: 4px;
  color: var(--gold); font-size: 0.85rem; margin-bottom: 12px;
}

.shop-card-stars span { color: var(--text-muted); font-size: 0.78rem; }

.shop-card-desc {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 16px;
}

.shop-card-features {
  display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px;
}

.shop-card-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-body);
}

.shop-card-features i { color: var(--green); font-size: 0.95rem; flex-shrink: 0; }

.shop-card-price {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 10px;
}

.sp-old {
  font-family: var(--font-heading); font-size: 1rem;
  text-decoration: line-through; color: var(--text-muted);
}

.sp-now {
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 900;
  color: var(--blue-deep);
}

.sp-save {
  background: rgba(0,200,81,0.12); color: #00a844;
  font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
}

.shop-card-stock {
  font-size: 0.78rem; font-family: var(--font-heading); font-weight: 700;
  color: #c62828; background: rgba(244,67,54,0.07);
  border: 1px solid rgba(244,67,54,0.18); border-radius: var(--radius-sm);
  padding: 7px 12px; margin-bottom: 14px;
}

.shop-order-btn { font-size: 0.95rem; padding: 14px 20px; margin-top: auto; }

.mounjaro-btn { background: linear-gradient(135deg, #7c3aed, #c026d3) !important; }
.mounjaro-btn:hover { box-shadow: 0 4px 20px rgba(124,58,237,0.4) !important; }

.bundle-btn { background: linear-gradient(135deg, #128c7e, #25d366) !important; }
.bundle-btn:hover { box-shadow: 0 4px 20px rgba(37,211,102,0.4) !important; }

/* WhatsApp consultation strip */
.shop-wa-strip {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: linear-gradient(135deg, #0a2463, #1565c0);
  border-radius: var(--radius-lg); padding: 28px 36px;
  box-shadow: var(--shadow-md);
}

.shop-wa-left {
  display: flex; align-items: center; gap: 20px; color: var(--white);
}

.shop-wa-icon {
  font-size: 2.8rem; color: #25d366; flex-shrink: 0;
}

.shop-wa-left strong { display: block; font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 4px; }
.shop-wa-left p { font-size: 0.88rem; opacity: 0.8; }

@media (max-width: 1024px) { .shop-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  {
  .shop-grid { grid-template-columns: 1fr; }
  .all-products-banner { height: 200px; }
  .shop-wa-strip { flex-direction: column; text-align: center; }
  .shop-wa-left { flex-direction: column; text-align: center; }
  .hero-all-products { display: none; }
}

/* ============================================================
   FULL-WIDTH BEFORE & AFTER SECTION
   ============================================================ */
.ba-fullscreen-section {
  background: var(--dark);
}

.ba-section-header {
  text-align: center;
  padding: 72px 20px 48px;
  background: var(--dark);
}

.ba-section-header .section-eyebrow {
  color: var(--blue-cyan);
  background: rgba(0,180,216,0.15);
  border-color: rgba(0,180,216,0.3);
}

.ba-section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin: 14px 0 12px;
}

.ba-section-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
}

/* Portrait grid — images shown at natural phone/portrait ratio */
.ba-fullscreen-section {
  padding-bottom: 48px;
}

.ba-portrait-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.ba-full-slide {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.ba-full-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.ba-full-slide:hover .ba-full-img {
  transform: scale(1.04);
}

/* Gradient overlay at bottom for legibility */
.ba-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,18,40,0.92) 0%,
    rgba(10,18,40,0.50) 35%,
    rgba(10,18,40,0.08) 70%,
    transparent 100%
  );
  z-index: 1;
}

/* Info badge anchored to bottom of each portrait card */
.ba-full-badge {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.ba-full-badge-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ba-badge-lost {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.6vw, 1rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}

.ba-badge-name {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.ba-badge-weeks {
  font-size: 0.7rem;
  color: var(--blue-cyan);
  font-weight: 600;
}

.ba-badge-weeks i { margin-right: 5px; }

.ba-badge-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.ba-cta-btn {
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  padding: 10px 14px;
  white-space: nowrap;
}

/* Slide number pill — top-right */
.ba-slide-num {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.08em;
}

/* Disclaimer below slides */
.ba-fullscreen-section .results-disclaimer {
  display: block;
  padding: 20px 20px 40px;
  background: var(--dark);
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   POWER CTA SECTION — section 3 with person PNG
   ============================================================ */
.power-cta-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

/* Person image — left half, fills height */
.pcta-person-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.pcta-person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Gradient that blends the person image into the dark right half */
.pcta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(10,18,40,0.15) 0%,
    rgba(10,18,40,0.45) 35%,
    rgba(10,18,40,0.92) 55%,
    var(--dark) 75%
  );
}

.pcta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Left column — empty spacer (person image fills it absolutely) */
.pcta-spacer { min-height: 400px; }

/* Right column — the CTA content */
.pcta-content {
  padding: 48px 32px 48px 40px;
}

.pcta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 14px 0 20px;
}

.pcta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  line-height: 1.7;
}

.pcta-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pcta-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
}

.pcta-checklist i { color: var(--blue-cyan); font-size: 1.1rem; flex-shrink: 0; }

.pcta-price-row {
  margin-bottom: 28px;
}

.pcta-price {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pcta-old {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}

.pcta-current {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
}

.pcta-save {
  background: rgba(0,200,81,0.18);
  color: #4afa87;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}

.pcta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.pcta-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pcta-trust span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pcta-trust i { color: var(--blue-cyan); }

/* Responsive for power CTA */
@media (max-width: 900px) {
  .pcta-person-wrap { width: 100%; opacity: 0.3; }
  .pcta-overlay { background: rgba(10,18,40,0.75); }
  .pcta-inner { grid-template-columns: 1fr; }
  .pcta-spacer { display: none; }
  .pcta-content { padding: 40px 20px; }
  .power-cta-section { min-height: auto; }
}

/* Responsive for BA portrait grid */
@media (max-width: 768px) {
  .ba-portrait-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0 16px 32px; }
  .ba-full-badge { flex-direction: column; align-items: flex-start; padding-bottom: 20px; }
  .ba-badge-lost { font-size: 2rem; }
  .ba-cta-btn { width: 100%; font-size: 0.85rem; padding: 12px 20px; }
}

@media (max-width: 480px) {
  .ba-portrait-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 12px 24px; }
  .ba-section-header { padding: 48px 16px 32px; }
  .ba-full-badge { padding-bottom: 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
