/* ==================================================
   AVORA — style.css
   Diseño: SaaS premium · blanco · tipografía grande
   Tipografías: Manrope (títulos) · Inter (texto)
   ================================================== */

/* ---------- 1. Variables de marca ---------- */
:root {
  /* Colores del logo AVORA */
  --green:   #2FD269;
  --cyan:    #22C7EE;
  --blue:    #2E6BF6;
  --violet:  #7C4DFF;
  --magenta: #C935E8;

  /* Neutros */
  --ink:     #070B14;   /* casi negro, base de fondos oscuros */
  --ink-2:   #0C1322;   /* variación para degradados */
  --text:    #10182B;   /* texto principal sobre blanco */
  --muted:   #5B6474;   /* texto secundario */
  --border:  #E9EDF3;   /* bordes suaves */
  --surface: #FFFFFF;
  --surface-alt: #F6F8FB;

  /* Gradiente de marca (mismo recorrido que el isotipo) */
  --grad: linear-gradient(100deg, var(--green), var(--cyan) 35%, var(--blue) 65%, var(--violet));
  --grad-btn: linear-gradient(100deg, var(--blue), var(--violet));

  /* Sombras suaves */
  --shadow-sm: 0 1px 2px rgba(16,24,43,.05), 0 4px 12px rgba(16,24,43,.05);
  --shadow-md: 0 4px 10px rgba(16,24,43,.06), 0 16px 40px rgba(16,24,43,.08);
  --shadow-lg: 0 12px 30px rgba(16,24,43,.14), 0 40px 90px rgba(16,24,43,.18);

  /* Radios */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;

  --header-h: 72px;
}

/* ---------- 2. Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, .btn {
  font-family: "Manrope", "Inter", sans-serif;
}

/* Contenedor central */
.container {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}

/* Espaciado vertical de secciones */
.section { padding: 110px 0; }
.section-alt { background: var(--surface-alt); }

/* ---------- 3. Utilidades tipográficas ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  margin-bottom: 16px;
}
.eyebrow-light { text-align: left; }

.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 24px;
}
.title-light { color: #fff; text-align: left; }

/* Texto con gradiente de marca */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Subrayado con gradiente */
.grad-underline {
  position: relative;
  white-space: nowrap;
}
.grad-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 4px;
  border-radius: 4px;
  background: var(--grad);
}

/* ---------- 4. Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* Botón principal (gradiente) */
.btn-primary {
  color: #fff;
  background: var(--grad-btn);
  box-shadow: 0 8px 24px rgba(46,107,246,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(124,77,255,.45);
}

/* Botón fantasma (header) */
.btn-ghost {
  color: var(--text);
  padding: 12px 16px;
}
.btn-ghost:hover { color: var(--blue); }

/* Botón contorno (hero oscuro) */
.btn-outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.09);
  transform: translateY(-2px);
}

.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-xl { padding: 18px 40px; font-size: 18px; }

