/* =====================================================================
   SEGURÓX — Sitio corporativo
   Sistema visual basado en el Manual de Identidad Corporativa (MIC).
   Paleta: Azul #1F4FE0 · Aqua #24C7B5 · Grafito #101215 · Niebla #F7F8FA
   Tipografía: Poppins (marca/texto) + JetBrains Mono (datos técnicos)
   ===================================================================== */

/* ----------  TOKENS  ---------- */
:root {
  /* Paleta corporativa */
  --blue:      #1F4FE0;
  --blue-700:  #123399;
  --blue-tint: #C6D3F7;
  --aqua:      #24C7B5;
  --aqua-deep: #08322C;
  --ink:       #101215;   /* Grafito */
  --ink-80:    #2B3140;
  --ink-60:    #3A414A;
  --fog:       #F7F8FA;   /* Niebla */
  --white:     #FFFFFF;
  --grey:      #656E7A;
  --grey-40:   #9AA3AE;
  --line:      #DCE0E6;
  --line-2:    #EEF1F5;
  --danger:    #E0455A;

  /* Semántica clara / superficie */
  --bg:        var(--white);
  --bg-soft:   var(--fog);
  --text:      var(--ink);
  --text-soft: var(--grey);
  --border:    var(--line);

  /* Tipografía */
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  /* Métricas */
  --container: 1360px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 4px;
  --radius-lg: 10px;

  /* Movimiento */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.6s;

  --header-h: clamp(84px, 10vw, 132px); /* barra más alta para acoger el logotipo ampliado */
}

/* ----------  RESET  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
}

/* ----------  LAYOUT  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.--wide { max-width: 1560px; }
.container.--narrow { max-width: 1080px; }
.section { padding-block: clamp(3.25rem, 6.5vw, 7rem); position: relative; }
.section.--tight { padding-block: clamp(2.5rem, 4.5vw, 4.5rem); }

/* ----------  TIPOGRAFÍA  ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--blue);
  display: inline-block;
}
.eyebrow.--muted { color: var(--grey); }
.eyebrow.--muted::before { background: var(--grey-40); }

.display {
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.d-hero  { font-size: clamp(2.2rem, min(8.4vw, 12vh), 6.8rem); line-height: 1.06; }
.d-xl    { font-size: clamp(2.6rem, 6.4vw, 5.4rem); }
.d-lg    { font-size: clamp(2rem, 4.2vw, 3.6rem); line-height: 1.04; letter-spacing: -0.025em; }
.d-md    { font-size: clamp(1.6rem, 2.8vw, 2.5rem); line-height: 1.08; letter-spacing: -0.02em; }
.d-sm    { font-size: clamp(1.25rem, 1.8vw, 1.6rem); line-height: 1.12; letter-spacing: -0.015em; }

.lead { font-size: clamp(1.2rem, 1.9vw, 1.65rem); line-height: 1.5; font-weight: 400; color: var(--ink-60); }
.text-soft { color: var(--text-soft); }
.accent { color: var(--blue); }
.accent-aqua { color: var(--aqua); }

/* ----------  BOTONES / ENLACES  ---------- */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: var(--white);
  display: inline-flex; align-items: center; gap: 0.7em;
  padding: 0.95em 1.6em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  will-change: transform;
}
.btn span { position: relative; z-index: 1; }
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
  z-index: 0;
}
.btn:hover { box-shadow: 0 14px 34px -12px rgba(31,79,224,.55); }
.btn:hover::after { transform: translateY(0); }
.btn.--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border: 1.5px solid var(--line); }
.btn.--ghost::after { background: var(--ink); }
.btn.--ghost:hover { --btn-fg: var(--white); border-color: var(--ink); box-shadow: none; }
.btn.--light { --btn-bg: var(--white); --btn-fg: var(--ink); }
.btn.--light::after { background: var(--blue); }
.btn.--light:hover span { color: var(--white); }
.btn.--lg { padding: 0.85em 1.5em; font-size: clamp(1.2rem, 1.9vw, 1.65rem); }

.header__cta { width: 46px; height: 46px; padding: 0; justify-content: center; border-radius: 50%; gap: 0; flex: 0 0 auto; }
.header__cta svg { display: block; position: relative; z-index: 1; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-weight: 600; font-size: 15px; color: var(--ink);
  transition: gap .4s var(--ease), color .3s var(--ease);
}
.arrow-link .ico { transition: transform .4s var(--ease); }
.arrow-link:hover { gap: 1.1em; color: var(--blue); }
.arrow-link:hover .ico { transform: translateX(3px); }
.arrow-link.--on-dark { color: var(--white); }
.arrow-link.--on-dark:hover { color: var(--aqua); }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: transform .5s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.header__row { display: flex; align-items: center; justify-content: space-between; gap: 2rem; width: 100%; }
.header__logo { display: block; width: clamp(158px, 16vw, 320px); }
.header__logo .wordmark { fill: var(--white); transition: fill .4s var(--ease); }

