/* ==========================================================================
   ORD CAPITAL - CSS PRINCIPAL Y SISTEMA DE DISEÑO LUXURY DARK
   ========================================================================== */

:root {
  /* Paleta Base Obsidiana & Espacio Profundo */
  --color-bg-base: #040806;
  --color-bg-surface: #07100b;
  --color-bg-card: rgba(10, 22, 16, 0.7);
  --color-bg-card-hover: rgba(14, 30, 22, 0.85);
  --color-bg-alt: #060d09;
  --color-bg-dark-luxury: #030605;

  /* Acentos Oro Champagne & Metálicos */
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-glow: rgba(212, 175, 55, 0.28);
  --gold-gradient: linear-gradient(135deg, #fce881 0%, #cba135 50%, #8f6c18 100%);
  --gold-border: rgba(212, 175, 55, 0.35);

  /* Acentos Verde Bosque & Esmeralda */
  --emerald-primary: #00e599;
  --emerald-deep: #059669;
  --emerald-glow: rgba(0, 229, 153, 0.25);
  --emerald-gradient: linear-gradient(135deg, #00e599 0%, #059669 100%);

  /* Tipografía y Textos */
  --text-pure: #ffffff;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Bordes & Glassmorphism */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.12);
  --glass-blur: blur(16px);
  --card-radius: 20px;

  /* Tipografías */
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
}

/* ================= RESET Y CONFIGURACIÓN GLOBAL ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--color-bg-base);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  position: relative;
  min-height: 100vh;
}

.main-page-wrapper {
  width: 100%;
  position: relative;
}

/* Capas Ambientales y Grillas de Fondo */
.hero-bg-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 15%, rgba(0, 229, 153, 0.06), transparent 50%),
              radial-gradient(circle at 85% 45%, rgba(212, 175, 55, 0.05), transparent 45%),
              linear-gradient(180deg, var(--color-bg-base) 0%, #040806 100%);
  pointer-events: none;
  z-index: -2;
  transform: translateZ(0);
}

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.45;
  transform: translateZ(0);
  will-change: transform, opacity;
  contain: layout style paint;
}

.ambient-glow-gold {
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.ambient-glow-emerald {
  top: 40%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 153, 0.12) 0%, transparent 70%);
}

.background-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
}

/* ================= HEADER / NAVBAR STICKY ================= */
.site-nav-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(4, 8, 6, 0.75);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 229, 153, 0.3));
}

