/* ============================================================
   TOKENS — DESIGN SYSTEM (idénticos al HOME validado)
   ============================================================ */
:root {
  --navy:          #0D1B2A;
  --navy-light:    #152236;
  --navy-dark:     #080F18;
  --aegis-black:   #0A0E17;
  --gold:          #B8975A;
  --gold-dm:       #C4A466;
  --bg:            #F8F7F4;
  --bg-alt:        #F2F0EB;
  --white:         #FFFFFF;
  --gray-dark:     #2C3E50;
  --gray-mid:      #6B7B8D;
  --gray-light:    #B0BEC5;
  --gray-lightest: #ECEFF1;
  --red:           #C0392B;
  --red-light:     rgba(192,57,43,0.08);
  --gold-light:    rgba(184,151,90,0.08);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1rem; line-height: 1.6; color: var(--gray-dark);
  background: var(--bg); -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 100%; margin: 0 auto; padding: 0 20px; }
.section   { padding: 48px 0; }
.sec-white { background: var(--white); }
.sec-bg    { background: var(--bg); }
.sec-alt   { background: var(--bg-alt); }
.sec-navy  { background: var(--navy); }
.grid-2    { display: grid; grid-template-columns: 1fr; gap: 16px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 { font-size: 2rem;   font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; }
h2 { font-size: 1.5rem; font-weight: 700; line-height: 1.2;  letter-spacing: -0.02em; }
h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.25; }

.label {
  display: block; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.label-dm   { color: var(--gold-dm); }
.text-white { color: var(--bg); }
.text-muted { color: var(--gray-mid); font-style: italic; }

/* ============================================================
   HEADER — Idéntico al HOME validado
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  height: 56px; background: var(--white);
  box-shadow: 0 1px 0 rgba(13,27,42,0.08), 0 2px 8px rgba(13,27,42,0.06);
}
.header-inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; max-width: 100%; padding: 0 20px;
}
.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; text-decoration: none; }
.logo-text   { font-size: 15px; font-weight: 800; letter-spacing: -0.03em; }
.logo-shield { color: var(--navy); }
.logo-quant  { color: var(--gold); }

.nav-desktop { display: none; }
.nav-cta     { display: none !important; }
.nav-link {
  font-size: 0.8125rem; font-weight: 500; color: var(--gray-mid);
  letter-spacing: 0.04em; padding: 4px 0;
  border-bottom: 2px solid transparent;
  border-top: none; border-left: none; border-right: none;
  background: none; font-family: inherit; cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
  text-decoration: none; display: inline-block;
}
.nav-link:hover { color: var(--navy); }
.nav-link.active { color: var(--navy); border-bottom-color: var(--gold); font-weight: 600; }

.burger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all 0.22s ease; transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
  display: none; position: fixed; top: 56px; left: 0; right: 0;
  background: var(--white); box-shadow: 0 8px 24px rgba(13,27,42,0.12);
  z-index: 899; padding: 8px 0 24px;
}
.mob-menu.open { display: block; }
.mob-link {
  display: block; padding: 14px 20px;
  font-size: 1rem; font-weight: 500; color: var(--gray-dark);
  border-left: 3px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
}
.mob-link:hover { background: var(--bg-alt); }
.mob-link.active {
  color: var(--navy); border-left-color: var(--gold);
  font-weight: 600; background: var(--bg-alt);
}
.mob-link-cta { display: block; margin: 12px 20px 0; }

/* ============================================================
   BUTTONS — Idénticos al HOME validado
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit; font-size: 0.9375rem; font-weight: 600;
  letter-spacing: 0.04em; padding: 14px 28px; border-radius: 3px;
  cursor: pointer; border: none;
  transition: background 0.18s ease, transform 0.12s ease, opacity 0.18s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--navy); color: var(--bg);
  border: 1.5px solid transparent;
}
.btn-primary:hover {
  background: var(--bg); color: var(--navy);
  border-color: var(--navy);
}
.btn-primary:disabled {
  background: var(--gray-light); color: var(--white);
  border-color: transparent; cursor: not-allowed; transform: none; opacity: 0.6;
}
.btn-ghost {
  background: transparent; color: var(--bg);
  border: 1.5px solid rgba(248,247,244,0.55);
}
.btn-ghost:hover { background: var(--bg); color: var(--navy); border-color: var(--bg); }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   HERO — PÁGINA ACCESO
   ============================================================ */
.page-hero {
  padding: 72px 0 64px;
  background: var(--navy);
  text-align: center;
}
.hero-subtitle {
  font-size: 1rem; color: rgba(248,247,244,0.75);
  line-height: 1.75; margin: 20px auto 0; max-width: 860px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 0.5px solid var(--gray-lightest);
  border-radius: 3px; padding: 24px 22px;
}
.card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.card p  { font-size: 0.875rem; color: var(--gray-dark); line-height: 1.7; }

/* ============================================================
   MODO OSCURO .sec-navy — Reglas sistemáticas (igual que HOME)
   ============================================================ */
.sec-navy h1, .sec-navy h2, .sec-navy h3, .sec-navy h4 { color: var(--bg); }
.sec-navy p, .sec-navy li { color: rgba(248,247,244,0.80); }
.sec-navy .card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,151,90,0.20);
}
.sec-navy .card h3 { color: var(--bg); }
.sec-navy .card p  { color: rgba(248,247,244,0.78); }

