/* VisualTrack — Landing (estética EventTrack: teal, limpio, moderno) */
:root {
    --bg: #f5f8f7;
    --surface: #ffffff;
    --surface-soft: #ecf6f3;
    --text: #14201d;
    --muted: #5f6f6c;
    --line: #e2e9e6;
    --primary: #0f766e;
    --primary-strong: #0c5b54;
    --grad: linear-gradient(135deg, #14897f 0%, #0c5b54 100%);
    --radius: 16px;
    --radius-sm: 11px;
    --shadow: 0 1px 2px rgba(16, 34, 31, 0.04), 0 14px 36px rgba(16, 34, 31, 0.08);
    --shadow-lg: 0 24px 60px rgba(16, 34, 31, 0.16);
    --max: 1140px;
    --font: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

html[data-theme="dark"] {
    --bg: #0e1614;
    --surface: #15211e;
    --surface-soft: #12302b;
    --text: #e7efec;
    --muted: #9fb2ad;
    --line: #243430;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 16px 40px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; }
p { margin: 0; }

/* ---------- Nav ---------- */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 16px 24px;
}

.lp-nav::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    z-index: -1;
}

.lp-brand { display: inline-flex; align-items: center; gap: 10px; }
.lp-brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--grad);
    color: #fff;
    font-weight: 900;
    font-size: 0.95rem;
    box-shadow: 0 6px 16px rgba(12, 91, 84, 0.32);
}
.lp-brand-name { font-weight: 800; font-size: 1.15rem; }

.lp-nav-links { display: flex; align-items: center; gap: 22px; }
.lp-nav-links a { color: var(--muted); font-weight: 600; font-size: 0.92rem; transition: color 0.15s; }
.lp-nav-links a:hover { color: var(--text); }
.lp-nav-cta {
    color: #fff !important;
    background: var(--grad);
    padding: 9px 18px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(12, 91, 84, 0.28);
}

.lp-nav-right { display: flex; align-items: center; gap: 14px; }
.lp-icon-btn {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.lp-icon-btn:hover { border-color: var(--primary); color: var(--primary); }
.lp-icon-btn svg { display: block; }
/* Sol en oscuro, luna en claro. */
.lp-theme-toggle .lp-icon-sun { display: none; }
html[data-theme="dark"] .lp-theme-toggle .lp-icon-sun { display: block; }
html[data-theme="dark"] .lp-theme-toggle .lp-icon-moon { display: none; }
/* La hamburguesa solo aparece en mobile. */
.lp-nav-toggle { display: none; }

/* ---------- Botones ---------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.96rem;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.15s ease;
}
.lp-btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 22px rgba(12, 91, 84, 0.3); }
.lp-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(12, 91, 84, 0.38); }
.lp-btn-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--line); box-shadow: var(--shadow); }
.lp-btn-ghost:hover { border-color: var(--primary); }
.lp-btn-lg { padding: 15px 30px; font-size: 1.05rem; }

.lp-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ---------- Hero ---------- */
.lp-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    max-width: var(--max);
    margin: 0 auto;
    padding: 64px 24px 40px;
}
.lp-hero-copy { display: grid; gap: 18px; align-content: start; }
.lp-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 850; }
.lp-grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp-lead { color: var(--muted); font-size: 1.08rem; max-width: 40ch; }
.lp-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.lp-hero-points {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}
.lp-hero-points li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}
.lp-hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--surface-soft);
    box-shadow: inset 0 0 0 2px var(--primary);
}

/* ---------- Hero mockup ---------- */
.lp-hero-art { position: relative; }
.lp-mock {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    display: grid;
    gap: 14px;
    transform: rotate(0.6deg);
}
.lp-mock-caption { display: flex; align-items: baseline; gap: 8px; }
.lp-mock-caption strong { font-size: 0.92rem; font-weight: 750; }
.lp-mock-caption span { font-size: 0.78rem; color: var(--muted); }
.lp-mock-views-label { font-size: 0.78rem; font-weight: 700; color: var(--muted); }
/* Comparador cortina: mismo slider que el modal logueado (base "después" + capa
   "antes" recortada por clip-path, línea divisoria y slider teal). */
