/* ══════════════════════════════════════════════════
   FORTIA ZERISK — AML LANDING PAGE STYLES
   Design: Dark premium · Urgency · Trust signals
══════════════════════════════════════════════════ */

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

/* ── Iconos inline 2D (reemplazan emojis) ── */
.icon {
  display: inline-block;
  vertical-align: -3px;
  flex-shrink: 0;
}

:root {
  /* Paleta principal — Fortia Zerisk (Modo Claro) */
  --c-bg:         #EEF2F7;  /* Fondo claro */
  --c-bg-2:       #E3EAF3;  /* Fondo ligeramente oscuro */
  --c-bg-3:       #F7F9FC;  /* Fondo casi blanco */
  --c-surface:    #FFFFFF;  /* Cards / superficies blancas */
  --c-surface-2:  #F5F8FC;  /* Superficies secundarias */
  --c-border:     rgba(10,22,40,0.09);
  --c-border-2:   rgba(10,22,40,0.15);

  /* Colores de acento */
  --c-accent:     #00A878;  /* Verde esmeralda */
  --c-accent-2:   #007f5b;  /* Verde esmeralda oscuro */
  --c-accent-glow:rgba(0,168,120,0.22);
  --c-red:        #dc2626;
  --c-red-2:      #ef4444;
  --c-red-glow:   rgba(220,38,38,0.18);
  --c-amber:      #d97706;
  --c-amber-2:    #f59e0b;
  --c-green:      #00A878;
  --c-purple:     #233554;
  --c-purple-2:   #647D99;

  /* Tipografía */
  --font-head:    'Outfit', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
  --text-primary: #0A1628;  /* Azul noche → texto oscuro principal */
  --text-sec:     #233554;  /* Azul medio → texto secundario */
  --text-muted:   #647D99;  /* Gris slate → texto muted */

  /* Spacing */
  --section-py:   100px;
  --container-max: 1200px;

  /* Radii */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(10,22,40,0.10), 0 1px 4px rgba(10,22,40,0.08);
  --shadow-form: 0 8px 40px rgba(10,22,40,0.14), 0 2px 8px rgba(10,22,40,0.09);
  --shadow-glow: 0 0 60px rgba(0,168,120,0.14);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--c-bg);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ═══════════════════════════════════════════════
   URGENCY BAR
═══════════════════════════════════════════════ */
.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(90deg, #0A1628 0%, #112240 50%, #0A1628 100%);
  border-bottom: 1px solid rgba(0,168,120,0.3);
  padding: 10px 24px;
}

.urgency-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.urgency-icon { display: flex; color: #fbbf24; flex-shrink: 0; }

.urgency-text {
  font-size: 14px;
  color: #fecaca;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.urgency-text strong { color: #fff; font-weight: 700; }

.countdown-inline {
  font-weight: 700;
  color: #fef08a;
  font-variant-numeric: tabular-nums;
}

.urgency-cta {
  background: rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.urgency-cta:hover { background: rgba(255,255,255,0.25); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════
   PARALLAX PHOTO SECTIONS
═══════════════════════════════════════════════ */
.parallax-section {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  inset: -40px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.45);
  z-index: 0;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.65) 0%, rgba(0,168,120,0.20) 100%);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 24px;
}

.parallax-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: -0.01em;
}

.parallax-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  background: #0A1628;
  padding: 80px 0 0;
  overflow: hidden;
  min-height: 100vh;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('assets/hero_compliance.webp') center/cover no-repeat;
  filter: brightness(0.35) saturate(0.8);
  z-index: 0;
}

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

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: rgba(0,168,120,0.15);
  top: -200px; left: -200px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: rgba(0,168,120,0.08);
  top: 100px; right: -150px;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding-bottom: 80px;
}

/* Hero Left */
.hero-content { display: flex; flex-direction: column; gap: 28px; }

.hero-logo-link {
  display: block;
  width: fit-content;
  margin-bottom: -4px;
  transition: opacity 0.2s;
}
.hero-logo-link:hover { opacity: 0.85; }

/* ── Recorte de logo ──
   Los archivos de logo (ZERISK.svg / logo_blanco.svg) traen el
   isotipo en un lienzo cuadrado con mucho margen vacío alrededor.
   .logo-crop recorta ese margen para que el logo se vea grande. */
