/* ============================================
   VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
  /* Colors */
  --clr-bg: #0a0a0f;
  --clr-surface: #111118;
  --clr-surface-2: #18181f;
  --clr-border: rgba(255, 255, 255, 0.08);
  --clr-accent: #25d366;
  --clr-accent-dark: #1aad52;
  --clr-accent-glow: rgba(37, 211, 102, 0.25);
  --clr-gold: #f5c842;
  --clr-gold-glow: rgba(245, 200, 66, 0.2);
  --clr-text: #f0f0f5;
  --clr-text-muted: #8888a0;
  --clr-text-faint: #555566;
  --clr-yes: #25d366;
  --clr-no: #ff4f4f;
  --clr-gradient-1: #25d366;
  --clr-gradient-2: #00b4d8;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-gap: clamp(3.5rem, 7vw, 6rem);
  --container: 1200px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================
   SKIP LINK (ACCESSIBILITY)
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--clr-accent);
  color: #000;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section {
  padding-block: var(--section-gap);
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #fff 0%, #a0a0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__sub {
  text-align: center;
  color: var(--clr-text-muted);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: inherit;
}

.btn:hover::after {
  opacity: 0.06;
}

.btn:active {
  transform: scale(0.97) !important;
}

.btn__icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

/* Sizes */
.btn--sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.btn--md {
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
}

.btn--lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

.btn--xl {
  padding: 1.1rem 2.8rem;
  font-size: 1.15rem;
}

/* WhatsApp style */
.btn--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c3c 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35),
    0 2px 8px rgba(37, 211, 102, 0.2);
}

.btn--whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5),
    0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Ghost style */
.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Copy button */
.btn--copy {
  background: rgba(255, 255, 255, 0.06);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-family: var(--font-display);
  font-weight: 600;
  width: 100%;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-bounce);
}

.btn--copy:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn--copy.copied {
  background: rgba(37, 211, 102, 0.15);
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 1rem;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 var(--clr-border), 0 8px 32px rgba(0, 0, 0, 0.4);
  padding-block: 0.75rem;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  background: linear-gradient(135deg, var(--clr-accent) 0%, #00c896 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__links {
  display: none;
  gap: 2rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--clr-text);
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 7rem 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 211, 102, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(0, 180, 216, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 60%, rgba(245, 200, 66, 0.05) 0%, transparent 50%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--clr-accent);
  opacity: 0;
  animation: floatParticle var(--dur, 8s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0);
  }

  20% {
    opacity: 0.4;
  }

  80% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    transform: translateY(-120px) scale(1.2);
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

@media (min-width: 960px) {
  .hero__content-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    text-align: left;
    align-items: center;
    gap: 4rem;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-accent);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-wrap: balance;
  color: #fff;
}

@media (min-width: 960px) {
  .hero__headline {
    font-size: clamp(2.5rem, 4.2vw, 3.8rem);
    margin-inline: 0;
  }
}

.hero__headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--clr-gold) 0%, #ff9a3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__highlight {
  background: linear-gradient(135deg, var(--clr-accent) 0%, #00e5b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__br {
  display: none;
}

@media (min-width: 600px) {
  .hero__br {
    display: inline;
  }
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 50ch;
  margin-inline: auto;
}

@media (min-width: 960px) {
  .hero__sub {
    margin-inline: 0;
  }
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__ctas {
    flex-direction: row;
    justify-content: flex-start;
  }
}

.hero__image-wrap {
  width: 100%;
  max-width: 320px;
  position: relative;
}

@media (min-width: 960px) {
  .hero__image-wrap {
    max-width: 500px;
  }
}

.hero__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.hero__image-caption {
  font-size: 0.9rem;
  color: var(--clr-accent);
  margin-top: 1.25rem;
  font-weight: 700;
  font-style: italic;
  font-family: var(--font-display);
}

.hero__disclaimer {
  font-size: 0.78rem;
  color: var(--clr-text-faint);
  margin-top: 1.5rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  padding: 1.5rem 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--clr-accent) 0%, #00e5b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  text-align: center;
  font-weight: 500;
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.hero__scroll-indicator span {
  display: block;
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: scrollBob 1.6s ease-in-out infinite;
}

@keyframes scrollBob {

  0%,
  100% {
    top: 5px;
    opacity: 1;
  }

  50% {
    top: 13px;
    opacity: 0.5;
  }
}

