/* ============================================================
   NICARAO SERVICIOS — Design tokens
   ============================================================ */
:root {
  --ink: #0e222f;
  --ink-soft: #435764;
  --paper: #f6f8f7;
  --paper-raised: #ffffff;

  /* Azul del globo del logotipo */
  --teal-700: #1672a0;
  --teal-500: #2599c9;
  --teal-300: #7cd0e6;

  /* Verde jade de la pluma/corona del logotipo */
  --jade-500: #24a883;
  --jade-300: #a6e6d2;

  /* Morado del texto "SERVICIOS" del logotipo */
  --indigo-700: #3a2769;
  --indigo-500: #5a3fa0;

  /* Acento morado vibrante del logotipo, usado en botones y detalles destacados */
  --violet-600: #4a2985;
  --violet-700: #35205f;

  /* Rojo/naranja reservado únicamente para estados de error o campos requeridos
     (no es un color de marca; se mantiene distinto a propósito por claridad de uso) */
  --coral-500: #e0483a;
  --coral-600: #c23a2e;

  --line: rgba(14, 34, 47, 0.12);
  --line-soft: rgba(14, 34, 47, 0.07);
  --shadow-1: 0 1px 2px rgba(14, 34, 47, 0.06), 0 8px 24px -12px rgba(14, 34, 47, 0.18);

  --display: "Manrope", "Segoe UI", sans-serif;
  --body: "Karla", "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --radius: 14px;
  --radius-sm: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Evita que Safari/Chrome en móvil agranden el texto automáticamente
     en pantallas angostas, lo que puede desalinear el header. */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Red de seguridad: si algún elemento se pasa del ancho de la pantalla,
     que no arrastre a toda la página con él (evita scroll horizontal). */
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-weight: 800; }
h2 { font-weight: 800; }
h3 { font-weight: 700; }

p { margin: 0 0 1em; color: var(--ink-soft); }

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

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Aparición suave al hacer scroll ----------
   Solo opacity/transform (compositado por GPU, sin repintar layout).
   Ver reveal en js/script.js: usa IntersectionObserver y deja de
   observar cada elemento en cuanto aparece. */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Focus visibility
   ============================================================ */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, details summary:focus-visible {
  outline: 2px solid var(--coral-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
}

.status-strip {
  background: var(--ink);
  color: #cfe9ef;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.status-strip .container {
  display: flex;
  gap: 28px;
  align-items: center;
  height: 34px;
  overflow-x: auto;
  scrollbar-width: none;
}
.status-strip .container::-webkit-scrollbar { display: none; }

.status-item { display: flex; align-items: center; gap: 7px; white-space: nowrap; opacity: 0.92; }
a.status-link { text-decoration: none; color: inherit; border-bottom: 1px dotted rgba(207,233,239,0.5); transition: opacity 0.15s; }
a.status-link:hover { opacity: 1; border-bottom-color: rgba(207,233,239,0.9); }
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--jade-500);
  box-shadow: 0 0 0 0 rgba(47,191,149,0.6);
  animation: pulse-dot 2.4s ease-out infinite;
  flex: none;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(47,191,149,0.55); }
  70% { box-shadow: 0 0 0 6px rgba(47,191,149,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,191,149,0); }
}

nav.main-nav {
  background: rgba(246, 248, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
nav.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand img { height: 42px; width: auto; flex-shrink: 0; }
.brand-word { font-family: var(--display); font-weight: 800; font-size: 18px; color: var(--indigo-700); letter-spacing: -0.01em; white-space: nowrap; }

.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover, .nav-links a.active { background: var(--line-soft); color: var(--teal-700); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--jade-500);
  color: #05201a;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-1); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

.nav-cta-mobile { display: none; }
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--paper-raised); flex-direction: column; align-items: stretch; border-bottom: 1px solid var(--line); padding: 8px; box-shadow: var(--shadow-1); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; border-radius: var(--radius-sm); }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: block; margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--line); }
  .nav-cta-mobile a { background: var(--jade-500); color: #05201a; font-weight: 700; text-align: center; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--teal-700); color: #fff; }
.btn-primary:hover { background: var(--teal-500); transform: translateY(-1px); box-shadow: var(--shadow-1); }
.btn-coral { background: var(--violet-600); color: #fff; }
.btn-coral:hover { background: var(--violet-700); transform: translateY(-1px); box-shadow: var(--shadow-1); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--line-soft); }
.btn-light { background: #fff; color: var(--indigo-700); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-1); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* ============================================================
   HERO (shared shell — content varies per page)
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--indigo-700) 0%, var(--teal-700) 62%, var(--teal-500) 100%);
  color: #fff;
  overflow: hidden;
}
.hero-horizon {
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(14,34,47,0) 0%, rgba(6,20,28,0.55) 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--jade-300);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--jade-300); }

