/* ==========================================================================
   FG Consultix — Sistema de diseño
   Derivado del Brandbook FG Consultix (03 — Identidad visual)
   Navy + Teal. Manrope (títulos) + Inter (cuerpo).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Paleta principal — extraída del logo */
  --navy-900: #0F2A44;
  --navy-950: #081A2C;   /* solo para el pie: separa el pie de las secciones oscuras */
  --navy-800: #163A5E;
  --navy-700: #205FA6;
  --navy-600: #2E70BA;
  --navy-500: #4A85C9;
  --navy-300: #9CBCE4;
  --navy-100: #E8F0FA;
  --navy-050: #F4F8FD;

  --teal-600: #2BA6A8;
  --teal-400: #3FC3C6;
  --teal-200: #9CE3E5;
  --teal-100: #E3F9F8;

  --gray-900: #12212E;
  --gray-600: #5B6B7A;
  --gray-400: #93A2B0;
  --gray-200: #DDE4EB;
  --gray-100: #EEF2F6;

  /* Acento cálido — el ámbar del brandbook, ascendido a color de acento.
     Se usa para precios, ofertas y todo lo que el ojo tiene que encontrar primero. */
  --ambar-600: #C77F1A;
  --ambar: #E8A33D;
  --ambar-200: #F7D9A8;
  --ambar-050: #FDF6EA;
  --arena: #FAF7F1;
  --white: #FFFFFF;

  /* Semáforo de estado — solo para estados y KPIs, nunca decorativo */
  --estado-activo: #2E9E5B;
  --estado-observacion: #E8A33D;
  --estado-pausado: #7A8A99;
  --estado-revertido: #D64545;

  /* Roles semánticos */
  --bg: var(--white);
  --bg-alt: var(--navy-050);
  --bg-dark: var(--navy-900);
  --text: var(--gray-900);
  --text-muted: var(--gray-600);
  --text-invert: #EAF2FB;
  --text-invert-muted: #A9C0D8;
  --border: var(--gray-200);
  --border-dark: rgba(255, 255, 255, .14);
  --primary: var(--navy-700);
  --accent: var(--teal-400);

  /* Gradiente de marca — la flecha del isotipo */
  --grad-marca: linear-gradient(135deg, var(--navy-700) 0%, var(--teal-400) 100%);
  --grad-marca-suave: linear-gradient(135deg, var(--navy-100) 0%, var(--teal-100) 100%);

  /* Tipografía */
  --font-title: "Manrope", "Arial Black", Arial, system-ui, sans-serif;
  --font-body: "Inter", Calibri, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;

  /* Escala fluida */
  --fs-display: clamp(2.4rem, 1.4rem + 4.2vw, 4.4rem);
  --fs-h1: clamp(2.05rem, 1.35rem + 2.9vw, 3.4rem);
  --fs-h2: clamp(1.6rem, 1.2rem + 1.7vw, 2.4rem);
  --fs-h3: clamp(1.2rem, 1.05rem + .6vw, 1.5rem);
  --fs-h4: 1.075rem;
  --fs-lead: clamp(1.05rem, 1rem + .35vw, 1.25rem);
  --fs-body: 1.0rem;
  --fs-sm: .9125rem;
  --fs-xs: .8125rem;

  /* Ritmo */
  --sp-1: .25rem;
  --sp-2: .5rem;
  --sp-3: .75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 42, 68, .06), 0 1px 3px rgba(15, 42, 68, .05);
  --shadow: 0 4px 12px rgba(15, 42, 68, .07), 0 1px 3px rgba(15, 42, 68, .05);
  --shadow-lg: 0 18px 40px -12px rgba(15, 42, 68, .18), 0 4px 12px rgba(15, 42, 68, .06);
  --shadow-dark: 0 20px 50px -18px rgba(0, 0, 0, .55);

  --maxw: 1180px;
  --maxw-narrow: 760px;
  --header-h: 72px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  font-feature-settings: "kern" 1, "liga" 1, "tnum" 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--navy-900);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); font-weight: 800; }
