/* =========================================================
   Orbentyx · Landing Page CSS
   Primary: #4F46E5 · Dark: #1E293B · Accent: #818CF8
   ========================================================= */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary:        #4F46E5;
    --primary-light:  #6366F1;
    --primary-dark:   #3730A3;
    --accent:         #818CF8;
    --font-title:     'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    --font-body:      'Inter', system-ui, -apple-system, sans-serif;
    --dark:           #1E293B;
    --dark-2:         #0F172A;
    --gray-900:       #0F172A;
    --gray-800:       #1E293B;
    --gray-700:       #334155;
    --gray-600:       #475569;
    --gray-500:       #64748B;
    --gray-400:       #94A3B8;
    --gray-300:       #CBD5E1;
    --gray-200:       #E2E8F0;
    --gray-100:       #F1F5F9;
    --gray-50:        #F8FAFC;
    --white:          #FFFFFF;
    --success:        #10B981;
    --warning:        #F59E0B;
    --danger:         #EF4444;
    --radius-sm:      6px;
    --radius:         10px;
    --radius-lg:      16px;
    --radius-xl:      24px;
    --shadow-sm:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
    --shadow:         0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
    --shadow-lg:      0 16px 48px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
    --shadow-xl:      0 24px 64px rgba(0,0,0,.15);
    --shadow-primary: 0 8px 32px rgba(79,70,229,.35);
    --transition:     .2s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background:
        radial-gradient(circle at top left, rgba(79,70,229,.08), transparent 34%),
        radial-gradient(circle at top right, rgba(168,85,247,.08), transparent 26%),
        linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 34%, #F8FAFC 100%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.lp-logo,
.lp-plan-price,
.lp-stat-number,
.lp-hero-card-value,
.lp-ia-metric {
    font-family: var(--font-title);
}

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

/* ── Layout helpers ── */
.lp-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.lp-grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lp-grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.lp-grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.text-center { text-align: center; }

/* ── Typography ── */
.lp-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(79,70,229,.08);
    border: 1px solid rgba(79,70,229,.18);
    border-radius: 100px;
    padding: 4px 14px;
    margin-bottom: 16px;
}
.lp-h1 {
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em;
    color: var(--dark-2);
}
.lp-h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.025em;
    color: var(--dark-2);
}
.lp-h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-2);
    line-height: 1.3;
}
.lp-lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
}
.lp-gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Buttons ── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1;
    text-decoration: none;
}
.lp-btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}
.lp-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(79,70,229,.45);
}
.lp-btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.lp-btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.lp-btn-ghost {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.25);
    backdrop-filter: blur(8px);
}
.lp-btn-ghost:hover {
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.45);
    transform: translateY(-2px);
}
.lp-btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.lp-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Navbar ── */
.lp-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background var(--transition), box-shadow var(--transition);
}
.lp-nav.scrolled {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--gray-200), var(--shadow-sm);
}
.lp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.lp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.02em;
}
.lp-logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, #818CF8 100%);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: .95rem;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(79,70,229,.4);
}
.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.lp-nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255,255,255,.82);
    transition: color var(--transition);
}
.lp-nav-links a:hover { color: var(--white); }
.lp-nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-nav-login {
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255,255,255,.82);
    transition: color var(--transition);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}
.lp-nav-login:hover { color: var(--white); background: rgba(255,255,255,.1); }

/* Mobile nav toggle */
.lp-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--white);
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    z-index: 101;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lp-nav-toggle:hover  { background: rgba(255,255,255,.12); }
.lp-nav-toggle:active { background: rgba(255,255,255,.2); }
.lp-nav-toggle svg { width: 28px; height: 28px; display: block; pointer-events: none; }
/* Cuando está scrolled (fondo blanco), cambiar colores hover/active */
.lp-nav.scrolled .lp-nav-toggle:hover  { background: var(--gray-100); }
.lp-nav.scrolled .lp-nav-toggle:active { background: var(--gray-200); }