.logo-crop {
  display: block;
  overflow: hidden;
  position: relative;
}
.logo-crop img {
  position: absolute;
  display: block;
  max-width: none;
  max-height: none;
}

.hero-logo-crop { height: 72px; width: 217px; }
.hero-logo-crop img { height: 257px; width: 257px; top: -50px; left: -14px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,168,120,0.20);
  border: 1px solid rgba(0,168,120,0.50);
  color: #00e89d;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--c-accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.highlight-date {
  background: linear-gradient(135deg, #ef4444, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.headline-question {
  display: block;
  color: #00e89d;
  font-size: 0.88em;
  margin-top: 8px;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(238,242,247,0.85);
  max-width: 560px;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(10,22,40,0.50);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  width: fit-content;
}

.stat-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stat-number {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}
.stat-label { font-size: 11px; color: rgba(238,242,247,0.65); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-label { font-size: 12px; color: rgba(238,242,247,0.55); letter-spacing: 0.05em; text-transform: uppercase; }
.trust-logos { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-badge {
  font-size: 12px;
  font-weight: 600;
  color: rgba(238,242,247,0.80);
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  background: rgba(10,22,40,0.40);
  backdrop-filter: blur(8px);
}

/* Hero Right — Formulario */
.hero-form-wrapper { position: relative; }

.form-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25), 0 0 80px rgba(0,168,120,0.10);
  position: sticky;
  top: 80px;
}

.form-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.form-live-dot {
  width: 10px; height: 10px;
  background: var(--c-green);
  border-radius: 50%;
  animation: pulse-live 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--c-green);
}

@keyframes pulse-live {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.form-live-text { font-size: 13px; font-weight: 600; color: var(--c-green); flex: 1; }

.form-seats {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #92400e;
  background: rgba(245,158,11,0.12);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(245,158,11,0.3);
}

.form-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: #0A1628;
  line-height: 1.2;
  margin-bottom: 6px;
}
.form-title-free {
  color: var(--c-green);
  position: relative;
}

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

/* Formulario */
.register-form { display: flex; flex-direction: column; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select {
  background: var(--c-bg-2);
  border: 1.5px solid var(--c-border-2);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}

.form-group input::placeholder { color: var(--text-muted); }
.form-group select option { background: #ffffff; color: #0A1628; }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px var(--c-accent-glow);
  background: #FFFFFF;
}

.form-group input.invalid,
.form-group select.invalid {
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px var(--c-red-glow);
}

/* Botones */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #00A878 0%, #008f65 100%);
  color: #fff;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 4px 20px rgba(0,168,120,0.45), 0 1px 4px rgba(0,0,0,0.3);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,168,120,0.55); filter: brightness(1.08); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-full { width: 100%; }
.btn-primary.btn-large { font-size: 18px; padding: 16px 36px; }

.form-privacy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

.form-error {
  font-size: 13px;
  font-weight: 600;
  color: #dc2626;
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.25);
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  margin-top: 8px;
}