h2 { font-size: var(--fs-h2); font-weight: 800; }
h3 { font-size: var(--fs-h3); font-weight: 700; }
h4 { font-size: var(--fs-h4); font-weight: 700; }
h5, h6 { font-size: var(--fs-sm); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

p { margin: 0 0 var(--sp-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal-600); }

img, svg, video { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.25rem; }
li { margin-bottom: var(--sp-2); }
li:last-child { margin-bottom: 0; }

strong, b { font-weight: 650; color: var(--navy-900); }
small { font-size: var(--fs-xs); }

hr { border: 0; border-top: 1px solid var(--border); margin: var(--sp-7) 0; }

figure { margin: 0; }
blockquote { margin: 0; }

table { border-collapse: collapse; width: 100%; }

:focus-visible {
  outline: 3px solid var(--teal-600);
  outline-offset: 2px;
  border-radius: 3px;
}

::selection { background: var(--teal-200); color: var(--navy-900); }

/* --------------------------------------------------------------------------
   3. UTILIDADES DE LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--alt { background: var(--bg-alt); }
.section--tint { background: var(--grad-marca-suave); }
.section--dark { background: var(--bg-dark); color: var(--text-invert); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: var(--text-invert-muted); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--text-muted); font-size: var(--fs-lead); margin-bottom: 0; }
.section--dark .section-head p { color: var(--text-invert-muted); }

.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.75rem); }
/* Columnas fijas, no auto-fit: con auto-fit una rejilla de 4 tarjetas se partía
   en 3 + 1 en pantallas anchas, que es justo lo que no queremos. */
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
/* Sin esto, en el móvil las páginas de servicio se iban de ancho y la web se
   podía arrastrar de lado. Las columnas de una rejilla no encogen por debajo
   de su contenido salvo que se les diga, y bastaba con una tabla dentro para
   que la columna se quedase clavada al ancho de la tabla — que además ya tiene
   su propio scroll y no necesitaba estirar nada. */
.split > * { min-width: 0; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr .95fr; }
  .split--reverse > *:first-child { order: 2; }
  .split--wide-left { grid-template-columns: 1.25fr .75fr; }
  /* La barra lateral arranca arriba, no centrada: con una columna izquierda
     larga, centrarla la dejaba flotando en mitad de la página. */
  .split--wide-left { align-items: start; }
}

/* Barra lateral que acompaña al texto al bajar.
   Se pega la columna entera, no la tarjeta de dentro: cuando solo se pegaba la
   tarjeta, el recuadro que va debajo se deslizaba por detrás de ella.
   Y solo se activa si la columna cabe entera en la pantalla; si no cabe, se
   queda quieta y baja con la página, porque pegarla escondería su parte
   inferior sin que se pueda llegar a ella. */
.aside-sticky { align-self: start; }
@media (min-width: 900px) and (min-height: 860px) {
  .aside-sticky { position: sticky; top: calc(var(--header-h) + 24px); }
}