/* ── Hero ── */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(79,70,229,.30), transparent 30%),
        radial-gradient(circle at 85% 10%, rgba(168,85,247,.28), transparent 24%),
        radial-gradient(circle at 80% 75%, rgba(16,185,129,.10), transparent 28%),
        linear-gradient(135deg, #081120 0%, #111B35 48%, #0F172A 100%);
    padding-top: 72px;
}
.lp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(79,70,229,.45) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 90% 10%, rgba(168,85,247,.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(6,182,212,.2) 0%, transparent 60%);
}
.lp-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
}
.lp-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 100px;
}
.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 100px;
    padding: 6px 16px 6px 8px;
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.lp-hero-badge-dot {
    width: 20px; height: 20px;
    background: linear-gradient(135deg, var(--primary-light), #A855F7);
    border-radius: 100px;
    display: flex; align-items: center; justify-content: center;
    font-size: .6rem;
}
.lp-hero .lp-h1 { color: var(--white); margin-bottom: 24px; }
.lp-hero .lp-lead { color: rgba(255,255,255,.7); margin-bottom: 40px; max-width: 520px; }
.lp-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}
.lp-hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .85rem;
    color: rgba(255,255,255,.5);
}
.lp-hero-trust-avatars {
    display: flex;
    align-items: center;
}
.lp-hero-trust-avatars span {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 2px solid var(--dark-2);
    background: linear-gradient(135deg, var(--accent), var(--primary));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
    color: var(--white);
    margin-left: -8px;
}
.lp-hero-trust-avatars span:first-child { margin-left: 0; }
.lp-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 680px;
}
.lp-hero-stage {
    position: relative;
    width: 100%;
    max-width: 580px;
    min-height: 620px;
    perspective: 1400px;
    transform-style: preserve-3d;
}
.lp-hero-3d {
    position: absolute;
    inset: 0;
    filter: drop-shadow(0 22px 60px rgba(79,70,229,.25));
    transform: translateZ(0);
}
.lp-hero-3d canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}
.lp-hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(4px);
    opacity: .85;
    pointer-events: none;
    animation: floatOrb 10s ease-in-out infinite;
}
.lp-hero-orb-a {
    width: 120px; height: 120px; top: 18px; right: -10px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(129,140,248,.35) 38%, rgba(79,70,229,.08) 68%, transparent 72%);
}
.lp-hero-orb-b {
    width: 180px; height: 180px; left: -22px; bottom: 54px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(16,185,129,.24) 34%, rgba(6,182,212,.08) 62%, transparent 72%);
    animation-delay: -2s;
}
.lp-hero-orb-c {
    width: 76px; height: 76px; right: 12px; bottom: 148px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.85), rgba(168,85,247,.28) 36%, transparent 70%);
    animation-delay: -4s;
}
.lp-hero-floating {
    position: absolute;
    z-index: 3;
    padding: 16px 18px;
    min-width: 180px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(6, 10, 24, .46);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 24px 40px rgba(15,23,42,.22);
}
.lp-hero-floating-top { top: 66px; left: -8px; transform: rotate(-8deg) translateZ(36px); }
.lp-hero-floating-bottom { right: -18px; bottom: 70px; transform: rotate(10deg) translateZ(28px); }
.lp-hero-floating-kicker {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.58);
    margin-bottom: 6px;
}
.lp-hero-floating-value {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    margin-bottom: 5px;
}
.lp-hero-floating-sub {
    font-size: .78rem;
    line-height: 1.4;
    color: rgba(226,232,240,.76);
}
.lp-hero-mockup-premium {
    position: relative;
    z-index: 2;
    transform: translateZ(64px) rotateX(11deg) rotateY(-11deg);
    box-shadow: 0 36px 90px rgba(2,6,23,.5), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.lp-hero-mockup-premium:hover {
    transform: translateZ(64px) rotateX(9deg) rotateY(-8deg) translateY(-2px);
}
.lp-hero-mockup-premium .lp-mockup-header {
    background: rgba(255,255,255,.08);
}
.lp-hero-mockup-premium .lp-mockup-body {
    background:
        radial-gradient(circle at top right, rgba(129,140,248,.12), transparent 28%),
        rgba(5,9,20,.44);
}
.lp-hero-mockup {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.05) inset;
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 540px;
}
.lp-mockup-header {
    background: rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lp-mockup-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.lp-mockup-dot:nth-child(1) { background: #FF5F56; }
.lp-mockup-dot:nth-child(2) { background: #FFBD2E; }
.lp-mockup-dot:nth-child(3) { background: #27C93F; }
.lp-mockup-url {
    flex: 1;
    background: rgba(255,255,255,.06);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: .75rem;
    color: rgba(255,255,255,.4);
    font-family: monospace;
    margin-left: 8px;
}
.lp-mockup-body { padding: 24px; }
.lp-mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.lp-mockup-stat {
    background: rgba(255,255,255,.06);
    border-radius: var(--radius);
    padding: 16px;
    border: 1px solid rgba(255,255,255,.08);
}
.lp-mockup-stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}
.lp-mockup-stat-label {
    font-size: .7rem;
    color: rgba(255,255,255,.4);
    font-weight: 500;
}
.lp-mockup-stat-up {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: .65rem;
    font-weight: 700;
    color: var(--success);
    margin-top: 6px;
}
.lp-mockup-chart {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 16px;
}
.lp-mockup-chart-title {
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    margin-bottom: 12px;
}
.lp-mockup-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 56px;
}
.lp-mockup-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
    opacity: .75;
    transition: opacity .2s;
}
.lp-mockup-bar:nth-child(2n) {
    background: linear-gradient(180deg, var(--accent), rgba(79,70,229,.5));
    opacity: .5;
}
.lp-mockup-bar.active { opacity: 1; }
.lp-mockup-list { display: flex; flex-direction: column; gap: 8px; }
.lp-mockup-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 8px;
}
.lp-mockup-avatar {
    width: 26px; height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
}
.lp-mockup-row-text { flex: 1; }
.lp-mockup-row-name {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.8);
}
.lp-mockup-row-sub {
    font-size: .65rem;
    color: rgba(255,255,255,.35);
}
.lp-mockup-badge {
    font-size: .6rem;
    font-weight: 700;
    border-radius: 100px;
    padding: 2px 8px;
}
.lp-mockup-badge-green { background: rgba(16,185,129,.2); color: #34D399; }
.lp-mockup-badge-blue  { background: rgba(99,102,241,.25); color: #818CF8; }
.lp-mockup-badge-amber { background: rgba(245,158,11,.2); color: #FCD34D; }

/* Floating cards */
.lp-hero-card {
    position: absolute;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    animation: floatCard 6s ease-in-out infinite;
}
.lp-hero-card-1 { bottom: -20px; left: -32px; animation-delay: 0s; }
.lp-hero-card-2 { top: 30px; right: -24px; animation-delay: 2s; }
.lp-hero-card-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.lp-hero-card-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.lp-hero-card-label {
    font-size: .7rem;
    color: rgba(255,255,255,.5);
    margin-top: 2px;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

@keyframes floatOrb {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -12px, 0) scale(1.03); }
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: .8; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* ── Section shared ── */
.lp-section { padding: 96px 0; }
.lp-section-header { margin-bottom: 64px; }
.lp-section-header .lp-lead { margin-top: 16px; max-width: 560px; }
.lp-section-header.text-center .lp-lead { margin: 16px auto 0; }

/* ── 3D progressive reveal ── */
.lp-depth-reveal {
    transform: perspective(1200px) translate3d(0, 0, 0);
}
.js-reveal-ready .lp-depth-reveal {
    opacity: 0;
    transform: perspective(1200px) translate3d(0, 42px, 0) rotateX(7deg) scale(.985);
    transform-origin: 50% 100%;
    transition: transform .9s cubic-bezier(.2,.7,.15,1), opacity .8s ease;
    will-change: transform, opacity;
}
.js-reveal-ready .lp-depth-reveal.is-visible {
    opacity: 1;
    transform: perspective(1200px) translate3d(0, 0, 0) rotateX(0deg) scale(1);
}
.js-reveal-ready .lp-depth-reveal .lp-grid-3 > *,
.js-reveal-ready .lp-depth-reveal .lp-pricing-grid > *,
.js-reveal-ready .lp-depth-reveal .lp-stats-grid > * {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(.985);
    transition: transform .65s ease, opacity .6s ease;
}
.js-reveal-ready .lp-depth-reveal.is-visible .lp-grid-3 > *,
.js-reveal-ready .lp-depth-reveal.is-visible .lp-pricing-grid > *,
.js-reveal-ready .lp-depth-reveal.is-visible .lp-stats-grid > * {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}
.js-reveal-ready .lp-depth-reveal.is-visible .lp-grid-3 > *:nth-child(2),
.js-reveal-ready .lp-depth-reveal.is-visible .lp-pricing-grid > *:nth-child(2),
.js-reveal-ready .lp-depth-reveal.is-visible .lp-stats-grid > *:nth-child(2) {
    transition-delay: .08s;
}
.js-reveal-ready .lp-depth-reveal.is-visible .lp-grid-3 > *:nth-child(3),
.js-reveal-ready .lp-depth-reveal.is-visible .lp-pricing-grid > *:nth-child(3),
.js-reveal-ready .lp-depth-reveal.is-visible .lp-stats-grid > *:nth-child(3) {
    transition-delay: .16s;
}
.js-reveal-ready .lp-depth-reveal.is-visible .lp-grid-3 > *:nth-child(4),
.js-reveal-ready .lp-depth-reveal.is-visible .lp-stats-grid > *:nth-child(4) {
    transition-delay: .24s;
}

/* ── Logos bar ── */
.lp-logos {
    padding: 48px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}
.lp-logos-label {
    text-align: center;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 28px;
}
.lp-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.lp-logos-row span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-300);
    letter-spacing: .02em;
    transition: color var(--transition);
}
.lp-logos-row span:hover { color: var(--gray-500); }

/* ── Features ── */
.lp-features { background: var(--white); }
.lp-features .lp-label {
    color: #0f172a;
    border-color: rgba(15,23,42,.18);
    background: rgba(15,23,42,.04);
}
.lp-features .lp-h2 {
    color: #020617;
}
.lp-features .lp-section-header .lp-lead {
    color: #0f172a;
}

.lp-feature-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.lp-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79,70,229,.04), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.lp-feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--primary) inset;
    transform: translateY(-4px);
}
.lp-feature-card:hover::before { opacity: 1; }

