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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f5f5f5;
  color: #1d1d1f;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  height: 64px;
}

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

/* ── LOGO ── */
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 20px;
}

.logo-edifact {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.logo-edifact__name {
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1a3a5c;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo-edifact__name strong {
  font-weight: 900;
}

.logo-edifact__sub {
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #1a3a5c;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
}

/* ── MENU ── */
.nav__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  flex: 1;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #1d1d1f;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  cursor: pointer;
}

.nav__link:hover {
  background: #f5f5f5;
  color: #1a3a5c;
}

.nav__link--btn {
  background: none;
  border: none;
  font-family: inherit;
}

.nav__chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
  opacity: 0.5;
}

.nav__item--open .nav__chevron {
  transform: rotate(180deg);
}

/* ── DROPDOWN BASE ── */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  z-index: 999;
}

.nav__item--open .dropdown {
  display: block;
}

/* ── SIMPLE DROPDOWN ── */
.dropdown--simple {
  min-width: 220px;
  padding: 10px;
}

.dropdown--simple ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

/* Models dropdown — AWS Timbrado Premium */
.dropdown--models {
  left: 0;
  transform: none;
  width: 310px;
  padding: 10px;
}

.dropdown--models ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ── MEGA MENU ── */
.dropdown--mega {
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100vw - 48px));
  padding: 28px 28px 24px;
}

/* Ajuste para que no se salga por la izquierda cuando está cerca del borde */
.nav__item--mega {
  position: static;
}

.nav__item--mega .dropdown--mega {
  left: 50%;
  transform: translateX(calc(-50% + 40px));
}

/* ── GRID 8 CATEGORÍAS · 4 COLUMNAS x 2 FILAS ── */
.dropdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}

.dropdown__col ul {
  list-style: none;
}

.dropdown__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6e6e73;
  margin-bottom: 14px;
}

/* ── LINK ITEMS ── */
.dropdown__link {
  display: flex;
  flex-direction: column;
  padding: 6px 8px;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 2px;
  transition: background 0.15s;
}

.dropdown__link:hover {
  background: #f5f5f5;
}

.dropdown__link strong {
  font-size: 13px;
  font-weight: 500;
  color: #1d1d1f;
}

.dropdown__link span {
  font-size: 11.5px;
  color: #6e6e73;
  margin-top: 2px;
  line-height: 1.4;
}

/* Footer row */
.dropdown__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e5e5;
  margin-top: 20px;
  padding-top: 16px;
}

.dropdown__footer-link {
  font-size: 13px;
  font-weight: 500;
  color: #1a3a5c;
  text-decoration: none;
}

.dropdown__footer-link:hover {
  text-decoration: underline;
}

.dropdown__footer-links {
  display: flex;
  gap: 20px;
}

.dropdown__footer-links a {
  font-size: 13px;
  color: #6e6e73;
  text-decoration: none;
}

.dropdown__footer-links a:hover {
  color: #1d1d1f;
}

/* ── RIGHT ACTIONS ── */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 12px;
}

.nav__login {
  font-size: 13px;
  font-weight: 500;
  color: #1d1d1f;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s;
}

.nav__login:hover {
  background: #f5f5f5;
}

/* CTA principal */
.nav__cta {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 9px 16px;
  background: #1a3a5c;
  border-radius: 7px;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
}

.nav__cta:hover {
  background: #0f2540;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 96px 24px 80px;
}

.hero__inner {
  max-width: 860px;
  margin: 0 auto;
}

/* Eyebrow badge */
.hero__eyebrow {
  margin-bottom: 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #3c3c43;
  background: #f5f5f7;
  border: 1px solid #e5e5e5;
  border-radius: 100px;
  padding: 6px 14px;
  letter-spacing: 0.01em;
}

/* Title */
.hero__title {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  color: #1a3a5c;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
}

/* Subtitle */
.hero__subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #1d1d1f;
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 680px;
}

/* Body */
.hero__body {
  font-size: 16px;
  font-weight: 400;
  color: #6e6e73;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 620px;
}

/* CTA buttons */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  padding: 13px 24px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap;
}

.hero__btn--primary {
  background: #1a3a5c;
  color: #fff;
  box-shadow: 0 1px 3px rgba(26,58,92,.25);
}
.hero__btn--primary {
  background: #1a3a5c;
  color: #fff;
  box-shadow: 0 1px 3px rgba(26,58,92,.25);
}