.stack > * + * { margin-top: var(--sp-4); }
.text-center { text-align: center; }
.muted { color: var(--text-muted); }
.lead { font-size: var(--fs-lead); color: var(--text-muted); line-height: 1.6; }
.nowrap { white-space: nowrap; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100px; left: 12px; z-index: 999;
  background: var(--navy-900); color: #fff; padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius); font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 0; color: #fff; }

/* --------------------------------------------------------------------------
   4. COMPONENTES — Etiquetas, botones, badges
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-size: var(--fs-xs); font-weight: 650;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy-700);
  margin-bottom: var(--sp-3);
}
.section--dark .eyebrow { color: var(--teal-400); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 650;
  line-height: 1; text-decoration: none; cursor: pointer;
  padding: .95rem 1.6rem; border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--navy-700); color: #fff; box-shadow: 0 6px 18px -6px rgba(32, 95, 166, .55); }
.btn--primary:hover { background: var(--navy-800); color: #fff; box-shadow: 0 12px 26px -8px rgba(32, 95, 166, .6); }

.btn--accent { background: var(--grad-marca); color: #fff; box-shadow: 0 8px 22px -8px rgba(43, 166, 168, .6); }
.btn--accent:hover { color: #fff; box-shadow: 0 14px 30px -10px rgba(43, 166, 168, .7); filter: saturate(1.1); }

.btn--ghost { background: transparent; color: var(--navy-700); border-color: var(--navy-300); }
.btn--ghost:hover { background: var(--navy-100); color: var(--navy-800); border-color: var(--navy-500); }

.btn--light { background: #fff; color: var(--navy-900); }
.btn--light:hover { background: var(--navy-100); color: var(--navy-900); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.6); }

.btn--sm { padding: .65rem 1.1rem; font-size: var(--fs-xs); }
.btn--lg { padding: 1.1rem 2rem; font-size: var(--fs-body); }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.btn-row--center { justify-content: center; }

.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: var(--fs-xs); font-weight: 600; line-height: 1;
  padding: .45rem .75rem; border-radius: var(--radius-pill);
  background: var(--navy-100); color: var(--navy-700);
  border: 1px solid rgba(32, 95, 166, .14);
}
.badge--accent { background: var(--teal-100); color: #147173; border-color: rgba(43, 166, 168, .22); }
.badge--dark { background: rgba(255,255,255,.08); color: var(--teal-400); border-color: rgba(255,255,255,.16); }

/* Semáforo de estado — solo estados y KPIs */
.estado {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: var(--fs-xs); font-weight: 600; line-height: 1;
  padding: .4rem .7rem; border-radius: var(--radius-pill);
  background: var(--gray-100); color: var(--gray-600);
}
.estado::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; flex: none; }
.estado--activo { background: rgba(46,158,91,.1); color: #1F7444; }
.estado--observacion { background: rgba(232,163,61,.13); color: #96631A; }
.estado--pausado { background: rgba(122,138,153,.13); color: #55636E; }
.estado--revertido { background: rgba(214,69,69,.11); color: #A93232; }

/* --------------------------------------------------------------------------
   5. CABECERA / NAVEGACIÓN
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--border); box-shadow: 0 2px 16px rgba(15,42,68,.06); }

.nav {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5);
  min-height: var(--header-h);
}

.nav__brand { display: flex; align-items: center; gap: .625rem; text-decoration: none; flex: none; }
.nav__brand img { width: 38px; height: 38px; object-fit: contain; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav__brand-name {
  font-family: var(--font-title); font-weight: 800; font-size: 1.0625rem;
  color: var(--navy-900); letter-spacing: -.02em;
}
.nav__brand-tag { font-size: .625rem; color: var(--gray-600); letter-spacing: .07em; text-transform: uppercase; font-weight: 500; }

.nav__menu { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav__menu li { margin: 0; }
.nav__link {
  display: block; padding: .55rem .8rem; border-radius: var(--radius-sm);
  font-size: var(--fs-sm); font-weight: 550; color: var(--navy-900);
  text-decoration: none; transition: background .16s var(--ease), color .16s var(--ease);
}
.nav__link:hover { background: var(--navy-100); color: var(--navy-700); }
.nav__link[aria-current="page"] { color: var(--navy-700); background: var(--navy-100); font-weight: 650; }

/* Submenú desplegable (funciona con hover y con foco de teclado) */
.nav__item--has-sub { position: relative; }
.nav__sub {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 20;
  min-width: 310px; list-style: none; margin: 0; padding: .5rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav__item--has-sub:hover .nav__sub,
.nav__item--has-sub:focus-within .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__sub a {
  display: block; padding: .6rem .75rem; border-radius: var(--radius-sm);
  text-decoration: none; color: var(--navy-900); font-size: var(--fs-sm); font-weight: 600; line-height: 1.3;
}
.nav__sub a span { display: block; font-weight: 400; font-size: var(--fs-xs); color: var(--text-muted); margin-top: .15rem; }
.nav__sub a:hover { background: var(--navy-050); color: var(--navy-700); }
.nav__caret { display: inline-block; margin-left: .3rem; font-size: .6rem; opacity: .6; }

.nav__actions { display: flex; align-items: center; gap: .5rem; flex: none; }
/* El CTA vive en .nav__actions en escritorio y dentro del menú en móvil.
   Nunca los dos a la vez: si no, sale duplicado. */
.nav__menu .btn { display: none; }

.nav__toggle {
  display: none; width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; align-items: center; justify-content: center;
}
.nav__toggle span { position: relative; display: block; width: 18px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform .2s var(--ease), background .2s; }
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--navy-900); border-radius: 2px;
  transition: transform .2s var(--ease), top .2s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1020px) {
  .nav__toggle { display: inline-flex; }
  .nav__actions .btn { display: none; }
  .nav__menu {
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: var(--sp-4) clamp(1.1rem, 4vw, 2rem) var(--sp-6);
  }
  /* Panel desplegable: solo cuando hay JS para poder abrirlo.
     Sin JS el menú queda como lista estática visible (ver más abajo). */
  .js .nav__menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }
  .js .nav__menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

  /* Degradación sin JavaScript: navegación completa, en flujo y accesible */
  html:not(.js) .nav { flex-wrap: wrap; }
  html:not(.js) .nav__menu { width: 100%; order: 3; border-bottom: 0; padding-inline: 0; }
  html:not(.js) .nav__toggle { display: none; }
  html:not(.js) .site-header { position: static; }
  .nav__link { padding: .85rem .5rem; font-size: 1.0625rem; border-radius: var(--radius-sm); }
  .nav__sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--navy-100);
    border-radius: 0; margin: 0 0 .5rem .5rem; padding: 0 0 0 .5rem; min-width: 0;
  }
  .nav__caret { display: none; }
  .nav__menu .btn { display: inline-flex; margin-top: var(--sp-4); }
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy-900);
  color: var(--text-invert);
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(3rem, 7vw, 6rem);
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 480px at 82% 8%, rgba(63, 195, 198, .22), transparent 62%),
    radial-gradient(760px 480px at 10% 92%, rgba(32, 95, 166, .38), transparent 60%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 10%, transparent 72%);
  mask-image: radial-gradient(circle at 50% 40%, #000 10%, transparent 72%);
}
.hero h1 { color: #fff; font-size: var(--fs-display); margin-bottom: var(--sp-5); }
.hero h1 .grad {
  background: linear-gradient(100deg, var(--teal-400) 0%, var(--navy-500) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { color: var(--text-invert-muted); font-size: var(--fs-lead); max-width: 56ch; }
.hero .eyebrow { color: var(--teal-400); }
.hero__actions { margin-top: var(--sp-6); }
.hero__note { margin-top: var(--sp-4); font-size: var(--fs-xs); color: var(--text-invert-muted); }

/* La columna de texto del hero necesita más sitio que la del resto de la web:
   con el titular a tamaño display, una columna estrecha lo parte en cuatro
   líneas y el bloque se lee a trompicones. Se le da más anchura y se recorta
   la separación entre columnas. */
/* La portada respira más ancha que el resto de la web, y las dos columnas van
   casi a la par: la foto tenía que verse al menos el doble de grande. */
@media (min-width: 900px) {
  .hero__split { grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 3.5vw, 3rem); align-items: center; }
}
/* A tamaño display el titular salía a cuatro líneas y el bloque se leía a
   trompicones. Bajado hasta que entra en dos, que es donde se lee de un golpe. */
.hero__split h1 { font-size: clamp(2rem, 0.5rem + 2.75vw, 2.75rem); text-wrap: balance; }
.hero__lead { max-width: 46ch; }

.hero--inner { padding-block: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem); }
.hero--inner h1 { font-size: var(--fs-h1); }

/* Tarjeta de datos del hero */
.hero-panel {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.9rem);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: var(--shadow-dark);
}
.hero-panel__title {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-bottom: .9rem; margin-bottom: .9rem; border-bottom: 1px solid rgba(255,255,255,.13);
}
.hero-panel__title h2 { font-size: var(--fs-h4); color: #fff; margin: 0; }
.hero-panel__row {
  display: grid; grid-template-columns: 1fr auto; gap: .75rem 1rem; align-items: center;
  padding: .7rem 0; border-bottom: 1px dashed rgba(255,255,255,.1);
}
.hero-panel__row:last-of-type { border-bottom: 0; }
.hero-panel__label { font-size: var(--fs-sm); color: var(--text-invert); font-weight: 550; }
.hero-panel__label span { display: block; font-size: var(--fs-xs); color: var(--text-invert-muted); font-weight: 400; }

/* --------------------------------------------------------------------------
   7. TARJETAS
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 2.6vw, 1.9rem);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  height: 100%;
}
/* La tarjeta entera es un enlace, así que hereda el subrayado del navegador y lo
   pinta sobre el titular y el texto. El subrayado lo lleva solo la línea de
   acción (.card__more), que es donde se espera. */
.card--link { text-decoration: none; color: inherit; }
.card--link h3 { color: var(--navy-900); }
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--navy-300); }
.card h3 { margin-bottom: var(--sp-2); }
.card p { color: var(--text-muted); font-size: var(--fs-sm); }
.card__num {
  font-family: var(--font-title); font-size: var(--fs-xs); font-weight: 800;
  color: var(--teal-600); letter-spacing: .08em; display: block; margin-bottom: .5rem;
}
.card__icon {
  width: 46px; height: 46px; border-radius: var(--radius); margin-bottom: var(--sp-4);
  display: grid; place-items: center;
  background: var(--grad-marca-suave); color: var(--navy-700);
  border: 1px solid rgba(32,95,166,.12);
}
.card__icon svg { width: 22px; height: 22px; }
.card__more {
  display: inline-flex; align-items: center; gap: .35rem; margin-top: var(--sp-4);
  font-size: var(--fs-sm); font-weight: 650; color: var(--navy-700); text-decoration: none;
}
.card__more::after { content: "→"; transition: transform .18s var(--ease); }
.card--link:hover .card__more::after { transform: translateX(4px); }
.card--dark {
  background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.12); color: var(--text-invert);
}
.card--dark h3 { color: #fff; }
.card--dark p { color: var(--text-invert-muted); }
.card--dark .card__icon { background: rgba(63,195,198,.12); border-color: rgba(63,195,198,.22); color: var(--teal-400); }

/* La tarjeta destacada va enmarcada entera, no solo con una franja arriba: a
   media altura se perdía el color y el recuadro parecía a medio pintar. */
.card--feature {
  border: 2px solid var(--ambar);
  box-shadow: var(--shadow);
}
.card--feature::before { content: none; }

/* Enlace que cubre toda la tarjeta sin romper la semántica */
.stretch-link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }

/* --------------------------------------------------------------------------
   8. KPIs Y DATOS
   -------------------------------------------------------------------------- */
.kpi-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.kpi { background: #fff; padding: clamp(1.1rem, 2.4vw, 1.6rem); text-align: center; }
.kpi__value {
  font-family: var(--font-title); font-weight: 800;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem); line-height: 1.05;
  color: var(--navy-700); letter-spacing: -.03em; font-variant-numeric: tabular-nums;
  margin-bottom: .3rem;
}
.kpi__value .u { font-size: .6em; color: var(--teal-600); }
.kpi__label { font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.4; }
.kpi-strip--dark { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.14); }
.kpi-strip--dark .kpi { background: var(--navy-900); }
.kpi-strip--dark .kpi__value { color: var(--teal-400); }
.kpi-strip--dark .kpi__label { color: var(--text-invert-muted); }

/* --------------------------------------------------------------------------
   9. TABLAS
   -------------------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; }
.table-wrap table { min-width: 560px; font-size: var(--fs-sm); }
.table-wrap caption {
  caption-side: top; text-align: left; padding: 1rem 1.15rem .35rem;
  font-size: var(--fs-xs); color: var(--text-muted);
}
th, td { padding: .85rem 1.15rem; text-align: left; vertical-align: top; }
thead th {
  background: var(--navy-050); color: var(--navy-900);
  font-family: var(--font-title); font-weight: 700; font-size: var(--fs-xs);
  text-transform: uppercase; letter-spacing: .05em;
  border-bottom: 1px solid var(--border); white-space: nowrap;
}
tbody tr + tr td { border-top: 1px solid var(--gray-100); }
tbody td { color: var(--text-muted); }
tbody th { font-weight: 650; color: var(--navy-900); font-family: var(--font-body); }
td .num, .num { font-variant-numeric: tabular-nums; font-weight: 650; color: var(--navy-900); }

/* Comparativa sí/no */
.vs { display: grid; gap: var(--sp-4); grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.vs__col { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.25rem, 2.5vw, 1.75rem); background: #fff; }
.vs__col h3 { display: flex; align-items: center; gap: .5rem; font-size: var(--fs-h4); }
.vs__col--yes { border-color: rgba(46,158,91,.3); background: rgba(46,158,91,.03); }
.vs__col--no { border-color: rgba(214,69,69,.25); background: rgba(214,69,69,.03); }
.vs__col ul { list-style: none; padding: 0; margin: 0; }
.vs__col li { position: relative; padding-left: 1.6rem; font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: .7rem; }
.vs__col li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.vs__col--yes li::before { content: "✓"; color: var(--estado-activo); }
.vs__col--no li::before { content: "✕"; color: var(--estado-revertido); }

/* Lista con check */
.checklist { list-style: none; padding: 0; margin: 0 0 var(--sp-4); }
.checklist li { position: relative; padding-left: 1.75rem; margin-bottom: .65rem; color: var(--text-muted); font-size: var(--fs-sm); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: 15px; height: 9px; border-left: 2px solid var(--teal-600); border-bottom: 2px solid var(--teal-600);
  transform: rotate(-45deg);
}
.checklist--dark li { color: var(--text-invert-muted); }
.checklist--dark li::before { border-color: var(--teal-400); }

/* --------------------------------------------------------------------------
   10. PROCESO / TIMELINE
   -------------------------------------------------------------------------- */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: paso; }