.lp-feature-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(79,70,229,.12), rgba(129,140,248,.08));
    border: 1px solid rgba(79,70,229,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.lp-feature-card .lp-h3 { margin-bottom: 10px; }
.lp-feature-card p {
    font-size: .9rem;
    line-height: 1.65;
    color: var(--gray-600);
}

/* ── Stats ── */
.lp-stats {
    background: linear-gradient(135deg, var(--dark-2) 0%, #1a1040 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.lp-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(79,70,229,.3) 0%, transparent 70%);
}
.lp-stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.lp-stat-item {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
}
.lp-stat-item:last-child { border-right: none; }
.lp-stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-stat-label {
    font-size: .875rem;
    color: rgba(255,255,255,.5);
    font-weight: 500;
}

/* ── How it works ── */
.lp-steps { background: var(--gray-50); }

.lp-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.lp-step-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(79,70,229,.4);
}
.lp-step-content {}
.lp-step-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 6px;
}
.lp-step-content p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.65;
}

.lp-steps-visual {
    position: relative;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.lp-steps-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79,70,229,.03), transparent);
}

.lp-steps-list { display: flex; flex-direction: column; gap: 32px; }

/* ── Pricing ── */
.lp-pricing { background: var(--white); }
.lp-pricing .lp-label {
    color: #0f172a;
    border-color: rgba(15,23,42,.18);
    background: rgba(15,23,42,.04);
}
.lp-pricing .lp-section-header .lp-h2 { color: #020617; }
.lp-pricing .lp-section-header .lp-lead { color: #0f172a; }

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}
.lp-plan {
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    padding: 52px 32px 36px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}
.lp-plan:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.lp-plan.featured {
    border-color: var(--primary);
    background: linear-gradient(160deg, var(--dark-2) 0%, #1a1040 100%);
    color: var(--white);
    transform: scale(1.04);
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--primary);
}
.lp-plan.featured:hover { transform: scale(1.04) translateY(-4px); }

.lp-plan-badge {
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), #A855F7);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(79,70,229,.45);
}
.lp-plan-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.lp-plan.featured .lp-plan-name { color: var(--accent); }
.lp-plan-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark-2);
    line-height: 1;
    margin-bottom: 4px;
}
.lp-plan.featured .lp-plan-price { color: var(--white); }
.lp-plan-period {
    font-size: .85rem;
    color: #334155;
    margin-bottom: 24px;
}
.lp-plan.featured .lp-plan-period { color: rgba(255,255,255,.5); }
.lp-plan-desc {
    font-size: .875rem;
    color: #1f2937;
    line-height: 1.6;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-200);
}
.lp-plan.featured .lp-plan-desc {
    color: rgba(255,255,255,.6);
    border-bottom-color: rgba(255,255,255,.1);
}
.lp-plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.lp-plan-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .875rem;
    color: #0f172a;
}
.lp-plan.featured .lp-plan-feature { color: rgba(255,255,255,.8); }
.lp-plan-feature-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(79,70,229,.12);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: .65rem;
}
.lp-plan.featured .lp-plan-feature-check {
    background: rgba(129,140,248,.2);
    color: var(--accent);
}
.lp-plan .lp-btn { width: 100%; justify-content: center; }