.hero__btn--primary:hover {
  background: #0f2540;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26,58,92,.3);
}

.hero__btn--secondary {
  background: transparent;
  color: #1a3a5c;
  border: 1.5px solid #c7d2dc;
}

.hero__btn--secondary:hover {
  border-color: #1a3a5c;
  background: #f0f4f8;
}

/* Indicators row */
.hero__indicators {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 36px;
  background: #f9fafb;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  margin-bottom: 24px;
}

.indicator {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.indicator__value {
  font-size: 22px;
  font-weight: 800;
  color: #1a3a5c;
  line-height: 1;
  font-family: "Arial Black", Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.indicator__label {
  font-size: 11.5px;
  font-weight: 500;
  color: #6e6e73;
  line-height: 1.3;
  text-align: center;
}

.indicator__divider {
  width: 1px;
  height: 36px;
  background: #e5e5e5;
  flex-shrink: 0;
  margin: 0 8px;
}

/* Tags row */
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: #1a3a5c;
  background: #eef3f8;
  border-radius: 6px;
  padding: 6px 12px;
}

/* ── PROBLEMA ── */
.problem {
  background: #f9fafb;
  padding: 112px 24px;
  border-bottom: 1px solid #e5e5e5;
}

.problem__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Encabezado */
.problem__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1a3a5c;
  margin-bottom: 16px;
}

.problem__title {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  color: #1a3a5c;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  margin-bottom: 16px;
}

.problem__subtitle {
  font-size: 19px;
  font-weight: 500;
  color: #3c3c43;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 620px;
}

.problem__body {
  font-size: 15.5px;
  color: #6e6e73;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 72px;
}

.problem__body strong {
  color: #1d1d1f;
  font-weight: 600;
}

/* ── COMPARACIÓN ── */
.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 56px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
}

/* Tarjeta base */
.comparison__card {
  padding: 44px 40px;
}

.comparison__card--traditional {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-right: none;
  border-radius: 16px 0 0 16px;
}

.comparison__card--premium {
  background: #1a3a5c;
  border-radius: 0 16px 16px 0;
}

/* Card header */
.comparison__card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.comparison__card--premium .comparison__card-header {
  border-bottom-color: rgba(255,255,255,.12);
}

.comparison__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison__icon--neutral {
  background: #f3f4f6;
}

.comparison__icon--premium {
  background: rgba(255,255,255,.15);
}

.comparison__card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 4px;
}

.comparison__card-label--light {
  color: rgba(255,255,255,.5);
}

.comparison__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.comparison__card-title--light {
  color: #fff;
}

.comparison__card-desc {
  font-size: 13.5px;
  color: #6e6e73;
  line-height: 1.4;
}

.comparison__card-desc--light {
  color: rgba(255,255,255,.55);
}

/* Lista de items */
.comparison__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.comparison__item--neg {
  color: #6b7280;
}

.comparison__item--pos {
  color: rgba(255,255,255,.88);
}

.comparison__item svg {
  flex-shrink: 0;
}

/* Separador VS */
.comparison__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  background: #f9fafb;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}

.comparison__vs span {
  font-size: 12px;
  font-weight: 700;
  color: #c4c4c7;
  letter-spacing: .06em;
  text-transform: uppercase;
  writing-mode: horizontal-tb;
  background: #f9fafb;
  padding: 8px 6px;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
}

/* ── IMPACT BADGES ── */
.impact {
  display: flex;
  align-items: center;
  gap: 48px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 32px 40px;
  margin-bottom: 80px;
}

.impact__divider {
  width: 1px;
  height: 48px;
  background: #e5e5e5;
  flex-shrink: 0;
}

.impact__group {
  flex: 1;
}

.impact__group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 14px;
}

.impact__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.impact__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  padding: 7px 14px;
}

.impact__badge--down {
  background: #fef2f2;
  color: #b91c1c;
}

.impact__badge--up {
  background: #f0fdf4;
  color: #15803d;
}

/* ── CIERRE NARRATIVO ── */
.problem__close {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding-top: 16px;
}

.problem__close-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #1a3a5c;
  letter-spacing: -0.02em;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  margin-bottom: 20px;
}