.steps > li {
  position: relative; counter-increment: paso;
  padding: 0 0 clamp(1.75rem, 3.5vw, 2.5rem) clamp(3.25rem, 6vw, 4.25rem);
  margin: 0;
}
.steps > li::before {
  content: counter(paso, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  width: clamp(2.25rem, 4vw, 2.75rem); height: clamp(2.25rem, 4vw, 2.75rem);
  display: grid; place-items: center; border-radius: 50%;
  background: var(--grad-marca); color: #fff;
  font-family: var(--font-title); font-weight: 800; font-size: var(--fs-xs);
  box-shadow: 0 4px 12px -4px rgba(32,95,166,.5);
}
.steps > li::after {
  content: ""; position: absolute; left: calc(clamp(2.25rem, 4vw, 2.75rem) / 2 - 1px); top: clamp(2.25rem, 4vw, 2.75rem);
  bottom: .5rem; width: 2px; background: linear-gradient(var(--navy-300), transparent);
}
.steps > li:last-child { padding-bottom: 0; }
.steps > li:last-child::after { display: none; }
.steps h3 { margin-bottom: .4rem; font-size: var(--fs-h4); }
.steps p { color: var(--text-muted); font-size: var(--fs-sm); }
.steps__meta { display: block; font-size: var(--fs-xs); font-weight: 650; color: var(--teal-600); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .3rem; }

/* --------------------------------------------------------------------------
   11. PRECIOS
   -------------------------------------------------------------------------- */
/* Rejilla de planes con puntos de corte fijos.
   Antes usaba auto-fit con un mínimo de 300 px. El problema: las tarjetas de
   plan tienen un ancho mínimo de contenido mayor que ese mínimo, así que a
   partir de unos 600 px la rejilla creaba dos columnas que no cabían y la
   segunda se salía por la derecha. Con columnas explícitas y minmax(0,1fr) la
   pista nunca puede crecer por encima de su reparto. */
.pricing { display: grid; gap: var(--sp-5); grid-template-columns: minmax(0, 1fr); align-items: stretch; }
@media (min-width: 760px)  { .pricing { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1060px) { .pricing { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.plan { min-width: 0; }
.plan {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan--destacado { border-color: var(--navy-700); box-shadow: var(--shadow-lg); position: relative; }
.plan--destacado::before {
  content: "Más contratado"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad-marca); color: #fff; font-size: .6875rem; font-weight: 700;
  padding: .35rem .85rem; border-radius: var(--radius-pill); letter-spacing: .04em; white-space: nowrap;
}
.plan__name { font-family: var(--font-title); font-weight: 800; font-size: var(--fs-h3); color: var(--navy-900); margin-bottom: .35rem; }
.plan__for { font-size: var(--fs-xs); color: var(--text-muted); margin-bottom: var(--sp-4); min-height: 2.6em; }
.plan__price {
  font-family: var(--font-title); font-weight: 800; letter-spacing: -.03em;
  font-size: clamp(1.9rem, 1.5rem + 1.3vw, 2.5rem); color: var(--navy-700); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.plan__price small { font-family: var(--font-body); font-size: .9rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.plan__price-note { font-size: var(--fs-xs); color: var(--text-muted); margin: .45rem 0 var(--sp-5); }
/* Los botones de los tres planes tienen que quedar a la misma altura. Las
   tarjetas ya miden lo mismo (align-items: stretch), así que basta con empujar
   el botón al fondo de cada una: el hueco sobrante se reparte arriba, no
   debajo del botón. */
.plan .checklist { flex: 0 0 auto; }
.plan .proceso { margin-bottom: var(--sp-5); }
.plan .btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   12. FAQ / ACORDEÓN (funciona sin JS: <details>)
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: var(--sp-3); }
.faq details {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.faq details[open] { border-color: var(--navy-300); box-shadow: var(--shadow-sm); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.35rem; cursor: pointer; list-style: none;
  font-family: var(--font-title); font-weight: 700; font-size: 1.0125rem; color: var(--navy-900);
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none; font-family: var(--font-body); font-weight: 400;
  font-size: 1.5rem; line-height: 1; color: var(--navy-700); transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--navy-700); }
.faq__answer { padding: 0 1.35rem 1.35rem; }
.faq__answer p, .faq__answer ul { color: var(--text-muted); font-size: var(--fs-sm); }
.faq__answer > p:first-child { color: var(--navy-900); font-weight: 550; }

/* Respuesta directa destacada — bloque que las IAs extraen fácil */
.answer-box {
  border-left: 3px solid var(--teal-400);
  background: var(--teal-100);
  padding: 1.1rem 1.35rem; border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: var(--sp-5);
}
.answer-box p { margin: 0; color: #10484A; font-size: var(--fs-sm); }
.answer-box p + p { margin-top: .6rem; }
.answer-box strong { color: #0C3739; }

/* --------------------------------------------------------------------------
   13. TESTIMONIOS
   -------------------------------------------------------------------------- */
.quote {
  display: flex; flex-direction: column; height: 100%;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.6vw, 1.9rem);
}
.quote blockquote {
  font-size: 1.0625rem; line-height: 1.6; color: var(--navy-900); flex: 1;
  font-weight: 450;
}
.quote blockquote::before { content: "“"; font-family: var(--font-title); font-size: 2.5rem; line-height: 0; color: var(--teal-400); vertical-align: -.25em; margin-right: .1em; }
.quote figcaption { margin-top: var(--sp-4); padding-top: var(--sp-4); border-top: 1px solid var(--border); font-size: var(--fs-xs); color: var(--text-muted); }
.quote figcaption b { display: block; color: var(--navy-900); font-size: var(--fs-sm); font-weight: 650; }

/* --------------------------------------------------------------------------
   14. FORMULARIO
   -------------------------------------------------------------------------- */
/* Las columnas se declaran con minmax(0, …) y los hijos con min-width: 0 para
   que puedan encoger. Sin eso, un desplegable con una opción larga —«No lo sé,
   y quiero entenderlo»— fijaba el ancho de todo el formulario a la medida de
   esa frase, y en el móvil la página se salía de pantalla. */
.form { display: grid; gap: var(--sp-4); grid-template-columns: minmax(0, 1fr); }
.form > * { min-width: 0; }
.form__row { display: grid; gap: var(--sp-4); grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.form__row > * { min-width: 0; }
.field { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.field label { font-size: var(--fs-sm); font-weight: 600; color: var(--navy-900); }
.field label .req { color: var(--estado-revertido); }
.field small { font-size: var(--fs-xs); color: var(--text-muted); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: var(--fs-sm); color: var(--text);
  padding: .8rem .95rem; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; width: 100%;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235B6B7A' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-700); box-shadow: 0 0 0 3px rgba(32,95,166,.14);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--estado-revertido); }
.field--check { flex-direction: row; align-items: flex-start; gap: .65rem; }
.field--check input { width: 18px; height: 18px; flex: none; margin-top: .18rem; accent-color: var(--navy-700); }
.field--check label { font-weight: 400; font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.5; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-status { padding: .9rem 1.1rem; border-radius: var(--radius-sm); font-size: var(--fs-sm); display: none; }
.form-status.is-visible { display: block; }
.form-status--ok { background: rgba(46,158,91,.1); color: #1F7444; border: 1px solid rgba(46,158,91,.25); }
.form-status--error { background: rgba(214,69,69,.08); color: #A93232; border: 1px solid rgba(214,69,69,.22); }

/* --------------------------------------------------------------------------
   15. CTA FINAL
   -------------------------------------------------------------------------- */
.cta-final {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--navy-900); color: var(--text-invert);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.cta-final::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(700px 340px at 50% 0%, rgba(63,195,198,.24), transparent 65%);
}
.cta-final h2 { color: #fff; }
.cta-final p { color: var(--text-invert-muted); max-width: 58ch; margin-inline: auto; }
.cta-final .btn-row { justify-content: center; margin-top: var(--sp-5); }

/* --------------------------------------------------------------------------
   16. PIE
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-950); border-top: 1px solid rgba(255,255,255,.09); color: var(--text-invert-muted); padding-block: clamp(2.75rem, 5vw, 4rem) var(--sp-6); font-size: var(--fs-sm); }
.footer-grid { display: grid; gap: var(--sp-6); grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.site-footer h3 { color: #fff; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .09em; font-weight: 700; margin-bottom: var(--sp-4); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: var(--text-invert-muted); text-decoration: none; transition: color .16s var(--ease); }
.site-footer a:hover { color: var(--teal-400); }
.footer-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: var(--sp-4); }
.footer-brand img { width: 42px; height: 42px; }
.footer-brand span { font-family: var(--font-title); font-weight: 800; font-size: 1.125rem; color: #fff; letter-spacing: -.02em; }
.footer-bottom {
  margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); align-items: center; justify-content: space-between;
  font-size: var(--fs-xs);
}
.footer-bottom p { margin: 0; }

/* --------------------------------------------------------------------------
   17. MIGAS DE PAN
   -------------------------------------------------------------------------- */
.breadcrumb { font-size: var(--fs-xs); margin-bottom: var(--sp-4); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; }
.breadcrumb li { margin: 0; color: var(--text-invert-muted); }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; opacity: .5; }
.breadcrumb a { color: var(--text-invert-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal-400); text-decoration: underline; }
.breadcrumb--light li { color: var(--text-muted); }
.breadcrumb--light a { color: var(--navy-700); }

/* --------------------------------------------------------------------------
   18. ARTÍCULO / PROSA
   -------------------------------------------------------------------------- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: var(--sp-7); }
.prose h3 { margin-top: var(--sp-6); }
.prose > *:first-child { margin-top: 0; }
.prose ul, .prose ol { color: var(--text-muted); }
.prose li { margin-bottom: .5rem; }
.prose .table-wrap { margin-block: var(--sp-5); }

/* Marcador de contenido pendiente de datos reales */
.placeholder-note {
  border: 1px dashed var(--estado-observacion);
  background: rgba(232,163,61,.07);
  color: #7A4F10; border-radius: var(--radius);
  padding: .9rem 1.15rem; font-size: var(--fs-xs); margin-bottom: var(--sp-5);
}
.placeholder-note strong { color: #5E3C08; }

/* Foto de perfil */
.photo-frame { position: relative; }
.photo-frame img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.photo-frame::before {
  content: ""; position: absolute; inset: -14px -14px auto auto; width: 55%; height: 55%;
  background: var(--grad-marca); opacity: .12; border-radius: var(--radius-lg); z-index: -1;
}
.photo-caption { margin-top: var(--sp-3); font-size: var(--fs-xs); color: var(--text-muted); }

/* Aviso lateral */
.aside-box {
  background: var(--navy-050); border: 1px solid var(--border); border-left: 3px solid var(--navy-700);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem;
}
.aside-box h3 { font-size: var(--fs-h4); margin-bottom: .5rem; }
.aside-box p { font-size: var(--fs-sm); color: var(--text-muted); }

/* --------------------------------------------------------------------------
   19. ANIMACIÓN (mejora progresiva — sin JS el contenido es visible)
   -------------------------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* --------------------------------------------------------------------------
   20. IMPRESIÓN
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .cta-final, .nav__toggle { display: none !important; }
  body { color: #000; }
  .hero { background: none; color: #000; }
  .hero h1, .hero p { color: #000; }
  a::after { content: " (" attr(href) ")"; font-size: .75em; }
}

/* ===========================================================================
   Acento ámbar
   ---------------------------------------------------------------------------
   El azul sigue mandando en la estructura. El ámbar solo aparece donde el ojo
   tiene que pararse: precios, ofertas y el botón que queremos que se pulse.
   =========================================================================== */
.section--arena { background: var(--arena); }

.plan__price { color: var(--ambar-600); }

.badge--ambar {
  background: var(--ambar-050); color: var(--ambar-600);
  border-color: var(--ambar-200);
}

.btn--ambar {
  background: var(--ambar); color: var(--navy-900);
  box-shadow: 0 8px 22px -8px rgba(232, 163, 61, .7);
}
.btn--ambar:hover { background: var(--ambar-600); color: #fff; }

.hero__note strong { color: var(--ambar); }

/* Imagen del hero: ocupa el hueco del antiguo panel de precios. */
.hero-figura { margin: 0; }
.hero-figura img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow-lg);
}

/* ===========================================================================
   Más ámbar
   ---------------------------------------------------------------------------
   El azul sostiene la estructura; el ámbar marca el recorrido: numeración,
   iconos, checks y los enlaces de «seguir leyendo». Es el color de Amazon y
   el que ya estaba en el brandbook, así que no desentona.
   =========================================================================== */
.card__num                      { color: var(--ambar-600); }
.card__more                     { color: var(--ambar-600); }
.card--link:hover .card__more   { color: var(--ambar); }

.card__icon {
  background: var(--ambar-050);
  color: var(--ambar-600);
  border-color: var(--ambar-200);
}

.checklist li::before           { border-left-color: var(--ambar-600); border-bottom-color: var(--ambar-600); }
.checklist--dark li::before     { border-left-color: var(--ambar); border-bottom-color: var(--ambar); }

.steps > li::before {
  background: var(--ambar);
  color: var(--navy-900);
  box-shadow: 0 4px 12px -4px rgba(232, 163, 61, .6);
}

.flow > li::before              { background: var(--ambar); color: var(--navy-900); }
.flow--dark > li::before        { background: var(--ambar); color: var(--navy-900); }

.eyebrow                        { color: var(--ambar-600); }
.section--dark .eyebrow,
.hero .eyebrow                  { color: var(--ambar); }

.quote blockquote::before       { color: var(--ambar); }
.faq summary::marker,
.proceso summary::marker        { color: var(--ambar-600); }

/* El sello de plan recomendado */
.plan--destacado::before        { background: var(--ambar); color: var(--navy-900); }

/* Enlaces dentro del texto: el ámbar sobre blanco no tiene contraste suficiente
   para texto pequeño, así que el enlace sigue en azul y solo se subraya en ámbar. */
.prose a:not(.btn)              { text-decoration-color: var(--ambar); text-underline-offset: .18em; }