.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.4rem); max-width: 15ch; }
.hero p.lede { color: rgba(255,255,255,0.86); font-size: 1.15rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 64px;
}
.hero-art { margin-top: 34px; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 40px; }
  .hero-art { order: -1; max-width: 280px; margin: 0 auto 10px; }
}

/* Hero: panel de red estilo radar — transparente, con manchas de color
   de marca moviéndose detrás del vidrio y un barrido tipo radar girando */
.network-panel {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
  box-shadow: 0 25px 55px -22px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.08) inset;
  padding: 24px 20px 22px;
}
.network-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--jade-300) 45%, var(--indigo-500) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .85;
  pointer-events: none;
  z-index: 2;
}
.panel-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  z-index: -1;
  opacity: .75;
  will-change: transform;
  pointer-events: none;
}
.blob-teal { width: 230px; height: 230px; background: #6FE3B4; top: -80px; left: -60px; animation: blobFloat1 10s ease-in-out infinite; }
.blob-purple { width: 220px; height: 220px; background: #6B46B8; bottom: -80px; right: -50px; animation: blobFloat2 12s ease-in-out infinite; }
.blob-blue { width: 190px; height: 190px; background: var(--teal-500); bottom: 10px; left: -50px; opacity: .55; animation: blobFloat3 14s ease-in-out infinite; }
@keyframes blobFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(24px,18px) scale(1.14); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-18px,-20px) scale(1.1); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(16px,-14px) scale(1.08); }
}
.network-svg { width: 100%; display: block; position: relative; z-index: 1; }
.network-caption {
  margin-top: 2px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6FE3B4;
  position: relative;
  z-index: 1;
}
.node-pulse { animation: net-pulse 2.6s ease-in-out infinite; transform-origin: center; }
.node-pulse.d1 { animation-delay: .2s; }
.node-pulse.d2 { animation-delay: .7s; }
.node-pulse.d3 { animation-delay: 1.2s; }
.node-pulse.d4 { animation-delay: 1.7s; }
@keyframes net-pulse {
  0%, 100% { opacity: .6; }
  50% { opacity: 1; }
}
/* Barrido de radar en giro continuo (solo transform: rotate) */
.radar-sweep {
  transform-box: view-box;
  transform-origin: 250px 175px;
  animation: radarSpin 7s linear infinite;
  mix-blend-mode: screen;
}
@keyframes radarSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.ring-breathe { animation: ringBreathe 4.5s ease-in-out infinite; transform-origin: 250px 175px; }
@keyframes ringBreathe {
  0%, 100% { transform: scale(1); opacity: .3; }
  50% { transform: scale(1.05); opacity: .55; }
}
.link-lines { animation: dashFlow 1.2s linear infinite; }
@keyframes dashFlow { to { stroke-dashoffset: -16; } }

/* page hero (simpler, for inner pages) */
.page-hero { padding: 56px 0 44px; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); max-width: 22ch; }
.page-hero p.lede { max-width: 60ch; }

/* ============================================================
   SECTION HELPERS
   ============================================================ */
section { padding: 84px 0; }
section.tight { padding: 56px 0; }
section.on-paper-raised { background: var(--paper-raised); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin: 0 0 40px; text-align: left; }
.section-head .eyebrow { color: var(--teal-700); justify-content: center; }
.section-head.left .eyebrow { justify-content: flex-start; }
.section-head .eyebrow::before { background: var(--teal-700); }
.section-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }

hr.rule { border: none; border-top: 1px solid var(--line); margin: 16px 0 28px; width: 64px; border-top-width: 3px; border-color: var(--jade-500); border-radius: 3px; }