.problem__close-body {
  font-size: 16px;
  color: #6e6e73;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ── DISEÑADO PARA OPERACIONES CRÍTICAS ── */
.critical {
  background: #fff;
  padding: 112px 24px;
  border-bottom: 1px solid #e5e5e5;
}

.critical__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Encabezado */
.critical__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1a3a5c;
  margin-bottom: 16px;
}

.critical__title {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  color: #1a3a5c;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  margin-bottom: 20px;
}

.critical__subtitle {
  font-size: 17px;
  font-weight: 500;
  color: #3c3c43;
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 8px;
}

.critical__subtitle--light {
  color: #6e6e73;
  font-weight: 400;
  margin-bottom: 72px;
}

/* ── 4 TARJETAS ── */
.critical__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.critical__card {
  background: #f9fafb;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  cursor: default;
}

.critical__card:hover {
  box-shadow: 0 8px 32px rgba(26,58,92,.10);
  transform: translateY(-3px);
  border-color: #c7d2dc;
  background: #fff;
}

.critical__card-icon {
  width: 52px;
  height: 52px;
  background: #eef3f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.2s;
}

.critical__card:hover .critical__card-icon {
  background: #dce8f2;
}

.critical__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a3a5c;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.critical__card-desc {
  font-size: 13.5px;
  color: #6e6e73;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.critical__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.critical__tag {
  font-size: 11px;
  font-weight: 500;
  color: #1a3a5c;
  background: #eef3f8;
  border-radius: 4px;
  padding: 4px 9px;
  letter-spacing: 0.01em;
}

/* ── BLOQUE STRIPE ── */
.critical__stripe {
  background: #1a3a5c;
  border-radius: 16px;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.critical__stripe-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  margin-bottom: 20px;
  line-height: 1.1;
}

.critical__stripe-body {
  font-size: 15.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 36px;
}

.critical__stripe-btn {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #1a3a5c;
  background: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  margin-bottom: 14px;
}

.critical__stripe-btn:hover {
  background: #f0f4f8;
  transform: translateY(-1px);
}

.critical__stripe-cta-label {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 10px;
}

/* Métricas en 2x3 */
.critical__stripe-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 20px;
}

.critical__metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 0;
  border-left: 2px solid rgba(255,255,255,.15);
  padding-left: 16px;
}

.critical__metric-value {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  font-family: "Arial Black", Arial, sans-serif;
  line-height: 1;
  display: flex;
  align-items: center;
}

.critical__metric-label {
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  line-height: 1.3;
}

/* ── INFRAESTRUCTURA ── */
.infra {
  background: #0d1f33;
  padding: 112px 24px 0;
  overflow: hidden;
}

.infra__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Top: texto + visual en 2 columnas */
.infra__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.infra__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}

.infra__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.12;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  margin-bottom: 20px;
}

.infra__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 12px;
}

.infra__body {
  font-size: 14.5px;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  font-style: italic;
}

/* Visual SVG */
.infra__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infra__network {
  width: 100%;
  max-width: 480px;
}

@keyframes infraPulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.06); }
}

@keyframes infraPulse2 {
  0%, 100% { opacity: .3; transform: scale(1); }
  50%       { opacity: .7; transform: scale(1.04); }
}

.infra__pulse   { animation: infraPulse  3s ease-in-out infinite; transform-origin: 270px 180px; }
.infra__pulse--2{ animation: infraPulse2 4s ease-in-out infinite; transform-origin: 270px 180px; }
.infra__node    { animation: infraPulse  2.5s ease-in-out infinite; transform-origin: 270px 50px; }

/* Badge uptime flotante */
.infra__uptime-badge {
  position: absolute;
  bottom: 20px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
}

.infra__uptime-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: infraPulse 2s ease-in-out infinite;
}

.infra__uptime-badge strong {
  color: #fff;
  font-weight: 700;
}

/* Bloque textual central */
.infra__block {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 48px 52px;
  margin-bottom: 56px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.infra__block-title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  margin-bottom: 18px;
}

.infra__block-body {
  font-size: 15.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-bottom: 10px;
}

/* Grid 6 capacidades */
.infra__caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  overflow: hidden;
}