/* Hero wave */
.hero-wave {
  position: relative;
  margin-top: -2px;
  line-height: 0;
  z-index: 3;
}
.hero-wave svg { width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent-2);
  background: rgba(0,168,120,0.12);
  border: 1px solid rgba(0,168,120,0.30);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-tag--red { color: #dc2626; background: rgba(220,38,38,0.08); border-color: rgba(220,38,38,0.22); }
.section-tag--light { color: #0A1628; background: rgba(10,22,40,0.08); border-color: rgba(10,22,40,0.18); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0A1628;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-sec);
  max-width: 580px;
  margin: 0 auto;
}

.text-red {
  background: linear-gradient(135deg, #ef4444, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  background: linear-gradient(135deg, #00A878, #00c98f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════
   SECTORES — Sección 4
═══════════════════════════════════════════════ */
.sectors {
  background: #FFFFFF;
  padding: var(--section-py) 0;
}

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

.sector-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: default;
  overflow: hidden;
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.sector-card--blue::before   { background: linear-gradient(90deg, #00A878, #00c98f); }
.sector-card--amber::before  { background: linear-gradient(90deg, #d97706, #fbbf24); }
.sector-card--purple::before { background: linear-gradient(90deg, #233554, #647D99); }

.sector-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.sector-card--blue:hover   { border-color: rgba(0,168,120,0.4); box-shadow: 0 20px 60px rgba(0,168,120,0.15); }
.sector-card--amber:hover  { border-color: rgba(245,158,11,0.4); box-shadow: 0 20px 60px rgba(245,158,11,0.15); }
.sector-card--purple:hover { border-color: rgba(100,125,153,0.4); box-shadow: 0 20px 60px rgba(100,125,153,0.12); }

.sector-card--featured { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.3); }

.sector-badge-featured {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sector-icon-wrap { margin-bottom: 20px; }
.sector-icon { display: flex; }
.sector-icon svg { display: block; }
.sector-card--blue .sector-icon   { color: #00A878; }
.sector-card--amber .sector-icon  { color: #d97706; }
.sector-card--purple .sector-icon { color: #233554; }

.sector-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 20px;
  line-height: 1.3;
}

.sector-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.sector-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.55;
}

.sector-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--c-amber);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}

.sector-footer { margin-top: auto; }

.sector-law {
  font-size: 11px;
  color: var(--text-muted);
  border: 1px solid var(--c-border);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}

/* ═══════════════════════════════════════════════
   RIESGOS — Sección 5
═══════════════════════════════════════════════ */
.risks {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--c-bg);
  overflow: hidden;
}

.risks-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(220,38,38,0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.risk-card {
  border-radius: var(--r-xl);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.risk-card:hover { transform: translateY(-4px); }

.risk-card--primary {
  background: linear-gradient(145deg, rgba(0,168,120,0.10) 0%, rgba(10,22,40,0) 100%);
  border-color: rgba(0,168,120,0.28);
}
.risk-card--danger {
  background: linear-gradient(145deg, rgba(127,29,29,0.25) 0%, rgba(10,22,40,0) 100%);
  border-color: rgba(239,68,68,0.35);
}
.risk-card--warning {
  background: linear-gradient(145deg, rgba(120,53,15,0.25) 0%, rgba(10,22,40,0) 100%);
  border-color: rgba(245,158,11,0.35);
}

.risk-icon { margin-bottom: 16px; display: flex; justify-content: center; }
.risk-icon svg { display: block; }
.risk-card--primary .risk-icon { color: #00a878; }
.risk-card--danger .risk-icon  { color: #ef4444; }
.risk-card--warning .risk-icon { color: #f59e0b; }

.risk-range {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: #0A1628;
  line-height: 1.1;
  margin-bottom: 8px;
}

.risk-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.risk-desc {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
}

/* Countdown */
.countdown-block {
  text-align: center;
  padding: 48px 32px;
  background: var(--c-surface);
  border: 1px solid rgba(220,38,38,0.15);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.countdown-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(220,38,38,0.04) 0%, transparent 70%);
}

.countdown-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  position: relative;
  flex-wrap: wrap;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 80px;
  background: var(--c-bg);
  border: 1px solid rgba(220,38,38,0.18);
  border-radius: var(--r-md);
  padding: 16px 20px;
}

.timer-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: #0A1628;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.timer-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.timer-sep {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════
   LEARNINGS — Sección 6
═══════════════════════════════════════════════ */
.learnings {
  background: #FFFFFF;
  padding: var(--section-py) 0;
}

.learnings-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.learnings-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.learning-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-border);
  transition: transform 0.2s;
  align-items: flex-start;
}
.learning-item:first-child { padding-top: 0; }
.learning-item:last-child { border-bottom: none; }
.learning-item:hover { transform: translateX(6px); }

.learning-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(0,168,120,0.30);
  line-height: 1;
  min-width: 48px;
  letter-spacing: -0.02em;
  margin-top: 2px;
}

.learning-content h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 8px;
  line-height: 1.35;
}

.learning-content p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
}

/* CTA card */
.learnings-cta-card {
  position: sticky;
  top: 80px;
}

.cta-card-inner {
  background: linear-gradient(145deg, var(--c-surface) 0%, var(--c-surface-2) 100%);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
}

.cta-card-icon { margin-bottom: 16px; color: var(--c-accent); }

.cta-card-inner h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: #0A1628;
  margin-bottom: 24px;
}

.cta-card-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-sec);
}
.detail-icon { display: flex; color: var(--c-accent); }

.cta-card-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* ═══════════════════════════════════════════════
   SPEAKERS — Sección 7
═══════════════════════════════════════════════ */
.speakers {
  background: var(--c-bg);
  padding: var(--section-py) 0;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.speaker-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  gap: 0;
  flex-direction: column;
}
.speaker-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

.speaker-img-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(145deg, #E3EAF3, #EEF2F7);
}

.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s;
}
.speaker-card:hover .speaker-img { transform: scale(1.03); }

.speaker-country-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.speaker-info { padding: 32px; }

.speaker-meta { margin-bottom: 20px; }

.speaker-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: #0A1628;
  margin-bottom: 6px;
}