.nav-brand-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-ord { color: #ffffff; }
.brand-cap {
  color: var(--gold-primary);
  margin-left: 0.25rem;
  font-weight: 700;
}

.nav-links-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link-item {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link-item:hover {
  color: var(--gold-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.theme-switch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.25s ease;
}

.theme-switch-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.25rem;
  background: var(--gold-gradient);
  color: #040806;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

/* ================= 01. SECCIÓN HERO DIVIDIDA EN 2 COLUMNAS ================= */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 1.5rem 6.5rem 1.5rem;
  position: relative;
}

.hero-split-container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

/* LADO IZQUIERDO: H1 + Texto SEO + CTAs + Cápsula ventajas */
.hero-left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.76rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.hero-badge-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero-impact-title {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 1.2rem;
  text-align: left;
}

.impact-line {
  display: block;
}

.impact-accent {
  display: inline-block;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
  color: var(--emerald-primary);
  background: linear-gradient(135deg, #7affce 0%, #00e599 45%, #00c26f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 229, 153, 0.42)) 
          drop-shadow(0 0 26px rgba(0, 229, 153, 0.22));
}

.hero-description-text {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-description-text strong {
  color: var(--emerald-primary);
}

/* Botones de Descarga y Tiendas */
.hero-download-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2.2rem;
  width: 100%;
}

.download-buttons-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.6rem;
  border-radius: 14px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(14, 28, 20, 0.75);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-store:hover {
  transform: translateY(-3px);
  border-color: var(--gold-primary);
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.25);
  background: rgba(20, 42, 30, 0.9);
}

.btn-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  width: 26px;
  height: 26px;
}

.store-icon-fa {
  font-size: 1.55rem;
  line-height: 1;
}

.btn-label-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-action-text {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.btn-store-name {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}

.webapp-subtle-link {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.webapp-subtle-link:hover {
  color: var(--gold-light);
}

/* Cápsula de Ventajas */
.hero-stats-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.85rem 1.6rem;
  background: rgba(10, 22, 16, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  backdrop-filter: blur(10px);
  max-width: 540px;
  width: 100%;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-num {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-light);
  font-family: var(--font-mono);
}

.stat-desc {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 24px;
  background: var(--border-subtle);
}

/* LADO DERECHO: SHOWCASE MOCKUP 3D DE TELÉFONO (MODO BASIC - FRAME 2) */
.hero-right-column {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.hero-phone-showcase {
  width: 100%;
  max-width: 480px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Escenario 3D con Perspectiva */
.phone-3d-perspective-stage {
  perspective: 1300px;
  perspective-origin: 50% 45%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0.5rem 1.5rem 0.5rem;
  position: relative;
}

/* Chasis del Teléfono en Ángulo 3D hacia la Izquierda */
.phone-angled-device {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-20deg) rotateX(8deg) rotateZ(-2.5deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.phone-angled-device:hover {
  transform: rotateY(-10deg) rotateX(4deg) rotateZ(-1deg) translateY(-6px);
}

.phone-angled-device:hover .phone-screen-scroller {
  animation-play-state: paused;
}

/* Marco Exterior Metálico / Titanio Obsidiana */
.phone-outer-frame {
  position: relative;
  width: 290px;
  height: 580px;
  background: linear-gradient(155deg, #1a2a20 0%, #0d1a13 40%, #040906 100%);
  border-radius: 46px;
  padding: 10px;
  border: 3.5px solid #273b30;
  box-shadow: 
    -20px 30px 65px rgba(0, 0, 0, 0.88),
    -5px 10px 25px rgba(212, 175, 55, 0.12),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.18),
    inset 0 0 15px rgba(0, 229, 153, 0.08);
  box-sizing: border-box;
}

/* Dynamic Island / Cámara Frontal */
.phone-island-notch {
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 22px;
  background: #000000;
  border-radius: 999px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  gap: 7px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

.island-camera {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #081720;
  border: 1px solid #16364a;
  display: block;
}

.island-sensor {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #061c10;
  display: block;
}

/* Viewport de Pantalla */
.phone-screen-viewport {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background: #020604;
}

/* Contenedor del Scroll Vertical Continuo de Frame 2 */
.phone-screen-scroller {
  width: 100%;
  display: flex;
  flex-direction: column;
  animation: phoneVerticalScroll 18s ease-in-out infinite alternate;
  will-change: transform;
}

.phone-screen-scroller:hover {
  animation-play-state: paused;
}

@keyframes phoneVerticalScroll {
  0%, 10% {
    transform: translateY(0%);
  }
  48%, 58% {
    /* 580px frame - 20px padding = 560px screen height */
    transform: translateY(calc(-100% + 556px));
  }
  92%, 100% {
    transform: translateY(0%);
  }
}

.phone-scroll-image {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Reflejo y Bisel de Cristal */
.phone-glass-reflection {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  border-radius: 36px;
  background: linear-gradient(130deg, 
    rgba(255, 255, 255, 0.16) 0%, 
    rgba(255, 255, 255, 0.04) 30%, 
    transparent 55%, 
    rgba(0, 229, 153, 0.04) 100%
  );
}

.phone-inner-bevel {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  border-radius: 36px;
  box-shadow: 
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* Indicador de barra de inicio */
.phone-home-indicator {
  position: absolute;
  bottom: 17px;
  left: 50%;
  transform: translateX(-50%);
  width: 95px;
  height: 4px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  z-index: 12;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

/* Botones Físicos de Hardware */
.phone-hardware-btn {
  position: absolute;
  background: #1e3025;
  z-index: 1;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.btn-power {
  right: -6px;
  top: 130px;
  width: 4px;
  height: 52px;
  border-radius: 0 3px 3px 0;
}

.btn-vol-up {
  left: -6px;
  top: 115px;
  width: 4px;
  height: 45px;
  border-radius: 3px 0 0 3px;
}

.btn-vol-down {
  left: -6px;
  top: 170px;
  width: 4px;
  height: 45px;
  border-radius: 3px 0 0 3px;
}

/* Sombras 3D y Halo Ambiental */
.phone-chassis-shadow {
  position: absolute;
  bottom: -28px;
  left: -12%;
  width: 124%;
  height: 45px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 75%);
  filter: blur(14px);
  z-index: -1;
  transform: rotateX(85deg);
  pointer-events: none;
}

.phone-ambient-halo {
  position: absolute;
  inset: -15px;
  border-radius: 60px;
  background: radial-gradient(circle at 65% 35%, rgba(212, 175, 55, 0.12), rgba(0, 229, 153, 0.08) 50%, transparent 70%);
  filter: blur(32px);
  z-index: -2;
  pointer-events: none;
}

/* Contenedor de Cápsulas Flotantes Secuenciales */
.hero-orbit-capsules {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 20;
}

/* Cápsula Flotante Individual */
.floating-orbit-capsule {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  background: rgba(6, 16, 11, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  backdrop-filter: blur(12px);
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.35;
  transform: scale(0.92);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
  cursor: pointer;
  user-select: none;
}

.floating-orbit-capsule .capsule-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.45s ease;
}

.floating-orbit-capsule .capsule-icon {
  font-size: 0.95rem;
  opacity: 0.5;
  transition: all 0.45s ease;
}

.floating-orbit-capsule .capsule-name {
  text-transform: capitalize;
  transition: all 0.45s ease;
}

/* ESTADO PRENDIDO (Activo / Iluminado en Secuencia o Hover) */
.floating-orbit-capsule.is-active,
.floating-orbit-capsule:hover {
  opacity: 1;
  transform: scale(1.12) translateY(-4px);
  background: linear-gradient(135deg, rgba(14, 38, 26, 0.96) 0%, rgba(7, 20, 13, 0.98) 100%);
  border-color: var(--emerald-primary);
  color: #ffffff;
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.75),
    0 0 24px rgba(0, 229, 153, 0.45),
    0 0 10px rgba(212, 175, 55, 0.3);
  animation: capsuleActivePulse 2.2s infinite ease-in-out;
}

.floating-orbit-capsule.is-active .capsule-dot,
.floating-orbit-capsule:hover .capsule-dot {
  background: var(--emerald-primary);
  box-shadow: 0 0 10px var(--emerald-primary), 0 0 4px #ffffff;
  transform: scale(1.35);
}

.floating-orbit-capsule.is-active .capsule-icon,
.floating-orbit-capsule:hover .capsule-icon {
  opacity: 1;
  transform: scale(1.2);
}

.floating-orbit-capsule.is-active .capsule-name,
.floating-orbit-capsule:hover .capsule-name {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 229, 153, 0.5);
  font-weight: 700;
}

@keyframes capsuleActivePulse {
  0%, 100% {
    box-shadow: 
      0 12px 32px rgba(0, 0, 0, 0.75),
      0 0 22px rgba(0, 229, 153, 0.4),
      0 0 8px rgba(212, 175, 55, 0.25);
  }
  50% {
    box-shadow: 
      0 16px 40px rgba(0, 0, 0, 0.85),
      0 0 32px rgba(0, 229, 153, 0.65),
      0 0 14px rgba(212, 175, 55, 0.45);
  }
}

/* Posiciones Estratégicas Distribuidas Alrededor del Teléfono */
/* 1. Bancos (Superior Izquierda) */
.capsule-pos-1 {
  top: 5%;
  left: -28px;
  animation: floatCapsule1 5s ease-in-out infinite alternate;
}

/* 2. Billeteras (Superior Derecha) */
.capsule-pos-2 {
  top: 16%;
  right: -32px;
  animation: floatCapsule2 5.2s ease-in-out infinite alternate 0.8s;
}

/* 3. Tarjetas (Media Izquierda) */
.capsule-pos-3 {
  top: 32%;
  left: -38px;
  animation: floatCapsule3 4.8s ease-in-out infinite alternate 1.4s;
}

/* 4. Cuotas (Media Derecha) */
.capsule-pos-4 {
  top: 46%;
  right: -36px;
  animation: floatCapsule4 5.5s ease-in-out infinite alternate 2s;
}

/* 5. Gastos (Media-Baja Izquierda) */
.capsule-pos-5 {
  top: 60%;
  left: -32px;
  animation: floatCapsule1 5.3s ease-in-out infinite alternate 0.5s;
}

/* 6. Ahorros (Media-Baja Derecha) */
.capsule-pos-6 {
  top: 74%;
  right: -28px;
  animation: floatCapsule2 4.9s ease-in-out infinite alternate 1.2s;
}

/* 7. Decisiones (Inferior Izquierda/Centro) */
.capsule-pos-7 {
  bottom: 2%;
  left: -18px;
  animation: floatCapsule3 5.4s ease-in-out infinite alternate 1.8s;
}

@keyframes floatCapsule1 {
  0% { margin-top: 0px; }
  100% { margin-top: -8px; }
}

@keyframes floatCapsule2 {
  0% { margin-top: 0px; }
  100% { margin-top: 8px; }
}

@keyframes floatCapsule3 {
  0% { margin-top: 0px; }
  100% { margin-top: -7px; }
}

@keyframes floatCapsule4 {
  0% { margin-top: 0px; }
  100% { margin-top: 7px; }
}

/* ================= BANNER ROULETTE (INMEDIATAMENTE DEBAJO DEL HERO) ================= */
.roulette-banner-section {
  padding: 4.5rem 1.5rem 5rem 1.5rem;
  background: radial-gradient(circle at 50% 50%, rgba(7, 20, 14, 0.95) 0%, rgba(4, 8, 6, 0.98) 100%);
  border-top: none;
  border-bottom: none;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
}

.roulette-banner-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Quitar líneas de división entre secciones */
#basic-mode,
#registro-agil,
#tarjetas-cuotas,
#patrimonio-futuro,
#presupuestos,
#pareja,
#zona-contraste,
#precios,
#modelo-comercial,
#seguridad,
#faq {
  border-top: none;
}

/* ================= CONTENEDORES DE SECCIÓN ================= */
.content-section {
  padding: 6rem 1.5rem;
  position: relative;
  border-top: none;
}

.section-alternate {
  background: var(--color-bg-alt);
}

.section-dark-luxury {
  background: var(--color-bg-dark-luxury);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header-box {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
}

.section-tag-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(0, 229, 153, 0.1);
  color: var(--emerald-primary);
  border: 1px solid rgba(0, 229, 153, 0.3);
  margin-bottom: 1rem;
}

.section-main-heading {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Badge de Texto Destacado en el Header de la Sección */
.section-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding: 0.55rem 1.4rem;
  background: rgba(0, 229, 153, 0.08);
  border: 1px solid rgba(0, 229, 153, 0.3);
  border-radius: 9999px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 229, 153, 0.12);
}

.highlight-text-sparkle {
  color: var(--emerald-primary);
  font-size: 1rem;
}

.highlight-text-content {
  font-size: 0.98rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ================= 02. SCROLL-DRIVEN CINEMATIC HERO SCROLLER (FULL-WIDTH VIDEO) ================= */
.cinematic-scroller-section {
  position: relative;
  padding: 5rem 0 0 0;
  overflow: visible;
  width: 100%;
}

/* Pista de Scroll (300vh proporciona 3 etapas fluidas al deslizar) */
.cinematic-story-track {
  position: relative;
  width: 100%;
  height: 300vh;
  margin-top: 2rem;
}

/* Escenario Sticky Fijo a pantalla completa (100vw x 100vh) */
.cinematic-sticky-stage {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: #020604;
}

/* Capas de Video de Fondo Full Width */
.cinematic-bg-videos {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.cinematic-video-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.04);
}

.cinematic-video-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.cinematic-video-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.1);
  display: block;
}

/* Overlays atmosféricos de color sobre el video */
.cinematic-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 6, 0.85) 0%, rgba(4, 8, 6, 0.38) 45%, rgba(4, 8, 6, 0.94) 100%);
}

.cinematic-video-overlay.overlay-emerald {
  background: radial-gradient(circle at 75% 35%, rgba(0, 229, 153, 0.18) 0%, transparent 60%),
              linear-gradient(180deg, rgba(4, 8, 6, 0.82) 0%, rgba(4, 8, 6, 0.35) 45%, rgba(4, 8, 6, 0.95) 100%);
}

.cinematic-video-overlay.overlay-cyan {
  background: radial-gradient(circle at 25% 45%, rgba(0, 210, 255, 0.18) 0%, transparent 60%),
              linear-gradient(180deg, rgba(4, 8, 6, 0.82) 0%, rgba(4, 8, 6, 0.35) 45%, rgba(4, 8, 6, 0.95) 100%);
}

.cinematic-video-overlay.overlay-gold {
  background: radial-gradient(circle at 70% 65%, rgba(212, 175, 55, 0.2) 0%, transparent 60%),
              linear-gradient(180deg, rgba(4, 8, 6, 0.82) 0%, rgba(4, 8, 6, 0.35) 45%, rgba(4, 8, 6, 0.95) 100%);
}

.cinematic-ambient-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 140px rgba(0, 0, 0, 0.9);
  pointer-events: none;
  z-index: 3;
}

