/* ── Landing pública de Varys (varys.cl) ─────────────────────────────────
   Rediseño Claude Design (assets/template/README.md). Solo lo cargan las
   páginas que extienden _layouts/public.html.twig; el namespace `.lp`
   evita colisiones con app.css (que también se carga vía importmap). */

/* La @font-face de Bricolage Grotesque vive en app.css (global). */

/* El scroll suave por ancla ya lo aporta app.css (global, respeta
   prefers-reduced-motion); aquí solo va el offset por sección (.lp-sec). */

@keyframes lp-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .35; }
}

@keyframes lp-ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.lp {
    --lp-bg: #faf9f6;
    --lp-ink: #101a2e;
    --lp-txt2: #3d4a63;
    --lp-muted: #8a93a6;
    --lp-dark-txt: #eef1f7;
    --lp-dark-txt2: #9daac2;
    --lp-dark-txt3: #c6cede;
    --lp-blue: oklch(0.45 0.13 255);
    --lp-green: oklch(0.62 0.14 165);
    --lp-green-mid: oklch(0.55 0.14 165);
    --lp-green-light: oklch(0.7 0.12 165);
    --lp-green-text: oklch(0.45 0.1 165);
    --lp-green-bg: oklch(0.62 0.14 165 / .08);
    --lp-green-border: oklch(0.62 0.14 165 / .3);
    --lp-border: rgba(16, 26, 46, .08);
    --lp-border-card: rgba(16, 26, 46, .1);
    --lp-border-input: rgba(16, 26, 46, .18);
    --lp-border-dark: rgba(238, 241, 247, .12);
    --lp-font: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--lp-bg);
    color: var(--lp-ink);
    font-family: var(--lp-font);
    font-size: 16px;
    line-height: 1.5;
}

.lp a { color: inherit; text-decoration: none; }
.lp a:hover { opacity: .85; }
.lp input, .lp textarea, .lp button { font-family: var(--lp-font); }
.lp main { flex: 1; }

.lp-wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* ── Logo (ecualizador de 5 barras — SVG de _partials/_logo.html.twig) ── */
.lp-logo svg { height: 24px; width: auto; color: var(--lp-ink); }
.lp-footer-brand svg { height: 18px; width: auto; --logo-accent: oklch(0.62 0.14 165); }

/* ── Ticker (flag, off por defecto) ─────────────────────────────────── */
.lp-ticker {
    border-bottom: 1px solid var(--lp-border);
    overflow: hidden;
    padding: 8px 0;
    font-size: 12.5px;
    color: var(--lp-txt2);
    background: #fff;
}
.lp-ticker-track {
    display: flex;
    gap: 48px;
    width: max-content;
    white-space: nowrap;
    animation: lp-ticker 28s linear infinite;
}
.lp-ticker-up { color: var(--lp-green-text); font-weight: 600; }
.lp-ticker-new { color: var(--lp-blue); font-weight: 600; }

/* ── Nav sticky ─────────────────────────────────────────────────────── */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(250, 249, 246, .92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--lp-border);
}
.lp-nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
}
.lp-logo { display: flex; align-items: center; gap: 10px; }
.lp-logo-word { font-weight: 700; font-size: 18px; letter-spacing: -.01em; }
.lp-nav-links { display: flex; gap: 28px; font-size: 14.5px; color: var(--lp-txt2); }
.lp-nav-actions { display: flex; gap: 12px; align-items: center; }
.lp .lp-login { font-size: 14.5px; color: var(--lp-txt2); }

.lp-burger {
    display: none;
    background: none;
    border: none;
    padding: 10px 6px;
    flex-direction: column;
    gap: 4.5px;
    cursor: pointer;
}
.lp-burger i { width: 19px; height: 2px; background: var(--lp-ink); border-radius: 2px; display: block; }

.lp-menu {
    display: none;
    border-top: 1px solid var(--lp-border);
    background: var(--lp-bg);
    flex-direction: column;
    padding: 8px 20px 16px;
}
.lp-menu a { padding: 13px 0; font-size: 16px; font-weight: 600; border-bottom: 1px solid rgba(16, 26, 46, .06); }
.lp-menu a:last-child { border-bottom: 0; font-weight: 400; color: var(--lp-txt2); }