/* ============================================================
   PASOS — S4 (Cómo funciona)
   ============================================================ */
.pasos { display: flex; flex-direction: column; gap: 0; }
.paso {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 20px; padding: 28px 0;
  border-bottom: 1px solid var(--gray-lightest);
  align-items: start;
}
.paso:first-child { border-top: 1px solid var(--gray-lightest); }
.paso-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9375rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.paso-content h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.paso-content p  { font-size: 0.9rem; line-height: 1.75; color: var(--gray-dark); }
.paso-badge {
  display: inline-block; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold-light); color: var(--gold);
  border: 1px solid rgba(184,151,90,0.25);
  border-radius: 2px; padding: 2px 7px; margin-bottom: 8px;
}

/* ============================================================
   TABLA PERFIL — S2
   ============================================================ */
.perfil-table-wrap {
  overflow-x: auto; border-radius: 3px;
  border: 0.5px solid var(--gray-lightest); margin-top: 28px;
}
.perfil-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.9rem; background: var(--white); min-width: 560px;
}
.perfil-table thead tr { background: var(--navy); }
.perfil-table th {
  padding: 14px 20px; text-align: left;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--bg);
}
.perfil-table th:first-child { color: var(--gold-dm); }
.perfil-table th:last-child  { color: rgba(248,247,244,0.6); }
.perfil-table td {
  padding: 14px 20px; vertical-align: top;
  line-height: 1.65; color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-lightest);
}
.perfil-table tr:last-child td { border-bottom: none; }
.perfil-table tr:nth-child(even) td { background: var(--bg); }
.perfil-table td:first-child {
  font-weight: 500; color: var(--navy);
  border-right: 1px solid var(--gray-lightest);
}
.check { color: #2E86AB; font-weight: 700; margin-right: 6px; }
.cross { color: var(--gray-light); margin-right: 6px; }

/* ============================================================
   FORMULARIO — S6
   ============================================================ */
.form-section { display: grid; grid-template-columns: 1fr; gap: 0; align-items: stretch; }

/* Columna izquierda — navy */
.form-col-copy {
  background: var(--navy); border-radius: 3px 3px 0 0; padding: 32px 28px;
}
.form-col-copy-label {
  display: block; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-dm); margin-bottom: 10px;
}
.form-col-copy p {
  font-size: 0.875rem; color: rgba(248,247,244,0.72);
  line-height: 1.75; margin-bottom: 12px;
}
.form-col-copy p:last-of-type { margin-bottom: 0; }
.form-col-copy hr { border: none; border-top: 1px solid rgba(248,247,244,0.1); margin: 20px 0; }