/* estado con fondo (tras el hero) */
.header.is-solid {
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line-2), 0 10px 30px -22px rgba(16,18,21,.4);
}
.header.is-solid .header__logo .wordmark { fill: var(--ink); }
.header.is-solid .nav__link { color: var(--ink); }
.header.is-solid .lang a { color: var(--grey); }
.header.is-solid .lang a.is-current { color: var(--ink); }
.header.is-hidden { transform: translateY(-105%); }

.nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.2vw, 2.6rem); }
.nav__link {
  position: relative; color: var(--white); font-weight: 500; font-size: 15.5px;
  padding: 0.3em 0; transition: color .3s var(--ease); letter-spacing: -0.01em;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.nav__link:hover::after, .nav__item:hover .nav__link::after { transform: scaleX(1); }
.nav__item { position: relative; }
.nav__item .caret { display: inline-block; margin-left: 4px; transition: transform .3s var(--ease); }
.nav__item:hover .caret { transform: rotate(180deg); }

/* Mega-menú Soluciones
   Clave anti-parpadeo: `.megamenu` (el activador de :hover) es una caja CONTINUA
   desde top:100% — sin ningún hueco de posición — así el cursor nunca abandona
   la cadena de descendientes de `.nav__item` al bajar hacia el menú. El espacio
   visual respecto al enlace se consigue con padding-top, que sigue formando
   parte de la misma caja hoverable (a diferencia de un `top` desplazado, que
   deja una franja muerta). El deslizamiento de entrada se anima en el panel
   interior (`.megamenu__panel`), no en esta caja exterior. */
.megamenu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: min(760px, 88vw);
  padding-top: 22px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s var(--ease), visibility .35s;
}
.nav__item:hover .megamenu { opacity: 1; visibility: visible; pointer-events: auto; }
.megamenu__panel {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -30px rgba(16,18,21,.35);
  padding: 14px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  transform: translateY(8px);
  transition: transform .35s var(--ease);
}
.nav__item:hover .megamenu__panel { transform: translateY(0); }
.megamenu__item { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border-radius: 8px; transition: background .3s var(--ease); }
.megamenu__item:hover { background: var(--fog); }
.megamenu__ico {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 9px;
  background: var(--fog); display: grid; place-items: center; color: var(--blue);
  border: 1px solid var(--line-2); transition: background .3s var(--ease), color .3s var(--ease);
}
.megamenu__item:hover .megamenu__ico { background: var(--blue); color: var(--white); }
.megamenu__t { display: block; font-weight: 600; font-size: 15.5px; letter-spacing: -0.01em; }
.megamenu__d { font-size: 13px; color: var(--grey); line-height: 1.45; margin-top: 2px; }

.lang { display: inline-flex; gap: 2px; font-family: var(--font-mono); font-size: 12.5px; font-weight: 500; }
.lang a { color: rgba(255,255,255,.6); padding: 4px 6px; transition: color .3s var(--ease); }
.lang a.is-current { color: var(--white); }
.header__cta { display: inline-flex; }
.header__actions { display: flex; align-items: center; gap: clamp(0.9rem, 1.6vw, 1.6rem); }

/* Hamburguesa */
.burger { display: none; width: 44px; height: 44px; position: relative; z-index: 120; }
.burger span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--white); transition: transform .4s var(--ease), background .4s var(--ease), opacity .3s; }
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { bottom: 17px; }
.header.is-solid .burger span { background: var(--ink); }
body.menu-open .burger span { background: var(--white); }
body.menu-open .burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { transform: translateY(-5px) rotate(-45deg); }