/* ── Botones ────────────────────────────────────────────────────────── */
.lp-btn {
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
    padding: 13px 24px;
    border-radius: 9px;
    font-size: 15.5px;
    font-weight: 600;
}
/* Con `.lp` delante para ganarle a `.lp a { color: inherit }` */
.lp .lp-btn--primary { background: var(--lp-blue); color: #fff; }
.lp .lp-btn--outline { color: var(--lp-ink); border: 1px solid var(--lp-border-input); padding: 12px 23px; }
.lp .lp-btn--nav { background: var(--lp-ink); color: var(--lp-bg); padding: 9px 18px; border-radius: 8px; font-size: 14.5px; }

/* ── Piezas comunes ─────────────────────────────────────────────────── */
.lp-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-blue);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.lp-eyebrow--green { color: var(--lp-green-light); }
.lp-h2 { margin: 0; font-size: 34px; line-height: 1.15; letter-spacing: -.02em; font-weight: 700; text-wrap: pretty; }
.lp-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lp-green);
    animation: lp-pulse 2.4s infinite;
    flex: none;
}
.lp-sec { scroll-margin-top: 80px; }
.lp-sec--white { background: #fff; border-top: 1px solid var(--lp-border); }
.lp-sec--dark { background: var(--lp-ink); color: var(--lp-dark-txt); }
.lp-sec > .lp-wrap { padding-top: 88px; padding-bottom: 88px; }

/* ── Hero ───────────────────────────────────────────────────────────── */
.lp-hero { overflow: hidden; }
.lp-hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    padding: 80px 32px 0;
    align-items: center;
}
.lp-hero-copy { display: flex; flex-direction: column; gap: 22px; }
.lp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    border: 1px solid rgba(16, 26, 46, .15);
    border-radius: 99px;
    padding: 6px 14px;
    font-size: 13px;
    color: var(--lp-txt2);
}
.lp-hero-title {
    margin: 0;
    font-size: 54px;
    line-height: 1.06;
    letter-spacing: -.025em;
    font-weight: 700;
    text-wrap: pretty;
}
.lp-hero-lede { margin: 0; font-size: 18px; line-height: 1.55; color: var(--lp-txt2); max-width: 44ch; text-wrap: pretty; }
.lp-hero-ctas { display: flex; gap: 12px; align-items: center; }

.lp-hero-visual { position: relative; height: 440px; }
.lp-mock {
    position: absolute;
    inset: 0 -80px -40px 0;
    background: #fff;
    border: 1px solid var(--lp-border-card);
    border-radius: 14px 0 0 0;
    box-shadow: 0 24px 60px rgba(16, 26, 46, .12);
    padding: 18px 0 0 18px;
    overflow: hidden;
}
.lp-mock-tabs { display: flex; gap: 8px; align-items: center; margin-bottom: 14px; }
.lp-mock-badge { font-size: 12.5px; font-weight: 600; background: rgba(16, 26, 46, .06); padding: 5px 10px; border-radius: 6px; }
.lp-mock-meta { font-size: 12.5px; color: var(--lp-txt2); padding: 5px 10px; }
.lp-mock-grid {
    display: grid;
    /* --cols la fija el template según cuántas instituciones trae el snapshot */
    grid-template-columns: 150px repeat(var(--cols, 3), 130px);
    font-size: 12px;
    border-top: 1px solid var(--lp-border);
}
.lp-mock-grid > div { padding: 10px 8px; }
.lp-mock-grid .lp-th { font-weight: 600; }
.lp-mock-grid .lp-td { border-top: 1px solid rgba(16, 26, 46, .06); }
.lp-mock-grid .lp-td--label { color: var(--lp-muted); }
.lp-mock-grid .lp-td--strong { font-weight: 600; }