.lp-mock-compare {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface-soft);
    isolation: isolate;
}
.lp-mock-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-mock-clip { position: absolute; inset: 0; overflow: hidden; }
.lp-mock-badge {
    position: absolute;
    top: 10px;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 800;
    color: #18302b;
    background: rgba(255, 255, 255, 0.92);
    padding: 3px 9px;
    border-radius: 999px;
    transition: opacity 0.1s linear;
}
.lp-mock-badge-before { left: 10px; }
.lp-mock-badge-after { right: 10px; }
.lp-mock-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    z-index: 3;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
    transform: translateX(-1px);
    pointer-events: none;
}
/* Perilla arrastrable sobre la línea: deja claro que la cortina se desliza. */
.lp-mock-line::after {
    content: '\2194';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.3);
}
/* Hint que invita a usar el slider; se desvanece al primer toque. */
.lp-mock-hint {
    position: absolute;
    z-index: 5;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.74);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.4s ease;
    animation: lp-hint-bob 1.7s ease-in-out infinite;
}
.lp-mock-compare.is-touched .lp-mock-hint { opacity: 0; }
@keyframes lp-hint-bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
    .lp-mock-hint { animation: none; }
}
.lp-mock-range {
    position: absolute;
    z-index: 4;
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    margin: 0;
    accent-color: var(--primary);
    cursor: ew-resize;
}
.lp-mock-views { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.lp-mock-view {
    position: relative;
    margin: 0;
    padding: 0;
    aspect-ratio: 1 / 1;
    border-radius: 9px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface-soft);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.lp-mock-view:hover { transform: translateY(-2px); }
.lp-mock-view:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.lp-mock-view.is-active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary);
}
.lp-mock-view img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lp-mock-view .lp-mock-view-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 4px 3px;
    text-align: center;
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}
.lp-mock-view.is-active .lp-mock-view-cap { background: linear-gradient(to top, var(--primary), rgba(0, 0, 0, 0)); }

/* ---------- Logos band ---------- */
.lp-logos {
    max-width: var(--max);
    margin: 8px auto 0;
    padding: 18px 24px;
    text-align: center;
}
.lp-logos p { color: var(--muted); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.01em; }

/* ---------- Secciones ---------- */
/* Offset para que al saltar a un ancla del menú el título no quede tapado
   por la navbar fija (sticky). */
#funciones, #flujo, #planes, #seguridad { scroll-margin-top: 96px; }
.lp-plans-cta { text-align: center; margin-top: 22px; }

.lp-section { max-width: var(--max); margin: 0 auto; padding: 64px 24px; }
.lp-section-soft { background: var(--surface-soft); border-radius: 28px; }
.lp-section-head { display: grid; gap: 12px; max-width: 640px; margin: 0 auto 36px; text-align: center; }
.lp-section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; }
.lp-section-head p { color: var(--muted); font-size: 1.02rem; }

/* Feature grid */
.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.lp-feature {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    transition: transform 0.14s ease, box-shadow 0.15s ease;
}
.lp-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.lp-feature-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--surface-soft);
    color: var(--primary-strong);
}
.lp-feature h3 { font-size: 1.05rem; font-weight: 750; }
.lp-feature p { color: var(--muted); font-size: 0.9rem; }