/* Panel móvil */
.mobile-nav {
  position: fixed; inset: 0; z-index: 110;
  background: var(--ink);
  color: var(--white);
  padding: calc(var(--header-h) + 24px) var(--gutter) 40px;
  display: flex; flex-direction: column;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease);
  pointer-events: none;
  overflow-y: auto;
}
body.menu-open .mobile-nav { clip-path: inset(0 0 0 0); pointer-events: auto; }
.mobile-nav a { color: var(--white); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav .m-link { font-size: clamp(2rem, 8vw, 3rem); font-weight: 700; letter-spacing: -0.02em; padding: 8px 0; display: inline-block; }
.mobile-nav .m-link .idx { font-family: var(--font-mono); font-size: 13px; color: var(--aqua); vertical-align: super; margin-right: 10px; font-weight: 500; }
.mobile-nav__foot { margin-top: auto; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: center; justify-content: space-between; }
.mobile-nav__foot a.dim { color: var(--grey-40); font-family: var(--font-mono); font-size: 13px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-start;
  background: var(--ink);
  color: var(--white);
  padding-top: calc(var(--header-h) + clamp(1rem, 3.5vh, 2.5rem));
  padding-bottom: clamp(2rem, 5vh, 3.5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__video {
  position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: grayscale(.15) contrast(1.05);
}
/* cintas de marca como textura sutil sobre el vídeo */
.hero__canvas { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; opacity: .55; mix-blend-mode: screen; }
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 85% 15%, rgba(31,79,224,.32), transparent 55%),
    radial-gradient(90% 80% at 10% 90%, rgba(36,199,181,.16), transparent 55%),
    linear-gradient(180deg, rgba(16,18,21,.62) 0%, rgba(16,18,21,.42) 45%, rgba(16,18,21,.94) 100%);
}
.hero__inner { width: 100%; }
.hero__eyebrow { color: var(--aqua); margin-bottom: clamp(1rem, 2.4vh, 1.8rem); }
.hero__eyebrow::before { background: var(--aqua); }
.hero__title { color: var(--white); margin-bottom: 0; }
/* revelado sin máscara: interlineado ceñido y sin recorte de descendentes/acentos */
.hero__title .ln { display: block; }
.hero__title .ln + .ln { margin-top: 4px; } /* +4px de aire entre las 3 filas */
.hero__title .ln > span { display: inline-block; opacity: 0; transform: translateY(0.3em); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.hero.is-in .hero__title .ln > span { opacity: 1; transform: none; }
.hero__title .ln:nth-child(2) > span { transition-delay: .08s; }
.hero__title .ln:nth-child(3) > span { transition-delay: .16s; }
.hero__title .o { color: var(--blue); }
.hero__bottom {
  margin-top: clamp(1.2rem, 3vh, 2.4rem);
  display: flex; flex-direction: column; align-items: flex-start; gap: clamp(1.4rem, 3vh, 2rem);
}
.hero__sub { max-width: 30ch; color: rgba(255,255,255,.82); }

/* CTA del hero: entra con un ligero "pop" tras el titular y remata con un
   par de pulsos de brillo para que se note nada más aparecer */
.hero__cta {
  opacity: 0; transform: translateY(14px) scale(.9);
  transition: opacity .6s cubic-bezier(.34,1.56,.64,1), transform .6s cubic-bezier(.34,1.56,.64,1);
  transition-delay: .5s;
}
.hero.is-in .hero__cta {
  opacity: 1; transform: none;
  animation: hero-cta-pulse 1.3s ease-out 1.15s 2;
}
@keyframes hero-cta-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(31,79,224,.55); }
  70%  { box-shadow: 0 0 0 16px rgba(31,79,224,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,79,224,0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__cta { transition: none; opacity: 1; transform: none; animation: none; }
}
.hero__scrollrow { position: absolute; left: 0; right: 0; bottom: clamp(1.25rem, 3vh, 2.25rem); }
@media (max-height: 720px) { .hero__scrollrow { display: none; } }
.hero__scroll { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.hero__scroll .line { width: 44px; height: 1px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; }
.hero__scroll .line::after { content: ""; position: absolute; inset: 0; width: 40%; background: var(--aqua); animation: scrollline 2.4s var(--ease-inout) infinite; }
@keyframes scrollline { 0% { transform: translateX(-110%);} 60%,100% { transform: translateX(280%);} }

/* Marquee de confianza */
.trust { border-block: 1px solid var(--line-2); background: var(--white); }
.trust__row { display: flex; align-items: center; gap: clamp(1.5rem,4vw,3rem); padding-block: 26px; flex-wrap: wrap; }
.trust__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-40); white-space: nowrap; }
.trust__items { display: flex; flex-wrap: wrap; gap: clamp(1.4rem, 3vw, 3rem); align-items: center; }
.trust__item { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; color: var(--ink-60); letter-spacing: -0.01em; }
.trust__item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--aqua); }
.trust__item:nth-child(even) .dot { background: var(--blue); }

/* =====================================================================
   STATEMENT (textblocklarge)
   ===================================================================== */
.statement { text-align: center; }
.statement .eyebrow { margin-bottom: clamp(1.4rem, 3vw, 2rem); }
.statement__title { max-width: 20ch; margin-inline: auto; line-height: 1.1; }
.statement__title em { font-style: normal; color: inherit; }