.infra__cap {
  background: #0d1f33;
  padding: 36px 32px;
  transition: background 0.2s;
}

.infra__cap:hover {
  background: #132a42;
}

.infra__cap-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.infra__cap-metric {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  font-family: "Arial Black", Arial, sans-serif;
  letter-spacing: -0.01em;
}

.infra__cap-title {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.infra__cap-desc {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
}

/* Banda horizontal */
.infra__band {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 56px 0;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.infra__band-content {
  max-width: 1100px;
  margin: 0 auto 40px;
  text-align: center;
}

.infra__band-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  margin-bottom: 14px;
}

.infra__band-body {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

.infra__band-indicators {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 20px 0;
}

.infra__band-ind {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.infra__band-ind strong {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  font-family: "Arial Black", Arial, sans-serif;
}

.infra__band-ind span {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  font-weight: 500;
  text-align: center;
}

.infra__band-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* Transición */
.infra__transition {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 96px 0 112px;
}

.infra__trans-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  margin-bottom: 18px;
}

.infra__trans-body {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  margin-bottom: 36px;
}

.infra__trans-btn {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #0d1f33;
  background: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.infra__trans-btn:hover {
  background: #e8edf2;
  transform: translateY(-1px);
}

/* ── MODELOS ── */
.models {
  background: #f9fafb;
  padding: 112px 24px;
  border-bottom: 1px solid #e5e5e5;
}

.models__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.models__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1a3a5c;
  margin-bottom: 16px;
}

.models__title {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
  color: #1a3a5c;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  margin-bottom: 20px;
}

.models__subtitle {
  font-size: 16px;
  color: #6e6e73;
  line-height: 1.75;
  max-width: 740px;
  margin-bottom: 72px;
}

/* ── 4 TARJETAS ── */
.models__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 72px;
  align-items: start;
}

.models__card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.models__card:hover {
  box-shadow: 0 12px 40px rgba(26,58,92,.10);
  transform: translateY(-4px);
  border-color: #c7d2dc;
}

/* Featured (Enterprise) */
.models__card--featured {
  border-color: #1a3a5c;
  background: #fff;
  box-shadow: 0 4px 24px rgba(26,58,92,.12);
}

.models__card--featured:hover {
  box-shadow: 0 16px 48px rgba(26,58,92,.18);
}

/* Dark (Custom) */
.models__card--dark {
  background: #1a3a5c;
  border-color: #1a3a5c;
}

.models__card--dark:hover {
  box-shadow: 0 12px 40px rgba(26,58,92,.30);
  border-color: #2a4f7c;
}

/* Badge "Más solicitado" */
.models__featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a3a5c;
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Card top */
.models__card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.models__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eef3f8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1a3a5c;
}

.models__card-icon--featured {
  background: #1a3a5c;
  color: #fff;
}

.models__card-icon--dark {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}

.models__card-name {
  font-size: 18px;
  font-weight: 800;
  color: #1a3a5c;
  letter-spacing: -0.01em;
}

.models__card-name--light { color: #fff; }

.models__card-sub {
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
  margin-top: 2px;
}

.models__card-sub--light { color: rgba(255,255,255,.45); }

.models__card-desc {
  font-size: 13.5px;
  color: #6e6e73;
  line-height: 1.65;
}

.models__card-desc--light { color: rgba(255,255,255,.6); }

/* Secciones internas */
.models__section { display: flex; flex-direction: column; gap: 10px; }

.models__section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #c4c4c7;
}

.models__section-label--light { color: rgba(255,255,255,.3); }

.models__ideal {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.models__ideal li {
  font-size: 13px;
  color: #6e6e73;
  padding-left: 12px;
  position: relative;
}

.models__ideal li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #c4c4c7;
  font-weight: 700;
}

.models__ideal--light li { color: rgba(255,255,255,.5); }
.models__ideal--light li::before { color: rgba(255,255,255,.25); }

.models__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.models__benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #1d1d1f;
}

.models__benefits li svg { color: #1a3a5c; flex-shrink: 0; }

.models__benefits--light li { color: rgba(255,255,255,.85); }
.models__benefits--light li svg { color: rgba(255,255,255,.6); }

/* Fact rows: Quién usa / Quién paga / Cuándo aplica */
.models__facts {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #dde4ed;
  margin: 0;
  padding: 4px 0 0;
  flex: 1;
  list-style: none;
}

.models__fact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 0;
  border-bottom: 1px solid #dde4ed;
}