/* ============================================
   FOR WHO SECTION
   ============================================ */
.for-who {
  background: var(--clr-surface);
}

.for-who__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 680px) {
  .for-who__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.for-who__card {
  background: var(--clr-surface-2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--clr-border);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.for-who__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.for-who__card--yes {
  border-top: 3px solid var(--clr-yes);
}

.for-who__card--no {
  border-top: 3px solid var(--clr-no);
}

.for-who__card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.for-who__card-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.for-who__icon {
  font-size: 1.4rem;
}

.for-who__list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.for-who__card--yes .for-who__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--clr-yes);
  font-weight: 700;
}

.for-who__card--no .for-who__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--clr-no);
  font-weight: 700;
}

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

.how__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 700px;
  margin-inline: auto;
}

.how__step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  width: 100%;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, border-color 0.3s;
}

.how__step:hover {
  transform: translateX(6px);
  border-color: rgba(37, 211, 102, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), -4px 0 0 var(--clr-accent);
}

.how__step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--clr-accent) 0%, #00e5b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.how__step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.how__step-desc {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.how__connector {
  width: 2px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--clr-accent), transparent);
  margin: 0 auto;
}

.how__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   WHAT'S INCLUDED
   ============================================ */
.includes {
  background: var(--clr-surface);
}

.includes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 560px) {
  .includes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .includes__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.includes__card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, border-color 0.3s;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.includes__card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 211, 102, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.includes__card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.includes__card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.includes__card-desc {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Unused features list removed for compactness */

/* ============================================
   SOCIAL PROOF / TESTIMONIALS
   ============================================ */
.proof {
  background: var(--clr-bg);
}

.tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--clr-surface-2);
  padding: 0.35rem;
  border-radius: 100px;
  border: 1px solid var(--clr-border);
  width: fit-content;
  margin: 0 auto 1.5rem;
}

.tab {
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--clr-text-muted);
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.tab:hover {
  color: var(--clr-text);
}

.tab--active {
  background: var(--clr-accent);
  color: #000;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.tab-panel {
  display: none;
}

.tab-panel--active {
  display: block;
}

.proof__grid {
  display: grid;
  gap: 1rem;
}

.proof__grid--videos {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.proof__grid--gallery {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

@media (min-width: 900px) {
  .proof__grid--gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.proof__video-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  aspect-ratio: 16/9;
}

.proof__video-wrap iframe {
  width: 100%;
  height: 100%;
}

.proof__video-wrap {
  aspect-ratio: unset;
  /* override: let the video set its natural ratio */
  display: flex;
  flex-direction: column;
}

.proof__video {
  width: 100%;
  flex: 1;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: block;
  min-height: 0;
  max-height: 340px;
}

.proof__video-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-align: center;
  padding: 0.55rem 0.75rem;
  background: var(--clr-surface-2);
}

.proof__video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}

.proof__video-icon {
  font-size: 2.5rem;
  color: var(--clr-text-faint);
}

.proof__img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  aspect-ratio: 3/4;
  cursor: pointer;
  position: relative;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.proof__img-wrap:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.proof__img-wrap:hover .proof__img-overlay {
  opacity: 1;
}

.proof__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.proof__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--clr-text-muted);
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem;
}

.proof__img-placeholder span {
  font-size: 2rem;
}

.proof__img-placeholder--transform {
  background: rgba(37, 211, 102, 0.05);
}

.proof__img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.proof__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.25s;
  backdrop-filter: blur(2px);
}

/* Transform cards (cambios físicos) with visible name */
.proof__transform-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  aspect-ratio: 3/4;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.proof__transform-wrap:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.proof__transform-wrap:hover .proof__img-overlay {
  opacity: 1;
}

.proof__transform-wrap .proof__img {
  position: absolute;
  inset: 0 0 auto 0;
  height: calc(100% - 4rem);
  /* leave more space for 2-line label */
  width: 100%;
  object-fit: cover;
}

.proof__transform-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: var(--clr-text);
  padding: 0.35rem 0.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.proof__transform-person {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.proof__transform-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}

/* Badge base */
.proof__transform-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.1rem 0.45rem;
  border-radius: 100px;
  line-height: 1.4;
  white-space: nowrap;
}

/* Fat/kg lost → green */
.proof__transform-badge--loss {
  background: #22c55e;
  color: #000;
}