/* reveal por palabras — fundido ascendente, sin máscara (no recorta acentos ni descendentes) */
.reveal-words .w { display: inline; }
.reveal-words .w > i { display: inline-block; font-style: inherit; opacity: 0; transform: translateY(0.35em); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-words.is-in .w > i { opacity: 1; transform: none; }

/* =====================================================================
   CIFRAS (gridnumbers)
   ===================================================================== */
.figures { background: var(--ink); color: var(--white); }
.figures__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.figures__intro .lead { color: rgba(255,255,255,.8); }
.figures__intro .eyebrow { color: var(--aqua); margin-bottom: 1.6rem; }
.figures__intro .eyebrow::before { background: var(--aqua); }
.figures__intro .arrow-link { margin-top: 2rem; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--ink); padding: clamp(1.4rem, 2.4vw, 2.2rem); display: flex; flex-direction: column; gap: 8px; min-height: 168px; justify-content: center; }
.stat__num { font-family: var(--font-sans); font-weight: 800; font-size: clamp(2.1rem, 3.4vw, 3.1rem); line-height: 1; letter-spacing: -0.03em; }
.stat__num .u { color: var(--aqua); }
.stat__lbl { font-size: 13.5px; color: var(--grey-40); line-height: 1.4; max-width: 20ch; }
.stat:nth-child(3n+2) .stat__num .u { color: var(--blue-tint); }

/* =====================================================================
   SOLUCIONES (contentscrollcenter — sticky scroller)
   ===================================================================== */
.solutions { background: var(--fog); }
.solutions__head { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.solutions__head .d-lg { max-width: 16ch; }
.sol { display: grid; grid-template-columns: 300px 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.sol__nav { position: sticky; top: calc(var(--header-h) + 40px); display: flex; flex-direction: column; gap: 4px; }
.sol__anchor {
  display: flex; align-items: center; gap: 14px; padding: 16px 0;
  border-top: 1px solid var(--line); color: var(--grey);
  font-weight: 600; font-size: clamp(1rem, 1.3vw, 1.15rem); letter-spacing: -0.01em;
  transition: color .4s var(--ease); text-align: left; width: 100%;
}
.sol__anchor .n { font-family: var(--font-mono); font-size: 12px; color: var(--grey-40); font-weight: 500; }
.sol__anchor .bar { margin-left: auto; width: 0; height: 2px; background: var(--blue); transition: width .5s var(--ease); }
.sol__anchor.is-active { color: var(--ink); }
.sol__anchor.is-active .n { color: var(--blue); }
.sol__anchor.is-active .bar { width: 40px; }
.sol__anchor:last-child { border-bottom: 1px solid var(--line); }

.sol__stack { position: relative; }
.sol__panel {
  position: sticky; top: calc(var(--header-h) + 30px);
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 30px 60px -40px rgba(16,18,21,.4);
  display: grid; grid-template-columns: 1.05fr 1fr;
  min-height: clamp(420px, 60vh, 560px);
  margin-bottom: 26px;
}
.sol__panel:last-child { margin-bottom: 0; }
.sol__visual { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.sol__visual .art { position: absolute; inset: 0; }
/* halo suave tras el glifo para dar profundidad (en vez de un fondo plano) */
.sol__visual::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  right: -14%; bottom: -18%; width: 78%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,.10), transparent 68%);
}
.sol__head { position: absolute; left: 28px; top: 24px; z-index: 2; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.sol__badge {
  width: 46px; height: 46px; border-radius: 12px; flex: 0 0 auto;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 10px 24px -12px rgba(0,0,0,.5);
}
.sol__badge svg { width: 22px; height: 22px; }
.sol__visual .idx { font-family: var(--font-mono); font-size: 13px; letter-spacing: .1em; color: rgba(255,255,255,.7); }
.sol__visual .glyph {
  position: absolute; right: -8%; bottom: -12%; width: 60%; z-index: 1;
  stroke: rgba(255,255,255,.16); stroke-linecap: round; stroke-linejoin: round;
}
.sol__visual .glyph .fill-soft { fill: rgba(255,255,255,.045); }
.sol__body { padding: clamp(1.8rem, 3vw, 2.8rem); display: flex; flex-direction: column; }
.sol__tag { align-self: flex-start; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); background: var(--fog); border: 1px solid var(--line-2); padding: 6px 12px; border-radius: 100px; margin-bottom: auto; }
.sol__title { margin: 1.4rem 0 0.9rem; }
.sol__desc { color: var(--ink-60); font-size: 16px; line-height: 1.62; }
.sol__meta { margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--line-2); display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.sol__meta .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--grey-40); }
.sol__meta .v { font-weight: 600; font-size: 15px; margin-top: 3px; letter-spacing: -0.01em; }
.sol__link { margin-top: 1.8rem; }

/* =====================================================================
   COBERTURA (map → cobertura nacional)
   ===================================================================== */