/* Flow */
.lp-flow {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.lp-flow li {
    display: grid;
    gap: 7px;
    align-content: start;
    padding: 24px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}
.lp-flow-num {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 6px 14px rgba(12, 91, 84, 0.28);
}
.lp-flow strong { display: block; font-size: 1.06rem; font-weight: 750; }
.lp-flow p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* Trust grid */
.lp-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lp-trust-grid article {
    display: grid;
    gap: 8px;
    align-content: start;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}
.lp-trust-grid h3 { font-size: 1.02rem; font-weight: 750; color: var(--primary-strong); }
.lp-trust-grid p { color: var(--muted); font-size: 0.9rem; }

/* Final CTA */
.lp-final {
    max-width: var(--max);
    margin: 24px auto 64px;
    padding: 44px;
    border-radius: 24px;
    background: var(--grad);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-lg);
}
.lp-final h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; }
.lp-final p { color: rgba(255, 255, 255, 0.9); margin-top: 8px; max-width: 46ch; }
.lp-final .lp-btn-primary { background: #fff; color: var(--primary-strong); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2); }

/* Footer */
.lp-footer {
    border-top: 1px solid var(--line);
    max-width: var(--max);
    margin: 0 auto;
    padding: 28px 24px 48px;
    display: grid;
    gap: 16px;
    align-items: center;
}
.lp-footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.lp-footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.lp-footer-links a { color: var(--muted); font-size: 0.9rem; font-weight: 600; }
.lp-footer-links a:hover { color: var(--text); }
.lp-footer-copy { color: var(--muted); font-size: 0.82rem; }

/* ---------- Login modal ---------- */
.lp-login[hidden] { display: none; }
.lp-login {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px;
}
.lp-login-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 34, 31, 0.5);
    backdrop-filter: blur(6px);
}
.lp-login-card {
    position: relative;
    width: min(420px, 100%);
    display: grid;
    gap: 12px;
    padding: 28px 26px 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    animation: lp-pop 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes lp-pop {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: none; }
}
.lp-login-x {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
}
.lp-login-x:hover { color: var(--text); }
.lp-login-brand { display: inline-flex; align-items: center; gap: 10px; }
.lp-login-brand .lp-brand-mark { width: 36px; height: 36px; }
.lp-login-brand strong { font-weight: 800; font-size: 1.05rem; }
.lp-login-card h2 { font-size: 1.35rem; font-weight: 800; margin-top: 4px; }
.lp-login-sub { color: var(--muted); font-size: 0.9rem; margin-top: -6px; }
.lp-login-form { display: grid; gap: 11px; margin-top: 6px; }
.lp-login-form label { display: grid; gap: 5px; font-size: 0.82rem; font-weight: 700; color: var(--muted); }
.lp-login-form input {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--surface);
    color: var(--text);
    font-size: 0.95rem;
}
.lp-login-form input:focus {
    outline: 3px solid rgba(15, 118, 110, 0.18);
    outline-offset: 1px;
    border-color: var(--primary);
}
.lp-login-form .lp-btn { width: 100%; margin-top: 4px; }
.lp-login-error { margin: 0; color: #b91c1c; font-size: 0.85rem; font-weight: 600; }
.lp-login-error[hidden] { display: none; }
.lp-login-demo { margin: 6px 0 0; font-size: 0.8rem; color: var(--muted); text-align: center; }
.lp-login-demo strong { color: var(--primary-strong); }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
    .lp-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-flow, .lp-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-hero { grid-template-columns: 1fr; padding-top: 40px; }
    /* En vertical, primero el título/copy y después la comparación. */
}

/* Nav mobile/tablet: hamburguesa con menú desplegable (en vez de links cortados). */
@media (max-width: 820px) {
    .lp-nav-toggle { display: inline-grid; }
    .lp-nav-links {
        position: absolute;
        top: calc(100% + 6px);
        right: 16px;
        left: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: var(--surface);
        box-shadow: var(--shadow-lg);
        display: none;
    }
    .lp-nav-links.is-open { display: flex; }
    .lp-nav-links a { padding: 11px 12px; border-radius: 10px; font-size: 1rem; }
    .lp-nav-links a:hover { background: var(--surface-soft); color: var(--text); }
    .lp-nav-cta { text-align: center; margin-top: 4px; }
}

@media (max-width: 600px) {
    .lp-feature-grid, .lp-flow, .lp-trust-grid { grid-template-columns: 1fr; }
    .lp-final { flex-direction: column; align-items: flex-start; text-align: left; }
    .lp-section { padding: 40px 18px; }
    /* Sin rotación ni float en mobile: evita el scroll horizontal del borde rotado. */
    .lp-mock { transform: none; }
    .lp-section-soft { border-radius: 20px; margin-left: 12px; margin-right: 12px; }
}

/* ---------- Legal (terms / privacy) ---------- */
.lp-legal { max-width: 760px; margin: 0 auto; padding: 48px 24px 72px; }
.lp-legal h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 850; margin: 6px 0 10px; }
.lp-legal-summary { color: var(--muted); font-size: 1.02rem; max-width: 60ch; }
.lp-legal-meta { color: var(--muted); font-size: 0.84rem; font-weight: 700; margin-top: 4px; }
.lp-legal-body { display: grid; gap: 22px; margin-top: 28px; }
.lp-legal-section h2 { font-size: 1.12rem; font-weight: 800; margin: 0 0 6px; }
.lp-legal-section p { color: var(--text); line-height: 1.65; margin: 0; }