.no-compromise {
  background: rgba(184,151,90,0.10);
  border: 1px solid rgba(184,151,90,0.25);
  border-radius: 3px; padding: 14px 16px; margin-top: 20px;
  font-size: 0.8125rem; color: rgba(248,247,244,0.80); line-height: 1.65;
}
.no-compromise strong { color: var(--gold-dm); }

/* Columna derecha — formulario */
.form-box {
  background: var(--bg-alt);
  border: 0.5px solid var(--gray-lightest);
  border-radius: 0 0 3px 3px; padding: 32px 28px;
}

/* Form rows — 2 columnas en desktop */
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-size: 0.8125rem; font-weight: 600; color: var(--navy); }
.form-label .opt { font-weight: 400; color: var(--gray-mid); font-size: 0.75rem; }

/* Inputs */
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 13px;
  border: 1px solid var(--gray-lightest); border-radius: 3px;
  font-family: inherit; font-size: 0.9375rem; color: var(--gray-dark);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,27,42,0.07);
}
.form-input.err, .form-select.err, .form-textarea.err {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,0.07);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7B8D' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
  padding-right: 34px; cursor: pointer;
}
.form-textarea { min-height: 120px; resize: vertical; line-height: 1.6; }

/* Fila teléfono */
.phone-row { display: grid; grid-template-columns: 180px 1fr; gap: 10px; }

/* Nota y error */
.form-note { font-size: 0.6875rem; color: var(--gray-mid); line-height: 1.5; }
.form-err  { display: none; font-size: 0.6875rem; color: var(--red); font-weight: 500; }
.form-err.show { display: block; }

/* Alerta EE.UU. */
.us-alert {
  display: none; font-size: 0.8125rem; color: var(--red);
  background: var(--red-light); border: 1px solid rgba(192,57,43,0.2);
  border-radius: 3px; padding: 10px 14px; margin-top: 6px; line-height: 1.55;
}
.us-alert.show { display: block; }

/* Campo condicional canal */
.field-condicional { display: none; margin-top: 10px; }
.field-condicional.show { display: flex; flex-direction: column; gap: 5px; }

/* Consentimiento */
.form-consent {
  font-size: 0.6875rem; color: var(--gray-mid);
  line-height: 1.7; margin: 20px 0;
}
.form-consent a { text-decoration: underline; color: var(--gray-mid); }
.form-consent a:hover { color: var(--navy); }