.coverage { background: var(--ink); color: var(--white); overflow: hidden; }
.coverage .eyebrow { color: var(--aqua); }
.coverage .eyebrow::before { background: var(--aqua); }
.coverage__head { text-align: center; max-width: 22ch; margin-inline: auto; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.coverage__head .d-xl { color: var(--white); margin-top: 1.4rem; }
.coverage__head .d-xl .nl { white-space: nowrap; }
@media (max-width: 640px) { .coverage__head .d-xl { font-size: clamp(1.7rem, 7.5vw, 2.4rem); } }
.coverage__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.radar { position: relative; aspect-ratio: 1; max-width: 520px; margin-inline: auto; width: 100%; }
.radar svg { width: 100%; height: 100%; overflow: visible; }
.radar .ring { fill: none; stroke: rgba(255,255,255,.12); }
.radar .sweep { transform-origin: 50% 50%; animation: sweep 8s linear infinite; }
@keyframes sweep { to { transform: rotate(360deg); } }
.radar .city { fill: var(--aqua); }
.radar .city.base { fill: var(--blue); }
.radar .clabel { font-family: var(--font-mono); font-size: 11px; fill: rgba(255,255,255,.75); }
.radar .pulse { fill: var(--blue); transform-origin: center; }
.coverage__aside .lead { color: rgba(255,255,255,.82); }

/* Mapa de España con radar */
.esmap { max-width: 560px; width: 100%; margin-inline: auto; }
.esmap svg { width: 100%; height: auto; overflow: visible; }
.es-outline { fill: rgba(255,255,255,.045); stroke: rgba(255,255,255,.3); stroke-width: 1.6; stroke-linejoin: round; }
.es-rings circle { fill: none; stroke: rgba(255,255,255,.07); }
.es-beam { stroke: #24C7B5; stroke-width: 3; opacity: .55; }
.es-label { fill: rgba(255,255,255,.72); font-family: var(--font-mono); font-size: 23px; letter-spacing: .01em; }
.es-dot { fill: #24C7B5; animation: es-flash 9s linear infinite; animation-delay: var(--d, 0s); }
.es-halo { fill: #1F4FE0; opacity: 0; animation: es-halo 9s linear infinite; animation-delay: var(--d, 0s); }
.es-isle { fill: rgba(255,255,255,.05); stroke: rgba(255,255,255,.32); stroke-width: 2; }
.es-inset rect { fill: rgba(255,255,255,.025); stroke: rgba(255,255,255,.13); stroke-width: 1.5; }
.es-dot-static { fill: #24C7B5; }
@keyframes es-flash { 0%,3% { fill: #1F4FE0; } 26% { fill: #24C7B5; } 100% { fill: #24C7B5; } }
@keyframes es-halo { 0% { opacity: .55; } 4% { opacity: .38; } 26%,100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .es-dot { fill: #1F4FE0; animation: none; }
  .es-halo, .es-sweep, .es-beam { display: none; }
}
.coverage__offices { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 2px; }
.office { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); }
.office:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.office .pin { color: var(--aqua); margin-top: 3px; }
.office .oc-city { font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.office .oc-addr { color: var(--grey-40); font-size: 14px; margin-top: 2px; }

/* =====================================================================
   PROCESO
   ===================================================================== */
.process__head { max-width: 30ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.step { background: var(--white); padding: clamp(1.6rem, 2.4vw, 2.2rem); display: flex; flex-direction: column; gap: 14px; min-height: 240px; transition: background .4s var(--ease); }
.step:hover { background: var(--fog); }
.step__n { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--blue); }
.step__ico { width: 40px; height: 40px; color: var(--ink); }
.step__t { font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.step__d { font-size: 14.5px; color: var(--grey); line-height: 1.5; }

/* =====================================================================
   GRUPO (arquitectura de marcas)
   ===================================================================== */
.group { background: var(--fog); }
.group__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: clamp(2rem, 4vw, 3rem); }
.brandcard { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; gap: 12px; min-height: 210px; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.brandcard:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -30px rgba(16,18,21,.35); }
.brandcard.is-self { background: var(--ink); color: var(--white); border-color: var(--ink); }
.brandcard__name { font-weight: 700; font-size: 21px; letter-spacing: -0.02em; }
.brandcard__role { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--grey); }
.brandcard.is-self .brandcard__role { color: var(--aqua); }
.brandcard__d { font-size: 14px; color: var(--grey); line-height: 1.5; margin-top: auto; }
.brandcard.is-self .brandcard__d { color: var(--grey-40); }
.brandcard__tag { align-self: flex-start; margin-top: 4px; font-family: var(--font-mono); font-size: 11px; color: var(--blue); }
.brandcard.is-self .brandcard__tag { color: var(--aqua); }

/* =====================================================================
   FOOTER / CTA
   ===================================================================== */
.footer { background: var(--ink); color: var(--white); padding-top: clamp(4rem, 8vw, 7rem); }
.footer__cta { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-bottom: clamp(3rem, 6vw, 5rem); border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__cta .d-lg { color: var(--white); max-width: 16ch; }
.footer__contactcard { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: clamp(1.6rem,3vw,2.2rem); }
.footer__contactcard .row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__contactcard .row:last-of-type { border-bottom: none; }
.footer__contactcard .ic { color: var(--aqua); flex: 0 0 auto; }
.footer__contactcard a, .footer__contactcard span { color: rgba(255,255,255,.9); font-size: 15px; }
.footer__contactcard .btn { margin-top: 18px; width: 100%; justify-content: center; }

.footer__mid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; padding-block: clamp(3rem, 5vw, 4rem); }
.footer__brand .header__logo { width: clamp(176px, 16vw, 320px); }
.footer__brand .header__logo .wordmark { fill: var(--white); }
.footer__brand p { color: var(--grey-40); font-size: 14px; margin-top: 18px; max-width: 34ch; }
.footer__col h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-40); margin-bottom: 16px; font-weight: 500; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: rgba(255,255,255,.82); font-size: 15px; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--aqua); }

.footer__bottom { display: flex; flex-wrap: wrap; gap: 16px 30px; align-items: center; justify-content: space-between; padding-block: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer__legal a { color: var(--grey-40); font-size: 13px; transition: color .3s var(--ease); }
.footer__legal a:hover { color: var(--white); }
.footer__copy { color: var(--grey-40); font-family: var(--font-mono); font-size: 12px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; display: grid; place-items: center; color: rgba(255,255,255,.8); transition: background .3s var(--ease), color .3s var(--ease), border-color .3s; }
.footer__social a:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* =====================================================================
   REVEAL ON SCROLL (utilidad)
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* barra vertical azul — único elemento decorativo del MIC */
.tick { display: inline-block; width: 3px; height: 1.05em; background: var(--blue); vertical-align: -0.12em; margin-right: 0.5em; border-radius: 2px; }

/* =====================================================================
   MODAL · SOLICITUD DE PRESUPUESTO
   ===================================================================== */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: clamp(0px, 3vw, 40px); }
.modal[hidden] { display: none; }
.modal__mask { position: absolute; inset: 0; background: rgba(16,18,21,.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; transition: opacity .4s var(--ease); }
.modal.is-open .modal__mask { opacity: 1; }
.modal__dialog {
  position: relative; z-index: 1;
  width: min(1140px, 100%); max-height: min(92vh, 900px);
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 0.74fr 1.26fr; grid-template-rows: minmax(0, 1fr);
  box-shadow: 0 50px 120px -30px rgba(16,18,21,.6);
  transform: translateY(18px) scale(.98); opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.modal.is-open .modal__dialog { transform: none; opacity: 1; }
.modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.9); color: var(--ink); border: 1px solid var(--line-2);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.modal__close:hover { background: var(--ink); color: var(--white); transform: rotate(90deg); }

.modal__aside {
  background: var(--ink); color: #fff; padding: clamp(1.8rem, 3vw, 2.8rem);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.modal__aside::after {
  content: ""; position: absolute; right: -30%; bottom: -20%; width: 90%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(31,79,224,.35), transparent 62%); pointer-events: none;
}
.modal__points { list-style: none; margin: clamp(1.4rem,3vw,2rem) 0 0; display: flex; flex-direction: column; gap: 14px; }
.modal__points li { display: flex; align-items: baseline; gap: 4px; font-size: 15px; color: rgba(255,255,255,.86); line-height: 1.4; }
.modal__points .tick { flex: 0 0 auto; }
.modal__contact { margin-top: auto; padding-top: 1.6rem; display: flex; flex-direction: column; gap: 10px; }
.modal__contact a { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); font-size: 14.5px; font-family: var(--font-mono); transition: color .3s var(--ease); }
.modal__contact a:hover { color: var(--aqua); }
.modal__contact svg { color: var(--aqua); }

.modal__body { min-height: 0; overflow-y: auto; overflow-x: hidden; padding: clamp(1.8rem, 3vw, 2.8rem); -webkit-overflow-scrolling: touch; }
.modal__aside { min-height: 0; }

/* formulario */
.qform { position: relative; }
.qform__set { border: none; margin: 0 0 clamp(1.4rem, 2.4vw, 2rem); }
.qform__legend { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 16px; width: 100%; }
.qform__n { font-family: var(--font-mono); font-size: 12px; color: var(--blue); background: var(--fog); border: 1px solid var(--line-2); border-radius: 6px; padding: 3px 7px; }
.qform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 500; color: var(--ink-60); }
.field .req { color: var(--blue); }
.field .opt { color: var(--grey-40); font-weight: 400; }
.qform input, .qform select, .qform textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  background: var(--fog); border: 1.5px solid var(--line); border-radius: 8px;
  padding: 12px 14px; transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.qform textarea { resize: vertical; min-height: 80px; }
.qform input::placeholder, .qform textarea::placeholder { color: var(--grey-40); }
.qform input:focus, .qform select:focus, .qform textarea:focus {
  outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(31,79,224,.12);
}
.qform input.is-error, .qform select.is-error, .qform textarea.is-error { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(224,69,90,.12); }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer; }
.select-caret { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--grey); pointer-events: none; }

