/* ============================================================
   Contador en Villa Allende — Landing
   Estilo: moderno, limpio, profesional. Azul / blanco / gris.
   Mobile-first.
   ============================================================ */

:root {
  /* Color tokens */
  --blue-900: #0a2e5c;
  --blue-800: #0f3c75;
  --blue-700: #15539e;
  --blue-600: #1d63b8;
  --blue-500: #2b7fd4;
  --blue-100: #e7f0fb;
  --blue-50:  #f2f7fd;

  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-400: #94a3b8;

  --bg:       #ffffff;
  --bg-soft:  #f4f7fb;
  --bg-alt:   #eef3f9;
  --border:   #e2e8f0;
  --white:    #ffffff;

  --wa:       #25D366;
  --wa-dark:  #1da851;
  --danger:   #c0392b;

  /* Type */
  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1160px;
  --maxw-narrow: 820px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.05);
  --shadow-md: 0 4px 16px rgba(15,60,117,.08), 0 2px 6px rgba(15,23,42,.05);
  --shadow-lg: 0 18px 40px rgba(15,60,117,.16);
  --header-h: 68px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-head); color: var(--ink-900); line-height: 1.2; margin: 0 0 .5em; letter-spacing: 0; }
p { margin: 0 0 1rem; }
a { color: var(--blue-700); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: var(--maxw-narrow); }
.ico { flex: none; }

/* ---------- Accesibilidad ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1100;
  background: var(--blue-800); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 2px; border-radius: 4px; }

/* ============================================================
   Botones
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 14px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-align: center; line-height: 1.1;
  min-height: 48px; transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 9px 16px; font-size: .92rem; min-height: 42px; }
.btn-lg { padding: 16px 28px; font-size: 1.08rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary { background: var(--blue-700); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--blue-800); box-shadow: var(--shadow-lg); }

.btn-outline { background: #fff; color: var(--blue-800); border-color: var(--border); }
.btn-outline:hover { border-color: var(--blue-500); background: var(--blue-50); }

.btn-whatsapp { background: var(--wa); color: #06351c; }
.btn-whatsapp:hover { background: var(--wa-dark); color: #042414; box-shadow: var(--shadow-md); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 16px; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-900); }
.brand:hover { text-decoration: none; }
.brand-mark {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
}
.brand-logo {
  width: 46px; height: 46px; border-radius: 11px; object-fit: cover; display: block;
  background: #fff; border: 1px solid var(--border);
}
.footer-brand .brand-logo { width: 52px; height: 52px; border-radius: 13px; border-color: rgba(255,255,255,.18); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-head); font-weight: 800; font-size: 1.08rem; color: var(--ink-900); }
.brand-text small { font-size: .76rem; color: var(--ink-500); letter-spacing: .03em; text-transform: uppercase; }

.main-nav { display: none; margin-left: auto; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: block; padding: 9px 13px; border-radius: 8px;
  color: var(--ink-700); font-weight: 500; font-size: .95rem;
}
.main-nav a:hover { background: var(--blue-50); color: var(--blue-800); text-decoration: none; }

.header-cta { display: none; }

.nav-toggle {
  margin-left: auto; width: 46px; height: 46px; display: grid; place-items: center; gap: 5px;
  background: #fff; border: 1px solid var(--border); border-radius: 11px; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink-900); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu open */
.main-nav.open {
  display: block; position: absolute; left: 0; right: 0; top: var(--header-h);
  background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); padding: 10px 20px 18px;
}
.main-nav.open ul { flex-direction: column; gap: 2px; }
.main-nav.open a { padding: 13px 12px; font-size: 1.02rem; border-bottom: 1px solid var(--bg-soft); }

/* ============================================================
   Hero
   ============================================================ */
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .82rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--blue-700); margin: 0 0 12px;
}
.hero {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(242,247,253,.98) 0%, rgba(242,247,253,.9) 38%, rgba(255,255,255,.66) 100%),
    linear-gradient(180deg, rgba(242,247,253,.7), rgba(255,255,255,.76) 72%, #fff 100%),
    url('assets/foto-workspace.jpg');
  background-size: cover;
  background-position: center 42%;
  padding: 40px 0 56px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, #fff);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; gap: 36px; }
.hero-copy { animation: fade-up .55s ease both; }
.hero h1 { font-size: clamp(1.8rem, 6vw, 3rem); font-weight: 800; color: var(--blue-900); }
.lead { font-size: 1.12rem; color: var(--ink-700); max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 18px; }
.hero-actions .btn { flex: 1 1 auto; min-width: 200px; }
.trust-line {
  display: inline-flex; align-items: center; gap: 8px; margin: 0;
  font-weight: 600; color: var(--blue-800); background: rgba(231,240,251,.9);
  border: 1px solid rgba(43,127,212,.12);
  padding: 9px 14px; border-radius: 999px; font-size: .95rem;
  box-shadow: 0 8px 24px rgba(15,60,117,.06);
}
.trust-line .ico { color: var(--blue-700); }

.hero-card {
  background: rgba(255,255,255,.94); border: 1px solid rgba(226,232,240,.9); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 22px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: fade-up .65s ease .08s both;
}
.hero-card-head {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head);
  font-weight: 600; font-size: .85rem; color: var(--blue-800);
  background: var(--blue-50); border: 1px solid var(--blue-100);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 3px rgba(37,211,102,.2); }