.lp-novelty {
    position: absolute;
    left: -28px;
    bottom: 36px;
    background: #fff;
    border: 1px solid oklch(0.62 0.14 165 / .35);
    border-left: 3px solid var(--lp-green);
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 12px 32px rgba(16, 26, 46, .12);
    font-size: 12.5px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.lp-novelty strong { color: var(--lp-green-text); }
.lp-novelty .lp-delta { color: var(--lp-green-text); font-weight: 600; }

/* ── Stats ──────────────────────────────────────────────────────────── */
.lp-stats { border-top: 1px solid var(--lp-border); margin-top: 64px; }
.lp-stats-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.lp-stat { padding: 26px 32px; }
.lp-stat:not(:last-child) { border-right: 1px solid var(--lp-border); }
.lp-stat-value { font-size: 30px; font-weight: 700; letter-spacing: -.02em; }
.lp-stat-label { font-size: 13.5px; color: var(--lp-txt2); }

/* ── Problema ───────────────────────────────────────────────────────── */
.lp-problem-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.lp-problem-inner .lp-h2 { font-size: 36px; }
.lp-problem-body { margin: 0; font-size: 17px; line-height: 1.65; color: var(--lp-txt2); text-wrap: pretty; }
.lp-problem-body strong { color: var(--lp-ink); }

/* ── Qué hace ───────────────────────────────────────────────────────── */
.lp-sec-head { margin-bottom: 40px; }
.lp-sec-head .lp-h2 { max-width: 26ch; }
.lp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.lp-card {
    background: #fff;
    border: 1px solid var(--lp-border-card);
    border-radius: 12px;
    padding: 26px;
}
.lp-card-title { font-weight: 600; font-size: 17px; margin: 0 0 8px; }
.lp-card-body { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--lp-txt2); }

.lp-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(16, 26, 46, .06);
    display: grid;
    place-items: center;
    margin-bottom: 14px;
}
.lp-card-icon--blue { background: oklch(0.93 0.05 255); }
.lp-card-icon--green { background: oklch(0.93 0.05 165); }
.lp-icon-square { width: 12px; height: 12px; border: 2.5px solid var(--lp-ink); border-radius: 3px; display: block; }
.lp-icon-bars { display: flex; gap: 2.5px; align-items: flex-end; height: 14px; }
.lp-icon-bars i { display: block; width: 4px; background: var(--lp-blue); border-radius: 1.5px; }
.lp-icon-bars i:nth-child(1) { height: 8px; }
.lp-icon-bars i:nth-child(2) { height: 14px; }
.lp-icon-bars i:nth-child(3) { height: 11px; }
.lp-icon-circle { width: 14px; height: 14px; border: 2.5px solid var(--lp-ink); border-radius: 50%; display: block; }
.lp-icon-dot {
    width: 9px;
    height: 9px;
    background: var(--lp-green-mid);
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 0 3.5px oklch(0.55 0.14 165 / .3);
}

.lp-card--chat {
    background: var(--lp-ink);
    color: var(--lp-dark-txt);
    border: none;
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}
.lp-card--chat .lp-card-body { color: var(--lp-dark-txt2); }
.lp-chat-bubble {
    background: rgba(238, 241, 247, .07);
    border: 1px solid var(--lp-border-dark);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: center;
}
.lp-chat-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lp-green-mid);
    color: var(--lp-ink);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 13px;
    flex: none;
}
.lp-chat-quote { font-size: 13.5px; color: var(--lp-dark-txt3); line-height: 1.5; }

/* ── Cómo funciona ──────────────────────────────────────────────────── */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; list-style: none; margin: 0; padding: 0; }
.lp-step { border: 1px solid var(--lp-border-card); border-radius: 12px; padding: 26px; }
.lp-step-num { font-size: 13px; font-weight: 700; color: var(--lp-blue); margin: 0 0 12px; }
.lp-step-body { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--lp-txt2); }