/* ============================================================
   FEATURE / VALUE CARDS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2,1fr); } }

.card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal-500);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
}
.card.jade { border-left-color: var(--jade-500); }
.card.indigo { border-left-color: var(--indigo-500); }
.card.coral { border-left-color: var(--violet-600); }
.card .icon { font-size: 26px; display: inline-block; margin-bottom: 12px; }
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: 0.96rem; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 980px) { .plans-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

.plan {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }
.plan.featured {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 1px var(--teal-500), var(--shadow-1);
  background: linear-gradient(180deg, rgba(28,143,174,0.10) 0%, rgba(28,143,174,0.02) 160px, var(--paper-raised) 160px);
}
.plan.featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--teal-500), var(--jade-500));
}
.plan-badge {
  position: absolute; top: -13px; left: 28px;
  background: var(--violet-600); color: #fff;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.05em;
  padding: 5px 12px; border-radius: 999px; text-transform: uppercase;
}
.plan-name { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 800; font-size: 1.15rem; margin-bottom: 14px; }
.plan-price-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.plan-price { font-family: var(--mono); font-weight: 700; font-size: 2rem; color: var(--indigo-700); line-height: 1.15; margin-bottom: 4px; }
.plan-price small { font-family: var(--body); font-weight: 600; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); display: block; margin-top: 4px; }

/* Tooltip: precio anual (10% de descuento) */
.tooltip-trigger {
  position: relative;
  flex: none;
  width: 24px; height: 24px;
  margin-top: 4px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper-raised);
  color: var(--teal-700);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.tooltip-trigger:hover,