.consent { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; color: var(--ink-60); line-height: 1.5; margin-bottom: clamp(1.2rem,2vw,1.6rem); cursor: pointer; }
.consent input { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 1px; accent-color: var(--blue); cursor: pointer; }
.consent a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.consent.is-error span { color: var(--danger); }

.qform__foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.qform__legal { font-size: 11.5px; color: var(--grey-40); line-height: 1.45; max-width: 44ch; }
.qform__submit { flex: 0 0 auto; }

.qform__success { position: absolute; inset: 0; background: #fff; display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; padding: 2rem; }
.qform__success[hidden] { display: none; }
.qform.is-sent .qform__success { display: flex; }
.qform__check { width: 70px; height: 70px; border-radius: 50%; background: rgba(36,199,181,.14); color: var(--aqua); display: grid; place-items: center; }
.qform__success p { color: var(--grey); max-width: 40ch; }
.qform__success .btn { margin-top: 8px; }

body.form-open { overflow: hidden; }

/* =====================================================================
   ASISTENTE MULTI-PASO (Solicitar cotización)
   ===================================================================== */
.wz { position: relative; }
.wz.is-sent .wz__bar, .wz.is-sent .wz__panel, .wz.is-sent .wz__foot { display: none; }

/* barra de progreso */
.wz__bar { display: flex; gap: 8px; margin-bottom: clamp(1.4rem, 2.5vw, 2rem); position: sticky; top: 0; background: var(--white); padding-bottom: 14px; z-index: 3; }
.wz__dot { flex: 1; display: flex; align-items: center; gap: 9px; padding-top: 4px; border-top: 3px solid var(--line); color: var(--grey-40); transition: color .3s var(--ease), border-color .3s var(--ease); min-width: 0; }
.wz__dot .n { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--line-2); color: var(--grey); font-family: var(--font-mono); font-size: 11px; font-weight: 600; display: grid; place-items: center; transition: background .3s var(--ease), color .3s var(--ease); }
.wz__dot .t { font-size: 12px; font-weight: 500; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wz__dot.is-active { color: var(--ink); border-color: var(--blue); }
.wz__dot.is-active .n { background: var(--blue); color: #fff; }
.wz__dot.is-done { color: var(--ink-60); border-color: var(--aqua); }
.wz__dot.is-done .n { background: var(--aqua); color: var(--aqua-deep); }

/* paneles */
.wz__panel { display: none; }
.wz__panel.is-current { display: block; animation: wzIn .5s var(--ease); }
@keyframes wzIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.wz__phead { margin-bottom: 1.4rem; }
.wz__pkey { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; color: var(--blue); }
.wz__ptitle { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 700; letter-spacing: -0.02em; margin-top: 4px; }
.wz__ptitle em { font-style: normal; font-size: 14px; font-weight: 500; color: var(--grey); }

/* una pregunta por fila: cada campo ocupa el ancho completo (los subcampos
   internos —fecha d/m/a, dirección, opciones— sí se reparten en columnas). */
.wz__grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.wz-field { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.wz-field.is-hidden { display: none; }
.wz-subtitle { grid-column: 1 / -1; display: flex; align-items: baseline; gap: 2px; font-weight: 600; font-size: 15px; letter-spacing: -0.01em; color: var(--ink); margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--line-2); }
.wz-subtitle.is-hidden { display: none; }
.wz-label { font-size: 13.5px; font-weight: 500; color: var(--ink-60); line-height: 1.4; }
.wz-label .req { color: var(--blue); }
.wz-label .opt { color: var(--grey-40); font-weight: 400; }
.wz-err { font-size: 12px; color: var(--danger); font-weight: 500; }
.wz-field.is-error .wz-label { color: var(--danger); }

.wz input, .wz select, .wz textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  background: var(--fog); border: 1.5px solid var(--line); border-radius: 8px; padding: 11px 13px;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.wz textarea { resize: vertical; min-height: 76px; }
.wz input::placeholder, .wz textarea::placeholder { color: var(--grey-40); }
.wz input:focus, .wz select:focus, .wz textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(31,79,224,.12); }
.wz-field.is-error input, .wz-field.is-error select, .wz-field.is-error textarea, .wz-field.is-error .opt-cards { box-shadow: 0 0 0 3px rgba(224,69,90,.12); border-radius: 8px; }
.wz-field.is-locked input { color: var(--grey); background: var(--line-2); }
.wz .select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 38px; cursor: pointer; }