/* ---------- 5. Header fijo ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: border-color .3s ease, box-shadow .3s ease;
}
/* Estado al hacer scroll (lo agrega script.js) */
.header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(16,24,43,.05);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-img { height: 30px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover { color: var(--text); background: var(--surface-alt); }
.nav-link.is-active { color: var(--text); font-weight: 600; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Hamburguesa (oculta en desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 90px;
  background:
    radial-gradient(1200px 600px at 80% -10%, #14203c 0%, transparent 60%),
    linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 55%, #0A1020 100%);
  color: #fff;
  overflow: hidden;
}

/* Brillos de color muy sutiles */
.hero-glow {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: .16;
  pointer-events: none;
}
.hero-glow-a { background: var(--violet); top: -180px; right: -120px; }
.hero-glow-b { background: var(--cyan);   bottom: -220px; left: -160px; opacity: .10; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero-modules {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- 7. Mockup del sistema ---------- */
.hero-mock { perspective: 1600px; }

.mock-frame {
  display: flex;
  background: linear-gradient(180deg, #0D1526, #0A101E);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(124,77,255,.12);
  overflow: hidden;
  transform: rotateY(-6deg) rotateX(2deg);
  transition: transform .6s ease;
  font-family: "Inter", sans-serif;
}
.hero-mock:hover .mock-frame { transform: rotateY(0) rotateX(0); }

/* Sidebar del mockup */
.mock-side {
  width: 150px;
  padding: 18px 12px;
  background: rgba(255,255,255,.025);
  border-right: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.mock-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 20px;
  padding-left: 6px;
}
.mock-iso { height: 18px; width: auto; }

.mock-nav li {
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  padding: 7px 10px;
  border-radius: 8px;
  margin-bottom: 2px;
}
.mock-nav li.on {
  color: #fff;
  background: linear-gradient(100deg, rgba(46,107,246,.35), rgba(124,77,255,.35));
}

/* Panel principal del mockup */
.mock-main { flex: 1; padding: 18px; min-width: 0; }
.mock-main-full { width: 100%; }

.mock-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  color: #fff;
  font-size: 14px;
}
.mock-pill {
  font-size: 10.5px;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.14);
  padding: 3px 10px;
  border-radius: 999px;
}

/* KPIs */
.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.mock-kpis-4 { grid-template-columns: repeat(4, 1fr); }

.kpi {
  border-radius: 12px;
  padding: 12px;
  color: #fff;
}
.kpi small { display: block; font-size: 9.5px; opacity: .75; margin-bottom: 4px; }
.kpi b { font-size: 14px; letter-spacing: -.01em; display: block; }
.kpi-trend { font-size: 9px; opacity: .7; display: block; margin-top: 4px; }

.kpi-blue  { background: linear-gradient(135deg, #1E4FD8, #2E6BF6); }
.kpi-amber { background: linear-gradient(135deg, #B97E10, #E2A424); }
.kpi-red   { background: linear-gradient(135deg, #B03343, #D94B5C); }
.kpi-line  { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }

.c-blue  { color: #6EA0FF; }
.c-green { color: #4ADE80; }
.c-amber { color: #FBBF24; }

/* Gráfico de barras */
.mock-chart {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
}
.mock-chart-head {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}
.mock-chart-head .ok { color: #4ADE80; font-weight: 600; }

.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 64px;
}
.bars i {
  flex: 1;
  height: var(--h);
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, rgba(46,107,246,.85), rgba(46,107,246,.35));
}
.bars i.hot {
  background: linear-gradient(180deg, var(--cyan), var(--violet));
}

/* Metas */
.mock-goals {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 12px;
}
.goal-ring { position: relative; width: 52px; height: 52px; flex-shrink: 0; }
.goal-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(255,255,255,.1); stroke-width: 5; }
.ring-fg {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 113;           /* 2πr ≈ 113 */
  stroke-dashoffset: 43;           /* 62 % completado */
}
.goal-ring b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: #fff;
}
.goal-info { flex: 1; }
.goal-info small { font-size: 9.5px; color: rgba(255,255,255,.55); display: block; }
.goal-info b { font-size: 13px; color: #fff; display: block; margin: 2px 0 8px; }
.goal-bar {
  height: 5px;
  background: rgba(255,255,255,.1);
  border-radius: 5px;
  overflow: hidden;
}
.goal-bar i {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: 5px;
  background: var(--grad);
}

/* Tabla (mockup Eventos) */
.mock-table {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  overflow: hidden;
  font-size: 10.5px;
}
.mock-table .tr {
  display: grid;
  grid-template-columns: 1.6fr .6fr 1.2fr .8fr;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mock-table .tr:last-child { border-bottom: 0; }
.mock-table .th {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.03);
}
.tag {
  font-size: 8.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  text-align: center;
}
.tag-green { background: rgba(74,222,128,.15); color: #4ADE80; }
.tag-blue  { background: rgba(110,160,255,.15); color: #6EA0FF; }
.tag-amber { background: rgba(251,191,36,.15); color: #FBBF24; }

/* ---------- 8. Sección 2 — Dolores ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin: 56px 0 64px;
}

.pain-item { text-align: center; }

.pain-icon {
  width: 58px; height: 58px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.pain-icon svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: var(--violet);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-item h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pain-item p { font-size: 13.5px; color: var(--muted); }

.pain-close {
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -.01em;
}

/* ---------- 9. Sección 3 — Módulos ---------- */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #D8E0EC;
}

.card-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(46,107,246,.08), rgba(124,77,255,.08));
  margin-bottom: 20px;
}
.card-icon svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
}
.card p { font-size: 14.5px; color: var(--muted); }

/* ---------- 10. Sección 4 — Rubro (panel oscuro) ---------- */
.industry {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(124,77,255,.12), transparent 60%),
    linear-gradient(160deg, var(--ink), var(--ink-2));
  border-radius: 28px;
  padding: 64px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.industry-copy .section-title { margin-bottom: 20px; }

.industry-text {
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}

.industry-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 28px;
}
.industry-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
}
/* Tilde con gradiente de marca */
.industry-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--grad);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / contain no-repeat;
}

.industry-claim {
  color: rgba(255,255,255,.7);
  font-size: 16px;
}
.industry-claim strong {
  color: #fff;
  font-weight: 700;
}

.industry-mock .mock-frame {
  transform: none;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}

/* ---------- 11. Sección 5 — CTA ---------- */
.cta {
  position: relative;
  background:
    radial-gradient(900px 500px at 50% 120%, rgba(46,107,246,.25), transparent 65%),
    linear-gradient(180deg, var(--ink) 0%, #0A1224 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 700px; height: 700px;
  left: 50%; bottom: -480px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--violet);
  filter: blur(180px);
  opacity: .18;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }

.cta .eyebrow { text-align: center; }

.cta-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ---------- 12. Footer ---------- */
.footer {
  background: #05070D;
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-logo { height: 34px; width: auto; margin-bottom: 18px; }

.footer-brand p { font-size: 14px; margin-bottom: 10px; }
.footer-modules { font-size: 13px; color: rgba(255,255,255,.45); }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14.5px;
  padding: 5px 0;
  color: rgba(255,255,255,.75);
  transition: color .2s ease;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  text-align: center;
}

/* ---------- 13. Animaciones de aparición ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay { transition-delay: .15s; }

/* Respeto por usuarios que prefieren menos movimiento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: .01ms !important; }
}

/* Accesibilidad: foco visible */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- 14. Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: auto; }
  .mock-frame { transform: none; max-width: 640px; margin-inline: auto; }
  .pain-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 20px; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .industry { grid-template-columns: 1fr; padding: 48px 36px; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }

  /* Menú mobile */
  .menu-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 18px 24px 24px;
    box-shadow: var(--shadow-md);

    /* Oculto por defecto */
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
  }
  .nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav-link { padding: 12px 14px; font-size: 16px; }

  .nav-actions {
    margin: 12px 0 0;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-actions .btn { justify-content: center; }

  .hero { padding-top: calc(var(--header-h) + 48px); }
  .hero-cta .btn { flex: 1; justify-content: center; }

  .mock-side { display: none; }         /* En mobile el mockup muestra solo el panel */
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: 1fr; }
  .industry-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .mock-kpis-4 { grid-template-columns: repeat(2, 1fr); }
  .mock-table .tr { grid-template-columns: 1.6fr .6fr .8fr; }
  .mock-table .tr span:nth-child(3) { display: none; }
}

@media (max-width: 420px) {
  .pain-grid { grid-template-columns: 1fr 1fr; gap: 28px 14px; }
  .mock-kpis { grid-template-columns: 1fr; }
}