.models__fact:last-child { border-bottom: none; padding-bottom: 0; }

.models__fact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #b8913a;
  margin: 0;
}

.models__fact-val {
  font-size: 13px;
  font-weight: 600;
  color: #1a3a5c;
  line-height: 1.4;
  margin: 0;
}

/* Dark card overrides */
.models__facts--dark { border-top-color: rgba(255,255,255,.12); }
.models__facts--dark .models__fact { border-bottom-color: rgba(255,255,255,.12); }
.models__facts--dark .models__fact-label { color: rgba(255,255,255,.4); }
.models__facts--dark .models__fact-val { color: rgba(255,255,255,.85); }

/* CTA de tarjeta */
.models__card-cta {
  display: block;
  text-align: center;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #e5e5e5;
  color: #1a3a5c;
  margin-top: auto;
  transition: border-color 0.15s, background 0.15s;
}

.models__card-cta:hover {
  border-color: #1a3a5c;
  background: #f0f4f8;
}

.models__card-cta--featured {
  background: #1a3a5c;
  color: #fff;
  border-color: #1a3a5c;
}

.models__card-cta--featured:hover {
  background: #0f2540;
  border-color: #0f2540;
}

.models__card-cta--dark {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}

.models__card-cta--dark:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
}

/* ── BLOQUE DIFERENCIADOR ── */
.models__diff {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 52px 56px;
  text-align: center;
  margin-bottom: 80px;
}

.models__diff-title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: #1a3a5c;
  letter-spacing: -0.02em;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  margin-bottom: 16px;
}

.models__diff-body {
  font-size: 16px;
  color: #6e6e73;
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto 32px;
}

.models__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.models__badge {
  font-size: 12px;
  font-weight: 600;
  color: #1a3a5c;
  background: #eef3f8;
  border: 1px solid #c7d2dc;
  border-radius: 100px;
  padding: 7px 16px;
}

/* ── CIERRE MODELOS ── */
.models__close {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.models__close-title {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  color: #1a3a5c;
  letter-spacing: -0.025em;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  margin-bottom: 16px;
}

.models__close-body {
  font-size: 16px;
  color: #6e6e73;
  line-height: 1.75;
  margin-bottom: 8px;
}

.models__close-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ── CONFIANZA ── */
.trust {
  background: #fff;
  padding: 112px 24px;
  border-bottom: 1px solid #e5e5e5;
}

.trust__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Encabezado */
.trust__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1a3a5c;
  margin-bottom: 16px;
}

.trust__title {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  color: #1a3a5c;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  margin-bottom: 18px;
}

.trust__subtitle {
  font-size: 17px;
  color: #6e6e73;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 80px;
}

/* ── 4 MÉTRICAS ── */
.trust__metrics {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: #f9fafb;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 52px 48px;
  margin-bottom: 80px;
}

.trust__metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust__metric-value {
  font-size: 60px;
  font-weight: 900;
  color: #1a3a5c;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
}

.trust__metric-value--sm {
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.trust__metric-plus {
  font-size: 40px;
  color: #4a7fa8;
}

.trust__metric-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #9ca3af;
}

.trust__metric-desc {
  font-size: 13.5px;
  color: #6e6e73;
  line-height: 1.65;
  max-width: 200px;
}

.trust__metric-divider {
  width: 1px;
  align-self: stretch;
  background: #e5e5e5;
  margin: 0 40px;
  flex-shrink: 0;
}

/* ── NARRATIVA CENTRAL ── */
.trust__narrative {
  max-width: 760px;
  margin: 0 auto 88px;
  text-align: center;
}

.trust__narrative-quote {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.trust__narrative-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #1a3a5c;
  letter-spacing: -0.025em;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  margin-bottom: 28px;
}

.trust__narrative-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust__narrative-body p {
  font-size: 17px;
  color: #6e6e73;
  line-height: 1.75;
}

.trust__narrative-body strong {
  color: #1a3a5c;
  font-weight: 600;
}

/* ── INDUSTRIAS ── */
.trust__industries {
  margin-bottom: 88px;
}

.trust__industries-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 24px;
  text-align: center;
}

