/* ============================================================
   JustOMS Landing v2 — light, 3D, animated
   Scoped to body.public-home so register/privacy keep old styles
   ============================================================ */

body.public-home {
    --lp-bg: #f7f9fe;
    --lp-bg-soft: #eef2fb;
    --lp-card: #ffffff;
    --lp-card-border: #e5eaf5;
    --lp-text: #0f1a33;
    --lp-muted: #5a6a8a;
    --lp-primary: #4f46e5;
    --lp-primary-2: #0891b2;
    --lp-accent: #9333ea;
    --lp-green: #059669;
    --lp-radius: 18px;
    --lp-shadow-sm: 0 2px 10px rgba(15, 26, 51, 0.05);
    --lp-shadow-md: 0 14px 38px rgba(15, 26, 51, 0.09);
    --lp-shadow-lg: 0 28px 70px rgba(15, 26, 51, 0.14);
    --lp-font: 'Outfit', system-ui, -apple-system, sans-serif;
    --lp-font-display: 'Sora', 'Outfit', system-ui, sans-serif;

    background: var(--lp-bg);
    color: var(--lp-text);
    font-family: var(--lp-font);
    overflow-x: hidden;
}

body.public-home .lp * { box-sizing: border-box; }

/* ---------- Topbar override ---------- */
body.public-home .topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 26, 51, 0.06);
}
body.public-home .topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.9rem 24px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}
body.public-home .topbar .nav a { color: var(--lp-muted); }
body.public-home .topbar .nav a:hover { color: var(--lp-text); }
body.public-home .topbar .nav .nav-login { color: var(--lp-text); }
body.public-home .topbar .nav .btn {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    color: #fff;
    border: 0;
}
body.public-home .topbar .nav .nav-trial {
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 22px rgba(79,70,229,0.35);
}
body.public-home .nav-toggle span { background: var(--lp-text); }
@media (max-width: 900px) {
    body.public-home .topbar .nav {
        background: #ffffff;
        border-color: var(--lp-card-border);
        box-shadow: var(--lp-shadow-md);
    }
}

/* ---------- Layout helpers ---------- */
.lp-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.lp-wrap-narrow { max-width: 820px; }
.lp-section { padding: 96px 0; position: relative; }
.lp-center { text-align: center; }
.lp-muted { color: var(--lp-muted); }
.lp-green { color: var(--lp-green); }

.lp-gradient-text {
    background: linear-gradient(92deg, #4f46e5 0%, #0891b2 55%, #9333ea 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.lp-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lp-primary);
    margin-bottom: 14px;
}

.lp-section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.lp-section-head h2 {
    font-family: var(--lp-font-display);
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    line-height: 1.15;
    margin: 0 0 14px;
    color: var(--lp-text);
}
.lp-section-head p { color: var(--lp-muted); font-size: 1.06rem; margin: 0; }

/* ---------- Buttons ---------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    will-change: transform;
}
.lp-btn:active { transform: scale(0.97); }
.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-accent) 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(79, 70, 229, 0.32);
}
.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(79, 70, 229, 0.42);
    color: #fff;
}
.lp-btn-trial { position: relative; }
.lp-btn-sm { padding: 11px 18px; font-size: 0.9rem; }
.lp-trial-note {
    margin: 14px 0 0;
    font-size: 0.88rem;
    color: var(--lp-muted);
    font-weight: 500;
}
.lp-btn-outline {
    border: 1px solid #d4dcee;
    color: var(--lp-text);
    background: #ffffff;
    box-shadow: var(--lp-shadow-sm);
}
.lp-btn-outline:hover {
    border-color: var(--lp-primary);
    color: var(--lp-primary);
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-md);
}
.lp-btn-white { background: #fff; color: #1e1b4b; box-shadow: 0 10px 30px rgba(0,0,0,0.22); }
.lp-btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(0,0,0,0.3); color: #1e1b4b; }
.lp-btn-ghost-light { border: 1px solid rgba(255,255,255,0.55); color: #fff; }
.lp-btn-ghost-light:hover { background: rgba(255,255,255,0.15); color: #fff; }
.lp-btn-block { width: 100%; }

/* ---------- Reveal animation ---------- */
.lp-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-reveal.lp-in { opacity: 1; transform: none; }

/* ============================================================
   HERO
   ============================================================ */
.lp-hero {
    position: relative;
    padding: 88px 0 0;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, #ffffff 0%, var(--lp-bg) 100%);
}
.lp-hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.lp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.6;
    animation: lpOrbFloat 14s ease-in-out infinite alternate;
}
.lp-orb-a { width: 520px; height: 520px; background: radial-gradient(circle, rgba(99,102,241,0.22), transparent 65%); top: -160px; left: -120px; }
.lp-orb-b { width: 460px; height: 460px; background: radial-gradient(circle, rgba(8,145,178,0.16), transparent 65%); top: 10%; right: -140px; animation-delay: -5s; }
.lp-orb-c { width: 420px; height: 420px; background: radial-gradient(circle, rgba(147,51,234,0.14), transparent 65%); bottom: -120px; left: 34%; animation-delay: -9s; }
@keyframes lpOrbFloat {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(40px, -34px, 0) scale(1.12); }
}
.lp-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79, 70, 229, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 70, 229, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 68% at 50% 0%, #000 45%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 68% at 50% 0%, #000 45%, transparent 100%);
}

