/* ══════════════════════════════════════════
   TOKENS
══════════════════════════════════════════ */
:root {
  --dark: #003D37;
  --dark2: #002A25;
  --dark3: #001E1A;
  --lime: #A6FB00;
  --lime2: rgba(166, 251, 0, 0.12);
  --lime3: rgba(166, 251, 0, 0.06);
  --white: #FFFFFF;
  --off: #E8ECE9;
  --gray: #7A8882;
  --muted: rgba(255, 255, 255, 0.55);
  --red: #FF4040;
  --border: rgba(255, 255, 255, 0.08);
  --card: rgba(255, 255, 255, 0.03);
  --radius: 12px;
  --max: 1140px;
  --fh: 'HK Modular', 'Roboto', sans-serif;
  --fb: 'Roboto', sans-serif;
  --fc: 'Roboto Condensed', 'Roboto', sans-serif;
}

@font-face {
  font-family: 'HK Modular';
  src: local('HK Modular'), local('HKModular');
  font-weight: 100 900;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--fb);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

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

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

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

/* ── TYPOGRAPHY ── */
.display {
  font-family: var(--fh);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.headline {
  font-family: var(--fh);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h1.display {
  font-size: clamp(46px, 5.5vw, 80px);
}

h2.headline {
  font-size: clamp(34px, 4vw, 58px);
}

h3.headline {
  font-size: clamp(26px, 3vw, 40px);
}

.body-copy {
  font-family: var(--fc);
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.label-tag {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 8px;
}

.label-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--lime);
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fh);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-lime {
  background: var(--lime);
  color: var(--dark);
}

.btn-lime:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(166, 251, 0, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
}

.btn-outline:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 15px;
}

.btn svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.btn:hover svg {
  transform: translateX(4px);
}

/* ── SECTION BADGE ── */
.sp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(166, 251, 0, 0.1);
  border: 1px solid rgba(166, 251, 0, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-top: 15px;
  margin-bottom: 0px;
  margin-left: 30px;
  font-family: var(--fb);
}

.sp-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

/* ── DIVIDERS ── */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ══════════════════════════════════════════
   01. NAVBAR
══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 14px 0;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(0, 26, 22, 0.92);
  backdrop-filter: blur(20px);
  border-color: rgba(166, 251, 0, 0.08);
}

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

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-phone svg {
  color: var(--lime);
}

.nav-cta {
  padding: 11px 24px;
  font-size: 13px;
}

/* ══════════════════════════════════════════
   02. HERO
══════════════════════════════════════════ */
#hero {
  padding: 90px 0 80px;
  background: var(--dark2);
  overflow: hidden;
  position: relative;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(166, 251, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 251, 0, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridDrift 30s linear infinite;
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 64px 64px;
  }
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(166, 251, 0, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -80px;
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* Social proof #1 — ticker */
.sp1-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.sp1-avatars {
  display: flex;
}

.sp1-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lime);
  border: 2.5px solid var(--dark2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 900;
  color: var(--dark);
  margin-left: -9px;
}

.sp1-avatars span:first-child {
  margin-left: 0;
}

.stars {
  color: var(--lime);
  font-size: 14px;
  letter-spacing: 1px;
}

.sp1-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.sp1-text strong {
  color: var(--white);
  font-weight: 600;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: start;
}

/* Left column */
.hero-main h1 {
  margin: 18px 0 22px;
}

.hero-sub {
  font-family: var(--fc);
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 600;
}

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

.friction-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.friction-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.friction-item svg {
  color: var(--lime);
  flex-shrink: 0;
}

/* Right column — form */
.hero-form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(10px);
}

.hero-form-card::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--lime);
  border-radius: 100px;
  margin-bottom: 28px;
}

.form-title {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-sub {
  font-family: var(--fc);
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-field {
  margin-bottom: 14px;
}

.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  font-family: var(--fb);
}

.form-field input,
.form-field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--fc);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-field input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--lime);
}

.form-field select option {
  background: var(--dark2);
  color: var(--white);
}