.hero-card-title { font-size: 1.4rem; margin: 0 0 4px; }
.hero-card-sub { color: var(--ink-500); font-size: .95rem; margin: 0 0 16px; }
.hero-card-note { text-align: center; font-size: .82rem; color: var(--ink-400); margin: 12px 0 0; }
.hero-form .field { margin-bottom: 12px; }
.hero-form .field label { font-size: .9rem; }
.hero-form .field input, .hero-form .field select { min-height: 46px; padding: 11px 13px; }
.hero-form .form-status { margin-top: 8px; font-size: .9rem; }

.hero-list { display: grid; gap: 12px; margin-bottom: 18px; }
.hero-list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; color: var(--ink-700); }
.hero-list .ico { color: var(--blue-600); margin-top: 1px; }

/* ============================================================
   Secciones genéricas
   ============================================================ */
.section { padding: 56px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.section-head h2 { font-size: clamp(1.5rem, 4.5vw, 2.1rem); font-weight: 800; }
.section-sub { color: var(--ink-500); font-size: 1.05rem; margin: 0; }
.section-cta { text-align: center; margin-top: 34px; }
.subhead {
  text-align: center; font-size: 1.3rem; font-weight: 700; color: var(--ink-900);
  margin: 44px 0 22px;
}
.eyebrow-light { color: #8fc0f5; }

/* ---------- Problemas (intro de Servicios) ---------- */
.pain-grid { display: grid; gap: 14px; margin-bottom: 8px; }
.pain {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--blue-500);
  border-radius: var(--radius-sm); padding: 16px 18px; font-weight: 500; color: var(--ink-700);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.pain:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-100);
}
.pain-q {
  flex: none; width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  background: var(--blue-100); color: var(--blue-700); font-family: var(--font-head); font-weight: 800;
}

/* ---------- Servicios ---------- */
.cards { display: grid; gap: 18px; }
.card {
  position: relative;
  overflow: hidden;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-100); }
.card:hover::before { transform: scaleX(1); }
.card-ico {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-100), #fff); color: var(--blue-700);
  border: 1px solid var(--blue-100); margin-bottom: 16px;
  transition: transform .2s ease, background-color .2s ease;
}
.card:hover .card-ico { transform: translateY(-2px) scale(1.03); }
.card h3 { font-size: 1.18rem; }
.card p { margin: 0; color: var(--ink-500); }

