/* ============================================================
   OBRA LLENA — Landing v2 · fondo continuo estilo cinta de luz
   ============================================================ */
:root {
  --terracota: #C0552F;
  --ink:       #16130F;
  --hueso:     #F6F3EE;
  --cemento:   #B8B2A9;
  --carbon:    #2A2622;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  background: var(--ink);
  color: var(--hueso);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- FONDO DE VIDEO CONTINUO ---------- */
.bg-video-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.bg-video-layer video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.bg-video-layer video.is-visible { opacity: 1; }

/* Capa de armonía de marca */
.bg-harmony {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(22,19,15,0.92) 0%, rgba(22,19,15,0.30) 18%, rgba(22,19,15,0.30) 82%, rgba(22,19,15,0.92) 100%),
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(192,85,47,0.12) 0%, rgba(192,85,47,0) 70%),
    rgba(22,19,15,0.55);
}

/* Contenido por encima */
.page { position: relative; z-index: 10; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ---------- UTILIDADES DE VIDRIO ---------- */
.glass-card {
  background: rgba(42,38,34,0.40);
  border: 1px solid rgba(246,243,238,0.10);
  border-radius: 1.25rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.liquid-glass {
  background: rgba(255,255,255,0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---------- BOTONES ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terracota);
  color: var(--hueso);
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 0 0 rgba(192,85,47,0);
}
.btn-primary:hover {
  background: #d0623a;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(192,85,47,0.35);
}
.btn-primary .arrow { font-weight: 800; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--hueso);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.btn-secondary:hover { transform: translateY(-1px); }

/* ---------- CHIPS ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 14px;
  color: rgba(246,243,238,0.9);
  border: 1px solid rgba(246,243,238,0.10);
}
.chip--accent {
  color: var(--terracota);
  border-color: rgba(192,85,47,0.45);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.chip .dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--terracota);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--hueso);
  flex-shrink: 0;
}

/* ---------- TIPOGRAFÍA ---------- */
.kicker {
  color: var(--terracota);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
h1, h2, h3 { text-wrap: balance; }
.h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.75rem);
  line-height: 1.12;
  color: var(--hueso);
}
.grad-text {
  background: linear-gradient(100deg, var(--terracota) 0%, var(--hueso) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.accent { color: var(--terracota); }
.muted { color: rgba(246,243,238,0.75); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(246,243,238,0.15), transparent);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--hueso);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.01em;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-logo .iso {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--terracota);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--hueso);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(246,243,238,0.9);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--terracota); }
.nav-cta { padding: 11px 22px; font-size: 14px; }
.nav-burger {
  display: none;
  background: none;
  border: 1px solid rgba(246,243,238,0.2);
  border-radius: 10px;
  color: var(--hueso);
  width: 42px; height: 42px;
  font-size: 18px;
  cursor: pointer;
}