/* ── Testimonials ── */
.lp-testimonials { background: var(--gray-50); }
.lp-testimonials-swiper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 0 42px;
    overflow: visible;
}
.lp-testimonials-swiper .swiper-wrapper {
    align-items: stretch;
}
.lp-testimonials-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
}
.lp-testimonials-swiper .lp-testimonial {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}
.lp-testimonials-swiper .swiper-button-prev,
.lp-testimonials-swiper .swiper-button-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    color: var(--primary);
    top: calc(50% - 22px);
}
.lp-testimonials-swiper .swiper-button-prev::after,
.lp-testimonials-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 800;
}
.lp-testimonials-swiper .swiper-pagination {
    bottom: 0 !important;
}
.lp-testimonials-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    opacity: 1;
}
.lp-testimonials-swiper .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, var(--primary), #A855F7);
    transform: scale(1.2);
}

.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.lp-testimonial {
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    backdrop-filter: blur(12px);
}
.lp-testimonial:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(79,70,229,.26);
}
.lp-testimonial-stars {
    display: flex; gap: 3px;
    margin-bottom: 16px;
    color: var(--warning);
    font-size: .875rem;
}
.lp-testimonial-text {
    font-size: .9rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-style: italic;
}
.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    font-weight: 700;
    font-size: .875rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.lp-testimonial-name {
    font-size: .875rem;
    font-weight: 700;
    color: var(--dark-2);
}
.lp-testimonial-role {
    font-size: .78rem;
    color: var(--gray-500);
}

/* ── CTA Banner ── */
.lp-cta-banner {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #7C3AED 100%);
    position: relative;
    overflow: hidden;
}
.lp-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,.06) 0%, transparent 50%);
}
.lp-cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 40px 40px;
}
.lp-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.lp-cta-inner .lp-h2 { color: var(--white); margin-bottom: 16px; }
.lp-cta-inner .lp-lead { color: rgba(255,255,255,.75); margin-bottom: 40px; }
.lp-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.lp-btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.lp-btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,.25);
}

/* ── Footer ── */
.lp-footer {
    background: var(--dark-2);
    padding: 64px 0 32px;
    color: rgba(255,255,255,.5);
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.lp-footer-brand .lp-logo { margin-bottom: 16px; color: var(--white); }
.lp-footer-brand p {
    font-size: .875rem;
    line-height: 1.65;
    max-width: 280px;
}
.lp-footer-col h5 {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin-bottom: 18px;
}
.lp-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.lp-footer-col a {
    font-size: .875rem;
    transition: color var(--transition);
}
.lp-footer-col a:hover { color: rgba(255,255,255,.85); }
.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.lp-footer-bottom p { font-size: .8rem; }
.lp-footer-legal {
    display: flex;
    gap: 20px;
}
.lp-footer-legal a { font-size: .8rem; transition: color var(--transition); }
.lp-footer-legal a:hover { color: rgba(255,255,255,.85); }

/* ── Dental icon strip ── */
.lp-icon-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}
.lp-icon-strip span {
    font-size: 1.6rem;
}

/* ── Animations ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.lp-animate { animation: fadeInUp .65s ease-out both; }
.lp-animate-d1 { animation-delay: .1s; }
.lp-animate-d2 { animation-delay: .2s; }
.lp-animate-d3 { animation-delay: .3s; }
.lp-animate-d4 { animation-delay: .4s; }
.lp-animate-d5 { animation-delay: .5s; }
.lp-animate-d6 { animation-delay: .6s; }

/* ── Sticky nav: tras scroll → fondo claro → texto oscuro ── */
.lp-nav.scrolled .lp-logo        { color: var(--dark-2); }
.lp-nav.scrolled .lp-nav-links a { color: var(--gray-600); }
.lp-nav.scrolled .lp-nav-links a:hover { color: var(--primary); }
.lp-nav.scrolled .lp-nav-login   { color: var(--gray-700); }
.lp-nav.scrolled .lp-nav-login:hover { color: var(--primary); background: rgba(79,70,229,.06); }
.lp-nav.scrolled .lp-nav-toggle  { color: var(--dark-2); }