.form-submit {
  width: 100%;
  padding: 17px;
  font-size: 14px;
  font-weight: 900;
  border-radius: 12px;
  margin-top: 8px;
  justify-content: center;
}

.form-guarantee {
  text-align: center;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--fb);
}

.form-guarantee svg {
  color: var(--lime);
}

/* SP2 badge below form */
.sp2-quote {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(166, 251, 0, 0.07);
  border: 1px solid rgba(166, 251, 0, 0.15);
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
}

.sp2-avatar {
  width: 38px;
  height: 38px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 900;
  color: var(--dark);
}

.sp2-q-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  font-family: var(--fc);
}

.sp2-q-text strong {
  color: var(--lime);
  font-weight: 600;
}

.sp2-q-name {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
  font-family: var(--fb);
}

/* ══════════════════════════════════════════
   03. PAIN SECTION
══════════════════════════════════════════ */
#pain {
  padding: 100px 0;
  background: var(--dark);
}

.pain-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 52px;
}

.pain-letter .dear {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: 22px;
}

.pain-letter p {
  font-family: var(--fc);
  font-size: 15.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}

.pain-letter p strong {
  color: var(--white);
  font-weight: 600;
}

.pain-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}

.pain-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--fc);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  line-height: 1.5;
}

.pain-checks li .ck {
  min-width: 22px;
  height: 22px;
  background: rgba(166, 251, 0, 0.15);
  border: 1px solid rgba(166, 251, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
}

.pain-checks li .ck svg {
  color: var(--lime);
}

.pain-right {}

.pain-callout {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 28px;
}

.pain-callout h3 {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.x-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.x-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--fc);
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.x-list .x {
  color: var(--red);
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pain-solve {
  border-left: 3px solid var(--lime);
  padding-left: 22px;
}

.pain-solve h4 {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: 10px;
}

.pain-solve p {
  font-family: var(--fc);
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

.section-cta {
  text-align: center;
  margin-top: 52px;
}

/* ══════════════════════════════════════════
   04. STATS / SOCIAL PROOF
══════════════════════════════════════════ */
#stats {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}

.stat-block {
  background: var(--dark2);
  padding: 40px 28px;
  position: relative;
  transition: background 0.3s;
}

.stat-block:hover {
  background: rgba(0, 60, 50, 0.8);
}

.stat-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.stat-block:hover::after {
  transform: scaleX(1);
}

.stat-num {
  font-family: var(--fh);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--fb);
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-desc {
  font-family: var(--fc);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   05–07. VALUE PROP BLOCKS (alternating)
══════════════════════════════════════════ */
.vp-section {
  padding: 100px 0;
}

.vp-section:nth-child(even) {
  background: rgba(0, 0, 0, 0.14);
}

.vp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* En desktop: invertir con order */
.vp-layout.reverse .vp-visual {
  order: 2;
}

.vp-layout.reverse .vp-content {
  order: 1;
}

/* En mobile: resetear orden para que visual siempre vaya arriba */
@media (max-width: 900px) {
  .vp-layout,
  .vp-layout.reverse {
    grid-template-columns: 1fr;
  }
  
  .vp-layout .vp-visual,
  .vp-layout.reverse .vp-visual {
    order: 1 !important;
  }
  
  .vp-layout .vp-content,
  .vp-layout.reverse .vp-content {
    order: 2 !important;
  }
}

.vp-visual {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 48px 36px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.vp-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--lime);
}

.vp-visual-num {
  font-family: var(--fh);
  font-size: 120px;
  font-weight: 900;
  color: rgba(166, 251, 0, 0.06);
  line-height: 1;
  letter-spacing: -4px;
}

.vp-visual-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.vp-visual-title {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}

.vp-visual-tag {
  display: inline-block;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--dark);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.metric-row {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric {}

.metric-val {
  font-family: var(--fh);
  font-size: 32px;
  font-weight: 900;
  color: var(--lime);
}

.metric-lbl {
  font-family: var(--fc);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.vp-content .vp-label {
  margin-bottom: 16px;
}

.vp-content h2 {
  margin-bottom: 20px;
}

.vp-content .vp-desc {
  font-family: var(--fc);
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 28px;
}

.vp-content .vp-desc strong {
  color: var(--white);
  font-weight: 600;
}

.vp-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.vp-bullets li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-family: var(--fc);
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.vp-bullets .ck {
  min-width: 20px;
  height: 20px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.vp-bullets .ck svg {
  width: 10px;
  height: 10px;
}

/* ══════════════════════════════════════════
   08. TESTIMONIAL SPOTLIGHT
══════════════════════════════════════════ */
#testimonial {
  padding: 90px 0;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}

.testi-card:hover {
  border-color: rgba(166, 251, 0, 0.22);
  transform: translateY(-4px);
}

.testi-card.featured {
  border-color: rgba(166, 251, 0, 0.25);
  background: rgba(166, 251, 0, 0.05);
}

.testi-card.featured::before {
  content: 'DESTACADO';
  position: absolute;
  top: -1px;
  right: 22px;
  background: var(--lime);
  color: var(--dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
  font-family: var(--fb);
}

.quote-mark {
  font-family: var(--fh);
  font-size: 48px;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.5;
}

.testi-text {
  font-family: var(--fc);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 22px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 900;
  color: var(--dark);
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 700;
}

.testi-role {
  font-family: var(--fc);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.testi-stars {
  color: var(--lime);
  font-size: 13px;
  margin-top: 2px;
}

/* ══════════════════════════════════════════
   09. DIFFERENTIATORS
══════════════════════════════════════════ */
#diff {
  padding: 100px 0;
}

.diff-header {
  display: grid;
  text-align: center;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.diff-header p {
  font-family: var(--fc);
  font-size: 15px;
  text-align: center;
  color: var(--muted);
  line-height: 1.8;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.diff-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.diff-card:hover {
  border-color: rgba(166, 251, 0, 0.28);
  transform: translateY(-4px);
}

.diff-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.diff-card:hover::after {
  transform: scaleX(1);
}

.diff-num {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 800;
  color: rgba(166, 251, 0, 0.45);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.diff-icon {
  font-size: 30px;
  margin-bottom: 14px;
}

.diff-title {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}

.diff-desc {
  font-family: var(--fc);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   10. HOW IT WORKS
══════════════════════════════════════════ */
#how {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.18);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.how-step {
  padding: 40px 28px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}

.how-step:last-child {
  border-right: none;
}

.how-step:hover {
  background: rgba(166, 251, 0, 0.04);
}

.step-badge-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.step-n-badge {
  background: var(--lime);
  color: var(--dark);
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 6px;
}

.step-ico {
  font-size: 26px;
}

.how-step h3 {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.how-step p {
  font-family: var(--fc);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
}

/* connector arrow */
.how-step:not(:last-child)::after {
  content: '›';
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--lime);
  z-index: 2;
  font-weight: 900;
}

/* ══════════════════════════════════════════
   11. FAQ
══════════════════════════════════════════ */
#faq {
  padding: 100px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover,
.faq-item.open {
  border-color: rgba(166, 251, 0, 0.2);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-q-text {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--lime);
  border-color: var(--lime);
  transform: rotate(45deg);
}

.faq-item.open .faq-icon svg path {
  stroke: var(--dark);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-a-inner {
  padding: 0 24px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
  font-family: var(--fc);
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
}

/* ══════════════════════════════════════════
   12. FINAL CTA
══════════════════════════════════════════ */
#final-cta {
  padding: 110px 0;
  background: var(--dark2);
  overflow: hidden;
  position: relative;
}

.final-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(166, 251, 0, 0.08) 0%, transparent 68%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.final-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: start;
}

.final-left .sp1-bar {
  margin-bottom: 28px;
}

.final-left h2 {
  margin-bottom: 20px;
}

.final-left .final-sub {
  font-family: var(--fc);
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 32px;
}

.final-props {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 38px;
}

.final-props li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--fc);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.final-props .ck {
  min-width: 20px;
  height: 20px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.final-friction {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.final-friction span {
  font-family: var(--fc);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

.final-friction span svg {
  color: var(--lime);
}

/* Right = form (same as hero) */
.final-form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(10px);
}

.final-form-card::before {
  content: 'AGENDA TU DIAGNÓSTICO GRATIS';
  display: block;
  font-family: var(--fb);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(166, 251, 0, 0.15);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--dark3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  justify-items: center;
}

.footer-brand img {
  height: 34px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.footer-brand-contact .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fc);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-brand-contact .footer-contact-item a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-brand-contact .footer-contact-item a:hover {
  color: var(--lime);
}

.footer-brand-contact .footer-contact-item svg {
  color: var(--lime);
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
  background: rgba(166, 251, 0, 0.15);
  color: var(--lime);
}

.footer-col h4 {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  font-family: var(--fc);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  font-family: var(--fc);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ══════════════════════════════════════════
   STICKY WHATSAPP
══════════════════════════════════════════ */
.sticky-wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 400;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.2s;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.sticky-wa.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sticky-wa:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
}

/* ══════════════════════════════════════════
   REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.rd1 {
  transition-delay: 0.1s;
}

.rd2 {
  transition-delay: 0.2s;
}

.rd3 {
  transition-delay: 0.3s;
}

.rd4 {
  transition-delay: 0.4s;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:900px) {

  .hero-layout,
  .pain-layout,
  .vp-layout,
  .diff-header,
  .final-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .vp-layout.reverse {
    direction: ltr;
  }

  .testi-inner,
  .diff-grid,
  .how-steps,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .how-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .how-step:not(:last-child)::after {
    content: '↓';
    top: auto;
    right: 50%;
    bottom: -14px;
    transform: translateX(50%);
  }

  nav .nav-phone {
    display: none;
  }
}

@media(max-width:580px) {
  .hero-cta-row {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

/* ══ GHL INTEGRATION STYLES ══════════════════════════════ */

/* Form states */
.form-btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.form-submit.loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: not-allowed;
}

.form-submit.loading .btn-text {
  display: none;
}

.form-submit.loading .btn-loader {
  display: flex !important;
}

.btn-loader {
  display: none;
  align-items: center;
  gap: 8px;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 61, 55, 0.3);
  border-top-color: var(--dark);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.form-success.show {
  display: flex;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popIn {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.success-title {
  font-family: 'HK Modular', 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}

.success-sub {
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 280px;
}

.success-whatsapp {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  transition: background 0.2s;
}

.success-whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
}

/* Error toast */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 9998;
  background: #1a1a1a;
  border: 1px solid rgba(255, 64, 64, 0.4);
  border-radius: 12px;
  padding: 14px 22px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  max-width: 380px;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-icon {
  color: #FF4040;
  font-size: 18px;
  flex-shrink: 0;
}

.toast-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 16px;
  padding: 0 0 0 8px;
  flex-shrink: 0;
}

/* Field validation */
.form-field input.error,
.form-field select.error {
  border-color: rgba(255, 64, 64, 0.6) !important;
}

.field-error {
  font-size: 11px;
  color: #FF4040;
  margin-top: 5px;
  font-family: 'Roboto', sans-serif;
  display: none;
}

.field-error.show {
  display: block;
}

/* ── PHONE LADA SELECTOR ── */
.phone-field-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.lada-select {
  width: 110px !important;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  padding: 13px 10px !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-family: var(--fc) !important;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23A6FB00' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  padding-right: 26px !important;
  outline: none;
  transition: border-color 0.2s;
}

.lada-select:focus {
  border-color: var(--lime) !important;
}

.phone-number-input {
  flex: 1;
  min-width: 0;
}

.phone-number-input input {
  width: 100%;
}

/* ══ END GHL STYLES ══════════════════════════════════════ */


/* WhatsApp inline button */
.btn-wa-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.1);
  border: 1.5px solid rgba(37, 211, 102, 0.4);
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-wa-inline:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.8);
}

/* WhatsApp strip */
.wa-strip {
  background: rgba(0, 0, 0, 0);
  border-top: 1px solid var(--border);
  padding: 32px 0 1px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.wa-strip p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin: 0;
}

/* Ads section */
#ads {
  padding: 80px 0;
}

#ads .section-intro {
  color: rgba(255, 255, 255, 0.5);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 48px;
}

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

.ad-item {
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark2);
  border: 1px solid var(--border);
  aspect-ratio: 9/16;
}

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

@media(max-width:900px) {
  .ads-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:580px) {
  .ads-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .wa-strip {
    padding: 24px 16px;
  }
}



/* ─── Alignment fixes ─────────────────────── */
/* Container padding on mobile */
@media(max-width:640px) {
  .container {
    padding: 0 16px;
  }

  #hero {
    padding: 80px 0 40px;
  }

  .sp1-bar {
    gap: 10px;
  }

  .stars {
  text-align: center;
  }

  .sp-badge {
    display: none;
    font-size: 10px;
    margin-left: 0px;
  }

  .hero-cta-row .btn-lg {
    font-size: 15px;
    padding: 14px 18px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    gap: 32px;
  }

  section {
    padding: 60px 0;
  }

  #ads {
    padding: 60px 0;
  }
}