/* Barra de Navegación / Progreso Superior (Tabs) */
.cinematic-nav-progress {
  position: relative;
  margin-top: 2.2rem;
  display: flex;
  gap: 0.65rem;
  background: rgba(6, 16, 11, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  backdrop-filter: blur(20px);
  z-index: 10;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.progress-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  user-select: none;
}

.progress-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.progress-tab.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.progress-num {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.progress-tab.active[data-step="1"] .progress-num {
  color: var(--emerald-primary);
}

.progress-tab.active[data-step="2"] .progress-num {
  color: #00d2ff;
}

.progress-tab.active[data-step="3"] .progress-num {
  color: var(--gold-light);
}

/* Escenario de Contenido Overlay */
.cinematic-content-stage {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto 0;
  padding: 0 1.5rem;
  z-index: 8;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.cinematic-content-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cinematic-narrative-card {
  position: absolute;
  width: 100%;
  max-width: 820px;
  opacity: 0;
  transform: translateY(35px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cinematic-narrative-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  position: relative;
}

.narrative-pill-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.stagger-step-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: rgba(0, 229, 153, 0.14);
  color: var(--emerald-primary);
  border: 1px solid rgba(0, 229, 153, 0.35);
  box-shadow: 0 2px 12px rgba(0, 229, 153, 0.2);
}

.stagger-step-pill.cyan-pill {
  background: rgba(0, 210, 255, 0.14);
  color: #00d2ff;
  border-color: rgba(0, 210, 255, 0.4);
  box-shadow: 0 2px 12px rgba(0, 210, 255, 0.2);
}

.stagger-step-pill.gold-pill {
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold-light);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.2);
}

.video-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald-primary);
  box-shadow: 0 0 10px var(--emerald-primary);
  animation: livePulse 2s infinite ease-in-out;
}

.live-dot.dot-cyan {
  background: #00d2ff;
  box-shadow: 0 0 10px #00d2ff;
}

.live-dot.dot-gold {
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light);
}

@keyframes livePulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.25); }
}

.narrative-main-title {
  font-size: clamp(1.75rem, 3.6vw, 2.85rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.16;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.85);
  max-width: 760px;
}

.narrative-main-title.highlight-title {
  background: linear-gradient(135deg, #ffffff 15%, #00ffaa 60%, var(--emerald-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 24px rgba(0, 229, 153, 0.45));
}

.narrative-description {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}

.narrative-feature-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.stagger-tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #ffffff;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.stagger-tag.gold-tag {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
}

/* Indicador inferior de Scroll */
.cinematic-scroll-hint {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 10;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.hint-mouse-icon {
  width: 14px;
  height: 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  position: relative;
}

.hint-mouse-icon::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 4px;
  background: var(--emerald-primary);
  border-radius: 2px;
  animation: mouseScroll 1.8s infinite ease-in-out;
}

@keyframes mouseScroll {
  0% { top: 4px; opacity: 1; }
  100% { top: 11px; opacity: 0; }
}

/* ================= GRIDS Y TARJETAS ================= */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 2.2rem 2rem;
  backdrop-filter: var(--glass-blur);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: var(--color-bg-card-hover);
  border-color: var(--border-glass);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon-badge {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  display: inline-block;
}

.feature-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}

/* ================= 04. PASO 4 - EVOLUCIÓN NATURAL: TARJETAS CENTRADAS ================= */
.cards-centered-layout {
  gap: 2.2rem;
  margin-top: 3.5rem;
}

.feature-card-evolucion {
  text-align: center;
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(165deg, rgba(12, 28, 20, 0.85) 0%, rgba(6, 14, 10, 0.95) 100%);
  border: 1.5px solid rgba(0, 229, 153, 0.2);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(0, 229, 153, 0.06);
  border-radius: 26px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card-evolucion:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 153, 0.6);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.75), 0 0 40px rgba(0, 229, 153, 0.25);
  background: linear-gradient(165deg, rgba(16, 38, 27, 0.9) 0%, rgba(8, 20, 14, 0.98) 100%);
}