.speaker-title {
  font-size: 14px;
  color: var(--c-accent-2);
  font-weight: 500;
}

.speaker-credentials { display: flex; flex-direction: column; gap: 10px; }

.credential-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.5;
}

.cred-icon { color: var(--c-green); flex-shrink: 0; margin-top: 1px; display: flex; }

/* Testimoniales */
.social-proof { text-align: center; }

.social-proof-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 28px;
}

.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: left;
  transition: border-color 0.25s;
}
.testimonial-card:hover { border-color: var(--c-border-2); }

.testimonial-text {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-text::before { content: '"'; color: var(--c-accent); font-size: 1.4em; font-style: normal; }
.testimonial-text::after  { content: '"'; color: var(--c-accent); font-size: 1.4em; font-style: normal; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #00A878, #008f65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-author strong { font-size: 14px; color: #0A1628; font-weight: 600; }
.testimonial-author span  { font-size: 12px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════
   SECOND CTA — Sección 8
═══════════════════════════════════════════════ */
.second-cta {
  position: relative;
  padding: var(--section-py) 0;
  background: #FFFFFF;
  overflow: hidden;
}

.second-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(0,168,120,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 50%, rgba(17,34,64,0.50) 0%, transparent 60%);
  pointer-events: none;
}

.second-cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: center;
}

.second-cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: #0A1628;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 16px;
}

.second-cta-sub {
  font-size: 1.05rem;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 32px;
}

.second-cta-sub strong { color: var(--c-red-2); }

.second-cta-bullets { display: flex; flex-direction: column; gap: 12px; }

.bullet-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-sec);
}

.bullet-check {
  color: var(--c-green);
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}

.second-form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-form);
}

.form-title-sm {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: #0A1628;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: #0A1628;
  border-top: 1px solid rgba(0,168,120,0.2);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand { display: flex; flex-direction: column; gap: 6px; align-items: center; }

.footer-logo-img { margin-bottom: 4px; transition: opacity 0.2s; }
.footer-logo-img:hover { opacity: 0.85; }

.footer-logo-crop { height: 64px; width: 193px; }
.footer-logo-crop img { height: 229px; width: 229px; top: -45px; left: -12px; }

.logo-accent {
  background: linear-gradient(135deg, #00A878, #00c98f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline { font-size: 14px; color: #a8bdd4; }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 14px;
  color: #647D99;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #00A878; }

.footer-legal   { font-size: 13px; color: #647D99; }
.footer-disclaimer { font-size: 11px; color: #a8bdd4; max-width: 480px; }

/* ═══════════════════════════════════════════════
   BOTÓN FLOTANTE — WhatsApp
═══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 26px rgba(0,0,0,0.3);
  color: #fff;
}
@media (max-width: 640px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* ═══════════════════════════════════════════════
   MODAL
═══════════════════════════════════════════════ */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.success-modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.5);
  backdrop-filter: blur(6px);
}

.modal-content {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-xl);
  padding: 48px 44px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s;
}
.success-modal.open .modal-content { transform: scale(1) translateY(0); }

.modal-icon { margin-bottom: 16px; color: var(--c-accent); display: flex; justify-content: center; }
.modal-content h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: #0A1628;
  margin-bottom: 12px;
}
.modal-content p {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════
   ANIMACIONES
═══════════════════════════════════════════════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slide-left {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-fade-up   { opacity: 0; animation: fade-up 0.7s ease forwards; }
.animate-slide-left { opacity: 0; animation: slide-left 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   PLATFORM TEASER — Sección index
═══════════════════════════════════════════════ */
.section-tag--green {
  color: #059669;
  background: rgba(5,150,105,0.10);
  border-color: rgba(5,150,105,0.25);
}

.platform-teaser {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--c-bg);
  overflow: hidden;
}

.platform-teaser-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0,168,120,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 90% 80%, rgba(35,53,84,0.05) 0%, transparent 60%);
  pointer-events: none;
}

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

.platform-feature {
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.platform-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2));
  opacity: 0;
  transition: opacity 0.3s;
}
.platform-feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.platform-feature:hover::before { opacity: 1; }