.lp-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    padding-top: 22px;
    padding-bottom: 70px;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #dbe3f5;
    background: #ffffff;
    color: var(--lp-muted);
    font-size: 0.86rem;
    font-weight: 600;
    margin-bottom: 22px;
    box-shadow: var(--lp-shadow-sm);
}
.lp-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--lp-green);
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.5);
    animation: lpPulse 2s infinite;
}
@keyframes lpPulse {
    0% { box-shadow: 0 0 0 0 rgba(5,150,105,0.45); }
    70% { box-shadow: 0 0 0 9px rgba(5,150,105,0); }
    100% { box-shadow: 0 0 0 0 rgba(5,150,105,0); }
}

.lp-h1 {
    font-family: var(--lp-font-display);
    font-size: clamp(2.1rem, 4.6vw, 3.55rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    color: var(--lp-text);
}
.lp-sub {
    font-size: 1.13rem;
    line-height: 1.65;
    color: var(--lp-muted);
    max-width: 520px;
    margin: 0 0 30px;
}
.lp-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.lp-cta-center { justify-content: center; }

.lp-trust { display: flex; flex-wrap: wrap; gap: 18px; color: var(--lp-muted); font-size: 0.9rem; font-weight: 600; }
.lp-trust i { font-style: normal; color: var(--lp-green); margin-right: 6px; }

/* Hero visual — 3D tilt frame + floating cards */
.lp-hero-visual { position: relative; perspective: 1400px; }
.lp-shot-frame {
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe6f5;
    box-shadow:
        0 30px 70px rgba(30, 41, 82, 0.18),
        0 0 0 1px rgba(255,255,255,0.6),
        0 0 90px rgba(79, 70, 229, 0.1);
    transform: rotateY(-7deg) rotateX(3deg);
    transform-style: preserve-3d;
    transition: transform 0.25s ease-out;
    will-change: transform;
}
.lp-shot-chrome {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 14px;
    background: #f4f6fc;
    border-bottom: 1px solid #e7ebf7;
}
.lp-shot-chrome span { width: 11px; height: 11px; border-radius: 50%; }
.lp-shot-chrome span:nth-child(1) { background: #f87171; }
.lp-shot-chrome span:nth-child(2) { background: #fbbf24; }
.lp-shot-chrome span:nth-child(3) { background: #34d399; }
.lp-shot-chrome em {
    font-style: normal;
    margin-left: 10px;
    font-size: 0.76rem;
    color: var(--lp-muted);
    background: #ffffff;
    border: 1px solid #e7ebf7;
    padding: 3px 12px;
    border-radius: 6px;
}
.lp-shot-frame img { display: block; width: 100%; height: auto; }

.lp-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #e3e9f6;
    box-shadow: 0 18px 40px rgba(30, 41, 82, 0.16);
    animation: lpFloat 6s ease-in-out infinite;
    z-index: 3;
}
.lp-float-card strong { display: block; font-size: 0.86rem; color: var(--lp-text); }
.lp-float-card span { font-size: 0.76rem; color: var(--lp-muted); }
.lp-float-ico {
    width: 34px; height: 34px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.95rem;
    flex-shrink: 0;
}
.lp-ico-green { background: rgba(5,150,105,0.12); color: var(--lp-green); }
.lp-ico-blue  { background: rgba(8,145,178,0.12); color: var(--lp-primary-2); }
.lp-ico-wa    { background: rgba(37,211,102,0.14); color: #1da851; }
.lp-float-1 { top: -22px; right: -8px; animation-delay: -1s; }
.lp-float-2 { bottom: 60px; left: -34px; animation-delay: -3s; }
.lp-float-3 { bottom: -24px; right: 40px; animation-delay: -5s; }
@keyframes lpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-11px); }
}

/* Marquee */
.lp-marquee {
    position: relative;
    border-top: 1px solid #e7ebf7;
    border-bottom: 1px solid #e7ebf7;
    background: #ffffff;
    overflow: hidden;
    padding: 16px 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lp-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    animation: lpMarquee 32s linear infinite;
    will-change: transform;
}
.lp-marquee-track span { color: var(--lp-muted); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em; }
.lp-marquee-track b { color: var(--lp-primary); }
@keyframes lpMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   STATS
   ============================================================ */
.lp-stats-band { padding: 72px 0; }
.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.lp-stat {
    text-align: center;
    padding: 30px 18px;
    border-radius: var(--lp-radius);
    background: var(--lp-card);
    border: 1px solid var(--lp-card-border);
    box-shadow: var(--lp-shadow-sm);
}
.lp-stat strong {
    display: block;
    font-family: var(--lp-font-display);
    font-size: 2.4rem;
    background: linear-gradient(92deg, #4f46e5, #0891b2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}
.lp-stat > span { color: var(--lp-muted); font-size: 0.92rem; }

/* ============================================================
   BENTO FEATURES
   ============================================================ */
.lp-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.lp-bento-card {
    position: relative;
    padding: 30px 28px;
    border-radius: var(--lp-radius);
    background: var(--lp-card);
    border: 1px solid var(--lp-card-border);
    overflow: hidden;
    box-shadow: var(--lp-shadow-sm);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.lp-bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 70, 229, 0.4);
    box-shadow: var(--lp-shadow-lg);
}
.lp-bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(480px circle at var(--mx, 50%) var(--my, 0%), rgba(79,70,229,0.07), transparent 45%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.lp-bento-card:hover::before { opacity: 1; }
.lp-bento-lg { grid-column: span 2; grid-row: span 1; }
.lp-bento-ico {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(8,145,178,0.1));
    border: 1px solid rgba(79,70,229,0.18);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 18px;
}
.lp-bento-card h3 {
    font-family: var(--lp-font-display);
    font-size: 1.14rem;
    margin: 0 0 9px;
    color: var(--lp-text);
}
.lp-bento-card p { color: var(--lp-muted); font-size: 0.94rem; line-height: 1.6; margin: 0; }

/* mini pipeline inside large bento card */
.lp-pipe { margin-top: 22px; display: grid; gap: 10px; max-width: 440px; }
.lp-pipe-row { display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 12px; }
.lp-pipe-row > span { font-size: 0.8rem; color: var(--lp-muted); font-weight: 600; }
.lp-bar { height: 9px; border-radius: 99px; background: #edf1fa; overflow: hidden; }
.lp-bar i {
    display: block; height: 100%;
    width: 0;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--lp-primary), var(--lp-primary-2));
    transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}
.lp-bar-ok i { background: linear-gradient(90deg, #059669, #34d399); }
.lp-bar-warn i { background: linear-gradient(90deg, #d97706, #fbbf24); }
.lp-in .lp-bar i, .lp-bars-in .lp-bar i { width: var(--w, 50%); }

/* ============================================================
   GALLERY
   ============================================================ */
.lp-gallery-section {
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(79,70,229,0.05), transparent),
        var(--lp-bg-soft);
    border-top: 1px solid #e5eaf5;
    border-bottom: 1px solid #e5eaf5;
}
.lp-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.lp-shot {
    margin: 0;
    cursor: zoom-in;
    border-radius: var(--lp-radius);
    outline: none;
}
.lp-shot-img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #dfe6f5;
    background: #ffffff;
    box-shadow: var(--lp-shadow-md);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.lp-shot:hover .lp-shot-img,
.lp-shot:focus-visible .lp-shot-img {
    transform: translateY(-5px) scale(1.015);
    border-color: rgba(79,70,229,0.5);
    box-shadow: var(--lp-shadow-lg), 0 0 44px rgba(79,70,229,0.1);
}
.lp-shot-img img { display: block; width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; object-position: top; }
.lp-shot-zoom {
    position: absolute;
    top: 12px; right: 12px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    border: 1px solid #dfe6f5;
    display: flex; align-items: center; justify-content: center;
    color: var(--lp-primary);
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: var(--lp-shadow-sm);
}
.lp-shot:hover .lp-shot-zoom { opacity: 1; transform: scale(1); }
.lp-shot figcaption { padding: 14px 6px 0; }
.lp-shot figcaption strong { display: block; color: var(--lp-text); font-size: 0.99rem; }
.lp-shot figcaption span { color: var(--lp-muted); font-size: 0.85rem; }

/* Lightbox */
.lp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.lp-lightbox[hidden] { display: none; }
.lp-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 30, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: lpFadeIn 0.25s ease;
}
.lp-lightbox-body {
    position: relative;
    margin: 0;
    max-width: min(1240px, 94vw);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: lpZoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-lightbox-body img {
    max-width: 100%;
    max-height: calc(90vh - 84px);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 40px 120px rgba(0,0,0,0.6);
    background: #ffffff;
}
.lp-lightbox-body figcaption { text-align: center; padding-top: 16px; }
.lp-lightbox-body figcaption strong { display: block; color: #fff; font-size: 1.05rem; }
.lp-lightbox-body figcaption span { color: #b6c2dd; font-size: 0.9rem; }
.lp-lb-close {
    position: absolute;
    top: -14px; right: -14px;
    z-index: 5;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: #ffffff;
    color: #0f1a33;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 26px rgba(0,0,0,0.35);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.lp-lb-close:hover { transform: rotate(90deg) scale(1.08); background: #ef4444; border-color: #ef4444; color: #fff; }
.lp-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.14);
    color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}
.lp-lb-nav:hover { background: var(--lp-primary); transform: translateY(-50%) scale(1.08); }
.lp-lb-prev { left: -18px; }
.lp-lb-next { right: -18px; }
@keyframes lpFadeIn { from { opacity: 0; } }
@keyframes lpZoomIn { from { opacity: 0; transform: scale(0.92); } }

/* ============================================================
   BENEFITS
   ============================================================ */
.lp-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.lp-benefit {
    padding: 30px 26px;
    border-radius: var(--lp-radius);
    background: var(--lp-card);
    border: 1px solid var(--lp-card-border);
    box-shadow: var(--lp-shadow-sm);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.lp-benefit:hover { transform: translateY(-5px); border-color: rgba(8,145,178,0.4); box-shadow: var(--lp-shadow-md); }
.lp-benefit-num {
    font-family: var(--lp-font-display);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--lp-primary-2);
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}
.lp-benefit h3 { font-family: var(--lp-font-display); font-size: 1.12rem; margin: 0 0 9px; color: var(--lp-text); }
.lp-benefit p { color: var(--lp-muted); font-size: 0.94rem; line-height: 1.6; margin: 0; }

/* ============================================================
   PRICING
   ============================================================ */
.lp-pricing-section {
    background:
        radial-gradient(ellipse 60% 46% at 50% 100%, rgba(147,51,234,0.05), transparent),
        var(--lp-bg-soft);
    border-top: 1px solid #e5eaf5;
    border-bottom: 1px solid #e5eaf5;
}
.lp-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
    align-items: stretch;
    max-width: 1060px;
    margin: 0 auto;
}
.lp-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 28px;
    border-radius: 22px;
    background: var(--lp-card);
    border: 1px solid var(--lp-card-border);
    box-shadow: var(--lp-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lp-price-card:hover { transform: translateY(-6px); box-shadow: var(--lp-shadow-md); }
.lp-popular {
    background: linear-gradient(180deg, #ffffff 0%, #f6f4ff 100%);
    border-color: rgba(79,70,229,0.5);
    box-shadow: 0 20px 56px rgba(79,70,229,0.16);
}
.lp-pop-badge {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    padding: 5px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(79,70,229,0.35);
}
.lp-price-card h3 { font-family: var(--lp-font-display); font-size: 1.25rem; margin: 0 0 6px; color: var(--lp-text); }
.lp-price-desc { color: var(--lp-muted); font-size: 0.9rem; margin: 0 0 18px; }
.lp-price-amount { display: flex; align-items: baseline; gap: 7px; margin-bottom: 4px; }
.lp-price-amount strong { font-family: var(--lp-font-display); font-size: 2.1rem; color: var(--lp-text); }
.lp-price-amount span { color: var(--lp-muted); font-size: 0.92rem; }
.lp-price-year { color: var(--lp-primary); font-size: 0.88rem; font-weight: 600; margin-bottom: 14px; }
.lp-price-list { list-style: none; margin: 10px 0 24px; padding: 0; flex: 1; display: grid; gap: 10px; }
.lp-price-list li {
    position: relative;
    padding-left: 26px;
    color: var(--lp-muted);
    font-size: 0.92rem;
}
.lp-price-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lp-green);
    font-weight: 800;
}
.lp-pricing-note { text-align: center; color: var(--lp-muted); margin-top: 34px; font-size: 0.95rem; }
.lp-pricing-note a { color: var(--lp-primary); font-weight: 700; }

/* ============================================================
   STEPS
   ============================================================ */
.lp-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
    max-width: 1020px;
    margin: 0 auto;
}
.lp-step {
    text-align: center;
    padding: 34px 24px;
    border-radius: var(--lp-radius);
    background: var(--lp-card);
    border: 1px solid var(--lp-card-border);
    box-shadow: var(--lp-shadow-sm);
}
.lp-step-num {
    width: 52px; height: 52px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--lp-font-display);
    font-size: 1.3rem; font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    box-shadow: 0 8px 24px rgba(79,70,229,0.32);
}
.lp-step h3 { font-family: var(--lp-font-display); font-size: 1.08rem; margin: 0 0 8px; color: var(--lp-text); }
.lp-step p { color: var(--lp-muted); font-size: 0.92rem; margin: 0; line-height: 1.55; }
.lp-step-arrow { align-self: center; color: var(--lp-primary); font-size: 1.6rem; font-weight: 800; }

/* ============================================================
   PAIN POINTS
   ============================================================ */
.lp-pain-section { background: #fff; }
.lp-pain-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.lp-pain-card {
    background: var(--lp-card);
    border: 1px solid var(--lp-card-border);
    border-radius: var(--lp-radius);
    padding: 28px 26px;
    box-shadow: var(--lp-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lp-pain-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-md);
    border-color: rgba(239,68,68,0.25);
}
.lp-pain-ico {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
    background: #fef2f2;
    margin-bottom: 14px;
}
.lp-pain-card h3 {
    font-family: var(--lp-font-display);
    font-size: 1.08rem;
    margin: 0 0 8px;
    color: var(--lp-text);
}
.lp-pain-card p {
    margin: 0;
    color: var(--lp-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================================
   SOLUTION BAND
   ============================================================ */
.lp-solution-band {
    padding: 56px 0;
    background:
        radial-gradient(ellipse 90% 120% at 50% 0%, rgba(79,70,229,0.14), transparent 70%),
        linear-gradient(180deg, #eef2ff 0%, #f7f9fe 100%);
    border-top: 1px solid rgba(79,70,229,0.08);
    border-bottom: 1px solid rgba(79,70,229,0.08);
}
.lp-solution-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.lp-solution-copy { max-width: 640px; }
.lp-solution-copy h2 {
    font-family: var(--lp-font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.15;
    margin: 0 0 10px;
    color: var(--lp-text);
}
.lp-solution-copy p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 1.02rem;
    line-height: 1.6;
}
.lp-solution-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.lp-solution-note {
    font-size: 0.82rem;
    color: var(--lp-muted);
}
.lp-eyebrow-light { color: var(--lp-primary); }
.lp-gradient-text-light {
    background: linear-gradient(92deg, #4338ca 0%, #0891b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ============================================================
   PRICING TRIAL BANNER
   ============================================================ */
.lp-trial-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 22px 26px;
    margin-bottom: 48px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(79,70,229,0.08), rgba(147,51,234,0.06));
    border: 1px solid rgba(79,70,229,0.18);
}
.lp-trial-banner-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lp-trial-banner-text strong {
    font-family: var(--lp-font-display);
    font-size: 1.15rem;
    color: var(--lp-text);
}
.lp-trial-banner-text span {
    color: var(--lp-muted);
    font-size: 0.92rem;
}

/* ============================================================
   STICKY MOBILE TRIAL BAR
   ============================================================ */
.lp-sticky-trial {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 80;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(15,26,51,0.08);
    box-shadow: 0 -8px 30px rgba(15,26,51,0.08);
}
.lp-sticky-trial-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.lp-sticky-trial-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.lp-sticky-trial-copy strong {
    font-size: 0.95rem;
    color: var(--lp-text);
}
.lp-sticky-trial-copy span {
    font-size: 0.78rem;
    color: var(--lp-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================================
   FAQ
   ============================================================ */
.lp-faq { display: grid; gap: 12px; }
.lp-faq details {
    border-radius: 14px;
    background: var(--lp-card);
    border: 1px solid var(--lp-card-border);
    box-shadow: var(--lp-shadow-sm);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.lp-faq details[open] { border-color: rgba(79,70,229,0.4); box-shadow: var(--lp-shadow-md); }
.lp-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 19px 52px 19px 22px;
    font-weight: 700;
    color: var(--lp-text);
    position: relative;
    user-select: none;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
    content: '+';
    position: absolute;
    right: 20px; top: 50%;
    transform: translateY(-50%);
    font-size: 1.35rem;
    color: var(--lp-primary);
    transition: transform 0.25s ease;
}
.lp-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.lp-faq details p { margin: 0; padding: 0 22px 20px; color: var(--lp-muted); line-height: 1.65; font-size: 0.95rem; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.lp-final-cta { padding: 60px 0 110px; }
.lp-final-inner {
    position: relative;
    text-align: center;
    padding: 72px 34px;
    border-radius: 28px;
    background:
        radial-gradient(ellipse 80% 100% at 50% 0%, rgba(129,140,248,0.45), transparent 70%),
        linear-gradient(160deg, #4338ca 0%, #7e22ce 100%);
    border: 1px solid rgba(79,70,229,0.35);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(79,70,229,0.3);
}
.lp-final-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000 30%, transparent 100%);
    pointer-events: none;
}
.lp-final-inner h2 {
    position: relative;
    font-family: var(--lp-font-display);
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    color: #fff;
    margin: 0 0 12px;
}
.lp-final-inner p { position: relative; color: rgba(255,255,255,0.85); font-size: 1.06rem; margin: 0 0 30px; }
.lp-final-inner .lp-cta-row { position: relative; margin-bottom: 0; }

/* ---------- Footer override ---------- */
body.public-home .footer {
    background: #ffffff;
    border-top: 1px solid #e5eaf5;
    color: var(--lp-muted);
}
body.public-home .footer a { color: var(--lp-muted); }
body.public-home .footer a:hover { color: var(--lp-text); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
    .lp-hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .lp-hero { min-height: 0; }
    .lp-hero-visual { max-width: 640px; margin: 0 auto; }
    .lp-bento { grid-template-columns: repeat(2, 1fr); }
    .lp-bento-lg { grid-column: span 2; }
    .lp-gallery { grid-template-columns: repeat(2, 1fr); }
    .lp-benefits { grid-template-columns: repeat(2, 1fr); }
    .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-pain-grid { grid-template-columns: 1fr 1fr; }
    .lp-solution-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 680px) {
    .lp-section { padding: 68px 0; }
    .lp-bento { grid-template-columns: 1fr; }
    .lp-bento-lg { grid-column: span 1; }
    .lp-gallery { grid-template-columns: 1fr; }
    .lp-benefits { grid-template-columns: 1fr; }
    .lp-pain-grid { grid-template-columns: 1fr; }
    .lp-trial-banner { flex-direction: column; align-items: stretch; }
    .lp-trial-banner .lp-btn { width: 100%; }
    body.public-home { padding-bottom: 72px; }
    .lp-steps { grid-template-columns: 1fr; }
    .lp-step-arrow { transform: rotate(90deg); justify-self: center; }
    .lp-float-2 { left: -6px; }
    .lp-float-1 { right: 0; }
    .lp-float-3 { right: 8px; }
    .lp-lb-prev { left: 6px; }
    .lp-lb-next { right: 6px; }
    .lp-lb-close { top: 8px; right: 8px; }
    .lp-shot-frame { transform: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .lp-reveal { opacity: 1; transform: none; transition: none; }
    .lp-orb, .lp-float-card, .lp-marquee-track, .lp-badge-dot { animation: none !important; }
    .lp-shot-frame { transform: none; transition: none; }
    .lp-bar i { transition: none; }
}