/* ══════════════════════════════════════════
   ADS CAROUSEL (gambit-phones)
══════════════════════════════════════════ */
#gambit-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
}

#gambit-carousel .gambit-phones {
  --gap: 28px;
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px clamp(24px,6vw,80px) 14px;
  margin: 0;
}

#gambit-carousel .gambit-phones::-webkit-scrollbar {
  height: 0px;
}

#gambit-carousel .gambit-phones {
  scrollbar-width: none;
}

#gambit-carousel .gambit-phone {
  flex: 0 0 auto;
  width: clamp(230px, calc((100% - (var(--gap)*3))/4), 310px);
  background: #111;
  border-radius: 34px;
  padding: 10px;
  border: 6px solid #2b2b2b;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
  scroll-snap-align: start;
}

#gambit-carousel .gambit-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 26px;
  overflow: hidden;
  background: #000;
}

@supports not (aspect-ratio:9/16) {
  #gambit-carousel .gambit-screen::before {
    content: "";
    display: block;
    padding-top: 177.777%;
  }

  #gambit-carousel .gambit-screen>* {
    position: absolute;
    inset: 0;
  }
}

#gambit-carousel .gambit-screen video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  display: block;
}

@media(max-width:1024px) {
  #gambit-carousel .gambit-phone {
    width: clamp(230px, calc((100% - (var(--gap)*1))/2), 320px);
    scroll-snap-align: center;
  }
}

@media(max-width:640px) {
  #gambit-carousel .gambit-phones {
    --gap: 16px;
    padding: 6px 52px 14px;
  }

  #gambit-carousel .gambit-phone {
    width: min(78vw, 320px);
    scroll-snap-align: center;
  }
}

#gambit-carousel .gambit-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: #a6fb00;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
  transition: transform .12s ease, background .12s ease, opacity .12s ease;
  user-select: none;
}

#gambit-carousel .gambit-arrow {
  width: 28px;
  height: 28px;
  display: block;
}

#gambit-carousel .gambit-arrow path {
  fill: none;
  stroke: #003d37;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#gambit-carousel .gambit-nav:hover,
#gambit-carousel .gambit-nav:active {
  background: #003d37;
  transform: translateY(-50%) scale(1.04);
}

#gambit-carousel .gambit-nav:hover .gambit-arrow path,
#gambit-carousel .gambit-nav:active .gambit-arrow path {
  stroke: #a6fb00;
}

#gambit-carousel .gambit-nav:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: translateY(-50%);
}

#gambit-carousel .gambit-prev {
  left: 6px;
}

#gambit-carousel .gambit-next {
  right: 6px;
}