.pf-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.pf-icon svg, .diff-icon svg, .fdc-icon svg, .ps-icon svg { display: block; }
.pf-icon--blue   { background: rgba(37,99,235,0.10);  border: 1px solid rgba(37,99,235,0.2);  color: #2563eb; }
.pf-icon--amber  { background: rgba(217,119,6,0.10);  border: 1px solid rgba(217,119,6,0.2);  color: #d97706; }
.pf-icon--red    { background: rgba(220,38,38,0.10);  border: 1px solid rgba(220,38,38,0.2);  color: #dc2626; }
.pf-icon--green  { background: rgba(0,168,120,0.10);  border: 1px solid rgba(0,168,120,0.2);  color: #00a878; }
.pf-icon--purple { background: rgba(35,53,84,0.10);   border: 1px solid rgba(35,53,84,0.2);   color: #233554; }
.pf-icon--cyan   { background: rgba(6,182,212,0.10);  border: 1px solid rgba(6,182,212,0.2);  color: #0891b2; }

.platform-feature h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.platform-feature p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
}

/* Platform CTA Bar */
.platform-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-xl);
  padding: 28px 36px;
  box-shadow: var(--shadow-card);
}

.platform-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.platform-shield { flex-shrink: 0; color: var(--c-accent); }

.platform-cta-left strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.platform-cta-left p { font-size: 14px; color: var(--text-sec); }

.btn-platform-cta { white-space: nowrap; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   PLATFORM PAGE — Nav bar
═══════════════════════════════════════════════ */
.platform-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border-2);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
}

.platform-nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.80; }

.nav-logo-crop { height: 44px; width: 133px; }
.nav-logo-crop img { height: 157px; width: 157px; top: -31px; left: -8px; }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--c-accent); }

.nav-cta { display: flex; gap: 12px; align-items: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--c-accent);
  color: var(--c-accent);
  background: transparent;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--r-md);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--c-accent); color: #fff; }

.btn-sm { font-size: 14px; padding: 9px 20px; }

/* ═══════════════════════════════════════════════
   PLATFORM PAGE — Hero
═══════════════════════════════════════════════ */
.platform-hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(0,168,120,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(35,53,84,0.06) 0%, transparent 60%),
    var(--c-bg-3);
  padding: 80px 0 100px;
  overflow: hidden;
  text-align: center;
}

.platform-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,168,120,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,120,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.platform-hero .hero-badge { margin: 0 auto 24px; }

.platform-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 820px;
  margin: 0 auto 24px;
}

.platform-hero-sub {
  font-size: 1.15rem;
  color: var(--text-sec);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.platform-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.platform-hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sec);
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ═══════════════════════════════════════════════
   PLATFORM PAGE — What it does
═══════════════════════════════════════════════ */
.platform-what {
  background: var(--c-bg);
  padding: var(--section-py) 0;
}

.platform-what-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.platform-what-sticky { position: sticky; top: 80px; }

.platform-what-subtitle {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent);
  margin-bottom: 16px;
}

.platform-what-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.platform-what-desc {
  font-size: 1rem;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 36px;
}

.platform-compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
}
.compliance-badge-icon { color: var(--c-accent); display: flex; }
.compliance-badge-text strong { display: block; font-weight: 700; font-size: 15px; color: var(--text-primary); }
.compliance-badge-text span   { font-size: 13px; color: var(--text-sec); }

/* Feature detail cards */
.platform-features-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-detail-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.feature-detail-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--c-accent), #00c9a7);
  opacity: 0;
  transition: opacity 0.25s;
}
.feature-detail-card:hover { transform: translateX(4px); box-shadow: var(--shadow-card); border-color: rgba(0,168,120,0.2); }
.feature-detail-card:hover::before { opacity: 1; }

.fdc-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-md);
  color: var(--c-accent);
}

.fdc-body h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.fdc-body p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
}