/* Confirmación post-envío */
.conf-box { display: none; text-align: center; padding: 48px 20px; }
.conf-box.show { display: block; }
.conf-check {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.conf-box h2 { color: var(--navy); margin-bottom: 14px; font-size: 1.25rem; }
.conf-box p  { font-size: 0.9375rem; color: var(--gray-dark); line-height: 1.75; max-width: 480px; margin: 0 auto 10px; }
.conf-note   { font-size: 0.8125rem; font-style: italic; color: var(--gray-mid); margin-top: 8px; }

/* ============================================================
   ACCORDION FAQ — S5
   ============================================================ */
.accordion { display: flex; flex-direction: column; gap: 0; }
.acc-item { border-bottom: 1px solid var(--gray-lightest); }
.acc-item:first-child { border-top: 1px solid var(--gray-lightest); }
.acc-head {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 18px 0; background: none; border: none;
  font-family: inherit; font-size: 0.9375rem; font-weight: 600;
  color: var(--navy); cursor: pointer; text-align: left;
  transition: color 0.15s ease;
}
.acc-head:hover { color: var(--gold); }
.acc-icon {
  font-size: 1.25rem; font-weight: 400; color: var(--gold);
  flex-shrink: 0; transition: transform 0.2s ease; line-height: 1;
}
.acc-head.open .acc-icon { transform: rotate(45deg); }
.acc-body { display: none; padding: 0 0 20px; }
.acc-body.open { display: block; }
.acc-body p { font-size: 0.9rem; line-height: 1.75; color: var(--gray-dark); margin-bottom: 10px; }
.acc-body p:last-child { margin-bottom: 0; }

/* ============================================================
   ANIMACIONES — Idénticas al HOME validado
   ============================================================ */
.anim {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.anim.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ============================================================
   FOOTER — Idéntico al HOME validado
   ============================================================ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(184,151,90,0.18);
  padding: 44px 0 40px;
}
.footer-top { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.footer-tagline {
  font-size: 0.8125rem; color: rgba(248,247,244,0.45);
  font-style: italic; margin-top: 6px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 16px; }
.footer-links a {
  font-size: 0.8125rem; color: rgba(248,247,244,0.50);
  transition: color 0.15s ease; text-decoration: none;
}
.footer-links a:hover { color: var(--gold-dm); }
.footer-sep {
  border: none; border-top: 1px solid rgba(248,247,244,0.22);
  margin: 20px 0 16px;
}
.footer-disclaimer {
  font-size: 0.75rem; color: rgba(248,247,244,0.35);
  line-height: 1.65; max-width: 1400px; margin-bottom: 14px;
}
.footer-copy { font-size: 0.75rem; color: rgba(248,247,244,0.25); }

/* ============================================================
   label-dm — escalado por breakpoint (igual que HOME)
   ============================================================ */
@media (min-width: 1024px) { .label-dm { font-size: 0.6875rem; } }
@media (min-width: 1440px) { .label-dm { font-size: 0.75rem; }   }
@media (min-width: 1920px) { .label-dm { font-size: 0.8125rem; } }

/* ============================================================
   RESPONSIVE — TABLET ≥768px
   ============================================================ */
@media (min-width: 768px) {
  .container { padding: 0 40px; }
  .section   { padding: 72px 0; }
  .page-hero { padding: 96px 0 80px; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.2rem; }
  .grid-2    { grid-template-columns: 1fr 1fr; gap: 28px; }
  .site-header { height: 58px; }
  .header-inner { padding: 0 40px; }
  .mob-menu  { top: 58px; }
  .footer-top { flex-direction: row; align-items: flex-start; justify-content: space-between; }
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — DESKTOP ≥1024px
   ============================================================ */
@media (min-width: 1024px) {
  .container { max-width: 1200px; padding: 0 64px; }
  .section   { padding: 96px 0; }
  .page-hero { padding: 112px 0 96px; }
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.3rem; }
  body  { font-size: 1.0625rem; }
  .label { font-size: 0.75rem; }
  .nav-link { font-size: 0.875rem; }
  .nav-desktop { display: flex; align-items: center; gap: 28px; }
  .nav-cta { display: inline-flex !important; }
  .burger  { display: none; }
  .site-header  { height: 60px; }
  .header-inner { padding: 0 64px; }
  /* Formulario: 2 columnas */
  .form-section  { grid-template-columns: 38% 1fr; gap: 0; }
  .form-col-copy { border-radius: 3px 0 0 3px; }
  .form-box      { border-radius: 0 3px 3px 0; border-left: none; }
}

/* ============================================================
   RESPONSIVE — LAPTOP ≥1280px  (rango 1280–1439px)
   ============================================================ */
@media (min-width: 1280px) and (max-width: 1439px) {
  .container    { max-width: 1280px; padding: 0 72px; }
  .section      { padding: 108px 0; }
  .page-hero    { padding: 128px 0 108px; }
  .header-inner { padding: 0 72px; }
  h1   { font-size: 3rem; }
  h2   { font-size: 2.2rem; }
  h3   { font-size: 1.4rem; }
  body { font-size: 1.09375rem; }
  .nav-link      { font-size: 0.9rem; }
  .hero-subtitle { font-size: 1.0625rem; }
}

/* ============================================================
   RESPONSIVE — LARGE ≥1440px
   ============================================================ */
@media (min-width: 1440px) {
  .container    { max-width: 1400px; padding: 0 80px; }
  .section      { padding: 120px 0; }
  .page-hero    { padding: 136px 0 116px; }
  h1   { font-size: 3.25rem; }
  h2   { font-size: 2.4rem; }
  h3   { font-size: 1.5rem; }
  body { font-size: 1.125rem; }
  .label        { font-size: 0.8rem; }
  .nav-link     { font-size: 0.9375rem; }
  .site-header  { height: 62px; }
  .hero-subtitle { font-size: 1.125rem; max-width: 920px; }
  /* Formulario: ajuste proporciones en pantallas grandes */
  .form-section  { grid-template-columns: 36% 1fr; }
}

/* ============================================================
   RESPONSIVE — FULL HD ≥1920px
   ============================================================ */
@media (min-width: 1920px) {
  .container    { max-width: 1600px; padding: 0 100px; }
  .section      { padding: 140px 0; }
  .page-hero    { padding: 156px 0 132px; }
  .header-inner { padding: 0 100px; }
  h1   { font-size: 4rem; }
  h2   { font-size: 2.85rem; }
  h3   { font-size: 1.75rem; }
  body { font-size: 1.1875rem; }
  .label        { font-size: 0.875rem; }
  .nav-link     { font-size: 1rem; }
  .site-header  { height: 64px; }
  .mob-menu     { top: 64px; }
  .hero-subtitle { font-size: 1.25rem; max-width: 1000px; }
  /* Formulario: proporciones óptimas en full HD */
  .form-section  { grid-template-columns: 34% 1fr; }
  .form-col-copy { padding: 40px 36px; }
  .form-box      { padding: 40px 36px; }
  .card p        { font-size: 1rem; }
  .paso-content p { font-size: 1rem; }
  .perfil-table  { font-size: 1rem; }
  .acc-head      { font-size: 1.0625rem; }
  .acc-body p    { font-size: 1rem; }
}


/* ============================================================
   SQ v1.7 — HARDENING GLOBAL Y CABECERA ESTABLE
   Objetivo: HTML autocontenido, navegación local y cabecera sin
   desplazamiento sistémico entre páginas.
   ============================================================ */
:root {
  --sq-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
body,
button,
input,
select,
textarea {
  font-family: var(--sq-font-sans);
}
.site-header .header-inner {
  width: 100%;
  margin-inline: auto;
}
.site-header .logo,
.site-header .logo-text,
.site-header .nav-desktop,
.site-header .nav-link,
.site-header .nav-cta,
.site-header .btn-back,
.site-header .burger {
  font-family: var(--sq-font-sans) !important;
}
.site-header .logo,
.site-header .nav-desktop,
.site-header .nav-cta,
.site-header .btn-back,
.site-header .burger,
.site-header .btn-primary {
  flex-shrink: 0;
}
.site-header .logo-text {
  line-height: 1;
  white-space: nowrap;
}
.site-header .nav-link,
.site-header .nav-link.active,
.site-header .mob-link,
.site-header .mob-link.active {
  font-weight: 500 !important;
}
.site-header .nav-link {
  text-rendering: geometricPrecision;
  transition-property: color, border-color !important;
}
.site-header .btn:active,
.site-header .nav-cta:active,
.site-header .btn-back:active,
.site-header .btn-primary:active {
  transform: none !important;
}
@media (min-width: 1024px) {
  .site-header .header-inner {
    display: grid !important;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    column-gap: 24px;
  }
  .site-header .logo {
    grid-column: 1;
    justify-self: start;
  }
  .site-header .nav-desktop {
    grid-column: 2;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header .nav-cta,
  .site-header .btn-back,
  .site-header .header-inner > .btn-primary:last-child {
    grid-column: 3;
    justify-self: end;
  }
}
.form-status {
  display: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 3px;
  font-size: 0.8125rem;
  line-height: 1.6;
}
.form-status.show { display: block; }
.form-status.err {
  color: var(--red, #C0392B);
  background: var(--red-light, rgba(192,57,43,0.08));
  border: 1px solid rgba(192,57,43,0.22);
}
.form-status.ok {
  color: var(--navy, #0D1B2A);
  background: var(--gold-light, rgba(184,151,90,0.08));
  border: 1px solid rgba(184,151,90,0.25);
}