.trust__industry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trust__industry {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #f9fafb;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #3c3c43;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  cursor: default;
}

.trust__industry:hover {
  border-color: #c7d2dc;
  box-shadow: 0 4px 12px rgba(26,58,92,.07);
  transform: translateY(-2px);
}

/* ── TESTIMONIALES ── */
.trust__testimonials {
  margin-bottom: 88px;
}

.trust__testimonials-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 32px;
  text-align: center;
}

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

.trust__testimonial {
  background: #f9fafb;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.trust__testimonial:hover {
  box-shadow: 0 8px 28px rgba(26,58,92,.08);
  border-color: #c7d2dc;
}

.trust__quote-icon {
  opacity: .6;
}

.trust__testimonial-text {
  font-size: 15.5px;
  color: #1d1d1f;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.trust__testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid #e5e5e5;
}

.trust__author-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a3a5c;
}

.trust__author-co {
  font-size: 12px;
  color: #9ca3af;
}

/* ── CIERRE ── */
.trust__close {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.trust__close-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #1a3a5c;
  letter-spacing: -0.025em;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  margin-bottom: 18px;
}

.trust__close-body {
  font-size: 16px;
  color: #6e6e73;
  line-height: 1.8;
  margin-bottom: 10px;
}

.trust__close-body--light {
  color: #9ca3af;
  font-size: 15px;
  margin-bottom: 40px;
}

.trust__close-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── OVERLAY ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
}

.nav-overlay--active {
  display: block;
}

/* ════════════════════════════════════════════════════════════════
   SISTEMA GLOBAL DE COMPONENTES — s- (shared / system)
   Usos: todas las páginas secundarias del sitio
   Reemplaza las implementaciones duplicadas por página
════════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --s-navy:   #1a3a5c;
  --s-deep:   #0f2744;
  --s-gold:   #b8913a;
  --s-gold-l: #f5edd6;
  --s-light:  #f0f4f8;
  --s-alt:    #f9fafb;
  --s-white:  #ffffff;
  --s-border: #dde4ed;
  --s-text:   #374151;
  --s-muted:  #6b7280;
}

/* ── SECCIONES ───────────────────────────────────────────────── */
.s-section {
  padding: 80px 24px;
  background: var(--s-white);
  border-bottom: 1px solid var(--s-border);
}
.s-section--light  { background: var(--s-light); }
.s-section--alt    { background: var(--s-alt); }
.s-section--dark   { background: var(--s-navy); color: #fff; }
.s-section--deep   { background: var(--s-deep); color: #fff; }
.s-section--nb     { border-bottom: none; }

.s-inner        { max-width: 1100px; margin: 0 auto; }
.s-inner--wide  { max-width: 1260px; margin: 0 auto; }
.s-inner--narrow{ max-width: 760px;  margin: 0 auto; }

/* ── EYEBROW ─────────────────────────────────────────────────── */
.s-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--s-gold);
  margin-bottom: 12px;
}
.s-eyebrow--navy  { color: var(--s-navy); }
.s-eyebrow--light { color: rgba(255,255,255,.5); }

/* ── TIPOGRAFÍA DE SECCIÓN ───────────────────────────────────── */
.s-title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--s-navy);
  line-height: 1.15;
  letter-spacing: -.022em;
  margin: 0 0 14px;
}
.s-title--light { color: #fff; }
.s-title em {
  font-style: normal;
  background: linear-gradient(135deg, #c8a04a, #b8913a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.s-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--s-text);
  line-height: 1.65;
  margin: 0 0 10px;
}
.s-subtitle--muted { font-weight: 400; color: var(--s-muted); }
.s-subtitle--light { color: rgba(255,255,255,.78); }

.s-body {
  font-size: 15px;
  color: var(--s-muted);
  line-height: 1.75;
  margin: 0 0 28px;
}
.s-body--light { color: rgba(255,255,255,.6); }

/* ── ENCABEZADO DE SECCIÓN ───────────────────────────────────── */
.s-head         { margin-bottom: 48px; }
.s-head--center { text-align: center; max-width: 680px; margin: 0 auto 52px; }

/* ── BOTONES ─────────────────────────────────────────────────── */
.s-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 7px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, transform .1s, box-shadow .15s, border-color .15s;
  white-space: nowrap;
  line-height: 1;
}
.s-btn--primary {
  background: var(--s-navy);
  color: #fff;
  border-color: var(--s-navy);
}
.s-btn--primary:hover {
  background: var(--s-deep);
  border-color: var(--s-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26,58,92,.25);
}
.s-btn--ghost {
  background: transparent;
  color: var(--s-navy);
  border-color: #c7d2dc;
}
.s-btn--ghost:hover {
  border-color: var(--s-navy);
  background: var(--s-light);
}
.s-btn--ghost-w {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.s-btn--ghost-w:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.07);
}
.s-btn--gold {
  background: var(--s-gold);
  color: #fff;
  border-color: var(--s-gold);
}
.s-btn--gold:hover {
  background: #9e7a2e;
  border-color: #9e7a2e;
  transform: translateY(-1px);
}
.s-btn--sm { font-size: 13px; padding: 10px 20px; }
.s-btn--lg { font-size: 15px; padding: 14px 32px; }