/* ── IA section ── */
.lp-ia-areas {
    background: linear-gradient(180deg, rgba(248,250,252,.72) 0%, rgba(255,255,255,1) 100%);
}
.lp-ia-areas .lp-label {
    color: #0f172a;
    border-color: rgba(15,23,42,.18);
    background: rgba(15,23,42,.04);
}
.lp-ia-areas .lp-h2 {
    color: #020617;
}
.lp-ia-areas .lp-section-header .lp-lead {
    color: #0f172a;
}
.lp-ia-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(15,23,42,.05);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.lp-ia-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15,23,42,.10);
}
.lp-ia-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}
.lp-ia-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lp-ia-icon-green { background: rgba(16,185,129,.12); color: var(--success); }
.lp-ia-icon-blue { background: rgba(79,70,229,.12); color: var(--primary); }
.lp-ia-icon-violet { background: rgba(168,85,247,.12); color: #9333EA; }
.lp-ia-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.lp-ia-badge-green { background: rgba(16,185,129,.12); color: var(--success); }
.lp-ia-badge-blue { background: rgba(79,70,229,.12); color: var(--primary); }
.lp-ia-badge-violet { background: rgba(168,85,247,.12); color: #9333EA; }
.lp-ia-metric {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -.04em;
    margin-bottom: 12px;
}
.lp-ia-metric-green { color: var(--success); }
.lp-ia-metric-blue { color: var(--primary); }
.lp-ia-metric-violet { color: #9333EA; }
.lp-ia-title {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.02em;
    color: var(--dark-2);
    margin-bottom: 10px;
}
.lp-ia-desc {
    font-size: .98rem;
    line-height: 1.72;
    color: var(--gray-600);
    margin-bottom: 18px;
}
.lp-ia-proof {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.lp-ia-proof-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 14px 16px;
}
.lp-ia-proof-val {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: 4px;
}
.lp-ia-proof-green { color: var(--success); }
.lp-ia-proof-blue { color: var(--primary); }
.lp-ia-proof-violet { color: #9333EA; }
.lp-ia-proof-lbl {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.lp-ia-kpi-bar {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 18px 0;
    margin-top: 10px;
}
.lp-ia-kpi-grid {
    display: grid;
    grid-template-columns: repeat(7, auto);
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.lp-ia-kpi-item {
    text-align: center;
    padding: 6px 10px;
}
.lp-ia-kpi-val {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.02em;
    color: var(--white);
    line-height: 1;
}
.lp-ia-kpi-lbl {
    margin-top: 6px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
}
.lp-ia-kpi-sep {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,.12);
}

/* ── Responsive ── */

/* ─ Tablet grande (≤1024px) ─ */
@media (max-width: 1024px) {
    .lp-grid-2 { grid-template-columns: 1fr; gap: 48px; }
    .lp-grid-3 { grid-template-columns: 1fr 1fr; }
    .lp-grid-4 { grid-template-columns: 1fr 1fr; }
    /* Pricing: 2 columnas en tablet para mostrar los 3 planes mejor */
    .lp-pricing-grid { grid-template-columns: 1fr 1fr; gap: 20px; max-width: none; }
    .lp-plan.featured { transform: none; }
    .lp-plan.featured:hover { transform: translateY(-4px); }
    .lp-hero-card-2 { display: none; }
    .lp-stats-grid { grid-template-columns: 1fr 1fr; }
    .lp-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .lp-testimonials-grid { grid-template-columns: 1fr 1fr; }
    .lp-hero-content { padding: 48px 0 64px; }
    .lp-section-header { margin-bottom: 48px; }
}

/* ─ Tablet retrato / Móvil (≤768px) ─ */
@media (max-width: 768px) {
    .lp-nav-links { display: none !important; }
    .lp-nav-cta   { display: none !important; }
    .lp-nav-toggle { display: flex !important; }

    .lp-section { padding: 64px 0; }
    .lp-section-header { margin-bottom: 36px; }

    .lp-hero { min-height: auto; padding: 88px 0 64px; }
    .lp-hero-content { padding: 0; }
    .lp-hero-visual { display: none; }
    /* Botones del hero: columna y anchura completa */
    .lp-hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 40px; }
    .lp-hero-actions .lp-btn { justify-content: center; width: 100%; }

    .lp-grid-3 { grid-template-columns: 1fr; }
    .lp-grid-4 { grid-template-columns: 1fr 1fr; }

    /* Pricing: 1 columna pero ancho completo */
    .lp-pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .lp-plan { padding: 28px 24px; }
    .lp-plan.featured { transform: none; }
    .lp-plan.featured:hover { transform: translateY(-4px); }

    .lp-stats-grid { grid-template-columns: 1fr 1fr; }
    .lp-testimonials-grid { grid-template-columns: 1fr; }

    .lp-footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .lp-footer-bottom { flex-direction: column; text-align: center; }
    .lp-footer-legal { justify-content: center; }

    .lp-steps-list { gap: 24px; }
    .lp-steps-visual { padding: 24px; }

    .lp-cta-actions { flex-direction: column; align-items: stretch; }
    .lp-cta-actions .lp-btn { justify-content: center; }

    .lp-logos-row { gap: 28px; }
}

/* ─ Móvil pequeño (≤480px) ─ */
@media (max-width: 480px) {
    .lp-container { padding: 0 16px; }
    .lp-grid-4 { grid-template-columns: 1fr; }
    .lp-hero .lp-h1 { font-size: 2rem; }
    .lp-h2 { font-size: 1.6rem; }
    .lp-lead { font-size: 1rem; }
    .lp-logos-row { gap: 20px; }
    .lp-hero-card-1 { display: none; }
    .lp-section { padding: 48px 0; }
    .lp-btn-lg { padding: 14px 24px; font-size: .98rem; }
    .lp-plan-price { font-size: 2.2rem; }
    .lp-stat-number { font-size: 2.2rem; }
    .lp-pricing-grid { max-width: 100%; }
    .lp-feature-card { padding: 24px 20px; }
    .lp-testimonial { padding: 22px 20px; }
    .lp-cta-banner { padding: 64px 0; }
}

/* ── Mobile nav open ── */
.lp-nav-mobile {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    z-index: 99;
    flex-direction: column;
    gap: 4px;
}
.lp-nav-mobile.open { display: flex; }
.lp-nav-mobile a {
    padding: 12px 8px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
    transition: color var(--transition);
}
.lp-nav-mobile a:last-child { border-bottom: none; }
.lp-nav-mobile a:hover { color: var(--primary); }
.lp-nav-mobile .lp-btn { margin-top: 12px; justify-content: center; width: 100%; }

/* =========================================================
   Premium marketing refresh
   ========================================================= */

.lp-page,
.mk-page {
    --font-title: 'Space Grotesk', 'Manrope', system-ui, -apple-system, sans-serif;
    --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
    color-scheme: light;
    background:
        radial-gradient(circle at 10% 10%, rgba(99,102,241,.16), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(168,85,247,.14), transparent 24%),
        radial-gradient(circle at 50% 85%, rgba(16,185,129,.10), transparent 22%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #eef2ff 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

.lp-page::selection,
.mk-page::selection {
    background: rgba(79,70,229,.16);
    color: #081120;
}

.lp-page h1,
.lp-page h2,
.lp-page h3,
.lp-page h4,
.lp-page h5,
.lp-page h6,
.mk-page h1,
.mk-page h2,
.mk-page h3,
.mk-page h4,
.mk-page h5,
.mk-page h6,
.mk-page .lp-logo,
.mk-page .lp-plan-price,
.mk-page .lp-stat-number,
.mk-page .lp-hero-card-value,
.mk-page .lp-ia-metric {
    font-family: var(--font-title);
}

.lp-page .lp-nav,
.mk-page .lp-nav {
    padding-top: 16px;
}

.lp-page .lp-nav::before,
.mk-page .lp-nav::before,
.mk-topbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,10,24,.62) 0%, rgba(6,10,24,.12) 72%, transparent 100%);
    pointer-events: none;
}

.lp-page .lp-nav-inner,
.mk-page .lp-nav-inner,
.mk-topbar-inner {
    position: relative;
    min-height: 82px;
    border-radius: 24px;
    padding-inline: 22px;
    background: rgba(9,14,28,.72);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(24px);
    box-shadow: 0 24px 60px rgba(2,6,23,.20);
}

.lp-page .lp-nav.scrolled,
.mk-page .lp-nav.scrolled,
.mk-page .mk-topbar {
    padding-top: 12px;
}

.lp-page .lp-nav.scrolled .lp-nav-inner {
    background: rgba(248,250,252,.86);
    border-color: rgba(148,163,184,.16);
    box-shadow: 0 18px 48px rgba(15,23,42,.10);
}

.lp-page .lp-nav.scrolled .lp-logo,
.mk-page .lp-nav.scrolled .lp-logo,
.lp-page .lp-nav.scrolled .lp-nav-links a,
.mk-page .lp-nav.scrolled .lp-nav-links a,
.lp-page .lp-nav.scrolled .lp-nav-login,
.mk-page .lp-nav.scrolled .lp-nav-login,
.lp-page .lp-nav.scrolled .lp-nav-toggle,
.mk-page .lp-nav.scrolled .lp-nav-toggle {
    color: #0f172a;
}

.lp-page .lp-logo,
.mk-page .lp-logo {
    color: var(--white);
}

.lp-page .lp-logo-icon,
.mk-page .lp-logo-icon {
    box-shadow: 0 18px 42px rgba(79,70,229,.42);
}

.lp-page .lp-btn,
.mk-page .lp-btn {
    border-radius: 999px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.lp-page .lp-btn:hover,
.mk-page .lp-btn:hover {
    transform: translateY(-2px);
}

.lp-page .lp-btn-primary,
.mk-page .lp-btn-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    box-shadow: 0 18px 40px rgba(79,70,229,.30);
}

.lp-page .lp-btn-primary:hover,
.mk-page .lp-btn-primary:hover {
    box-shadow: 0 24px 48px rgba(79,70,229,.38);
}

.lp-page .lp-btn-outline,
.mk-page .lp-btn-outline,
.mk-page .lp-btn-ghost {
    border-color: rgba(79,70,229,.18);
    color: #1e293b;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(14px);
}

.lp-page .lp-hero {
    border-bottom: 1px solid rgba(148,163,184,.10);
}

.lp-page .lp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,17,32,.16) 0%, transparent 38%, rgba(8,17,32,.24) 100%);
    pointer-events: none;
}