.fdc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fdc-tag--renap  { background: rgba(37,99,235,0.08); color: #2563eb; border: 1px solid rgba(37,99,235,0.2); }
.fdc-tag--ai     { background: rgba(139,92,246,0.08); color: #7c3aed; border: 1px solid rgba(139,92,246,0.2); }
.fdc-tag--ofac   { background: rgba(220,38,38,0.08); color: #dc2626; border: 1px solid rgba(220,38,38,0.2); }
.fdc-tag--ive    { background: rgba(0,168,120,0.08); color: #059669; border: 1px solid rgba(0,168,120,0.2); }
.fdc-tag--live   { background: rgba(217,119,6,0.08); color: #d97706; border: 1px solid rgba(217,119,6,0.2); }

/* ═══════════════════════════════════════════════
   PLATFORM PAGE — How it works
═══════════════════════════════════════════════ */
.platform-how {
  background: var(--c-bg-2);
  padding: var(--section-py) 0;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--c-accent), rgba(0,168,120,0.2));
  z-index: 0;
}

.how-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.how-step-num {
  width: 72px; height: 72px;
  background: var(--c-surface);
  border: 2px solid var(--c-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--c-accent);
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px rgba(0,168,120,0.08);
}

.how-step h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.how-step p {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   PLATFORM PAGE — Sectors
═══════════════════════════════════════════════ */
.platform-sectors {
  background: var(--c-bg);
  padding: var(--section-py) 0;
}

.platform-sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ps-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ps-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.ps-icon { margin-bottom: 16px; color: var(--c-accent); display: flex; }

.ps-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.ps-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ps-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.5;
}
.ps-features li span { color: var(--c-accent); flex-shrink: 0; font-size: 15px; }

/* ═══════════════════════════════════════════════
   PLATFORM PAGE — Pricing
═══════════════════════════════════════════════ */
.platform-pricing {
  background: var(--c-bg-2);
  padding: var(--section-py) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.pricing-card--featured {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(0,168,120,0.12), var(--shadow-card);
  transform: translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--c-accent), #00c9a7);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-plan {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }

.pricing-desc {
  font-size: 14px;
  color: var(--text-sec);
  margin-bottom: 28px;
  line-height: 1.5;
}

.pricing-divider { height: 1px; background: var(--c-border); margin-bottom: 24px; }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.5;
}
.pricing-features li .check { color: var(--c-accent); flex-shrink: 0; font-weight: 700; }
.pricing-features li .cross  { color: var(--c-red);   flex-shrink: 0; font-weight: 700; }

/* ═══════════════════════════════════════════════
   PLATFORM PAGE — FAQ
═══════════════════════════════════════════════ */
.platform-faq {
  background: var(--c-bg);
  padding: var(--section-py) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: background 0.15s;
}
.faq-question:hover { background: var(--c-bg-2); }
.faq-question svg { flex-shrink: 0; transition: transform 0.25s; color: var(--c-accent); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   PLATFORM PAGE — Final CTA
═══════════════════════════════════════════════ */
.platform-final-cta {
  background: linear-gradient(135deg, var(--c-accent) 0%, #007f5b 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.platform-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.platform-final-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
}
.platform-final-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--c-accent);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  position: relative;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--r-md);
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: background 0.2s, transform 0.2s;
  position: relative;
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════
   RESPONSIVE — combined
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Landing */
  .hero-container       { grid-template-columns: 1fr; gap: 48px; }
  .hero-form-wrapper    { max-width: 520px; margin: 0 auto; }
  .form-card            { position: static; }
  .learnings-layout     { grid-template-columns: 1fr; }
  .learnings-cta-card   { position: static; }
  .second-cta-grid      { grid-template-columns: 1fr; }
  .second-form-card     { max-width: 520px; margin: 0 auto; }
  .speakers-grid        { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto 80px; }
  /* Platform */
  .platform-features-grid  { grid-template-columns: repeat(2, 1fr); }
  .platform-what-layout    { grid-template-columns: 1fr; }
  .platform-what-sticky    { position: static; }
  .how-steps               { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how-steps::before       { display: none; }
  .platform-sectors-grid   { grid-template-columns: 1fr; }
  .pricing-grid            { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card--featured  { transform: none; }
  .faq-grid                { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 72px; }
  /* Landing */
  .sectors-grid         { grid-template-columns: 1fr; }
  .risks-grid           { grid-template-columns: 1fr; }
  .testimonials-row     { grid-template-columns: 1fr; }
  .hero-stats           { flex-wrap: wrap; gap: 16px; }
  .hero-headline        { font-size: 1.75rem; }
  .countdown-timer      { gap: 6px; }
  .timer-unit           { min-width: 64px; padding: 12px 14px; }
  .timer-num            { font-size: 1.8rem; }
  .urgency-bar          { position: relative; }
  .form-card            { padding: 28px 20px; }
  .second-form-card     { padding: 28px 20px; }
  .cta-card-inner       { padding: 28px 20px; }
  .speaker-img-wrapper  { height: 200px; }
  /* Platform */
  .platform-features-grid  { grid-template-columns: 1fr; }
  .platform-cta-bar        { flex-direction: column; align-items: flex-start; gap: 20px; padding: 24px; }
  .btn-platform-cta        { width: 100%; justify-content: center; }
  .platform-nav-inner      { gap: 16px; }
  .nav-links               { display: none; }
  .platform-hero-ctas      { flex-direction: column; align-items: center; }
  .how-steps               { grid-template-columns: 1fr; }
  .platform-sectors-grid   { grid-template-columns: 1fr; }
  /* New */
  .credits-grid            { grid-template-columns: 1fr; }
  .diff-grid               { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container      { padding: 0 16px; }
  .urgency-inner  { gap: 8px; }
  .timer-sep      { display: none; }
}

/* ═══════════════════════════════════════════════
   PRICING TOGGLE
═══════════════════════════════════════════════ */
.pricing-toggle-wrap {
  display: flex;
  gap: 4px;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border-2);
  border-radius: 100px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 48px;
}

.ptoggle-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.ptoggle-btn--active {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,168,120,0.3);
}

.pricing-panel { animation: fadeIn 0.3s ease; }

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

/* ── Credits callout ── */
.credits-callout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(0,168,120,0.08) 0%, rgba(0,168,120,0.04) 100%);
  border: 1px solid rgba(0,168,120,0.2);
  border-radius: var(--r-xl);
  padding: 24px 28px;
  margin-bottom: 36px;
}

.credits-callout-icon {
  flex-shrink: 0;
  color: var(--c-accent);
  display: flex;
}

.credits-callout strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.credits-callout p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
}