.s-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.s-actions--center { justify-content: center; }

/* ── BADGES ──────────────────────────────────────────────────── */
.s-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid transparent;
}
.s-badge--navy {
  background: var(--s-light);
  color: var(--s-navy);
  border-color: #c7d2dc;
}
.s-badge--gold {
  background: var(--s-gold-l);
  color: var(--s-gold);
  border-color: rgba(184,145,58,.35);
}
.s-badge--dark {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.15);
}

/* ── CARDS ───────────────────────────────────────────────────── */
.s-card {
  background: var(--s-white);
  border: 1px solid var(--s-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.s-card:hover {
  box-shadow: 0 8px 28px rgba(26,58,92,.09);
  transform: translateY(-3px);
  border-color: #c0cedc;
}
.s-card--static:hover { transform: none; box-shadow: none; }
.s-card--dark {
  background: var(--s-navy);
  border-color: var(--s-navy);
  color: #fff;
}
.s-card--featured {
  border-color: var(--s-navy);
  box-shadow: 0 4px 24px rgba(26,58,92,.12);
}
.s-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--s-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.s-card__icon--gold { background: var(--s-gold-l); }
.s-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--s-navy);
  margin: 0 0 8px;
  line-height: 1.3;
}
.s-card__title--light { color: #fff; }
.s-card__body {
  font-size: 13.5px;
  color: var(--s-muted);
  line-height: 1.65;
}
.s-card__body--light { color: rgba(255,255,255,.65); }

/* ── GRIDS ───────────────────────────────────────────────────── */
.s-grid   { display: grid; gap: 20px; }
.s-grid-2 { grid-template-columns: repeat(2, 1fr); }
.s-grid-3 { grid-template-columns: repeat(3, 1fr); }
.s-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── ESTADÍSTICAS ────────────────────────────────────────────── */
.s-stats {
  display: flex;
  background: var(--s-alt);
  border: 1px solid var(--s-border);
  border-radius: 12px;
  padding: 36px 40px;
  flex-wrap: wrap;
  gap: 0;
}
.s-stat {
  flex: 1;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 24px;
  border-right: 1px solid var(--s-border);
}
.s-stat:first-child { padding-left: 0; }
.s-stat:last-child  { border-right: none; padding-right: 0; }
.s-stat__val {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--s-navy);
  line-height: 1;
  font-family: "Arial Black", Arial, sans-serif;
  letter-spacing: -.02em;
}
.s-stat__val--gold { color: var(--s-gold); }
.s-stat__lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--s-muted);
  line-height: 1.4;
  letter-spacing: .02em;
}

/* ── HERO UNIFICADO ──────────────────────────────────────────── */
.s-hero {
  padding: 100px 24px 80px;
  border-bottom: 1px solid var(--s-border);
  background: var(--s-light);
}
.s-hero--dark {
  background: linear-gradient(135deg, var(--s-deep) 0%, var(--s-navy) 100%);
  border-bottom: none;
}
.s-hero--white {
  background: var(--s-white);
}
.s-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.s-hero__inner--narrow {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.s-hero__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--s-navy);
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 0 0 20px;
}
.s-hero__title--light { color: #fff; }
.s-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #c8a04a, #b8913a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.s-hero__sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--s-muted);
  margin: 0 0 32px;
  max-width: 680px;
}
.s-hero__sub--light { color: rgba(255,255,255,.75); }