.lp-page .lp-hero .lp-h1 {
    max-width: 11ch;
    text-wrap: balance;
}

.lp-page .lp-hero .lp-lead {
    max-width: 44rem;
}

.lp-page .lp-hero-badge,
.lp-page .lp-hero-trust,
.lp-page .lp-hero-floating,
.lp-page .lp-hero-card,
.lp-page .lp-hero-mockup,
.lp-page .lp-hero-stage,
.lp-page .lp-feature-card,
.lp-page .lp-plan,
.lp-page .lp-ia-card,
.lp-page .lp-testimonial,
.mk-page .mk-legal-card {
    border-radius: 28px;
}

.lp-page .lp-hero-mockup,
.lp-page .lp-feature-card,
.lp-page .lp-plan,
.lp-page .lp-ia-card,
.lp-page .lp-testimonial,
.mk-page .mk-legal-card {
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(148,163,184,.16);
    box-shadow: 0 24px 70px rgba(15,23,42,.08);
    backdrop-filter: blur(18px);
}

.lp-page .lp-hero-mockup {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 36px 90px rgba(2,6,23,.5), 0 0 0 1px rgba(255,255,255,.05) inset;
}

.lp-page .lp-plan.featured {
    background: linear-gradient(160deg, #081120 0%, #1a1040 100%);
    border-color: rgba(99,102,241,.28);
    box-shadow: 0 30px 80px rgba(8,17,32,.24), 0 0 0 1px rgba(79,70,229,.18);
}

.lp-page .lp-feature-card,
.lp-page .lp-plan,
.lp-page .lp-ia-card,
.lp-page .lp-testimonial,
.mk-page .mk-legal-card {
    position: relative;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.lp-page .lp-feature-card:hover,
.lp-page .lp-plan:hover,
.lp-page .lp-ia-card:hover,
.lp-page .lp-testimonial:hover,
.mk-page .mk-legal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(15,23,42,.12);
    border-color: rgba(79,70,229,.22);
}

.lp-page .lp-feature-card::before,
.lp-page .lp-plan::before,
.lp-page .lp-ia-card::before,
.lp-page .lp-testimonial::before,
.mk-page .mk-legal-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79,70,229,.07), transparent 36%, rgba(168,85,247,.08));
    opacity: 0;
    transition: opacity .22s ease;
    pointer-events: none;
}