/* ── Mapa en acción ─────────────────────────────────────────────────── */
.lp-map-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.lp-map-head .lp-h2 { max-width: 22ch; }
.lp-map-lede { margin: 0; font-size: 15px; line-height: 1.6; color: var(--lp-dark-txt2); max-width: 42ch; }
.lp-map-hint { display: none; }
.lp-map-panel {
    background: var(--lp-bg);
    color: var(--lp-ink);
    border-radius: 14px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .35);
    overflow: hidden;
}
.lp-map-chips {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--lp-border);
    flex-wrap: wrap;
}
.lp-chip { font-size: 12.5px; color: var(--lp-txt2); padding: 5px 11px; border: 1px solid rgba(16, 26, 46, .12); border-radius: 99px; }
.lp-chip--active { font-weight: 600; color: var(--lp-ink); background: rgba(16, 26, 46, .08); border: none; padding: 5px 11px; }
.lp-map-count { margin-left: auto; font-size: 12.5px; color: var(--lp-muted); }
.lp-map-grid { display: grid; grid-template-columns: 190px repeat(var(--cols, 4), 1fr); font-size: 13px; }
.lp-map-grid > div { padding: 12px; border-top: 1px solid rgba(16, 26, 46, .07); }
.lp-map-grid .lp-th { font-weight: 700; padding: 13px 12px; border-top: none; }
.lp-map-grid .lp-th--label {
    color: var(--lp-muted);
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 13px 20px;
}
.lp-map-grid .lp-td--label { color: var(--lp-muted); padding: 12px 20px; }
.lp-map-grid .lp-hl {
    background: var(--lp-green-bg);
    border-left: 1px solid var(--lp-green-border);
    border-right: 1px solid var(--lp-green-border);
}
.lp-map-grid .lp-hl--delta { font-weight: 600; color: oklch(0.4 0.1 165); }
/* Celda de coberturas: lista sintetizada (nombres apilados + "+N más" tenue) */
.lp-cov { display: block; }
.lp-cov--more { color: var(--lp-muted); font-size: .92em; margin-top: 2px; }
.lp-map-caption { margin: 14px 4px 0; font-size: 12.5px; color: var(--lp-dark-txt2); }

/* ── Para quién ─────────────────────────────────────────────────────── */
.lp-audience { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.lp-audience .lp-card { padding: 24px; }
.lp-audience .lp-card-title { font-size: 16px; }
.lp-audience .lp-card-body { font-size: 14px; }

/* ── FAQ ────────────────────────────────────────────────────────────── */
.lp-faq-inner { display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: start; }
.lp-faq-list { display: flex; flex-direction: column; }
.lp-faq-item { border-bottom: 1px solid var(--lp-border-card); padding: 4px 0; }
.lp-faq-item:last-child { border-bottom: 0; }
.lp-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    font-weight: 600;
    font-size: 16.5px;
    list-style: none;
    cursor: pointer;
}
.lp-faq-q::-webkit-details-marker { display: none; }
.lp-faq-plus {
    font-weight: 400;
    font-size: 22px;
    color: var(--lp-blue);
    transition: transform .2s;
    flex: none;
}
.lp-faq-item[open] .lp-faq-plus { transform: rotate(45deg); }
.lp-faq-a { margin: 0 0 18px; font-size: 15px; line-height: 1.6; color: var(--lp-txt2); max-width: 60ch; }

/* ── Contacto ───────────────────────────────────────────────────────── */
.lp-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'head card' 'after card';
    column-gap: 64px;
    row-gap: 28px;
    align-items: start;
    align-content: start;
}
.lp-contact-head { grid-area: head; }
.lp-contact-head .lp-h2 { font-size: 36px; margin-bottom: 12px; }
.lp-contact-lede { margin: 0; font-size: 16px; line-height: 1.6; color: var(--lp-dark-txt2); max-width: 44ch; }
.lp-after { grid-area: after; display: flex; flex-direction: column; gap: 16px; align-self: start; }
.lp-after-title { font-weight: 600; font-size: 15px; }
.lp-after-step { display: flex; gap: 14px; align-items: baseline; }
.lp-after-num { font-size: 13px; font-weight: 700; color: var(--lp-green-light); flex: none; }
.lp-after-step span:last-child { font-size: 14.5px; color: var(--lp-dark-txt3); line-height: 1.55; }