/* ── CTA FINAL ───────────────────────────────────────────────── */
.s-cta {
  background: var(--s-navy);
  padding: 80px 24px;
}
.s-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.s-cta__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--s-gold);
  margin-bottom: 16px;
}
.s-cta__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 14px;
}
.s-cta__body {
  font-size: 15px;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  margin: 0 0 36px;
}

/* ── TABLA COMPARATIVA ───────────────────────────────────────── */
.s-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.s-table th {
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--s-muted);
  text-align: left;
  border-bottom: 2px solid var(--s-border);
}
.s-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--s-border);
  color: var(--s-text);
  vertical-align: middle;
}
.s-table tr:last-child td { border-bottom: none; }
.s-table tr:hover td { background: var(--s-alt); }
.s-table td:first-child { font-weight: 600; color: var(--s-navy); }

/* ── STRIP DE CONFIANZA ──────────────────────────────────────── */
.s-trust-strip {
  background: var(--s-white);
  border-top: 1px solid var(--s-border);
  border-bottom: 1px solid var(--s-border);
  padding: 20px 24px;
}
.s-trust-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.s-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-right: 1px solid var(--s-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--s-navy);
  white-space: nowrap;
}
.s-trust-item:last-child { border-right: none; }
.s-trust-item span {
  font-weight: 400;
  color: var(--s-muted);
  font-size: 12px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .s-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .s-section { padding: 60px 24px; }
  .s-hero    { padding: 80px 24px 60px; }
  .s-cta     { padding: 60px 24px; }
  .s-grid-3  { grid-template-columns: repeat(2, 1fr); }
  .s-stats   { padding: 28px 20px; }
  .s-stat    { padding: 0 16px; }
}
@media (max-width: 620px) {
  .s-grid-4,
  .s-grid-3,
  .s-grid-2   { grid-template-columns: 1fr; }
  .s-stats    { flex-direction: column; gap: 20px; padding: 24px; }
  .s-stat     { padding: 0; border-right: none; border-bottom: 1px solid var(--s-border); padding-bottom: 16px; }
  .s-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .s-head--center { margin-bottom: 36px; }
}

/* ── SITE FOOTER (shared across all pages) ── */
.ft { background: var(--s-deep); color: rgba(255,255,255,.68); padding: 64px 24px 0; }
.ft__inner { max-width: 1200px; margin: 0 auto; }
.ft__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.ft__badges { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.ft__logo { display: block; width: 40px; height: auto; border-radius: 8px; flex-shrink: 0; }
.ft__distintivo { display: block; width: 52px; height: auto; opacity: .92; flex-shrink: 0; }
.ft__blurb { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.6); margin: 0 0 22px; max-width: 320px; }
.ft__social { display: flex; gap: 10px; }
.ft__social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75); transition: background .15s, border-color .15s, color .15s;
}
.ft__social a:hover { background: var(--s-gold); border-color: var(--s-gold); color: #fff; }

.ft__heading { font-size: 13px; font-weight: 700; letter-spacing: .04em; color: #fff; margin: 0 0 20px; }
.ft__col { display: flex; flex-direction: column; }
.ft__col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.62); text-decoration: none; margin-bottom: 14px; transition: color .15s; }
.ft__col a:last-child { margin-bottom: 0; }
.ft__col a:hover { color: var(--s-gold); }

.ft__news-text { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.6); margin: 0 0 18px; max-width: 260px; }
.ft__news-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: #4a90d9; color: #fff; font-size: 13.5px; font-weight: 700;
  padding: 12px 20px; border-radius: 8px; text-decoration: none;
  transition: background .15s, transform .15s;
}
.ft__news-btn:hover { background: #3a7fc9; transform: translateY(-1px); }

.ft__bottom {
  display: flex; align-items: center; justify-content: center;
  padding: 22px 0; text-align: center;
}
.ft__bottom p { font-size: 12.5px; color: rgba(255,255,255,.45); margin: 0; }

@media (max-width: 900px) {
  .ft__top { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}
@media (max-width: 560px) {
  .ft { padding: 48px 16px 0; }
  .ft__top { grid-template-columns: 1fr; gap: 36px; }
}