.feature-icon-badge-centered {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.8rem auto;
  border-radius: 26px;
  background: radial-gradient(circle at 30% 30%, rgba(0, 229, 153, 0.2) 0%, rgba(6, 18, 12, 0.8) 100%);
  border: 1.5px solid rgba(0, 229, 153, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 20px rgba(0, 229, 153, 0.2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.feature-card-evolucion:hover .feature-icon-badge-centered {
  transform: scale(1.12) rotate(3deg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 153, 0.45);
  border-color: var(--emerald-primary);
}

.feature-card-evolucion .feature-card-title {
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}

.feature-card-evolucion .feature-card-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ================= 03. BASIC REAL - 3 MOCKUPS FRONTALES PARCIALES CON BURBUJAS ================= */
.section-heading-integrated {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 850;
  letter-spacing: -0.03em;
  color: #ffffff;
  display: block;
  text-align: center;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.section-heading-integrated:last-child {
  margin-bottom: 0;
}

.heading-lead-digit {
  font-family: var(--font-mono);
  font-size: 1em;
  font-weight: 900;
  display: inline;
  margin-right: 0.15em;
  background: linear-gradient(135deg, #ffffff 15%, #00ffaa 60%, var(--emerald-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(0, 229, 153, 0.45));
}

.basic-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.basic-phone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.basic-phone-card:hover {
  transform: translateY(-8px);
}

/* Burbuja Flotante Sobre el Mockup (Grande, Fondo Claro & Texto Oscuro) */
.phone-floating-bubble {
  width: 100%;
  max-width: 350px;
  background: linear-gradient(145deg, #ffffff 0%, #f4f8f5 100%);
  border: 1.5px solid rgba(0, 229, 153, 0.45);
  border-radius: 22px;
  padding: 1.4rem 1.6rem;
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 229, 153, 0.15);
  z-index: 10;
  position: relative;
  margin-bottom: -24px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.basic-phone-card:hover .phone-floating-bubble {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 153, 0.75);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(0, 229, 153, 0.3);
}

.phone-floating-bubble.bubble-cyan {
  border-color: rgba(0, 210, 255, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 210, 255, 0.15);
}

.basic-phone-card:hover .phone-floating-bubble.bubble-cyan {
  border-color: rgba(0, 210, 255, 0.75);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(0, 210, 255, 0.3);
}

.phone-floating-bubble.bubble-gold {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 30px rgba(212, 175, 55, 0.18);
}

.basic-phone-card:hover .phone-floating-bubble.bubble-gold {
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(212, 175, 55, 0.35);
}

.bubble-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.45rem;
}

.bubble-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bubble-dot.dot-emerald {
  background: #047857;
  box-shadow: 0 0 10px rgba(4, 120, 87, 0.7);
}

.bubble-dot.dot-cyan {
  background: #0284c7;
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.7);
}

.bubble-dot.dot-gold {
  background: #b88e1a;
  box-shadow: 0 0 10px rgba(184, 142, 26, 0.7);
}

.bubble-title {
  font-size: 1.15rem;
  font-weight: 850;
  color: #081a12;
  letter-spacing: -0.015em;
}

.bubble-desc {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}

/* Conector / Ancla de la Burbuja hacia el Mockup */
.bubble-arrow-anchor {
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #f4f8f5;
  border-right: 1.5px solid rgba(0, 229, 153, 0.45);
  border-bottom: 1.5px solid rgba(0, 229, 153, 0.45);
  z-index: 11;
}

.bubble-cyan .bubble-arrow-anchor {
  border-color: rgba(0, 210, 255, 0.45);
}

.bubble-gold .bubble-arrow-anchor {
  border-color: rgba(212, 175, 55, 0.45);
}

/* Contenedor del Mockup Frontal Parcial */
.partial-phone-wrapper {
  position: relative;
  width: 275px;
  height: 380px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  border-radius: 44px 44px 0 0;
  padding-top: 10px;
}

/* Halo Ambiental Trasero */
.partial-phone-halo {
  position: absolute;
  inset: -15px;
  border-radius: 50px;
  filter: blur(35px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.basic-phone-card:hover .partial-phone-halo {
  opacity: 0.7;
}

.partial-phone-halo.halo-emerald {
  background: radial-gradient(circle at center, rgba(0, 229, 153, 0.25) 0%, transparent 70%);
}

.partial-phone-halo.halo-cyan {
  background: radial-gradient(circle at center, rgba(0, 210, 255, 0.25) 0%, transparent 70%);
}

.partial-phone-halo.halo-gold {
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.28) 0%, transparent 70%);
}

/* Chasis Frontal del Teléfono */
.partial-phone-chassis {
  position: relative;
  width: 265px;
  height: 540px;
  background: linear-gradient(155deg, #18281e 0%, #0c1811 40%, #040906 100%);
  border-radius: 42px;
  padding: 9px;
  border: 3px solid #23372c;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  z-index: 2;
  box-sizing: border-box;
}

/* Viewport de Pantalla */
.partial-screen-viewport {
  width: 100%;
  height: 100%;
  border-radius: 33px;
  overflow: hidden;
  position: relative;
  background: #020604;
}

.partial-screen-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Recortes / Enfoques a cada elemento visual */
.partial-screen-img.img-crop-saldo {
  transform: translateY(0);
}

.partial-screen-img.img-crop-categories {
  transform: translateY(-210px);
}

.partial-screen-img.img-crop-wallets {
  transform: translateY(calc(-100% + 490px));
}

.basic-phone-card:hover .partial-screen-img.img-crop-saldo {
  transform: translateY(-10px);
}

.basic-phone-card:hover .partial-screen-img.img-crop-categories {
  transform: translateY(-220px);
}

.basic-phone-card:hover .partial-screen-img.img-crop-wallets {
  transform: translateY(calc(-100% + 480px));
}

/* Máscara de Desvanecimiento Inferior */
.partial-phone-fade-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 110px;
  background: linear-gradient(to bottom, transparent 0%, var(--color-bg-alt) 100%);
  z-index: 6;
  pointer-events: none;
}

/* ================= 04. REGISTRO ÁGIL - TARJETAS DE VIDEO VERTICAL 3:5 ================= */
.agile-video-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.agile-video-card {
  position: relative;
  aspect-ratio: 3 / 5;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #060c09;
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 153, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  isolation: isolate;
}

.agile-video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 153, 0.45);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(0, 229, 153, 0.2);
}

.agile-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.agile-video-card:hover .agile-card-video {
  transform: scale(1.05);
}

/* Layout desvanecido hacia arriba */
.agile-card-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(4, 8, 6, 0.97) 0%, 
    rgba(4, 8, 6, 0.88) 32%, 
    rgba(4, 8, 6, 0.45) 60%, 
    rgba(4, 8, 6, 0.1) 80%, 
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.agile-video-card:hover .agile-card-gradient-overlay {
  background: linear-gradient(to top, 
    rgba(4, 8, 6, 0.98) 0%, 
    rgba(4, 8, 6, 0.85) 35%, 
    rgba(4, 8, 6, 0.4) 65%, 
    rgba(4, 8, 6, 0.05) 85%, 
    transparent 100%
  );
}

.agile-card-footer-content {
  position: relative;
  z-index: 2;
  padding: 2.2rem 1.7rem 2rem 1.7rem;
  text-align: left;
}

.agile-card-badge-row {
  margin-bottom: 0.85rem;
}

.agile-icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(0, 229, 153, 0.16);
  border: 1px solid rgba(0, 229, 153, 0.35);
  font-size: 1.35rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 229, 153, 0.25);
  transition: transform 0.3s ease;
}

.agile-video-card:hover .agile-icon-pill {
  transform: scale(1.08) rotate(3deg);
}

.agile-icon-pill.icon-cyan {
  background: rgba(0, 210, 255, 0.16);
  border-color: rgba(0, 210, 255, 0.35);
  box-shadow: 0 4px 18px rgba(0, 210, 255, 0.25);
}

.agile-icon-pill.icon-gold {
  background: rgba(212, 175, 55, 0.16);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.25);
}

.agile-card-title {
  font-size: 1.35rem;
  font-weight: 850;
  color: #ffffff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.agile-card-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* ================= LAYOUT SPLIT INTERACTIVO ================= */
.split-interactive-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.split-text-column .section-main-heading {
  text-align: left;
}

.split-text-column .section-subtitle {
  margin-bottom: 2rem;
}

.feature-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.96rem;
  color: var(--text-main);
}