/* Muscle gained → blue */
.proof__transform-badge--muscle {
  background: #38bdf8;
  color: #000;
}

/* Time / context → neutral amber */
.proof__transform-badge--time {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Video quote (Virginia's testimonial card) */
.proof__video-quote {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--clr-text-muted);
  text-align: center;
  padding: 0.35rem 0.75rem 0.55rem;
  background: var(--clr-surface-2);
  border-top: 1px solid var(--clr-border);
  line-height: 1.4;
  margin: 0;
}

/* FAQ: video embed inside accordion */
.faq__video-wrap {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq__video {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
  max-height: 360px;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
}

.faq__video-caption {
  font-size: 0.82rem;
  color: var(--clr-text-faint);
  text-align: center;
  font-style: italic;
}

.accordion__body:not([hidden]) {
  max-height: 900px !important;
}

.proof__disclaimer {
  text-align: center;
  color: var(--clr-text-faint);
  font-size: 0.78rem;
  margin-top: 2rem;
}

/* ============================================
   VSL SECTION
   ============================================ */
.vsl {
  background: var(--clr-surface);
}

.vsl__wrapper {
  max-width: 840px;
  margin-inline: auto;
}

.vsl__iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(37, 211, 102, 0.1);
}

.vsl__iframe-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vsl__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--clr-text-muted);
  text-align: center;
  padding: 2rem;
}

.vsl__placeholder-icon {
  font-size: 3.5rem;
}

.vsl__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq {
  background: var(--clr-bg);
}

.faq__container {
  max-width: 800px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion__item {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s;
}

.accordion__item:has(.accordion__trigger[aria-expanded="true"]) {
  border-color: rgba(37, 211, 102, 0.3);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  font-weight: 600;
  color: var(--clr-text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.accordion__trigger:hover {
  color: var(--clr-accent);
}

.accordion__trigger[aria-expanded="true"] {
  color: var(--clr-accent);
}

.accordion__arrow {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: var(--clr-text-muted);
  transition: transform 0.3s var(--ease-out), color 0.2s;
}

.accordion__trigger[aria-expanded="true"] .accordion__arrow {
  transform: rotate(180deg);
  color: var(--clr-accent);
}

.accordion__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
  /* The hidden attr is toggled by JS; we animate via max-height */
}

.accordion__body:not([hidden]) {
  max-height: 600px;
}

.accordion__body p {
  padding: 0 1.5rem 1.5rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: var(--clr-surface);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(37, 211, 102, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.final-cta__content {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #a0a0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta__sub {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  margin-top: -0.5rem;
}

.final-cta__message-box {
  width: 100%;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.final-cta__message-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.final-cta__message {
  font-style: normal;
  color: var(--clr-text);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--clr-accent);
  user-select: all;
}

.final-cta__disclaimer {
  font-size: 0.78rem;
  color: var(--clr-text-faint);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding-block: 2.5rem;
}

.footer__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__brand {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.footer__legal {
  font-size: 0.78rem;
  color: var(--clr-text-faint);
  max-width: 600px;
  margin-inline: auto;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.floating-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c3c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.floating-wa.visible {
  opacity: 1;
  pointer-events: auto;
  animation: floatingWaIn 0.5s var(--ease-bounce) forwards;
}

.floating-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 48px rgba(37, 211, 102, 0.65), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.floating-wa svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.floating-wa__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--clr-accent);
  opacity: 0;
  animation: pulsePing 2.5s ease-out infinite;
}

@keyframes floatingWaIn {
  from {
    opacity: 0;
    transform: scale(0.4) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes pulsePing {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* ============================================
   LIGHTBOX MODAL
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
}

.lightbox__content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 800px);
  max-height: 90vh;
  animation: lightboxIn 0.3s var(--ease-out);
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox__img {
  border-radius: var(--radius-md);
  object-fit: contain;
  max-height: 85vh;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 480px) {
  .hero__stats {
    gap: 1.25rem;
    padding: 1rem 1.5rem;
  }

  .stat__divider {
    height: 28px;
  }

  .tabs {
    border-radius: var(--radius-md);
    padding: 0.3rem;
  }

  .tab {
    padding: 0.5rem 0.9rem;
    font-size: 0.78rem;
  }

  .floating-wa {
    width: 52px;
    height: 52px;
  }

  .floating-wa svg {
    width: 28px;
    height: 28px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}