.tooltip-trigger:focus-visible,
.tooltip-trigger.active {
  background: var(--teal-700);
  color: #fff;
  border-color: var(--teal-700);
}
.tooltip-trigger::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  right: -6px;
  width: 220px;
  background: var(--ink);
  color: #eaf6f4;
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  padding: 11px 13px;
  border-radius: 10px;
  box-shadow: var(--shadow-1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 30;
}
.tooltip-trigger::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 4px);
  right: 6px;
  border: 6px solid transparent;
  border-top-color: var(--ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
  z-index: 31;
}
.tooltip-trigger:hover::after, .tooltip-trigger:hover::before,
.tooltip-trigger:focus-visible::after, .tooltip-trigger:focus-visible::before,
.tooltip-trigger.active::after, .tooltip-trigger.active::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.plan-desc { font-size: 0.93rem; margin-bottom: 18px; min-height: 3.2em; }
.plan hr.rule { margin: 0 0 20px; }
.plan-features { list-style: none; margin: 0 0 24px; padding: 0; flex-grow: 1; }
.plan-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; margin-bottom: 12px; color: var(--ink); }
.plan-features li .tick { color: var(--jade-500); font-weight: 800; flex: none; margin-top: 1px; }
.plan-note { font-size: 0.83rem; margin-bottom: 16px; }
.plan-note a { color: var(--teal-700); font-weight: 700; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-raised); }
table.compare { width: 100%; border-collapse: collapse; min-width: 620px; }
table.compare th, table.compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
table.compare thead th { background: var(--ink); color: #cfe9ef; font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; }
table.compare thead th:first-child { border-top-left-radius: var(--radius); }
table.compare thead th:last-child { border-top-right-radius: var(--radius); }
table.compare tbody th { font-weight: 700; color: var(--ink); background: var(--paper); white-space: nowrap; }
table.compare td { font-family: var(--mono); font-size: 0.88rem; color: var(--ink-soft); }
table.compare tbody tr:last-child th, table.compare tbody tr:last-child td { border-bottom: none; }
table.compare thead th.highlight { background: var(--teal-500); color: #fff; }
table.compare tbody td.highlight, table.compare tbody th.highlight { background: rgba(47,191,149,0.14); }
table.compare tbody td.highlight { font-weight: 700; color: var(--ink); }
table.compare .plan-col-name { display: flex; align-items: center; gap: 6px; font-family: var(--body); }

/* ============================================================
   SPEC TABS (hosting technical detail)
   ============================================================ */
.tabs-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tab-btn {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.01em;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.tab-btn:hover { border-color: var(--teal-500); color: var(--teal-700); }
.tab-btn.active { background: var(--ink); color: #cfe9ef; border-color: var(--ink); }
.tab-panel { display: none; background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; }
.tab-panel.active { display: block; }
.spec-list { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 32px; }
@media (max-width: 700px) { .spec-list { columns: 1; } }
.spec-list li { break-inside: avoid; display: flex; gap: 10px; font-size: 0.94rem; margin-bottom: 13px; align-items: flex-start; }
.spec-list li .tick { color: var(--teal-700); font-weight: 800; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { list-style: none; margin: 0; padding: 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--teal-700); flex: none; font-family: var(--mono); transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 0 22px; max-width: 68ch; }
.faq-cols { columns: 2; column-gap: 48px; }
@media (max-width: 800px) { .faq-cols { columns: 1; } }
.faq-cols .faq-item { break-inside: avoid; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 7px; }
.field .req { color: var(--coral-500); }
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--teal-500); }
.field textarea { resize: vertical; min-height: 120px; }

.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-item .badge {
  width: 44px; height: 44px; border-radius: 50%; background: var(--teal-700); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex: none;
}
.contact-info-item h3 { margin-bottom: 4px; font-size: 0.98rem; }
.contact-info-item p { margin-bottom: 2px; font-size: 0.94rem; }
.contact-info-item a { text-decoration: none; color: var(--teal-700); font-weight: 700; }

.channel-row { display: flex; gap: 16px; flex-wrap: wrap; }
.channel-card { flex: 1 1 200px; background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; text-align: center; }
.channel-card .badge { margin: 0 auto 12px; }
.channel-card h4 { margin-bottom: 6px; font-size: 0.95rem; }
.channel-card p { font-size: 0.86rem; margin-bottom: 14px; }

/* ============================================================
   PAYMENT / TRUST STRIP
   ============================================================ */
.trust-strip { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.trust-pill {
  font-family: var(--mono); font-size: 12.5px; color: var(--ink-soft);
  border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; background: var(--paper-raised);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 28px;
  font-size: 0.92rem;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
footer h4 { color: #fff; font-family: var(--display); font-size: 0.95rem; margin-bottom: 16px; }
footer .brand-word { color: #fff; }
footer ul { list-style: none; margin: 0; padding: 0; }
footer li { margin-bottom: 10px; }
footer a { text-decoration: none; color: rgba(255,255,255,0.72); transition: color 0.15s; }
footer a:hover { color: var(--jade-300); }
.footer-desc { max-width: 32ch; font-size: 0.9rem; color: rgba(255,255,255,0.62); margin-top: 14px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { border-color: var(--jade-300); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-pay { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.footer-pay span { border: 1px solid rgba(255,255,255,0.18); padding: 4px 10px; border-radius: 6px; font-family: var(--mono); font-size: 11px; }

/* ============================================================
   MISC
   ============================================================ */
.mono { font-family: var(--mono); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.stat-row { display: flex; gap: 24px; margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.16); }
.stat { flex: 1 1 0; min-width: 0; }
.stat .num { font-family: var(--mono); font-weight: 700; font-size: 1.6rem; color: #fff; }
.stat .label { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }

.badge-pill {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px;
  background: var(--jade-300); color: #05271e; padding: 6px 14px; border-radius: 999px; font-weight: 700;
}

.callout {
  background: linear-gradient(135deg, var(--indigo-700), var(--teal-700));
  color: #fff;
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}
.callout h2 { color: #fff; }
.callout p { color: rgba(255,255,255,0.85); max-width: 56ch; margin-inline: auto; }
.callout .hero-actions { justify-content: center; }

.breadcrumb-eyebrow { color: var(--teal-300) !important; }

/* Legal copy pages */
.legal-copy h3 { margin-top: 2em; font-size: 1.15rem; }
.legal-copy ul { padding-left: 1.2em; color: var(--ink-soft); }
.legal-copy li { margin-bottom: 0.5em; }
.legal-copy a { color: var(--teal-700); font-weight: 700; text-decoration: underline; }

/* ============================================================
   MODAL (ventana emergente de confirmación del formulario)
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14,34,47,0.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}
.modal-overlay[hidden] { display: none; }
.modal-box {
  position: relative;
  background: var(--paper-raised);
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow: 0 20px 60px -20px rgba(14,34,47,0.45);
  animation: modal-in 0.18s ease;
  border-top: 4px solid var(--jade-500);
}
.modal-overlay.modal-error .modal-box { border-top-color: var(--coral-500); }
@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 6px;
}
.modal-close:hover { color: var(--ink); }
.modal-icon { font-size: 42px; margin-bottom: 10px; }
.modal-box h3 { margin-bottom: 10px; font-size: 1.2rem; }
.modal-box p { margin-bottom: 26px; font-size: 0.95rem; }
.modal-ok { padding: 11px 30px; }