/* ── Credit cards grid ── */
.credits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.credit-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.credit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }

.credit-card--featured {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(0,168,120,0.10), var(--shadow-card);
  transform: translateY(-6px);
}

.credit-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.credit-price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.credit-amount {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 4px;
}

.credit-unit {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════
   DIFERENCIADORES
═══════════════════════════════════════════════ */
.platform-diff {
  background: var(--c-bg-2);
  padding: var(--section-py) 0;
}

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

.diff-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.diff-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.diff-card:hover::after { opacity: 1; }

/* Icon colors reuse pf-icon variants */
.diff-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: var(--c-bg-2);
  border: 1px solid var(--c-border-2);
}

.diff-icon--blue   { background: rgba(37,99,235,0.08);  border-color: rgba(37,99,235,0.15);  color: #2563eb; }
.diff-icon--amber  { background: rgba(217,119,6,0.08);  border-color: rgba(217,119,6,0.15);  color: #d97706; }
.diff-icon--purple { background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.15); color: #8b5cf6; }
.diff-icon--green  { background: rgba(0,168,120,0.08);  border-color: rgba(0,168,120,0.15);  color: #00a878; }
.diff-icon--cyan   { background: rgba(6,182,212,0.08);  border-color: rgba(6,182,212,0.15);  color: #0891b2; }
.diff-icon--red    { background: rgba(220,38,38,0.08);  border-color: rgba(220,38,38,0.15);  color: #dc2626; }

.diff-body h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.diff-body p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: 12px;
}

.diff-vs {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 6px 12px;
  line-height: 1.5;
}

.diff-vs-label {
  font-weight: 700;
  color: var(--c-red);
  margin-right: 4px;
}

/* Responsive additions */
@media (max-width: 1024px) {
  .credits-grid  { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .credit-card--featured { transform: none; }
  .diff-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pricing-toggle-wrap { width: 100%; flex-direction: column; border-radius: var(--r-lg); }
  .ptoggle-btn         { border-radius: var(--r-md); text-align: center; }
  .credits-callout     { flex-direction: column; gap: 12px; }
  .diff-card           { flex-direction: column; gap: 16px; }
}

/* end */