/* ---------- Beneficios ---------- */
.benefits { display: grid; gap: 18px; }
.benefits li { display: flex; gap: 14px; align-items: flex-start; }
.bft-ico {
  flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: var(--blue-700); color: #fff; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.benefits li:hover .bft-ico { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.benefits h3 { font-size: 1.08rem; margin-bottom: 2px; }
.benefits p { margin: 0; color: var(--ink-500); }

/* ---------- Online (subbloque dentro de "Por qué elegirnos") ---------- */
.online-panel {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
  color: #dbe7f6; border-radius: var(--radius); padding: 30px 26px;
  margin-top: 44px; box-shadow: var(--shadow-md);
}
.online-panel h3 { color: #fff; font-size: 1.4rem; }
.online-panel p { color: #c5d6ec; }
.online-grid { display: grid; gap: 30px; }
.online-sub { font-weight: 600; color: #fff !important; margin-bottom: 10px; text-align: center; }
.zones { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.zones li {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: .92rem; color: #fff;
}
.online-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
  border-radius: 14px; min-height: 230px; max-height: 460px; box-shadow: var(--shadow-md);
  transition: transform .35s ease, filter .35s ease;
}
.online-media { position: relative; overflow: hidden; border-radius: 14px; }
.online-panel:hover .online-media img { transform: scale(1.025); filter: saturate(1.04); }
.profile-badge {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 1;
  background: rgba(255,255,255,.94); color: var(--ink-900);
  border: 1px solid rgba(226,232,240,.9); border-radius: 12px;
  padding: 12px 14px; box-shadow: 0 12px 28px rgba(15,23,42,.22);
}
.profile-badge strong {
  display: block; font-family: var(--font-head); font-size: 1rem; line-height: 1.2; color: var(--blue-900);
  text-transform: uppercase;
}
.profile-badge span {
  display: block; color: var(--ink-700); font-size: .82rem; line-height: 1.35; font-weight: 700;
  margin-top: 2px; text-transform: uppercase;
}
.online-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 18px; }
.stat {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px; padding: 12px 10px;
}
.stat strong { display: block; font-family: var(--font-head); font-size: 1.16rem; color: #fff; line-height: 1.05; margin-bottom: 4px; }
.stat span { color: #b9cce6; font-size: .78rem; line-height: 1.25; }

/* ---------- Proceso ---------- */
.steps { display: grid; gap: 18px; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 22px 22px; box-shadow: var(--shadow-sm);
}
.step-n {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; margin-bottom: 14px;
}
.step h4 { font-family: var(--font-head); font-size: 1.08rem; color: var(--ink-900); margin: 0 0 4px; }
.step p { margin: 0; color: var(--ink-500); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); color: #fff; padding: 44px 0; }
.cta-band.has-bg {
  background-image: linear-gradient(135deg, rgba(15,60,117,.92), rgba(10,46,92,.85)), url('assets/foto-workspace.jpg');
  background-size: cover; background-position: center;
}
.cta-inner { display: grid; gap: 22px; text-align: center; }
.cta-title { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: clamp(1.5rem, 4.5vw, 2rem); line-height: 1.2; margin: 0 0 6px; }
.cta-band p { color: #e3eefc; margin: 0; font-size: 1.08rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 50px 18px 20px; position: relative;
  font-family: var(--font-head); font-weight: 600; color: var(--ink-900); font-size: 1.03rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--blue-700); border-bottom: 2px solid var(--blue-700);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-item summary:hover { color: var(--blue-700); }
.faq-body { padding: 0 20px 18px; }
.faq-body p { margin: 0; color: var(--ink-500); }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; gap: 30px; }
.contact-info h2 { font-size: clamp(1.5rem, 4.5vw, 2.1rem); }
.contact-list { display: grid; gap: 16px; margin: 22px 0; }
.contact-list li { display: flex; align-items: flex-start; gap: 12px; }
.contact-ico {
  flex: none; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px;
  background: var(--blue-100); color: var(--blue-700);
}
.contact-list strong { color: var(--ink-900); font-family: var(--font-head); }

.contact-form {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-md);
}
.form-title { font-size: 1.3rem; margin-bottom: 18px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; color: var(--ink-900); margin-bottom: 6px; font-size: .95rem; }
.req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink-900);
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-soft); min-height: 48px; transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(43,127,212,.15);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-400); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); background: #fdf3f2; }
.error { display: block; min-height: 0; color: var(--danger); font-size: .85rem; margin-top: 5px; font-weight: 500; }
.form-note { font-size: .85rem; color: var(--ink-400); margin: 12px 0 0; text-align: center; }
.form-status { margin: 10px 0 0; font-weight: 600; text-align: center; }
.form-status.ok { color: var(--wa-dark); }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--blue-900); color: #b9cce6; padding: 48px 0 0; }
.footer-grid { display: grid; gap: 30px; }
.footer-brand p { color: #9bb4d4; margin: 12px 0 0; max-width: 42ch; }
.footer-loc { font-weight: 600; color: #cdddf2 !important; }
.brand-light strong { color: #fff; }
.brand-light small { color: #8fb0d8; }
.footer-nav h2, .footer-contact h2 { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: #fff; margin-bottom: 14px; }
.footer-nav ul, .footer-contact ul { display: grid; gap: 10px; }
.footer-nav a, .footer-contact a { color: #b9cce6; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact li { color: #9bb4d4; }
.footer-social { display: flex; gap: 10px; list-style: none; margin: 18px 0 0; padding: 0; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); color: #cdddf2; transition: background .2s, color .2s, transform .2s; }
.footer-social a:hover { background: rgba(255,255,255,.18); color: #fff; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding: 20px 0; }
.footer-bottom p { margin: 0; font-size: .85rem; color: #8ba6c8; }
.footer-bottom .legal { margin-top: 6px; color: #6f8aac; }

/* ============================================================
   WhatsApp flotante
   ============================================================ */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(37,211,102,.45); transition: transform .18s ease, background .2s ease;
}
.wa-float:hover { background: var(--wa-dark); transform: scale(1.06); text-decoration: none; }
.wa-float-pulse {
  position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.7); opacity: 0; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 600px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1.2fr; }
  .hero-actions .btn { flex: 0 1 auto; }
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
  .hero { padding: 64px 0 72px; }
  .hero-grid { grid-template-columns: 1.15fr .85fr; align-items: center; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .online-grid { grid-template-columns: 1fr 1.15fr; align-items: center; }
  .online-stats { gap: 12px; margin-top: 20px; }
  .stat { border-radius: var(--radius); padding: 16px 18px; }
  .stat strong { font-size: 1.8rem; line-height: 1; }
  .stat span { font-size: .95rem; line-height: 1.4; }
  .cta-inner { grid-template-columns: 1fr auto; text-align: left; align-items: center; }
  .contact-grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
  .section { padding: 80px 0; }
}

@media (min-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Preferencias del usuario ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