/* Bottom sheet móvil */
.mobile-sheet {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 32px 28px 40px;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  background: rgba(42,38,34,0.85);
  border: 1px solid rgba(246,243,238,0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.mobile-sheet.open { transform: translateY(0); }
.mobile-sheet nav { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.mobile-sheet nav a {
  color: var(--hueso);
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
}
.sheet-backdrop {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(22,19,15,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sheet-backdrop.open { opacity: 1; pointer-events: auto; }

/* ---------- SECCIONES ---------- */
section { position: relative; }
.section-pad { padding-top: 96px; padding-bottom: 96px; }

/* Watermark gigante */
.watermark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 800;
  color: rgba(246,243,238,0.045);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 160px 20px 64px;
  text-align: center;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.02;
  color: var(--hueso);
  margin-top: 28px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 18px;
  color: rgba(246,243,238,0.75);
  max-width: 36rem;
  margin: 20px auto 0;
  line-height: 1.6;
}
.hero-cta-row { margin-top: 32px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-scarcity { color: rgba(246,243,238,0.6); font-size: 14px; }

/* ---------- VSL ---------- */
.vsl-card {
  max-width: 896px;
  margin: 0 auto;
  padding: 8px;
}
.vsl-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 0.9rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(135deg, rgba(246,243,238,0.05) 0px, rgba(246,243,238,0.05) 1px, transparent 1px, transparent 14px),
    rgba(22,19,15,0.6);
}
.vsl-play {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--terracota);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 60px rgba(192,85,47,0.45);
}
.vsl-play:hover { transform: scale(1.06); }
.vsl-play::after {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent var(--hueso);
  margin-left: 5px;
}
.vsl-caption {
  position: absolute;
  bottom: 18px;
  left: 0; right: 0;
  text-align: center;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12px;
  color: rgba(246,243,238,0.55);
  padding: 0 24px;
}
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.avatars { display: flex; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background:
    repeating-linear-gradient(135deg, rgba(246,243,238,0.12) 0px, rgba(246,243,238,0.12) 1px, transparent 1px, transparent 7px),
    var(--carbon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  color: rgba(246,243,238,0.5);
}
.avatar + .avatar { margin-left: -12px; }
.social-proof p { font-size: 14px; color: rgba(246,243,238,0.75); }

/* ---------- SISTEMA · 4 PASOS ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step-card { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.step-num {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: var(--terracota);
}
.step-card h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 1.35;
  color: var(--hueso);
}
.step-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(246,243,238,0.75);
}
.step-ph {
  margin-top: auto;
  height: 96px;
  border-radius: 12px;
  background:
    repeating-linear-gradient(135deg, rgba(246,243,238,0.06) 0px, rgba(246,243,238,0.06) 1px, transparent 1px, transparent 12px),
    rgba(22,19,15,0.4);
  border: 1px dashed rgba(246,243,238,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: rgba(246,243,238,0.4);
  text-align: center;
  padding: 8px;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.logo-row {
  margin-top: 64px;
  text-align: center;
}
.logo-row .kicker-soft {
  color: rgba(246,243,238,0.4);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.logo-ph {
  width: 140px; height: 48px;
  border-radius: 10px;
  border: 1px dashed rgba(246,243,238,0.12);
  background: repeating-linear-gradient(135deg, rgba(246,243,238,0.05) 0px, rgba(246,243,238,0.05) 1px, transparent 1px, transparent 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: rgba(246,243,238,0.4);
}
.section-cta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.section-cta .sub { font-size: 14px; color: rgba(246,243,238,0.6); }

/* ---------- CONTROL / REPORTES ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split h2 { margin-top: 16px; }
.split .lead {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(246,243,238,0.75);
}
.split .chip-row { justify-content: flex-start; margin-top: 28px; }
.dash-card { padding: 12px; }
.dash-ph {
  aspect-ratio: 4 / 3;
  border-radius: 0.9rem;
  background:
    repeating-linear-gradient(135deg, rgba(246,243,238,0.06) 0px, rgba(246,243,238,0.06) 1px, transparent 1px, transparent 14px),
    rgba(22,19,15,0.5);
  border: 1px dashed rgba(246,243,238,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: rgba(246,243,238,0.4);
  text-align: center;
  padding: 16px;
}

/* ---------- GARANTÍA ---------- */
.guarantee-card {
  max-width: 768px;
  margin: 0 auto;
  padding: 48px 40px;
  border: 2px solid rgba(192,85,47,0.6);
  text-align: center;
  box-shadow: 0 0 80px rgba(192,85,47,0.12);
}
.guarantee-card .body {
  margin: 24px auto 0;
  max-width: 38rem;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(246,243,238,0.8);
}
.guarantee-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

/* ---------- TESTIMONIOS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(246,243,238,0.85);
  font-family: ui-monospace, monospace;
}
.testimonial-card hr {
  border: none;
  height: 1px;
  background: rgba(246,243,238,0.1);
}
.t-name { font-weight: 600; font-size: 15px; }
.t-role { color: var(--cemento); font-size: 13px; margin-top: 2px; }
.t-firm { text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em; color: rgba(246,243,238,0.5); margin-top: 6px; }
.t-metric {
  color: var(--terracota);
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
  font-family: ui-monospace, monospace;
}
.t-photo {
  width: 44px; height: 44px;
  border-radius: 50%;
  background:
    repeating-linear-gradient(135deg, rgba(246,243,238,0.1) 0px, rgba(246,243,238,0.1) 1px, transparent 1px, transparent 7px),
    var(--carbon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  color: rgba(246,243,238,0.4);
  flex-shrink: 0;
}
.t-person { display: flex; gap: 14px; align-items: center; }

.big-watermark {
  margin-top: 96px;
  text-align: center;
  font-weight: 800;
  font-size: clamp(3rem, 12vw, 9rem);
  line-height: 0.95;
  color: var(--hueso);
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  opacity: 0.9;
}
.big-watermark .accent { color: var(--terracota); }

/* ---------- COMPARACIÓN ---------- */
.versus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.versus-card { padding: 36px 32px; }
.versus-card.highlight {
  border: 2px solid rgba(192,85,47,0.6);
  box-shadow: 0 0 60px rgba(192,85,47,0.1);
}
.versus-card.dim { color: var(--cemento); }
.versus-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 24px; }
.versus-card.highlight h3 { color: var(--hueso); }
.versus-card ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.versus-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
.versus-card .mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}
.versus-card.highlight .mark { background: var(--terracota); color: var(--hueso); }
.versus-card.dim .mark { background: rgba(184,178,169,0.15); color: var(--cemento); }
.versus-card.highlight li { color: rgba(246,243,238,0.9); }

/* ---------- GALERÍA ---------- */
.gallery {
  columns: 3;
  column-gap: 24px;
  margin-top: 48px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 1rem;
  padding: 8px;
}
.gallery-ph {
  border-radius: 0.7rem;
  background:
    repeating-linear-gradient(135deg, rgba(246,243,238,0.06) 0px, rgba(246,243,238,0.06) 1px, transparent 1px, transparent 13px),
    rgba(22,19,15,0.5);
  border: 1px dashed rgba(246,243,238,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: rgba(246,243,238,0.4);
  text-align: center;
  padding: 12px;
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 768px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 14px; margin-top: 48px; }
.faq-item { overflow: hidden; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  color: var(--hueso);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon {
  color: var(--terracota);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary .icon { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(246,243,238,0.75);
}

/* ---------- CTA FINAL ---------- */
.final-card {
  max-width: 896px;
  margin: 0 auto;
  padding: 64px 48px;
  text-align: center;
}
.final-card .h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.final-card .body {
  margin: 24px auto 0;
  max-width: 36rem;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(246,243,238,0.8);
}
.final-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.final-card .sub { margin-top: 18px; font-size: 14px; color: rgba(246,243,238,0.6); }

/* ---------- FOOTER ---------- */
footer {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.footer-brand-card {
  padding: 24px;
  box-shadow: 0 0 60px rgba(192,85,47,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.footer-brand-card .iso {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--terracota);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--hueso);
}
.footer-brand-card p { font-size: 15px; line-height: 1.5; color: rgba(246,243,238,0.85); font-weight: 600; }
.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(246,243,238,0.5);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: var(--hueso);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--terracota); }
.newsletter h4 { margin-bottom: 14px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: rgba(22,19,15,0.5);
  border: 1px solid rgba(246,243,238,0.15);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--hueso);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(246,243,238,0.4); }
.newsletter-form button { padding: 12px 20px; font-size: 14px; }
.social-row { display: flex; gap: 10px; margin-top: 22px; }
.social-chip {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  color: rgba(246,243,238,0.6);
  text-decoration: none;
}
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(246,243,238,0.08);
  text-align: center;
  font-size: 13px;
  color: rgba(246,243,238,0.5);
  position: relative;
  z-index: 1;
}
.footer-watermark {
  position: absolute;
  bottom: -2vw;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 800;
  font-size: clamp(4rem, 14vw, 13rem);
  line-height: 1;
  color: rgba(246,243,238,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ---------- ANIMACIONES (fade-up) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 2; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .steps-grid, .testimonials-grid, .versus-grid, .split { grid-template-columns: 1fr; }
  .split { gap: 32px; }
  .hero-content { padding-top: 130px; }
  .gallery { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-card { padding: 48px 28px; }
  .guarantee-card { padding: 36px 24px; }
  .section-pad { padding-top: 72px; padding-bottom: 72px; }
}