.bullet-check {
  color: var(--emerald-primary);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* ================= 05. TARJETAS Y CUOTAS - SHOWCASE CON TELÉFONO PARCIAL Y GLOBOS ================= */
.tarjetas-showcase-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  margin-top: 3.5rem;
  position: relative;
}

/* SVG Overlay de Líneas Indicadoras */
.tarjetas-connectors-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}

.connector-line {
  fill: none;
  stroke-width: 2px;
  stroke-dasharray: 4 3;
  animation: connectorDash 30s linear infinite;
}

@keyframes connectorDash {
  to { stroke-dashoffset: -100; }
}

.connector-line.line-emerald {
  stroke: url(#lineGradEmerald);
  filter: drop-shadow(0 0 6px rgba(0, 229, 153, 0.45));
}

.connector-line.line-gold {
  stroke: url(#lineGradGold);
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.45));
}

.connector-line.line-cyan {
  stroke: url(#lineGradCyan);
  filter: drop-shadow(0 0 6px rgba(0, 210, 255, 0.45));
}

.connector-dot-origin,
.connector-dot-target {
  filter: drop-shadow(0 0 8px currentColor);
}

.connector-dot-origin.dot-emerald,
.connector-dot-target.dot-emerald { fill: #00e599; }
.connector-dot-origin.dot-gold,
.connector-dot-target.dot-gold { fill: #d4af37; }
.connector-dot-origin.dot-cyan,
.connector-dot-target.dot-cyan { fill: #00d2ff; }

/* Columnas de Globos */
.tarjetas-bubbles-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  max-width: 370px;
  z-index: 4;
}

.tarjetas-floating-globe {
  width: 100%;
  background: linear-gradient(145deg, #ffffff 0%, #f4f8f5 100%);
  border: 1.5px solid rgba(0, 229, 153, 0.45);
  border-radius: 22px;
  padding: 1.4rem 1.6rem;
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 229, 153, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  position: relative;
}

.tarjetas-floating-globe:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 153, 0.8);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(0, 229, 153, 0.3);
}

.tarjetas-floating-globe.globe-cyan {
  border-color: rgba(0, 210, 255, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 210, 255, 0.15);
}

.tarjetas-floating-globe.globe-cyan:hover {
  border-color: rgba(0, 210, 255, 0.8);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(0, 210, 255, 0.3);
}

.tarjetas-floating-globe.globe-gold {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 30px rgba(212, 175, 55, 0.18);
}

.tarjetas-floating-globe.globe-gold:hover {
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(212, 175, 55, 0.35);
}

.globe-check-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.globe-check-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
  color: #ffffff;
  flex-shrink: 0;
}

.globe-check-badge.check-emerald {
  background: linear-gradient(135deg, #00e599 0%, #059669 100%);
  box-shadow: 0 2px 10px rgba(0, 229, 153, 0.5);
}

.globe-check-badge.check-cyan {
  background: linear-gradient(135deg, #00d2ff 0%, #0284c7 100%);
  box-shadow: 0 2px 10px rgba(0, 210, 255, 0.5);
}

.globe-check-badge.check-gold {
  background: linear-gradient(135deg, #fce881 0%, #cba135 100%);
  color: #081a12;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.globe-title {
  font-size: 1.12rem;
  font-weight: 850;
  color: #081a12;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.25;
}

.globe-desc {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}

/* Columna Teléfono Central Parcial */
.tarjetas-phone-col {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.tarjetas-phone-wrapper {
  position: relative;
  width: 285px;
  height: 480px;
  overflow: hidden;
  border-radius: 46px 46px 0 0;
  display: flex;
  justify-content: center;
  padding-top: 5px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tarjetas-phone-wrapper:hover {
  transform: translateY(-6px);
}

.tarjetas-phone-halo {
  position: absolute;
  inset: -25px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(0, 229, 153, 0.14) 45%, transparent 70%);
  filter: blur(35px);
  pointer-events: none;
  z-index: 0;
}

.tarjetas-phone-chassis {
  position: relative;
  width: 275px;
  height: 600px;
  border-radius: 44px;
  background: linear-gradient(155deg, #18281e 0%, #0c1811 40%, #040906 100%);
  border: 3px solid #23372c;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  overflow: hidden;
  z-index: 2;
  padding: 8px;
  box-sizing: border-box;
}

.tarjetas-screen-viewport {
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background: #000000;
  width: 100%;
  height: 100%;
  display: flex;
}

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

/* Máscara de Desvanecimiento Inferior del Teléfono */
.tarjetas-phone-fade-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, rgba(6, 13, 9, 0.75) 45%, var(--color-bg-alt) 100%);
  z-index: 6;
  pointer-events: none;
}

/* Mockup Cards & Widgets */
.app-mockup-card {
  background: #08140e;
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(0, 229, 153, 0.08);
}

.card-gold-border {
  border-color: var(--gold-border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(212, 175, 55, 0.12);
}

.mockup-header {
  padding: 1rem 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.mockup-title-text {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.mockup-body {
  padding: 1.8rem;
}

.mockup-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
  display: block;
  margin-bottom: 0.35rem;
}

.mockup-big-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.mockup-wallets-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 1.4rem 0;
}

.wallet-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 0.75rem 0.65rem;
  text-align: center;
}

.wchip-name {
  font-size: 0.68rem;
  color: var(--text-muted);
  display: block;
}

.wchip-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0.2rem;
  display: block;
}

.mockup-tx-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.tx-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  font-size: 0.86rem;
}

.tx-amount.negative { color: #f87171; font-weight: 700; }
.tx-amount.positive { color: var(--emerald-primary); font-weight: 700; }

/* Widgets de Cuotas y Barras */
.installment-bars-widget {
  margin: 1.4rem 0;
}

.bars-container {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
  height: 100px;
  margin-top: 0.8rem;
  padding: 0.5rem 0;
}

.bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.bar-fill {
  width: 100%;
  background: linear-gradient(180deg, var(--gold-light), rgba(212, 175, 55, 0.3));
  border-radius: 6px 6px 2px 2px;
  transition: height 0.4s ease;
}

.bar-month {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.4rem;
}

.card-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.summary-mini-box {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 0.75rem;
}

.sbox-label { font-size: 0.72rem; color: var(--text-dim); display: block; }
.sbox-val { font-size: 1.05rem; color: #ffffff; margin-top: 0.2rem; display: block; }

/* ================= SECCIÓN DE CONTRASTE (ISLA MODO CLARO) ================= */
.contrast-light-zone {
  background: linear-gradient(180deg, #f8faf9 0%, #edf4ef 50%, #f8faf9 100%);
  color: #081a12;
  padding: 6.5rem 1.5rem 7.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 -30px 60px rgba(0, 0, 0, 0.4);
}

.contrast-light-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Encabezado General de la Zona de Contraste */
.contrast-zone-intro {
  max-width: 860px;
  margin: 0 auto 5rem auto;
}

.contrast-hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: rgba(4, 120, 87, 0.12);
  color: #047857;
  border: 1.5px solid rgba(4, 120, 87, 0.3);
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 10px rgba(4, 120, 87, 0.08);
}

.contrast-zone-heading {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #081a12;
  margin-bottom: 1.2rem;
}

.contrast-zone-subtitle {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.65;
  font-weight: 500;
}

/* Grilla Unificada de 6 Tarjetas Categorizadas */
.contrast-unified-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contrast-grid-card {
  background: #ffffff;
  border: 1.5px solid rgba(4, 120, 87, 0.16);
  border-radius: 26px;
  padding: 2.4rem 2rem;
  box-shadow: 0 16px 36px rgba(0, 30, 15, 0.06), 0 0 20px rgba(4, 120, 87, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.contrast-grid-card:hover {
  transform: translateY(-6px);
  border-color: rgba(4, 120, 87, 0.45);
  box-shadow: 0 24px 55px rgba(0, 30, 15, 0.12), 0 0 30px rgba(4, 120, 87, 0.1);
}

.contrast-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.contrast-card-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contrast-card-plan {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.01em;
}

.contrast-card-tag.tag-emerald {
  background: rgba(4, 120, 87, 0.1);
  color: #047857;
  border: 1px solid rgba(4, 120, 87, 0.25);
}

.contrast-card-tag.tag-gold {
  background: rgba(184, 142, 26, 0.12);
  color: #946c0a;
  border: 1px solid rgba(184, 142, 26, 0.3);
}

.contrast-card-tag.tag-cyan {
  background: rgba(2, 132, 199, 0.12);
  color: #0369a1;
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.contrast-card-tag.tag-green {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.25);
}

.contrast-card-title {
  font-size: 1.32rem;
  font-weight: 850;
  color: #081a12;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.28;
}

.contrast-card-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

/* 1. Mini métodos en tarjeta de Presupuesto */
.contrast-mini-methods {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.mini-method-item {
  background: #f8faf9;
  border: 1px solid rgba(4, 120, 87, 0.15);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.mini-method-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #081a12;
  margin-bottom: 0.3rem;
}

.mm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.mm-dot.dot-emerald {
  background: #059669;
  box-shadow: 0 0 6px rgba(5, 150, 105, 0.5);
}

.mm-dot.dot-gold {
  background: #d97706;
  box-shadow: 0 0 6px rgba(217, 119, 6, 0.5);
}

.mini-method-text {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

/* 2. Mini preview Pareja */
.contrast-couple-mini-preview {
  background: #f8faf9;
  border: 1px solid rgba(4, 120, 87, 0.15);
  border-radius: 16px;
  padding: 1.1rem;
  margin-bottom: 1.5rem;
}

.couple-mini-diagram {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  background: #ffffff;
  border: 1px solid rgba(4, 120, 87, 0.12);
  border-radius: 12px;
  padding: 0.7rem 0.6rem;
}

.cmini-node {
  font-size: 0.74rem;
  font-weight: 700;
  color: #081a12;
  white-space: nowrap;
}

.cmini-arrow {
  font-size: 0.72rem;
  color: #047857;
  text-align: center;
}

.couple-mini-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
}

/* 3. Metric box (Score / War Room) */
.contrast-metric-badge {
  font-size: 0.88rem;
  font-weight: 850;
  font-family: var(--font-mono);
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
}

.contrast-metric-badge.badge-emerald {
  color: #047857;
  background: rgba(4, 120, 87, 0.12);
  border: 1px solid rgba(4, 120, 87, 0.25);
}

.contrast-metric-badge.badge-gold {
  color: #946c0a;
  background: rgba(184, 142, 26, 0.12);
  border: 1px solid rgba(184, 142, 26, 0.3);
}

.contrast-metric-badge.badge-cyan {
  color: #0369a1;
  background: rgba(2, 132, 199, 0.12);
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.contrast-metric-badge.badge-green {
  color: #15803d;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.25);
}

.contrast-metric-preview-box {
  background: #f8faf9;
  border: 1px solid rgba(4, 120, 87, 0.15);
  border-radius: 14px;
  padding: 1.1rem;
  margin-bottom: 1.5rem;
}

.metric-meter-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.6rem;
}

.metric-meter-label strong {
  color: #081a12;
  font-weight: 800;
}

.metric-meter-track {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.metric-meter-fill {
  height: 100%;
  border-radius: 999px;
}

.metric-meter-fill.fill-emerald {
  background: linear-gradient(90deg, #059669 0%, #10b981 100%);
}

.metric-meter-fill.fill-gold {
  background: linear-gradient(90deg, #b88e1a 0%, #d4af37 100%);
}

/* 4. Tags preview (BCG / Deuda) */
.contrast-tags-preview {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.ctag-pill {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  background: #f8faf9;
  border: 1px solid rgba(4, 120, 87, 0.15);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 650;
  color: #334155;
}

.ctag-pill.ctag-cut {
  background: #fff7ed;
  border-color: rgba(234, 88, 12, 0.25);
  color: #c2410c;
}

/* Detalle Expandido de Tarjetas de Contraste */
.contrast-expanded-details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-top: 0.8rem;
  padding-bottom: 0.6rem;
  border-top: 1px dashed rgba(4, 120, 87, 0.2);
}

.cdetail-item {
  background: #f8faf9;
  border: 1px solid rgba(4, 120, 87, 0.15);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.cdetail-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #081a12;
  margin-bottom: 0.4rem;
}

.cdetail-desc {
  font-size: 0.84rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

.cdetail-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.4rem;
}

.cdetail-bullet {
  font-size: 0.84rem;
  color: #334155;
  line-height: 1.5;
  background: #f8faf9;
  border: 1px solid rgba(4, 120, 87, 0.12);
  border-radius: 12px;
  padding: 0.75rem 0.95rem;
}

.cdetail-bullet strong {
  color: #081a12;
}

.cdetail-chip {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  background: rgba(4, 120, 87, 0.08);
  border: 1px solid rgba(4, 120, 87, 0.2);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #047857;
}

/* Acordeón In-Card para Revelar Contenido */
.contrast-card-reveal {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.contrast-card-reveal-inner {
  overflow: hidden;
  min-height: 0;
}

.contrast-grid-card.is-expanded .contrast-card-reveal {
  grid-template-rows: 1fr;
  opacity: 1;
}

.contrast-card-action {
  margin-top: auto;
  padding-top: 1rem;
}

.contrast-reveal-btn {
  background: #f8fafc;
  border: 1.5px solid rgba(4, 120, 87, 0.2);
  color: #047857;
  padding: 0.65rem 1.2rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 750;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 30, 15, 0.03);
}

.contrast-reveal-btn:hover {
  background: #047857;
  color: #ffffff;
  border-color: #047857;
  box-shadow: 0 6px 16px rgba(4, 120, 87, 0.25);
  transform: translateY(-1px);
}

.contrast-grid-card.is-expanded .contrast-reveal-btn {
  background: #f1f5f9;
  color: #475569;
  border-color: #cbd5e1;
}

.contrast-grid-card.is-expanded .contrast-reveal-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.cr-btn-icon {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.92rem;
  font-weight: 800;
}

.contrast-grid-card.is-expanded .cr-btn-icon {
  transform: rotate(180deg);
}

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

@media (max-width: 768px) {
  .contrast-unified-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= 10. TIMELINE 90 DÍAS ================= */
.timeline-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.timeline-step-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(0, 229, 153, 0.2);
  border-radius: var(--card-radius);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 153, 0.45);
  box-shadow: 0 16px 36px rgba(0, 229, 153, 0.12);
}

.tstep-num {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--emerald-primary);
  text-shadow: 0 0 24px rgba(0, 229, 153, 0.45);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.tstep-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.tstep-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ================= 11. TABLA DE PRECIOS ================= */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--color-bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card-featured {
  background: linear-gradient(180deg, rgba(20, 42, 30, 0.9), rgba(8, 18, 12, 0.95));
  border: 2px solid var(--gold-primary);
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(212, 175, 55, 0.15);
  z-index: 2;
}

.featured-ribbon {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gold-gradient);
  color: #040806;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

.plan-type-badge {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  display: block;
}

.plan-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.plan-price-box {
  margin-bottom: 0.4rem;
}

.price-val {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-mono);
}

.price-period {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.plan-savings-note {
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.plan-features-list {
  list-style: none;
  margin: 1.5rem 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.plan-features-list li {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.4;
}

.btn-plan-action {
  display: block;
  width: 100%;
  padding: 0.85rem;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}

.btn-plan-outline {
  border: 1px solid var(--border-glass);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
}

.btn-plan-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-plan-gold {
  background: var(--gold-gradient);
  color: #040806;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.btn-plan-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* ================= 13. FAQ ACORDEÓN ================= */
.faq-accordion-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--gold-border);
}

.faq-question-btn {
  width: 100%;
  padding: 1.4rem 1.6rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.6rem;
}

.faq-item.active .faq-answer-body {
  max-height: 300px;
  padding-bottom: 1.4rem;
}

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

/* ================= 14. CTA FINAL & FOOTER ================= */
.final-cta-section {
  padding: 6rem 1.5rem;
}

.final-cta-card {
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15), rgba(7, 20, 14, 0.95) 75%);
  border: 1px solid var(--gold-border);
  border-radius: 32px;
  padding: 4.5rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.final-cta-heading {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin: 1rem 0;
}

.final-cta-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.final-cta-card .hero-download-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 2.2rem;
  margin-bottom: 0;
  gap: 0.85rem;
}

.final-cta-card .download-buttons-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  flex-wrap: wrap;
}

.final-cta-card .webapp-container {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 0.25rem;
}

/* Footer Institucional */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #020503;
  padding: 4.5rem 1.5rem 2.5rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.footer-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  letter-spacing: 0.06em;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom-row {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: var(--text-dim);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--text-muted);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero-split-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
    text-align: center;
  }
  .hero-left-column {
    display: contents;
  }
  .hero-brand-badge {
    order: 1;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-impact-title {
    order: 2;
    text-align: center;
  }
  .hero-description-text {
    order: 3;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
  }
  .hero-right-column {
    order: 4;
    width: 100%;
    margin: 1rem 0 1.8rem 0;
  }
  .hero-download-actions {
    order: 5;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .download-buttons-group {
    justify-content: center;
  }
  .hero-stats-strip {
    order: 6;
    margin: 0 auto;
  }
  .phone-angled-device {
    transform: rotateY(-12deg) rotateX(6deg) rotateZ(-1.5deg);
  }
  .capsule-pos-1 { left: -12px; }
  .capsule-pos-2 { right: -12px; }
  .capsule-pos-3 { left: -18px; }
  .capsule-pos-4 { right: -18px; }
  .capsule-pos-5 { left: -14px; }
  .capsule-pos-6 { right: -14px; }
  .grid-3, .pricing-cards-grid, .timeline-steps-grid {
    grid-template-columns: 1fr;
  }
  .agile-video-cards-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .basic-showcase-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .tarjetas-showcase-stage {
    flex-direction: column;
    gap: 2.2rem;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .tarjetas-connectors-svg {
    display: none;
  }
  .tarjetas-bubbles-col {
    width: 100%;
    max-width: 100%;
  }
  .tarjetas-bubbles-col.col-left {
    order: 2;
  }
  .tarjetas-phone-col {
    order: 1;
    width: 100%;
  }
  .tarjetas-bubbles-col.col-right {
    order: 3;
  }
  .cinematic-story-track {
    height: 300vh;
  }
  .split-interactive-layout {
    grid-template-columns: 1fr;
  }
  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   MOBILE-FIRST UX/UI MASTER OVERRIDES (@media max-width: 768px & 480px)
   ========================================================================== */

/* 1. Header & Navigation Mobile + Drawer */
.mobile-menu-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.mobile-menu-toggle-btn .bar-line {
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.mobile-menu-toggle-btn:hover {
  background: rgba(0, 229, 153, 0.12);
  border-color: rgba(0, 229, 153, 0.3);
}

.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.mobile-nav-drawer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 4, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.drawer-content-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 340px;
  background: #060c08;
  border-left: 1px solid rgba(0, 229, 153, 0.2);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.4rem;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.is-open .drawer-content-box {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.drawer-links-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 1.5rem 0;
}

.drawer-link-item {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.drawer-link-item:hover, .drawer-link-item:active {
  background: rgba(0, 229, 153, 0.12);
  color: #00e599;
}

.drawer-cta-box {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-drawer-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #00e599 0%, #059669 100%);
  color: #040806;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 229, 153, 0.35);
}

/* 2. Sticky Bottom Action Bar (Thumb Zone) */
.mobile-sticky-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(4, 10, 7, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 229, 153, 0.25);
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6);
  padding: 0.65rem 1.2rem;
  transform: translateY(120%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sticky-bottom-bar.is-visible {
  transform: translateY(0);
}

.msb-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.msb-brand-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.msb-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.msb-text {
  display: flex;
  flex-direction: column;
}

.msb-title {
  font-size: 0.8rem;
  font-weight: 850;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.msb-sub {
  font-size: 0.68rem;
  color: #00e599;
  font-weight: 600;
}

.msb-cta-btn {
  background: linear-gradient(135deg, #00e599 0%, #059669 100%);
  color: #040806;
  font-weight: 850;
  font-size: 0.84rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 229, 153, 0.4);
  transition: transform 0.15s ease;
}

.msb-cta-btn:active {
  transform: scale(0.96);
}

/* 3. Selector de Pestañas Interactivas (Paso 1 y Precios) */
.mobile-showcase-tabs,
.mobile-pricing-tabs {
  display: none;
}

/* ================= MEDIA QUERY MOBILE MASTER (< 768px) ================= */
@media (max-width: 768px) {
  
  /* Anti-flicker & Mobile GPU acceleration */
  *, *::before, *::after {
    -webkit-tap-highlight-color: transparent;
  }

  .ambient-glow {
    filter: blur(40px) !important;
    opacity: 0.25 !important;
  }

  .hero-bg-overlay,
  .site-nav-header,
  .cinematic-video-slide,
  .cinematic-narrative-card,
  .agile-video-card,
  .basic-phone-card,
  .contrast-grid-card,
  .pricing-card {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  /* Safe padding bottom for sticky bottom bar */
  body {
    padding-bottom: 74px;
  }
  
  /* Calibrator Tool hidden on mobile */
  #tarjetasCalibratorBtn,
  #tarjetasGridCanvas,
  #tarjetasCalibratorHud {
    display: none !important;
  }

  /* 1. Header */
  .nav-links-menu {
    display: none !important;
  }
  
  .mobile-menu-toggle-btn {
    display: flex;
  }
  
  .mobile-sticky-bottom-bar {
    display: block;
  }
  
  .btn-nav-cta {
    display: none;
  }

  /* 2. Hero Section */
  .hero-impact-title {
    font-size: clamp(2rem, 8.5vw, 2.45rem);
    line-height: 1.15;
    margin-bottom: 1.1rem;
  }
  
  .hero-description-text {
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 1.6rem;
  }
  
  .download-buttons-group {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    width: 100%;
  }
  
  .btn-store {
    min-height: 48px;
    padding: 0.6rem 0.8rem;
  }
  
  .btn-store-name {
    font-size: 0.95rem;
  }
  
  .hero-stats-strip {
    flex-direction: column;
    border-radius: 20px;
    gap: 0.8rem;
    padding: 1.2rem;
    margin: 1.6rem auto 0 auto;
  }
  
  .stat-divider {
    display: none;
  }

  /* Hero Phone & Chip Strip */
  .phone-angled-device {
    transform: rotateY(-4deg) rotateX(3deg) rotateZ(0deg);
  }
  
  .phone-outer-frame {
    width: 260px;
    height: 520px;
    border-radius: 38px;
    padding: 8px;
  }

  /* Carrusel horizontal continuo de micro-chips en Mobile */
  .hero-orbit-capsules {
    position: relative !important;
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 0.6rem !important;
    padding: 0.8rem 1.2rem !important;
    margin-top: 1.4rem !important;
    width: 100% !important;
    max-width: 100% !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    justify-content: flex-start !important;
    box-sizing: border-box !important;
    touch-action: pan-x !important;
  }
  
  .hero-orbit-capsules::-webkit-scrollbar {
    display: none !important;
  }
  
  .floating-orbit-capsule {
    position: static !important;
    flex-shrink: 0 !important;
    scroll-snap-align: center;
    padding: 0.55rem 1rem !important;
    font-size: 0.82rem !important;
    background: rgba(8, 20, 14, 0.88) !important;
    border: 1px solid rgba(0, 229, 153, 0.3) !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5) !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
    opacity: 0.6;
    transform: scale(0.96);
    transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  }
  
  .floating-orbit-capsule.is-active {
    opacity: 1 !important;
    transform: scale(1.05) !important;
    border-color: #00e599 !important;
    background: rgba(0, 229, 153, 0.18) !important;
    box-shadow: 0 4px 18px rgba(0, 229, 153, 0.35) !important;
  }

  /* 3. Cinematic Track (1 Pantalla dinámica en Mobile, no 300vh) */
  .cinematic-story-track {
    height: auto !important;
    min-height: 560px;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    margin-left: 0 !important;
  }
  
  .cinematic-sticky-stage {
    position: relative !important;
    height: 560px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    left: 0 !important;
    overflow: hidden !important;
  }
  
  .cinematic-nav-progress {
    margin-top: 1rem;
    gap: 0.35rem;
    padding: 0.35rem 0.5rem;
    max-width: 95%;
  }
  
  .progress-tab {
    padding: 0.4rem 0.65rem;
    font-size: 0.74rem;
  }
  
  .progress-tab .tab-text,
  .progress-tab .progress-title {
    display: inline-block !important;
    font-size: 0.72rem;
  }
  
  .narrative-main-title {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
  }
  
  .narrative-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* 4. Banner Roulette */
  .ord-roulette-title {
    flex-direction: column;
    gap: 0.6rem;
  }
  
  .ord-static-phrase {
    font-size: 1.4rem;
  }
  
  .ord-capsule-frame {
    padding: 0.4rem 1rem;
  }

  /* 5. Paso 1 (Resumen Claro): Selector de 3 Pestañas en Mobile */
  .mobile-showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  .mshowcase-tab {
    flex: 1;
    max-width: 125px;
    padding: 0.65rem 0.4rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: all 0.25s ease;
  }
  
  .mshowcase-tab.active {
    background: rgba(0, 229, 153, 0.15);
    border-color: rgba(0, 229, 153, 0.4);
    color: #00e599;
    box-shadow: 0 4px 14px rgba(0, 229, 153, 0.18);
  }
  
  .basic-showcase-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 340px;
    margin: 0 auto;
  }
  
  .basic-phone-card {
    display: none;
    animation: fadeInTab 0.35s ease forwards;
  }
  
  .basic-phone-card.active-mobile-card {
    display: block;
  }

  @keyframes fadeInTab {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* 6. Paso 2 (Carga Ágil): Horizontal Snap-Scroll Carousel */
  .agile-video-cards-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.2rem;
    padding: 0.5rem 0.5rem 1.8rem 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  
  .agile-video-card {
    flex: 0 0 88%;
    scroll-snap-align: center;
    border-radius: 24px;
  }

  /* 7. Paso 3 (Tarjetas y Cuotas) */
  .tarjetas-showcase-stage {
    flex-direction: column;
    gap: 1.8rem;
    max-width: 360px;
    margin: 0 auto;
  }
  
  .tarjetas-connectors-svg {
    display: none !important;
  }
  
  .tarjetas-bubbles-col {
    width: 100%;
  }
  
  .tarjetas-floating-globe {
    margin-bottom: 1rem;
    padding: 1.2rem 1.1rem;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  }
  
  .tarjetas-floating-globe.globe-emerald {
    border-left: 3px solid #00e599;
  }
  
  .tarjetas-floating-globe.globe-gold {
    border-left: 3px solid #d4af37;
  }
  
  .tarjetas-floating-globe.globe-cyan {
    border-left: 3px solid #00d2ff;
  }

  /* 8. Paso 4 (Evolución Natural): Horizontal Compact Cards */
  .feature-cards-grid.grid-3 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .feature-card-evolucion {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.4rem 1.2rem;
    text-align: left;
    border-radius: 20px;
  }
  
  .feature-card-evolucion .feature-icon-badge-centered {
    margin: 0;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    font-size: 1.5rem;
  }

  /* 9. Zona de Contraste (Isla Modo Claro) */
  .contrast-light-zone {
    padding: 3.8rem 1rem;
  }
  
  .contrast-unified-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  
  .contrast-grid-card {
    padding: 1.6rem 1.3rem;
    border-radius: 22px;
  }
  
  .contrast-reveal-btn {
    min-height: 48px;
    font-size: 0.88rem;
  }

  /* 10. Paso 10 (Modelo Comercial 90 Días): Connected Vertical Timeline */
  .timeline-steps-grid {
    position: relative;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-left: 1.8rem;
  }
  
  .timeline-steps-grid::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(180deg, #00e599 0%, #00ff88 50%, #00e599 100%);
    box-shadow: 0 0 10px rgba(0, 229, 153, 0.6);
    border-radius: 3px;
    opacity: 0.85;
  }
  
  .timeline-step-card {
    position: relative;
    padding: 1.4rem;
    border-radius: 18px;
  }

  /* 11. Paso 11 (Planes y Precios): Mobile Plan Switcher */
  .mobile-pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-bottom: 1.8rem;
  }
  
  .mpricing-tab {
    flex: 1;
    max-width: 120px;
    padding: 0.65rem 0.3rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 750;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  
  .mpricing-tab.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.45);
    color: #d4af37;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.2);
  }
  
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .pricing-cards-grid .pricing-card {
    display: none;
    animation: fadeInTab 0.35s ease forwards;
  }
  
  .pricing-cards-grid .pricing-card.active-mobile-plan {
    display: flex;
  }

  /* 12. Paso 12 (Seguridad): Compact Certification List */
  .feature-card {
    padding: 1.5rem 1.3rem;
    border-radius: 18px;
  }

  /* 13. FAQ Mobile */
  .faq-question-btn {
    min-height: 54px;
    padding: 1.1rem 1.2rem;
    font-size: 0.95rem;
  }

  /* 14. Footer Mobile */
  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }
  
  .footer-bottom-row {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-impact-title {
    font-size: 1.95rem;
  }
  .download-buttons-group {
    grid-template-columns: 1fr;
  }
}