.lp-contact-card {
    grid-area: card;
    background: var(--lp-bg);
    color: var(--lp-ink);
    border-radius: 14px;
    padding: 32px;
}
.lp-contact-form { display: flex; flex-direction: column; gap: 16px; }
.lp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Overrides del theme global de forms (app.css) dentro de la tarjeta */
.lp-contact-card .form-group { margin: 0; display: flex; flex-direction: column; gap: 6px; }
.lp-contact-card .form-group label { margin: 0; font-size: 13px; font-weight: 600; color: var(--lp-ink); }
.lp-contact-card .form-group input[type="text"],
.lp-contact-card .form-group input[type="email"],
.lp-contact-card .form-group textarea {
    border: 1px solid var(--lp-border-input);
    border-radius: 8px;
    padding: 11px 12px;
    font-size: 14.5px;
    background: #fff;
    color: var(--lp-ink);
    font-family: var(--lp-font);
    width: 100%;
    box-sizing: border-box;
}
.lp-contact-card .form-group textarea { resize: vertical; min-height: 96px; }
.lp-contact-card .form-group input:focus,
.lp-contact-card .form-group textarea:focus {
    outline: none;
    border-color: var(--lp-blue);
    box-shadow: 0 0 0 3px oklch(0.45 0.13 255 / .12);
}
.lp-contact-card .form-group ul { margin: 0; padding: 0; list-style: none; font-size: 12.5px; color: #b42318; }

.lp-contact-card .form-group.lp-consent { flex-direction: row; gap: 10px; align-items: flex-start; }
.lp-contact-card .form-group.lp-consent input[type="checkbox"] { margin-top: 2px; accent-color: var(--lp-blue); }
.lp-contact-card .form-group.lp-consent label { font-size: 12.5px; color: var(--lp-txt2); line-height: 1.5; font-weight: 400; }
.lp-consent-field { display: flex; flex-direction: column; gap: 6px; }
.lp-consent-field > ul { margin: 0; padding: 0; list-style: none; font-size: 12.5px; color: #b42318; }

.lp-submit { width: 100%; padding: 14px; }

.lp-contact-card .alert { border-radius: 8px; padding: 12px 14px; font-size: 14px; margin-bottom: 16px; }
.lp-contact-card .alert-success { background: var(--lp-green-bg); border: 1px solid var(--lp-green-border); color: var(--lp-green-text); }
.lp-contact-card .alert-error { background: rgba(180, 35, 24, .06); border: 1px solid rgba(180, 35, 24, .25); color: #b42318; }

/* ── Footer (dentro del bloque navy) ────────────────────────────────── */
.lp-footer { background: var(--lp-ink); color: var(--lp-dark-txt); border-top: 1px solid var(--lp-border-dark); }
.lp-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.lp-footer-brand { display: flex; align-items: center; gap: 10px; }
.lp-footer-brand .lp-logo-word { font-size: 15px; }
.lp-footer-tagline { font-size: 13px; color: var(--lp-dark-txt2); }
.lp-footer-legal { font-size: 13px; color: var(--lp-dark-txt2); }
.lp-footer-legal a { color: var(--lp-dark-txt3); }

/* ── Mobile (≤768px) ────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .lp-sec { scroll-margin-top: 70px; }
    .lp-wrap { padding-left: 20px; padding-right: 20px; }
    .lp-sec > .lp-wrap { padding-top: 56px; padding-bottom: 56px; }
    .lp-h2 { font-size: 26px; line-height: 1.18; }

    .lp-ticker { padding: 7px 0; font-size: 11.5px; }
    .lp-ticker-track { gap: 36px; animation-duration: 22s; }

    .lp-nav-inner { padding: 14px 20px; }
    .lp-nav-links, .lp-login { display: none; }
    .lp-burger { display: flex; }
    .lp .lp-btn--nav { padding: 9px 15px; font-size: 13.5px; }
    .lp-menu.is-open { display: flex; }

    .lp-hero-inner { grid-template-columns: 1fr; gap: 18px; padding: 44px 20px 0; }
    .lp-hero-title { font-size: 34px; line-height: 1.09; letter-spacing: -.02em; }
    .lp-hero-lede { font-size: 15.5px; }
    .lp-hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
    .lp-pill { padding: 5px 12px; font-size: 12px; }

    .lp-hero-visual {
        height: auto;
        margin-top: 8px;
        display: flex;
        flex-direction: column-reverse;
        gap: 14px;
    }
    .lp-mock {
        position: static;
        inset: auto;
        margin-right: -20px;
        border-radius: 12px 0 0 0;
        box-shadow: 0 16px 40px rgba(16, 26, 46, .1);
        padding: 14px 0 0 14px;
    }
    .lp-mock-grid { grid-template-columns: 105px repeat(2, 1fr); font-size: 11.5px; }
    .lp-mock-grid > div { padding: 9px 6px; }
    .lp-m-hide { display: none !important; }
    .lp-novelty {
        position: static;
        inset: auto;
        box-shadow: 0 10px 26px rgba(16, 26, 46, .1);
        padding: 12px 14px;
    }

    .lp-stats { margin-top: 32px; }
    .lp-stats-inner { grid-template-columns: 1fr 1fr; }
    .lp-stat { padding: 20px; }
    .lp-stat:not(:last-child) { border-right: 0; }
    .lp-stat:nth-child(odd) { border-right: 1px solid var(--lp-border); }
    .lp-stat:nth-child(-n+2) { border-bottom: 1px solid var(--lp-border); }
    .lp-stat-value { font-size: 26px; }
    .lp-stat-label { font-size: 12.5px; }

    .lp-problem-inner { grid-template-columns: 1fr; gap: 18px; }
    .lp-problem-inner .lp-h2 { font-size: 26px; }
    .lp-problem-body { font-size: 15px; }

    .lp-eyebrow { font-size: 12px; margin-bottom: 8px; }
    .lp-sec-head { margin-bottom: 24px; }
    .lp-cards { grid-template-columns: 1fr; gap: 12px; }
    .lp-card { padding: 20px; }
    .lp-card-title { font-size: 16px; }
    .lp-card-body { font-size: 14px; }
    .lp-card-icon { display: none; }
    .lp-card--chat { grid-column: auto; grid-template-columns: 1fr; gap: 14px; }

    .lp-steps { grid-template-columns: 1fr; gap: 12px; }
    .lp-step { padding: 20px; }
    .lp-step-num { font-size: 12.5px; margin-bottom: 8px; }
    .lp-step-body { font-size: 14px; }

    .lp-map-head { margin-bottom: 20px; }
    .lp-map-lede { font-size: 14.5px; }
    .lp-map-hint { display: inline; }
    .lp-map-scroll { overflow-x: auto; margin: 0 -20px; padding: 0 20px 8px; }
    .lp-map-panel { border-radius: 12px; box-shadow: 0 24px 60px rgba(0, 0, 0, .35); width: max-content; }
    .lp-map-grid { grid-template-columns: 130px repeat(var(--cols, 4), 130px); font-size: 12.5px; }
    .lp-map-grid > div { padding: 10px; }
    .lp-map-grid .lp-th { padding: 11px 10px; }
    .lp-map-grid .lp-th--label { padding: 11px 16px; font-size: 10.5px; }
    .lp-map-grid .lp-td--label { padding: 10px 16px; }
    .lp-map-count { display: none; }
    .lp-map-caption { margin-top: 12px; font-size: 11.5px; }

    .lp-audience { grid-template-columns: 1fr; gap: 12px; }
    .lp-audience .lp-card-title { font-size: 15.5px; }

    .lp-faq-inner { grid-template-columns: 1fr; gap: 12px; }
    .lp-faq-q { padding: 16px 0; font-size: 15.5px; gap: 14px; }
    .lp-faq-plus { font-size: 20px; }
    .lp-faq-a { margin-bottom: 16px; font-size: 14.5px; }

    .lp-contact-inner {
        grid-template-columns: 1fr;
        grid-template-areas: 'head' 'card' 'after';
        row-gap: 24px;
    }
    .lp-contact-head .lp-h2 { font-size: 28px; margin-bottom: 10px; }
    .lp-contact-lede { font-size: 15px; }
    .lp-contact-card { padding: 22px; }
    .lp-form-grid { grid-template-columns: 1fr; }
    .lp-contact-card .form-group input[type="text"],
    .lp-contact-card .form-group input[type="email"],
    .lp-contact-card .form-group textarea { padding: 12px; font-size: 15px; }

    .lp-footer-inner { padding: 22px 20px 30px; flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── Movimiento reducido ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .lp-dot { animation: none; }
    .lp-ticker-track { animation: none; }
    .lp-faq-plus { transition: none; }
}