.lp-page .lp-feature-card:hover::before,
.lp-page .lp-plan:hover::before,
.lp-page .lp-ia-card:hover::before,
.lp-page .lp-testimonial:hover::before,
.mk-page .mk-legal-card:hover::before {
    opacity: 1;
}

.lp-page .lp-feature-icon,
.lp-page .lp-ia-card-icon {
    box-shadow: 0 12px 28px rgba(79,70,229,.12);
}

.lp-page .lp-logos,
.lp-page .lp-features,
.lp-page .lp-pricing,
.lp-page .lp-testimonials,
.mk-page .mk-shell {
    position: relative;
}

.lp-page .lp-logos::before,
.lp-page .lp-features::before,
.lp-page .lp-pricing::before,
.lp-page .lp-testimonials::before,
.mk-page .mk-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.52) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.lp-page .lp-logos {
    background: rgba(255,255,255,.56);
    backdrop-filter: blur(12px);
}

.lp-page .lp-logos-row span {
    color: #94a3b8;
}

.lp-page .lp-stats,
.lp-page .lp-cta-banner,
.lp-page .lp-footer {
    position: relative;
}

.lp-page .lp-stats {
    background: linear-gradient(135deg, #081120 0%, #111827 55%, #1d3b5f 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.lp-page .lp-stats-grid {
    gap: 0;
}

.lp-page .lp-stat-item {
    position: relative;
}

.lp-page .lp-stat-item::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: rgba(255,255,255,.08);
}

.lp-page .lp-stat-item:last-child::after {
    display: none;
}

.lp-page .lp-testimonials-swiper .swiper-button-prev,
.lp-page .lp-testimonials-swiper .swiper-button-next {
    background: rgba(255,255,255,.92);
    color: #4f46e5;
    border-color: rgba(148,163,184,.18);
}

.lp-page .lp-cta-banner {
    background: linear-gradient(135deg, #06111f 0%, #182a4a 46%, #6d28d9 100%);
}

.lp-page .lp-footer {
    background: #07111f;
}

.mk-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 14px 0 0;
}

.mk-topbar-links,
.mk-topbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mk-topbar-links a {
    color: rgba(255,255,255,.72);
    font-size: .92rem;
    font-weight: 600;
    transition: color .2s ease, opacity .2s ease;
}

.mk-topbar-links a:hover {
    color: #ffffff;
}

.mk-shell {
    padding: 72px 0 96px;
}

.mk-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 0%, rgba(99,102,241,.08), transparent 24%),
        radial-gradient(circle at 85% 20%, rgba(168,85,247,.08), transparent 20%);
    pointer-events: none;
}

.mk-legal-hero {
    position: relative;
    margin-bottom: 28px;
    padding: 40px 0 14px;
}

.mk-legal-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.mk-pill,
.mk-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.mk-pill {
    padding: 8px 14px;
    background: rgba(79,70,229,.10);
    color: #3730a3;
    border: 1px solid rgba(79,70,229,.16);
}

.mk-legal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, .9fr);
    gap: 24px;
    align-items: start;
}

.mk-legal-card {
    padding: 30px;
}

.mk-prose {
    display: grid;
    gap: 28px;
    color: #334155;
}

.mk-prose h2,
.mk-legal-card h3 {
    margin: 0 0 10px;
    color: #0f172a;
}

.mk-prose h2 {
    font-size: 1.1rem;
}

.mk-prose p,
.mk-prose li {
    line-height: 1.8;
    font-size: .98rem;
}

.mk-prose ul {
    display: grid;
    gap: 10px;
    margin-top: 10px;
    padding-left: 20px;
    list-style: disc;
}

.mk-summary-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 18px;
    list-style: disc;
    color: #475569;
}

.mk-legal-links {
    display: grid;
    gap: 12px;
}

.mk-legal-links a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(148,163,184,.18);
    background: rgba(248,250,252,.9);
    color: #0f172a;
    font-weight: 600;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.mk-legal-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(79,70,229,.22);
    background: #ffffff;
}