/* opciones tipo tarjeta (radio / checkbox) */
.opt-cards { display: grid; gap: 10px; }
.opt-cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.opt-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.opt-cards.cols-4 { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.opt-card { position: relative; display: flex; align-items: center; gap: 10px; padding: 13px 14px; background: var(--fog); border: 1.5px solid var(--line); border-radius: 9px; cursor: pointer; font-size: 14px; font-weight: 500; color: var(--ink-60); transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease); }
.opt-card input { position: absolute; opacity: 0; pointer-events: none; }
.opt-card .opt-mark { flex: 0 0 auto; width: 19px; height: 19px; border: 1.5px solid var(--grey-40); border-radius: 50%; display: grid; place-items: center; transition: border-color .2s var(--ease), background .2s var(--ease); }
.opt-card input[type=checkbox] + .opt-mark { border-radius: 5px; }
.opt-card .opt-mark::after { content: ""; width: 9px; height: 9px; border-radius: inherit; background: #fff; transform: scale(0); transition: transform .2s var(--ease); }
.opt-card:hover { border-color: var(--grey-40); }
.opt-card:has(input:checked) { border-color: var(--blue); background: #fff; color: var(--ink); box-shadow: 0 0 0 3px rgba(31,79,224,.1); }
.opt-card:has(input:checked) .opt-mark { border-color: var(--blue); background: var(--blue); }
.opt-card:has(input:checked) .opt-mark::after { transform: scale(1); }
.opt-card input:focus-visible + .opt-mark { outline: 2px solid var(--blue); outline-offset: 2px; }

/* dirección y fecha */
.wz-address { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.wz-address .wz-addr-street { grid-column: 1 / -1; }
.wz-address .wz-addr-cp { }
.wz-date { display: grid; grid-template-columns: 90px 1.4fr 100px; gap: 10px; max-width: 460px; }

.wz .consent { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; color: var(--ink-60); line-height: 1.5; cursor: pointer; }
.wz .consent input { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 1px; accent-color: var(--blue); }
.wz .consent a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.wz-field.is-error .consent span { color: var(--danger); }

/* pie / navegación */
.wz__foot { margin-top: clamp(1.6rem, 3vw, 2.2rem); padding-top: 1.4rem; border-top: 1px solid var(--line-2); }
.wz__legal { font-size: 11.5px; color: var(--grey-40); line-height: 1.45; margin-bottom: 16px; }
.wz__nav { display: flex; gap: 12px; align-items: center; }
.wz__nav .btn { flex: 0 0 auto; }
#wzNext, #wzSubmit { margin-left: auto; }
#wzSubmit[disabled] { opacity: .45; pointer-events: none; }

.wz__success { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; padding: clamp(2rem, 5vw, 3.5rem) 1rem; }
.wz__success[hidden] { display: none; }
.wz__success p { color: var(--grey); max-width: 42ch; }
.wz__success .btn { margin-top: 8px; }

@media (max-width: 640px) {
  .wz__grid { grid-template-columns: 1fr; }
  .wz-field { grid-column: 1 / -1 !important; }
  .wz__dot .t { display: none; }
  .wz__dot { flex: 0 0 auto; width: 40px; justify-content: center; }
  .wz__dot.is-active { flex: 1; }
  .wz__dot.is-active .t { display: inline; }
  .opt-cards.cols-3 { grid-template-columns: 1fr 1fr; }
  .wz-address { grid-template-columns: 1fr; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1100px) {
  .figures__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .solutions__head { grid-template-columns: 1fr; }
  .coverage__grid { grid-template-columns: 1fr; }
  .footer__cta { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .group__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__mid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .modal__dialog { grid-template-columns: 1fr; max-height: 94vh; }
  .modal__aside { display: none; }
}
@media (max-width: 900px) {
  .nav, .header__cta, .lang.--desktop { display: none; }
  .burger { display: block; }
  .sol { grid-template-columns: 1fr; }
  .sol__nav { display: none; }
  .sol__panel { grid-template-columns: 1fr; position: relative; top: 0; }
  .sol__visual { min-height: 220px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .group__grid { grid-template-columns: 1fr; }
  .footer__mid { grid-template-columns: 1fr; }
  .sol__meta { grid-template-columns: 1fr 1fr; }
  .qform__grid { grid-template-columns: 1fr; }
  .qform__foot { flex-direction: column; align-items: stretch; }
  .qform__submit { width: 100%; justify-content: center; }
}
@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
}