/* ---------- Animaciones (suaves, nada abrupto) ---------- */
.lp-brand-mark { transition: transform 0.2s ease; }
.lp-brand-mark svg { display: block; }

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }

    /* Entrada CSS pura (sin JS): el contenido es visible por defecto; la
       animación solo realza al cargar. fill-mode backwards => no bloquea el
       hover y nunca deja nada oculto si la animación no corre. */
    .reveal { animation: lp-in 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) backwards; }
    @keyframes lp-in {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: none; }
    }

    /* Stagger leve (animation-delay no afecta transiciones de hover) */
    .lp-hero-art { animation-delay: 0.08s; }
    .lp-feature-grid .lp-feature:nth-child(2) { animation-delay: 0.05s; }
    .lp-feature-grid .lp-feature:nth-child(3) { animation-delay: 0.10s; }
    .lp-feature-grid .lp-feature:nth-child(4) { animation-delay: 0.15s; }
    .lp-feature-grid .lp-feature:nth-child(n + 5) { animation-delay: 0.18s; }
    .lp-flow li:nth-child(2), .lp-trust-grid article:nth-child(2) { animation-delay: 0.08s; }
    .lp-flow li:nth-child(3), .lp-trust-grid article:nth-child(3) { animation-delay: 0.16s; }
    .lp-flow li:nth-child(4), .lp-trust-grid article:nth-child(4) { animation-delay: 0.24s; }

    /* Flote sutil del mockup del hero */
    .lp-mock { animation: lp-float 6.5s ease-in-out infinite; }
    @keyframes lp-float {
        0%, 100% { transform: rotate(0.6deg) translateY(0); }
        50% { transform: rotate(0.6deg) translateY(-9px); }
    }

    /* Micro-interacción de la marca */
    .lp-brand:hover .lp-brand-mark { transform: rotate(-4deg) scale(1.05); }
}

/* En mobile, sin flote ni rotación del mockup (evita scroll horizontal). Va al
   final para ganarle al @media(prefers-reduced-motion) que reactiva el rotate. */
@media (max-width: 600px) {
    .lp-mock { transform: none; animation: none; }
}

/* --- Planes (tarjetas, precios USD) --- */
.lp-plans { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 920px) { .lp-plans { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; } }
.lp-plan {
    position: relative; display: grid; gap: 10px; align-content: start; padding: 22px 20px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.lp-plan.is-featured { border-color: rgba(15, 118, 110, 0.45); box-shadow: var(--shadow-lg); }
.lp-plan-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 4px 12px; border-radius: 999px;
    background: var(--grad); color: #fff; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.03em; white-space: nowrap;
}
.lp-plan h3 { margin: 0; font-size: 1.25rem; }
.lp-plan-desc { margin: 0; color: var(--muted); font-size: 0.9rem; }
.lp-plan-price { margin: 6px 0 2px; font-size: 2rem; font-weight: 900; color: var(--primary-strong); line-height: 1; }
.lp-plan-price span { font-size: 0.9rem; font-weight: 700; color: var(--muted); }
.lp-plan-features { list-style: none; margin: 8px 0 0; padding: 12px 0 0; border-top: 1px solid var(--line); display: grid; gap: 8px; }
.lp-plan-features li { position: relative; padding-left: 24px; font-size: 0.9rem; color: var(--text); }
.lp-plan-features li::before {
    content: ''; position: absolute; left: 0; top: 2px; width: 16px; height: 16px; border-radius: 50%;
    background: var(--surface-soft); box-shadow: inset 0 0 0 1.5px var(--primary);
}
.lp-plan-features li::after {
    content: ''; position: absolute; left: 5px; top: 5px; width: 5px; height: 8px;
    border: solid var(--primary); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.lp-plan-cta { margin-top: 14px; width: 100%; }

/* --- Form: solicitar acceso --- */
.lp-request-form {
    display: grid; gap: 14px; grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; padding: 22px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
@media (min-width: 640px) {
    .lp-request-form { grid-template-columns: 1fr 1fr; }
    .lp-field-wide, .lp-request-actions { grid-column: 1 / -1; }
}
.lp-field { display: grid; gap: 6px; }
.lp-field label { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.lp-field label span { color: var(--muted); font-weight: 500; }
.lp-field input, .lp-field textarea {
    width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: var(--radius-sm);
    background: var(--bg); color: var(--text); font: inherit;
}
.lp-field input:focus, .lp-field textarea:focus { outline: 2px solid var(--primary); outline-offset: 1px; border-color: var(--primary); }
.lp-field textarea { resize: vertical; }
.lp-request-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.lp-request-status { margin: 0; font-size: 0.88rem; font-weight: 700; color: var(--primary-strong); }
.lp-request-status.is-error { color: #b42318; }