.mk-table-wrap {
    overflow: auto;
    border-radius: 20px;
    border: 1px solid rgba(148,163,184,.16);
}

.mk-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
    background: rgba(255,255,255,.78);
}

.mk-table th,
.mk-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(226,232,240,.96);
    vertical-align: top;
}

.mk-table th {
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #64748b;
    background: rgba(248,250,252,.95);
}

.mk-table td {
    color: #334155;
    font-size: .95rem;
}

.mk-table code {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: .88rem;
    color: #0f172a;
}

.mk-badge {
    padding: 6px 10px;
}

.mk-badge-success {
    background: rgba(16,185,129,.12);
    color: #047857;
}

.mk-badge-info {
    background: rgba(79,70,229,.12);
    color: #4338ca;
}

.mk-actions-row {
    display: flex;
    justify-content: flex-start;
}

.mk-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.mk-button-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(79,70,229,.28);
}

.mk-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(79,70,229,.36);
}

.mk-footer {
    padding: 0 0 42px;
    color: rgba(255,255,255,.68);
    background: #07111f;
}

.mk-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 44px 0 28px;
}

.mk-footer-brand {
    margin-bottom: 16px;
}

.mk-footer p {
    line-height: 1.7;
}

.mk-footer h5 {
    margin-bottom: 14px;
    color: rgba(255,255,255,.92);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
}

.mk-footer ul {
    display: grid;
    gap: 10px;
}

.mk-footer a:hover {
    color: #ffffff;
}

.mk-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.mk-footer-legal {
    display: flex;
    gap: 18px;
}

.mk-footer-legal a {
    color: rgba(255,255,255,.72);
}

.mk-footer-legal a:hover {
    color: #ffffff;
}

#lp-cookie-banner {
    background: rgba(8,17,32,.96) !important;
    border-top-color: rgba(148,163,184,.12) !important;
}

#lp-cookie-banner button {
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

#lp-cookie-banner button:hover {
    transform: translateY(-1px);
    opacity: .96;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 1024px) {
    .mk-legal-grid,
    .mk-footer-grid {
        grid-template-columns: 1fr;
    }

    .mk-topbar-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .lp-page .lp-nav-inner,
    .mk-topbar-inner {
        padding-inline: 16px;
    }

    .mk-shell {
        padding-top: 48px;
        padding-bottom: 72px;
    }

    .mk-legal-card {
        padding: 24px;
    }

    .mk-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.mk-company-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
}

.mk-hero-panel,
.mk-mini-card,
.mk-company-card,
.mk-contact-card,
.mk-blog-card {
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(148,163,184,.16);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(15,23,42,.08);
    backdrop-filter: blur(18px);
}

.mk-hero-panel {
    padding: 32px;
}

.mk-hero-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.mk-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(79,70,229,.08);
    color: #3730a3;
    border: 1px solid rgba(79,70,229,.14);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.mk-company-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.mk-company-card {
    padding: 24px;
}

.mk-company-card p,
.mk-company-card li {
    line-height: 1.75;
    color: #475569;
}

.mk-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.mk-metric {
    padding: 18px;
    border-radius: 20px;
    background: rgba(248,250,252,.92);
    border: 1px solid rgba(148,163,184,.14);
}

.mk-metric-value {
    display: block;
    margin-bottom: 4px;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    color: #0f172a;
}

.mk-metric-label {
    color: #64748b;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mk-company-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding-left: 18px;
    list-style: disc;
}

.mk-company-list li {
    line-height: 1.7;
}

.mk-company-section {
    display: grid;
    gap: 20px;
}

.mk-company-section + .mk-company-section {
    margin-top: 24px;
}

.mk-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.mk-contact-card {
    padding: 24px;
    border-radius: 24px;
}

.mk-contact-card h3 {
    margin-bottom: 8px;
}

.mk-contact-card p {
    color: #475569;
    line-height: 1.7;
}

.mk-contact-card a {
    color: #4338ca;
    font-weight: 700;
}

.mk-timeline {
    display: grid;
    gap: 16px;
}

.mk-timeline-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(248,250,252,.92);
    border: 1px solid rgba(148,163,184,.14);
}

.mk-timeline-year {
    font-size: 1rem;
    font-weight: 900;
    color: #4f46e5;
}

.mk-timeline-title {
    margin-bottom: 6px;
    color: #0f172a;
    font-weight: 800;
}

.mk-timeline-body {
    color: #475569;
    line-height: 1.7;
}

.mk-checklist {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 18px;
    list-style: disc;
}

.mk-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.mk-blog-card {
    padding: 24px;
    border-radius: 24px;
}

.mk-blog-card h3 {
    margin-bottom: 8px;
}

.mk-blog-card p {
    color: #475569;
    line-height: 1.7;
}

.mk-blog-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #64748b;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.mk-blog-empty {
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(79,70,229,.08), rgba(168,85,247,.08));
    border: 1px dashed rgba(79,70,229,.22);
}

@media (max-width: 1024px) {
    .mk-company-hero,
    .mk-company-grid,
    .mk-contact-grid,
    .mk-blog-grid,
    .mk-footer-grid,
    .mk-legal-grid {
        grid-template-columns: 1fr;
    }

    .mk-metric-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mk-hero-panel,
    .mk-company-card,
    .mk-contact-card,
    .mk-blog-card {
        padding: 24px;
    }

    .mk-metric-grid {
        grid-template-columns: 1fr;
    }
}

