        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        /* R692-followup-13: TOKENS unified with R23 login + R32 demo-register */
        :root {
            --lp-indigo:  #4f46e5;
            --lp-violet:  #7c3aed;
            --lp-pink:    #ec4899;
            --lp-amber:   #f59e0b;
            --lp-emerald: #10b981;
            --lp-ink:     #0f172a;
            --lp-ink-2:   #334155;
            --lp-muted:   #64748b;
            --lp-muted-2: #94a3b8;
            --lp-surface: #ffffff;
            --lp-bg:      #f8fafc;
            --lp-bg-2:    #f1f5f9;
            --lp-border:  #e2e8f0;
            /* Standardized radius scale matching R23 login */
            --lp-radius-sm: 8px;
            --lp-radius:    10px;
            --lp-radius-md: 14px;
            --lp-radius-lg: 20px;
            --lp-radius-xl: 24px;
            /* Unified shadow stack */
            --lp-shadow-sm: 0 1px 3px rgba(15,23,42,.05);
            --lp-shadow:    0 4px 16px rgba(79,70,229,.08);
            --lp-shadow-lg: 0 12px 40px rgba(79,70,229,.12);
            /* R803-design: premium shadow token */
            --lp-shadow-xl: 0 24px 64px rgba(79,70,229,.16);
            --lp-focus-ring: 0 0 0 3px rgba(79,70,229,.15);
            /* Typography scale (mobile-first, fluid) */
            --lp-fs-h1:   clamp(1.75rem, 4.8vw, 3.4rem);
            --lp-fs-h2:   clamp(1.4rem, 3vw, 2.1rem);
            --lp-fs-lead: clamp(.92rem, 2vw, 1.04rem);
            --lp-fs-body: clamp(.86rem, 1.4vw, .94rem);
            --lp-fs-sm:   clamp(.78rem, 1.2vw, .84rem);
            --lp-fs-xs:   clamp(.7rem, 1vw, .74rem);
            /* R810: fluid spacing scale — compact + all-device responsive */
            --lp-section-py: clamp(32px, 4.4vw, 48px); /* R816: tighter inter-section rhythm (was 38–60) */
            --lp-hero-pt:    clamp(60px, 8vw, 88px);
            --lp-hero-pb:    clamp(30px, 5vw, 52px);
            --lp-head-mb:    clamp(20px, 3.2vw, 34px);
        }
        [data-theme="dark"] {
            --lp-ink:     #f1f5f9;
            --lp-ink-2:   #cbd5e1;
            --lp-muted:   #94a3b8;
            --lp-muted-2: #64748b;
            --lp-surface: #1e293b;
            --lp-bg:      #0b1220;  /* synced with R23 login dark bg */
            --lp-bg-2:    #131b2e;
            --lp-border:  rgba(241,245,249,.10);
            --lp-shadow-sm: 0 1px 3px rgba(0,0,0,.3);
            --lp-shadow:    0 4px 16px rgba(0,0,0,.4);
            --lp-shadow-lg: 0 12px 40px rgba(0,0,0,.5);
            --lp-focus-ring: 0 0 0 3px rgba(129,140,248,.20);
        }

        html, body {
            /* R692-followup-13: SAME body font stack as R23 login */
            font-family: 'Inter', 'Noto Sans Thai', system-ui, -apple-system, sans-serif;
            color: var(--lp-ink); background: var(--lp-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            scroll-behavior: smooth;
            font-size: 15px;
            line-height: 1.6;
        }
        @media (max-width: 480px) { html, body { font-size: 14.5px; } }
        h1, h2, h3 {
            /* SAME heading stack as R23 login + R32 demo-register */
            font-family: 'Playfair Display', 'Noto Serif Thai', Georgia, serif;
            letter-spacing: -.02em; line-height: 1.18;
            color: var(--lp-ink);
        }
        :focus-visible { outline: none; box-shadow: var(--lp-focus-ring); border-radius: var(--lp-radius); }
        a { color: var(--lp-indigo); text-decoration: none; }
        a:hover { color: var(--lp-violet); }
        .lp-container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
        @media (max-width: 575px) { .lp-container { padding: 0 14px; } }

        /* ═══ NAV (sticky, compact) ═══ */
        .lp-nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: rgba(255,255,255,.72);
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid transparent;
            transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
        }
        /* R811: frosted -> solid + shadow once scrolled */
        .lp-nav.scrolled {
            background: rgba(255,255,255,.95);
            border-bottom-color: var(--lp-border);
            box-shadow: 0 4px 24px rgba(15,23,42,.06);
        }
        [data-theme="dark"] .lp-nav { background: rgba(15,23,42,.72); }
        [data-theme="dark"] .lp-nav.scrolled { background: rgba(15,23,42,.95); box-shadow: 0 4px 24px rgba(0,0,0,.4); }
        .lp-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; }
        .lp-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1rem; color: var(--lp-ink) !important; }
        .lp-logo-mark {
            width: 36px; height: 36px;
            background: linear-gradient(135deg, var(--lp-indigo), var(--lp-violet));
            border-radius: 12px; display: grid; place-items: center;
            color: #fff; font-size: 17px;
            box-shadow: 0 6px 20px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.3);
        }
        /* R692-fu-21: SVG-based logo mark — strip background since SVG carries its own gradient */
        .lp-logo-mark--img {
            background: transparent !important;
            box-shadow: 0 4px 14px rgba(79,70,229,.18);
            overflow: hidden;
            padding: 0;
        }
        .lp-logo-mark--img img { display: block; width: 100%; height: 100%; border-radius: inherit; }
        .lp-logo span {
            font-family: 'Playfair Display', 'Noto Serif Thai', Georgia, serif;
            font-weight: 700; letter-spacing: -.01em;
        }
        .lp-nav-menu { display: flex; align-items: center; gap: 26px; list-style: none; }
        .lp-nav-menu a {
            color: var(--lp-ink-2); font-size: 14px; font-weight: 500;
            transition: color .15s;
        }
        .lp-nav-menu a:hover { color: var(--lp-violet); }
        .lp-nav-cta { display: flex; align-items: center; gap: 8px; }
        .lp-btn-ghost {
            padding: 8px 16px; border-radius: var(--lp-radius); font-weight: 600; font-size: 14px;
            color: var(--lp-ink-2); background: transparent; border: 1px solid var(--lp-border);
            transition: all .15s;
        }
        .lp-btn-ghost:hover { color: var(--lp-violet); border-color: var(--lp-violet); background: rgba(124,58,237,.04); }
        .lp-btn-primary {
            padding: 8px 18px; border-radius: var(--lp-radius); font-weight: 700; font-size: 14px;
            color: #fff !important;
            background: linear-gradient(135deg, var(--lp-indigo), var(--lp-violet));
            border: 0;
            box-shadow: 0 6px 20px rgba(79,70,229,.30), inset 0 1px 0 rgba(255,255,255,.18);
            display: inline-flex; align-items: center; gap: 6px;
            transition: transform .15s, box-shadow .15s; cursor: pointer;
            white-space: nowrap;
        }
        .lp-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(79,70,229,.40), inset 0 1px 0 rgba(255,255,255,.18); color: #fff !important; }
        .lp-btn-primary:active { transform: translateY(0); }
        .lp-btn-lg { padding: 13px 28px; font-size: 15px; border-radius: var(--lp-radius-md); }
        .lp-btn-outline {
            padding: 8px 16px; border-radius: var(--lp-radius); font-weight: 600; font-size: 14px;
            color: var(--lp-violet) !important;
            background: transparent; border: 1.5px solid var(--lp-violet);
            display: inline-flex; align-items: center; gap: 6px;
            transition: all .15s; white-space: nowrap;
        }
        .lp-btn-outline:hover { background: var(--lp-violet); color: #fff !important; }
        /* R692-followup-19: Hero "Watch demo" CTA — secondary, with subtitle */
        .lp-btn-tour {
            padding: 8px 18px; border-radius: var(--lp-radius); font-weight: 600; font-size: 14px;
            color: var(--lp-ink-2) !important;
            background: var(--lp-bg-2); border: 1.5px dashed var(--lp-border);
            display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap;
            transition: all .15s; white-space: nowrap;
            text-decoration: none;
        }
        .lp-btn-tour:hover {
            background: var(--lp-surface);
            border-color: var(--lp-violet); border-style: solid;
            color: var(--lp-violet) !important;
            transform: translateY(-1px);
        }
        .lp-btn-tour i { color: var(--lp-violet); font-size: 1.1em; }
        .lp-btn-tour-sub {
            display: inline-block; width: 100%;
            font-size: 11px; font-weight: 500; color: var(--lp-muted);
            margin-top: -2px;
        }
        .lp-nav-toggle { display: none; background: transparent; border: 0; font-size: 22px; color: var(--lp-ink); cursor: pointer; }
        @media (max-width: 991px) {
            .lp-nav-menu { display: none; }
            .lp-nav-toggle { display: block; }
            .lp-nav-menu.open {
                display: flex; flex-direction: column; gap: 4px;
                position: absolute; top: 56px; left: 0; right: 0;
                background: var(--lp-surface); border-bottom: 1px solid var(--lp-border);
                padding: 12px 20px; box-shadow: var(--lp-shadow);
            }
            .lp-nav-menu.open a { padding: 10px 0; }
            /* Hide nav-menu Login on mobile (use sticky-CTA + hamburger) */
            .lp-nav-cta .lp-btn-ghost { display: none; }
        }
        .lp-icon-btn {
            background: transparent; border: 1px solid var(--lp-border); border-radius: 8px;
            width: 34px; height: 34px; display: grid; place-items: center;
            color: var(--lp-ink-2); cursor: pointer; font-size: 14px;
        }
        .lp-icon-btn:hover { color: var(--lp-violet); border-color: var(--lp-violet); }

        /* ═══ HERO (compact mobile) ═══ */
        .lp-hero {
            padding: var(--lp-hero-pt) 0 var(--lp-hero-pb); position: relative; overflow: hidden;
            background:
                radial-gradient(ellipse at 80% 10%, rgba(124,58,237,.10) 0%, transparent 60%),
                radial-gradient(ellipse at 10% 90%, rgba(236,72,153,.08) 0%, transparent 60%);
        }
        /* R810: hero padding now fluid via clamp tokens (compacts tablet/mobile smoothly) */
        .lp-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
        @media (max-width: 991px) { .lp-hero-grid { grid-template-columns: 1fr; gap: 28px; } }
        .lp-hero-badge {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 6px 14px; border-radius: 999px;
            background: linear-gradient(135deg, rgba(79,70,229,.10), rgba(124,58,237,.10));
            border: 1px solid rgba(124,58,237,.20);
            color: var(--lp-violet); font-size: 12px; font-weight: 600;
            margin-bottom: 18px;
            font-family: 'Inter', 'Noto Sans Thai', system-ui, sans-serif;
        }
        .lp-hero h1 {
            font-size: var(--lp-fs-h1); font-weight: 800;
            color: var(--lp-ink); margin-bottom: 16px;
        }
        .lp-hero h1 .grad {
            background: linear-gradient(135deg, var(--lp-indigo), var(--lp-violet), var(--lp-pink));
            -webkit-background-clip: text; background-clip: text;
            color: transparent; -webkit-text-fill-color: transparent;
        }
        .lp-hero-sub {
            font-size: var(--lp-fs-lead); color: var(--lp-muted); line-height: 1.7;
            margin-bottom: 24px; max-width: 540px;
        }
        .lp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
        .lp-hero-trust { display: flex; gap: 18px; flex-wrap: wrap; color: var(--lp-muted); font-size: 12.5px; }
        @media (max-width: 480px) { .lp-hero-trust { gap: 12px; font-size: 11.5px; } }
        .lp-hero-trust span { display: inline-flex; align-items: center; gap: 5px; }
        .lp-hero-trust .bi { color: var(--lp-emerald); font-size: 13px; }

        /* Hero mockup — smaller mobile */
        .lp-hero-mockup { position: relative; perspective: 1200px; }
        .lp-mock-card {
            background: var(--lp-surface); border: 1px solid var(--lp-border);
            border-radius: var(--lp-radius-lg); box-shadow: var(--lp-shadow-lg);
            padding: 18px;
            transform: rotateY(-5deg) rotateX(2deg);
        }
        @media (max-width: 991px) { .lp-mock-card { transform: none; padding: 14px; } }
        .lp-mock-head {
            display: flex; align-items: center; gap: 6px; margin-bottom: 12px;
            padding-bottom: 10px; border-bottom: 1px solid var(--lp-border);
        }
        .lp-mock-dot { width: 9px; height: 9px; border-radius: 50%; }
        .lp-mock-dot.r { background: #ef4444; } .lp-mock-dot.y { background: #f59e0b; } .lp-mock-dot.g { background: #10b981; }
        .lp-mock-title { margin-left: auto; font-size: 12px; color: var(--lp-muted); font-weight: 600; }
        .lp-mock-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
        .lp-mock-kpi {
            padding: 10px 8px; background: var(--lp-bg); border-radius: 10px; border: 1px solid var(--lp-border);
        }
        .lp-mock-kpi .lbl { font-size: 9px; color: var(--lp-muted); margin-bottom: 3px; }
        .lp-mock-kpi .val { font-size: 14px; font-weight: 800; color: var(--lp-ink); }
        .lp-mock-tbl { font-size: 11px; }
        .lp-mock-tbl-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px dashed var(--lp-border); }
        .lp-mock-tbl-row:last-child { border-bottom: 0; }
        .lp-mock-pill { font-size: 9px; padding: 1px 6px; border-radius: 6px; font-weight: 700; }
        .lp-mock-pill.success { background: rgba(16,185,129,.15); color: #047857; }
        .lp-mock-pill.warn    { background: rgba(245,158,11,.15); color: #b45309; }
        .lp-mock-pill.info    { background: rgba(99,102,241,.15); color: #4338ca; }
        .lp-mock-float {
            position: absolute; background: var(--lp-surface); border: 1px solid var(--lp-border);
            border-radius: 10px; padding: 8px 12px; box-shadow: var(--lp-shadow);
            display: flex; align-items: center; gap: 8px;
            font-size: 12px; font-weight: 600; color: var(--lp-ink);
            animation: lpFloat 4s ease-in-out infinite;
        }
        @keyframes lpFloat { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-6px) } }
        .lp-mock-float-1 { top: -8px; left: -16px; }
        .lp-mock-float-2 { bottom: 14px; right: -16px; animation-delay: 1.5s; }
        @media (max-width: 991px) { .lp-mock-float-1, .lp-mock-float-2 { display: none; } }

        /* ═══ COMMON SECTION ═══ */
        section { padding: var(--lp-section-py) 0; }
        /* R810: section padding + head margin now fluid via clamp tokens */
        .lp-section-head { text-align: center; margin-bottom: var(--lp-head-mb); max-width: 720px; margin-left: auto; margin-right: auto; }
        .lp-section-eyebrow {
            color: var(--lp-violet); font-weight: 700; font-size: 11.5px;
            letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px;
            font-family: 'Inter', 'Noto Sans Thai', system-ui, sans-serif;
        }
        .lp-section-head h2 {
            font-size: var(--lp-fs-h2); font-weight: 800;
            color: var(--lp-ink); margin-bottom: 10px;
        }
        .lp-section-head p {
            color: var(--lp-muted); max-width: 580px; margin: 0 auto;
            font-size: var(--lp-fs-lead); line-height: 1.7;
        }

        /* ═══ PROBLEM + SOLUTION (merged compact) ═══ */
        .lp-ps-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
        }
        @media (max-width: 991px) { .lp-ps-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
        @media (max-width: 480px) { .lp-ps-grid { grid-template-columns: 1fr; gap: 10px; } }
        .lp-ps-card {
            background: var(--lp-surface); border: 1px solid var(--lp-border);
            border-radius: var(--lp-radius-md); padding: 18px 16px;
            transition: all .2s;
        }
        .lp-ps-card:hover { transform: translateY(-3px); box-shadow: var(--lp-shadow); border-color: var(--lp-violet); }
        .lp-ps-icon {
            width: 38px; height: 38px; border-radius: 10px;
            background: rgba(236,72,153,.12); color: var(--lp-pink);
            display: grid; place-items: center; font-size: 17px;
            margin-bottom: 10px;
        }
        .lp-ps-card h4 { font-size: .98rem; font-weight: 700; color: var(--lp-ink); margin-bottom: 4px; font-family: 'Inter', sans-serif; }
        .lp-ps-card p { font-size: .82rem; color: var(--lp-muted); line-height: 1.55; }

        /* ═══ FEATURES (tab grouped) ═══ */
        .lp-features { background: var(--lp-bg-2); }
        .lp-tab-bar {
            display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
            margin-bottom: 24px;
        }
        .lp-tab-btn {
            background: var(--lp-surface); border: 1px solid var(--lp-border);
            color: var(--lp-ink-2); font-weight: 600; font-size: 13px;
            padding: 8px 16px; border-radius: 999px; cursor: pointer;
            display: inline-flex; align-items: center; gap: 6px;
            transition: all .2s;
        }
        .lp-tab-btn:hover { color: var(--lp-violet); border-color: var(--lp-violet); }
        .lp-tab-btn.active {
            background: linear-gradient(135deg, var(--lp-indigo), var(--lp-violet));
            color: #fff !important; border-color: transparent;
            box-shadow: 0 4px 12px rgba(79,70,229,.3);
        }
        .lp-feat-pane { display: none; }
        .lp-feat-pane.active { display: grid; }
        /* R811: Bento layout — first card = 2x2 spotlight, last = wide bar */
        .lp-feat-grid {
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 1fr; gap: 12px;
        }
        .lp-feat-grid > .lp-feat-card:first-child { grid-column: span 2; grid-row: span 2; }
        .lp-feat-grid > .lp-feat-card:last-child  { grid-column: span 2; }
        @media (max-width: 991px) {
            .lp-feat-grid { grid-template-columns: repeat(2, 1fr); }
            .lp-feat-grid > .lp-feat-card:first-child { grid-column: span 2; grid-row: auto; }
        }
        @media (max-width: 575px) {
            .lp-feat-grid { grid-template-columns: 1fr; }
            .lp-feat-grid > .lp-feat-card:first-child,
            .lp-feat-grid > .lp-feat-card:last-child { grid-column: auto; grid-row: auto; }
        }
        .lp-feat-card {
            background: var(--lp-surface); border: 1px solid var(--lp-border);
            border-radius: var(--lp-radius-md); padding: 16px 14px;
            transition: all .2s;
        }
        .lp-feat-card:hover { border-color: var(--lp-indigo); transform: translateY(-2px); box-shadow: var(--lp-shadow); }
        .lp-feat-icon {
            width: 36px; height: 36px; border-radius: 9px;
            background: linear-gradient(135deg, rgba(79,70,229,.15), rgba(124,58,237,.15));
            color: var(--lp-violet);
            display: grid; place-items: center; font-size: 16px;
            margin-bottom: 10px;
        }
        .lp-feat-card h5 { font-size: .92rem; font-weight: 700; color: var(--lp-ink); margin-bottom: 3px; font-family: 'Inter', sans-serif; }
        .lp-feat-card p { font-size: .76rem; color: var(--lp-muted); line-height: 1.45; }

        /* ═══ PRICING (compact + horizontal scroll mobile) ═══ */
        .lp-pricing-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px;
            max-width: 1100px; margin: 0 auto;
        }
        @media (max-width: 767px) {
            .lp-pricing-grid {
                display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
                gap: 12px; padding: 4px 14px 18px; margin: 0 -14px;
                -webkit-overflow-scrolling: touch;
            }
            .lp-pricing-card { flex: 0 0 80%; scroll-snap-align: start; max-width: 280px; }
        }
        .lp-pricing-card {
            background: var(--lp-surface); border: 1.5px solid var(--lp-border);
            border-radius: var(--lp-radius-lg); padding: 22px 20px;
            position: relative; transition: all .2s;
        }
        .lp-pricing-card.featured {
            border-color: var(--lp-violet); box-shadow: 0 12px 36px rgba(124,58,237,.18);
            transform: translateY(-6px);
        }
        @media (max-width: 767px) { .lp-pricing-card.featured { transform: none; } }
        .lp-pricing-card:hover { transform: translateY(-8px); box-shadow: var(--lp-shadow-lg); }
        @media (max-width: 767px) { .lp-pricing-card:hover { transform: none; } }
        .lp-pricing-tag {
            position: absolute; top: -11px; right: 18px;
            background: linear-gradient(135deg, var(--lp-violet), var(--lp-pink));
            color: #fff; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
            box-shadow: 0 4px 12px rgba(124,58,237,.3);
        }
        .lp-pricing-icon {
            width: 42px; height: 42px; border-radius: 11px;
            display: grid; place-items: center; color: #fff; font-size: 19px;
            margin-bottom: 12px;
        }
        .lp-pricing-name { font-size: 1rem; font-weight: 700; color: var(--lp-ink); margin-bottom: 12px; font-family: 'Inter', sans-serif; }
        .lp-pricing-price {
            margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px dashed var(--lp-border);
        }
        .lp-pricing-price .amount { font-size: 1.9rem; font-weight: 800; color: var(--lp-ink); line-height: 1; }
        .lp-pricing-price .currency { font-size: .82rem; color: var(--lp-muted); margin-right: 3px; }
        .lp-pricing-price .period { font-size: .78rem; color: var(--lp-muted); margin-top: 2px; }
        .lp-pricing-feats { list-style: none; margin-bottom: 16px; }
        .lp-pricing-feats li {
            font-size: .82rem; color: var(--lp-ink-2); padding: 4px 0;
            display: flex; align-items: flex-start; gap: 6px;
        }
        .lp-pricing-feats li::before { content: "✓"; color: var(--lp-emerald); font-weight: 800; flex-shrink: 0; }
        .lp-pricing-cta {
            display: block; text-align: center; padding: 10px;
            border-radius: 9px; font-weight: 700; font-size: 13.5px;
        }
        .lp-pricing-cta-primary {
            background: linear-gradient(135deg, var(--lp-indigo), var(--lp-violet));
            color: #fff !important; border: 0;
        }
        .lp-pricing-cta-primary:hover { color: #fff !important; }
        .lp-pricing-cta-outline {
            background: transparent; color: var(--lp-violet) !important;
            border: 1.5px solid var(--lp-violet);
        }
        .lp-pricing-cta-outline:hover { background: var(--lp-violet); color: #fff !important; }

        /* R692-followup-18: Enterprise full-width banner */
        .lp-ent-banner {
            position: relative;
            margin-top: 28px;
            padding: 0;
            border-radius: var(--lp-radius-xl);
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #4f46e5 100%);
            box-shadow: 0 20px 60px rgba(79,70,229,.35);
            overflow: hidden;
            color: #f1f5f9;
        }
        .lp-ent-banner__glow {
            position: absolute;
            top: -50%; right: -10%;
            width: 60%; height: 200%;
            background: radial-gradient(circle, rgba(236,72,153,.4) 0%, transparent 60%);
            pointer-events: none;
            filter: blur(40px);
        }
        .lp-ent-banner__body {
            position: relative;
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 32px;
            padding: clamp(24px, 4vw, 40px);
            align-items: center;
        }
        @media (max-width: 880px) {
            .lp-ent-banner__body { grid-template-columns: 1fr; gap: 20px; }
        }
        .lp-ent-banner__left {
            display: flex; gap: 18px; align-items: flex-start;
        }
        .lp-ent-banner__icon {
            flex-shrink: 0;
            width: 64px; height: 64px;
            border-radius: 18px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: #fff;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 28px;
            box-shadow: 0 8px 24px rgba(245,158,11,.4);
        }
        .lp-ent-banner__copy { flex: 1; }
        .lp-ent-banner__eyebrow {
            font-size: .75rem; font-weight: 700; letter-spacing: .08em;
            text-transform: uppercase; color: #fbbf24; margin-bottom: 8px;
            display: inline-flex; align-items: center; gap: 6px;
        }
        .lp-ent-banner__title {
            font-family: 'Playfair Display', 'Noto Serif Thai', serif;
            font-size: clamp(1.4rem, 3.2vw, 1.9rem);
            font-weight: 700; line-height: 1.2;
            color: #fff; margin: 0 0 8px;
        }
        .lp-ent-banner__desc {
            color: #cbd5e1; font-size: .95rem; line-height: 1.6;
            margin: 0 0 14px;
        }
        .lp-ent-banner__list {
            list-style: none; padding: 0; margin: 0;
            display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px;
        }
        @media (max-width: 540px) { .lp-ent-banner__list { grid-template-columns: 1fr; } }
        .lp-ent-banner__list li {
            display: flex; align-items: flex-start; gap: 6px;
            color: #e2e8f0; font-size: .85rem; line-height: 1.5;
        }
        .lp-ent-banner__list li i { color: #34d399; margin-top: 2px; flex-shrink: 0; }
        .lp-ent-banner__right {
            background: rgba(255,255,255,.07);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 18px;
            padding: 22px;
        }
        .lp-ent-banner__price { text-align: center; margin-bottom: 14px; }
        .lp-ent-banner__price-label {
            font-size: .72rem; color: #94a3b8; text-transform: uppercase; letter-spacing: .08em;
        }
        .lp-ent-banner__price-value {
            font-family: 'Playfair Display','Noto Serif Thai',serif;
            font-size: 1.6rem; font-weight: 700; color: #fff;
            margin: 4px 0;
        }
        .lp-ent-banner__price-note { font-size: .8rem; color: #cbd5e1; }
        .lp-ent-banner__cta {
            width: 100%; padding: 14px 20px;
            font-size: 1rem; font-weight: 700;
            color: #4f46e5 !important;
            background: #fff;
            border: 0; border-radius: 12px;
            cursor: pointer;
            transition: transform .2s, box-shadow .2s;
            display: inline-flex; align-items: center; justify-content: center; gap: 8px;
            font-family: inherit;
            margin-bottom: 14px;
        }
        .lp-ent-banner__cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(255,255,255,.25);
            color: #4f46e5 !important;
        }
        .lp-ent-banner__channels {
            padding-top: 14px;
            border-top: 1px dashed rgba(255,255,255,.15);
        }
        .lp-ent-banner__channels-label {
            display: block; font-size: .72rem; color: #94a3b8;
            text-transform: uppercase; letter-spacing: .06em;
            text-align: center; margin-bottom: 8px;
        }
        .lp-ent-banner__channels-list {
            display: flex; flex-direction: column; gap: 6px;
        }
        .lp-ent-banner__ch {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 8px 12px;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.10);
            border-radius: 8px;
            color: #e2e8f0; font-size: .82rem; font-weight: 500;
            text-decoration: none;
            transition: background .2s, transform .2s;
        }
        .lp-ent-banner__ch:hover { background: rgba(255,255,255,.12); color: #fff; transform: translateY(-1px); }
        .lp-ent-banner__ch i { color: #a5b4fc; font-size: 1rem; flex-shrink: 0; }
        .lp-ent-banner__ch--line:hover i, .lp-ent-banner__ch--line i { color: #00b900; }

        /* R692-followup-18: Contact Sales Modal */
        .lp-cs-modal[hidden] { display: none; }
        .lp-cs-modal {
            position: fixed; inset: 0; z-index: 1001;
            display: flex; align-items: center; justify-content: center;
            padding: 16px;
        }
        .lp-cs-modal__backdrop {
            position: absolute; inset: 0;
            background: rgba(15,23,42,.55);
            backdrop-filter: blur(4px);
            cursor: pointer;
            animation: lpFadeIn .2s ease-out;
        }
        .lp-cs-modal__panel {
            position: relative;
            width: 100%; max-width: 640px; max-height: 92vh;
            background: var(--lp-surface);
            border: 1px solid var(--lp-border);
            border-radius: var(--lp-radius-xl);
            box-shadow: var(--lp-shadow-lg);
            display: flex; flex-direction: column;
            animation: lpScaleIn .25s cubic-bezier(.16,1,.3,1);
            overflow: hidden;
        }
        .lp-cs-modal__header {
            padding: 22px 26px 14px;
            border-bottom: 1px solid var(--lp-border);
            display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
        }
        .lp-cs-modal__header-icon {
            width: 44px; height: 44px; flex-shrink: 0;
            border-radius: 12px;
            background: linear-gradient(135deg, #f59e0b, #ec4899);
            color: #fff;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 20px;
        }
        .lp-cs-modal__title-wrap { flex: 1; }
        .lp-cs-modal__eyebrow {
            font-size: .72rem; font-weight: 700; color: var(--lp-violet);
            text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px;
        }
        .lp-cs-modal__title {
            font-family: 'Playfair Display','Noto Serif Thai',serif;
            font-size: 1.3rem; font-weight: 700;
            color: var(--lp-ink); margin: 0; line-height: 1.2;
        }
        .lp-cs-modal__close {
            width: 36px; height: 36px; border-radius: 50%;
            background: var(--lp-bg-2); color: var(--lp-ink);
            border: 0; cursor: pointer; flex-shrink: 0;
            display: inline-flex; align-items: center; justify-content: center;
            font-family: inherit;
        }
        .lp-cs-modal__close:hover { background: var(--lp-border); }
        .lp-cs-modal__body {
            padding: 18px 26px;
            overflow-y: auto;
            flex: 1 1 auto;
        }
        .lp-cs-row { margin-bottom: 14px; }
        .lp-cs-row.split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        @media (max-width: 540px) { .lp-cs-row.split { grid-template-columns: 1fr; } }
        .lp-cs-label {
            display: block; font-size: .82rem; font-weight: 600;
            color: var(--lp-ink-2); margin-bottom: 6px;
        }
        .lp-cs-label .req { color: #dc2626; }
        .lp-cs-input, .lp-cs-textarea {
            width: 100%; padding: 11px 14px;
            font-size: .92rem;
            background: var(--lp-bg);
            color: var(--lp-ink);
            border: 1px solid var(--lp-border);
            border-radius: var(--lp-radius);
            transition: border-color .2s, box-shadow .2s;
            font-family: inherit;
        }
        .lp-cs-input:focus, .lp-cs-textarea:focus {
            outline: none; border-color: var(--lp-indigo);
            box-shadow: var(--lp-focus-ring);
            background: var(--lp-surface);
        }
        .lp-cs-textarea { resize: vertical; min-height: 90px; }
        .lp-cs-channels {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
            margin-top: 4px;
        }
        @media (max-width: 540px) { .lp-cs-channels { grid-template-columns: repeat(2, 1fr); } }
        .lp-cs-channel {
            position: relative;
            display: inline-flex; align-items: center; justify-content: center; gap: 4px;
            padding: 10px 8px;
            border: 2px solid var(--lp-border);
            background: var(--lp-bg);
            border-radius: var(--lp-radius);
            cursor: pointer;
            font-size: .85rem; font-weight: 600;
            color: var(--lp-ink-2);
            transition: all .2s;
        }
        .lp-cs-channel input { position: absolute; opacity: 0; pointer-events: none; }
        .lp-cs-channel:hover { border-color: var(--lp-indigo); }
        .lp-cs-channel.selected {
            border-color: var(--lp-indigo);
            background: linear-gradient(135deg, rgba(79,70,229,.08), rgba(124,58,237,.08));
            color: var(--lp-indigo);
        }
        .lp-cs-channel i { font-size: 1rem; }
        .lp-cs-honeypot {
            position: absolute !important;
            left: -10000px !important; top: -10000px !important;
            width: 1px; height: 1px; opacity: 0;
            tabindex: -1; pointer-events: none;
        }
        .lp-cs-modal__footer {
            display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap;
            padding: 16px 26px;
            border-top: 1px solid var(--lp-border);
            background: var(--lp-bg);
        }
        .lp-cs-modal__footer .lp-btn-outline,
        .lp-cs-modal__footer .lp-btn-primary {
            padding: 11px 20px; font-size: .92rem; font-weight: 700;
            border-radius: var(--lp-radius); cursor: pointer; border: 0;
            display: inline-flex; align-items: center; gap: 6px;
            font-family: inherit;
        }
        .lp-cs-modal__footer .lp-btn-outline {
            background: var(--lp-bg-2); color: var(--lp-ink);
            border: 1px solid var(--lp-border);
        }
        .lp-cs-modal__footer .lp-btn-primary {
            color: #fff;
            background: linear-gradient(135deg, var(--lp-indigo), var(--lp-violet));
        }
        .lp-cs-modal__footer .lp-btn-primary:hover { transform: translateY(-1px); color: #fff; }
        .lp-cs-modal__footer .lp-btn-primary:disabled { opacity: .6; cursor: not-allowed; }
        .lp-cs-success {
            text-align: center; padding: 32px 18px;
        }
        .lp-cs-success__icon {
            width: 80px; height: 80px; margin: 0 auto 14px;
            border-radius: 50%;
            background: linear-gradient(135deg, #10b981, #059669);
            color: #fff;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 36px;
            animation: lpScaleIn .4s cubic-bezier(.68,-.55,.27,1.55);
            box-shadow: 0 12px 30px rgba(16,185,129,.3);
        }
        .lp-cs-success__title {
            font-family: 'Playfair Display','Noto Serif Thai',serif;
            font-size: 1.4rem; font-weight: 700; margin: 0 0 8px;
            color: var(--lp-ink);
        }
        .lp-cs-success__sub { color: var(--lp-muted); margin: 0 0 16px; }
        .lp-cs-success__ref {
            display: inline-block; padding: 6px 14px;
            background: var(--lp-bg-2); border-radius: 999px;
            font-family: monospace; font-weight: 700; font-size: .9rem;
            color: var(--lp-indigo);
        }
        .lp-cs-error {
            background: rgba(220,38,38,.08); border-left: 3px solid #dc2626;
            color: #991b1b; padding: 12px 14px; border-radius: var(--lp-radius);
            margin-bottom: 14px; font-size: .85rem;
        }
        html[data-theme="dark"] .lp-cs-error { color: #fecaca; background: rgba(220,38,38,.15); }

        /* R692-followup-15: "See all features" button + modal */
        .lp-pricing-feat-more {
            display: inline-flex; align-items: center; justify-content: center; gap: 4px;
            width: 100%; padding: 8px 10px; margin-bottom: 10px;
            font-size: .78rem; font-weight: 600;
            color: var(--lp-violet); background: transparent;
            border: 1px dashed rgba(124,58,237,.4);
            border-radius: var(--lp-radius);
            cursor: pointer; transition: background .2s, border-color .2s;
            font-family: inherit;
        }
        .lp-pricing-feat-more:hover {
            background: rgba(124,58,237,.06);
            border-color: var(--lp-violet);
        }
        .lp-pricing-feat-more i { font-size: .9rem; }
        .lp-feat-modal[hidden] { display: none; }
        .lp-feat-modal {
            position: fixed; inset: 0; z-index: 1000;
            display: flex; align-items: center; justify-content: center;
            padding: 16px;
        }
        .lp-feat-modal__backdrop {
            position: absolute; inset: 0;
            background: rgba(15,23,42,.55);
            backdrop-filter: blur(4px);
            cursor: pointer;
            animation: lpFadeIn .2s ease-out;
        }
        @keyframes lpFadeIn { from { opacity: 0; } to { opacity: 1; } }
        @keyframes lpScaleIn { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: scale(1); } }
        .lp-feat-modal__panel {
            position: relative;
            width: 100%; max-width: 720px; max-height: 88vh;
            background: var(--lp-surface);
            border: 1px solid var(--lp-border);
            border-radius: var(--lp-radius-xl);
            box-shadow: var(--lp-shadow-lg);
            display: flex; flex-direction: column;
            animation: lpScaleIn .25s cubic-bezier(.16,1,.3,1);
            overflow: hidden;
        }
        .lp-feat-modal__header {
            display: flex; align-items: flex-start; justify-content: space-between;
            gap: 12px; padding: 18px 22px;
            border-bottom: 1px solid var(--lp-border);
        }
        .lp-feat-modal__eyebrow {
            font-size: .72rem; font-weight: 700;
            color: var(--lp-violet); text-transform: uppercase; letter-spacing: .06em;
            margin-bottom: 4px;
        }
        .lp-feat-modal__title {
            font-family: 'Playfair Display', 'Noto Serif Thai', serif;
            font-size: 1.4rem; font-weight: 700;
            color: var(--lp-ink); margin: 0; line-height: 1.2;
        }
        .lp-feat-modal__close {
            width: 36px; height: 36px; border-radius: 50%;
            background: var(--lp-bg-2); color: var(--lp-ink);
            border: 0; cursor: pointer; flex-shrink: 0;
            display: inline-flex; align-items: center; justify-content: center;
            transition: background .2s;
            font-family: inherit;
        }
        .lp-feat-modal__close:hover { background: var(--lp-border); }
        .lp-feat-modal__body {
            padding: 18px 22px;
            overflow-y: auto;
            flex: 1 1 auto;
        }
        .lp-feat-mod-group { margin-bottom: 18px; }
        .lp-feat-mod-group:last-child { margin-bottom: 0; }
        .lp-feat-mod-group__head {
            display: flex; align-items: center; gap: 8px;
            font-size: .78rem; font-weight: 700;
            color: var(--lp-ink-2); text-transform: uppercase; letter-spacing: .05em;
            padding-bottom: 6px; margin-bottom: 8px;
            border-bottom: 1px dashed var(--lp-border);
        }
        .lp-feat-mod-group__head i { color: var(--lp-violet); }
        .lp-feat-mod-list {
            display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px;
            list-style: none; margin: 0; padding: 0;
        }
        @media (max-width: 540px) { .lp-feat-mod-list { grid-template-columns: 1fr; } }
        .lp-feat-mod-list li {
            display: flex; align-items: flex-start; gap: 6px;
            font-size: .85rem; line-height: 1.45;
            color: var(--lp-ink-2);
        }
        .lp-feat-mod-list li i { color: var(--lp-emerald); margin-top: 3px; flex-shrink: 0; }
        .lp-feat-modal__footer {
            display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap;
            padding: 14px 22px;
            border-top: 1px solid var(--lp-border);
            background: var(--lp-bg);
        }
        .lp-feat-modal__footer .lp-btn-outline,
        .lp-feat-modal__footer .lp-btn-primary {
            padding: 10px 18px; font-size: .88rem; font-weight: 700;
            border-radius: var(--lp-radius); text-decoration: none;
            display: inline-flex; align-items: center; gap: 6px;
            cursor: pointer; border: 0; font-family: inherit;
        }
        .lp-feat-modal__footer .lp-btn-outline {
            background: var(--lp-bg-2); color: var(--lp-ink);
            border: 1px solid var(--lp-border);
        }
        .lp-feat-modal__footer .lp-btn-primary {
            color: #fff;
            background: linear-gradient(135deg, var(--lp-indigo), var(--lp-violet));
        }
        .lp-feat-modal__footer .lp-btn-primary:hover { color: #fff; transform: translateY(-1px); }
        html[data-theme="dark"] .lp-feat-modal__backdrop { background: rgba(0,0,0,.7); }

        /* ═══ USECASES + WORKFLOW + SECURITY (combined compact "Trio") ═══ */
        .lp-trio { background: var(--lp-bg-2); }
        .lp-trio-grid {
            display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px;
        }
        @media (max-width: 991px) { .lp-trio-grid { grid-template-columns: 1fr; gap: 20px; } }
        .lp-trio-card {
            background: var(--lp-surface); border: 1px solid var(--lp-border);
            border-radius: var(--lp-radius-lg); padding: 22px;
        }
        .lp-trio-card h3 {
            font-size: 1rem; font-weight: 800; color: var(--lp-ink);
            margin-bottom: 14px; font-family: 'Inter', sans-serif;
            display: flex; align-items: center; gap: 8px;
        }
        .lp-trio-card .icon-pill {
            width: 32px; height: 32px; border-radius: 9px;
            display: grid; place-items: center; color: #fff; font-size: 15px;
        }
        .lp-trio-list { list-style: none; }
        .lp-trio-list li {
            display: flex; align-items: center; gap: 10px;
            padding: 6px 0; font-size: .85rem; color: var(--lp-ink-2);
        }
        .lp-trio-list li .bi {
            width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center;
            flex-shrink: 0; font-size: 12px;
            background: rgba(124,58,237,.10); color: var(--lp-violet);
        }
        .lp-trio-list.security li .bi { background: rgba(16,185,129,.10); color: var(--lp-emerald); }

        /* ═══ FAQ ═══ */
        .lp-faq-list { max-width: 720px; margin: 0 auto; }
        .lp-faq-item {
            background: var(--lp-surface); border: 1px solid var(--lp-border);
            border-radius: 11px; margin-bottom: 8px; overflow: hidden;
            transition: all .2s;
        }
        .lp-faq-item:hover { border-color: var(--lp-violet); }
        .lp-faq-q {
            display: flex; justify-content: space-between; align-items: center;
            padding: 14px 16px; cursor: pointer; width: 100%;
            background: transparent; border: 0;
            font-weight: 600; color: var(--lp-ink); font-size: .92rem;
            text-align: left;
        }
        .lp-faq-q .chev { transition: transform .25s; flex-shrink: 0; margin-left: 12px; }
        .lp-faq-item.open .chev { transform: rotate(180deg); color: var(--lp-violet); }
        .lp-faq-a {
            max-height: 0; overflow: hidden; transition: max-height .3s ease;
            color: var(--lp-muted); font-size: .88rem; line-height: 1.65;
        }
        .lp-faq-item.open .lp-faq-a { max-height: 400px; }
        .lp-faq-a-inner { padding: 0 16px 14px; }

        /* ═══ CONSULTATION CARD (premium replace footer) ═══ */
        .lp-consult { padding: 60px 0; }
        .lp-consult-card {
            background: linear-gradient(135deg, var(--lp-indigo) 0%, var(--lp-violet) 50%, var(--lp-pink) 100%);
            color: #fff;
            border-radius: 24px;
            padding: 36px 32px;
            position: relative; overflow: hidden;
            box-shadow: 0 20px 60px rgba(79,70,229,.3);
        }
        .lp-consult-card::before {
            content: ''; position: absolute; inset: 0;
            background:
                radial-gradient(ellipse at 90% 10%, rgba(255,255,255,.12) 0%, transparent 50%),
                radial-gradient(ellipse at 10% 100%, rgba(0,0,0,.20) 0%, transparent 50%);
        }
        .lp-consult-grid {
            display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
            position: relative; z-index: 1;
        }
        @media (max-width: 767px) { .lp-consult-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; } }
        .lp-consult-card h2 {
            font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: #fff;
            margin-bottom: 10px;
        }
        .lp-consult-card p { color: rgba(255,255,255,.88); font-size: .98rem; line-height: 1.65; margin-bottom: 18px; }
        .lp-consult-actions { display: flex; gap: 10px; flex-wrap: wrap; }
        @media (max-width: 767px) { .lp-consult-actions { justify-content: center; } }
        .lp-consult-card .lp-btn-primary {
            background: #fff; color: var(--lp-violet) !important; box-shadow: 0 8px 24px rgba(0,0,0,.2);
        }
        .lp-consult-card .lp-btn-primary:hover { background: #f1f5f9; color: var(--lp-violet) !important; }
        .lp-consult-card .lp-btn-outline {
            background: transparent; color: #fff !important; border-color: rgba(255,255,255,.5);
        }
        .lp-consult-card .lp-btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff !important; }

        /* Right column — quick contact cards */
        .lp-consult-side {
            display: flex; flex-direction: column; gap: 10px;
        }
        .lp-consult-mini {
            background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,.18);
            border-radius: 14px; padding: 14px 16px;
            display: flex; align-items: center; gap: 14px;
            color: #fff; transition: all .2s;
        }
        .lp-consult-mini:hover { background: rgba(255,255,255,.18); transform: translateX(4px); color: #fff; }
        .lp-consult-mini .icon {
            width: 40px; height: 40px; border-radius: 11px;
            background: rgba(255,255,255,.2); display: grid; place-items: center;
            font-size: 18px; flex-shrink: 0;
        }
        .lp-consult-mini .body { flex: 1; }
        .lp-consult-mini .title { font-weight: 700; font-size: .92rem; margin-bottom: 1px; }
        .lp-consult-mini .desc { font-size: .78rem; color: rgba(255,255,255,.75); }

        /* ═══ FOOTER (premium minimal) ═══ */
        .lp-footer {
            background: var(--lp-ink); color: rgba(255,255,255,.75);
            padding: 36px 0 20px;
        }
        [data-theme="dark"] .lp-footer { background: #020617; }
        .lp-footer-grid {
            display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 24px;
            margin-bottom: 24px;
        }
        @media (max-width: 767px) { .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
        @media (max-width: 480px) { .lp-footer-grid { grid-template-columns: 1fr; gap: 16px; } }
        .lp-footer .lp-logo { color: #fff !important; margin-bottom: 8px; font-size: .98rem; }
        .lp-footer h6 { color: #fff; font-size: .85rem; font-weight: 700; margin-bottom: 10px; font-family: 'Inter', sans-serif; }
        .lp-footer p { color: rgba(255,255,255,.55); font-size: .82rem; line-height: 1.6; }
        .lp-footer ul { list-style: none; }
        .lp-footer li { margin-bottom: 6px; }
        .lp-footer a { color: rgba(255,255,255,.6); font-size: .82rem; }
        .lp-footer a:hover { color: #fff; }
        .lp-footer-bottom {
            border-top: 1px solid rgba(255,255,255,.10);
            padding-top: 18px; display: flex; align-items: center; justify-content: space-between;
            flex-wrap: wrap; gap: 10px;
            font-size: .78rem; color: rgba(255,255,255,.5);
        }
        .lp-footer-social { display: flex; gap: 8px; }
        .lp-footer-social a {
            width: 30px; height: 30px; border-radius: 8px;
            background: rgba(255,255,255,.08); display: grid; place-items: center;
            color: rgba(255,255,255,.7) !important; font-size: 14px;
        }
        .lp-footer-social a:hover { background: rgba(124,58,237,.30); color: #fff !important; }

        /* ═══ STICKY MOBILE CTA BAR ═══ */
        .lp-sticky-cta {
            display: none;
            position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
            background: var(--lp-surface);
            border-top: 1px solid var(--lp-border);
            padding: 10px 12px; box-shadow: 0 -4px 20px rgba(15,23,42,.08);
            gap: 8px;
        }
        [data-theme="dark"] .lp-sticky-cta { background: var(--lp-surface); }
        @media (max-width: 767px) { .lp-sticky-cta { display: flex; } body { padding-bottom: 64px; } }
        .lp-sticky-cta .lp-btn-primary, .lp-sticky-cta .lp-btn-outline {
            flex: 1; padding: 11px 14px; font-size: 14px; justify-content: center;
        }

        /* Hide trust pills on smallest screens */
        @media (max-width: 360px) { .lp-hero-trust span:nth-child(3) { display: none; } }

        /* ═══ R803: TRUST BADGE STRIP (under hero CTA) ═══ */
        .lp-trust-badges {
            display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px;
        }
        @media (max-width: 480px) { .lp-trust-badges { gap: 7px; margin-top: 14px; } }
        .lp-trust-badge {
            display: inline-flex; align-items: center; gap: 5px;
            padding: 5px 11px; border-radius: 999px;
            background: var(--lp-bg-2); border: 1px solid var(--lp-border);
            color: var(--lp-ink-2); font-size: 12px; font-weight: 600;
            white-space: nowrap;
        }
        .lp-trust-badge .bi { color: var(--lp-emerald); font-size: 12px; }

        /* ═══ R803: SOCIAL PROOF BAR ═══ */
        /* R816: cohesive premium trust band (was 3 cards floating in white) */
        .lp-social-proof {
            padding: clamp(26px, 3.6vw, 40px) 0;
            background: var(--lp-bg-2);
            border-bottom: 1px solid var(--lp-border);
        }
        @media (max-width: 767px) { .lp-social-proof { padding: 26px 0; } }
        .lp-proof-grid {
            display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
        }
        .lp-proof-card {
            flex: 1 1 180px; max-width: 260px;
            background: var(--lp-surface); border: 1px solid var(--lp-border);
            border-radius: var(--lp-radius-md); padding: 20px 22px;
            text-align: center;
            box-shadow: var(--lp-shadow-sm);
            transition: transform .2s, box-shadow .2s;
        }
        .lp-proof-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--lp-shadow-xl);
        }
        .lp-proof-num {
            font-family: 'Playfair Display', 'Noto Serif Thai', serif;
            font-size: 2.4rem; font-weight: 800; line-height: 1.1;
            background: linear-gradient(135deg, var(--lp-indigo), var(--lp-violet));
            -webkit-background-clip: text; background-clip: text;
            color: transparent; -webkit-text-fill-color: transparent;
        }
        .lp-proof-lbl {
            font-size: .82rem; color: var(--lp-muted); margin-top: 4px; font-weight: 500;
        }

        /* ═══ R816: trust-band eyebrow + stat icons ═══ */
        .lp-proof-head { text-align: center; margin-bottom: clamp(14px, 2vw, 22px); }
        .lp-proof-eyebrow {
            display: inline-flex; align-items: center; gap: 7px;
            font-size: .78rem; font-weight: 700; letter-spacing: .04em;
            color: var(--lp-violet); text-transform: uppercase;
        }
        .lp-proof-eyebrow .bi { font-size: .95rem; }
        .lp-proof-ico {
            width: 44px; height: 44px; margin: 0 auto 10px;
            display: inline-flex; align-items: center; justify-content: center;
            border-radius: 13px; font-size: 21px; color: var(--lp-violet);
            background: linear-gradient(135deg, rgba(79,70,229,.12), rgba(124,58,237,.12));
        }
        [data-theme="dark"] .lp-proof-ico {
            background: linear-gradient(135deg, rgba(99,102,241,.20), rgba(139,92,246,.20));
            color: #c4b5fd;
        }

        /* ═══ R816: problem → solution bridge (fills the problem/features gap) ═══ */
        .lp-bridge { text-align: center; padding: clamp(18px, 2.8vw, 30px) 16px; }
        .lp-bridge-inner {
            display: inline-flex; align-items: center; gap: 11px;
            max-width: 760px; padding: 13px 26px; border-radius: 999px;
            background: linear-gradient(135deg, rgba(79,70,229,.08), rgba(124,58,237,.06));
            border: 1px solid rgba(124,58,237,.18);
            font-size: clamp(.9rem, 1.5vw, 1.04rem); font-weight: 600; color: var(--lp-ink-2);
            box-shadow: var(--lp-shadow-sm);
        }
        .lp-bridge-inner .bi-arrow-right-circle-fill { color: var(--lp-violet); font-size: 1.25rem; flex-shrink: 0; }
        .lp-bridge-inner strong { color: var(--lp-violet); font-weight: 800; }
        .lp-bridge-cue { display: block; margin-top: 9px; color: var(--lp-violet); font-size: 1.25rem; line-height: 1; }
        [data-theme="dark"] .lp-bridge-inner {
            background: linear-gradient(135deg, rgba(99,102,241,.18), rgba(139,92,246,.13));
            border-color: rgba(139,92,246,.32); color: var(--lp-ink);
        }
        @media (max-width: 575px) { .lp-bridge-inner { font-size: .86rem; padding: 12px 18px; gap: 8px; } }
        @media (prefers-reduced-motion: no-preference) {
            .lp-bridge-cue { animation: r816BridgeBounce 1.8s ease-in-out infinite; }
        }
        @keyframes r816BridgeBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

        /* ═══ R803: PRICING REASSURANCE micro-copy ═══ */
        .lp-pricing-reassure {
            text-align: center; font-size: .75rem; color: var(--lp-muted);
            margin-top: 7px; display: flex; align-items: center; justify-content: center; gap: 4px;
        }
        .lp-pricing-reassure .bi { color: var(--lp-emerald); }

        /* ═══ R803: SCROLL ANIMATION ═══ */
        @media (prefers-reduced-motion: no-preference) {
            .lp-reveal {
                opacity: 0;
                transform: translateY(24px);
                transition: opacity .45s ease, transform .45s ease;
            }
            .lp-reveal.is-visible {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* ใน reduced-motion mode ให้แสดงทันที */
        @media (prefers-reduced-motion: reduce) {
            .lp-reveal { opacity: 1; transform: none; }
        }

        /* featured pricing card premium border + shadow */
        .lp-pricing-card.featured {
            border-color: var(--lp-violet);
            box-shadow: var(--lp-shadow-xl);
        }

        /* hero mockup premium shadow */
        .lp-mock-card {
            box-shadow: var(--lp-shadow-xl);
        }

        /* R803: <main> landmark display */
        main { display: block; }

        /* ═══ A2: AURORA HERO GLOW ═══ */
        .lp-aurora {
            position: absolute; inset: 0; z-index: 0;
            overflow: hidden; pointer-events: none;
        }
        .lp-aurora__blob {
            position: absolute; border-radius: 50%;
            will-change: transform, opacity;
            filter: blur(72px);
        }
        .lp-aurora__blob--1 {
            width: 520px; height: 420px;
            top: -120px; left: -80px;
            background: radial-gradient(ellipse, rgba(79,70,229,.42) 0%, transparent 70%);
            opacity: .5;
        }
        .lp-aurora__blob--2 {
            width: 480px; height: 380px;
            top: -60px; right: -60px;
            background: radial-gradient(ellipse, rgba(124,58,237,.38) 0%, transparent 70%);
            opacity: .45;
        }
        .lp-aurora__blob--3 {
            width: 360px; height: 320px;
            bottom: -80px; left: 35%;
            background: radial-gradient(ellipse, rgba(236,72,153,.30) 0%, transparent 70%);
            opacity: .4;
        }
        [data-theme="dark"] .lp-aurora__blob--1 { opacity: .65; }
        [data-theme="dark"] .lp-aurora__blob--2 { opacity: .60; }
        [data-theme="dark"] .lp-aurora__blob--3 { opacity: .52; }
        @media (prefers-reduced-motion: no-preference) {
            .lp-aurora__blob--1 {
                animation: lpAurora1 28s ease-in-out infinite;
            }
            .lp-aurora__blob--2 {
                animation: lpAurora2 32s ease-in-out infinite;
                animation-delay: -8s;
            }
            .lp-aurora__blob--3 {
                animation: lpAurora3 24s ease-in-out infinite;
                animation-delay: -14s;
            }
        }
        @keyframes lpAurora1 {
            0%,100% { transform: translate(0,0) scale(1); }
            33%      { transform: translate(40px,-30px) scale(1.08); }
            66%      { transform: translate(-20px,20px) scale(.96); }
        }
        @keyframes lpAurora2 {
            0%,100% { transform: translate(0,0) scale(1); }
            40%      { transform: translate(-50px,25px) scale(1.06); }
            70%      { transform: translate(30px,-20px) scale(.94); }
        }
        @keyframes lpAurora3 {
            0%,100% { transform: translate(0,0) scale(1); }
            50%      { transform: translate(35px,-40px) scale(1.10); }
        }
        /* hero content ต้องอยู่เหนือ aurora */
        .lp-hero .lp-container { position: relative; z-index: 1; }

        /* ═══ A1: HOW IT WORKS ═══ */
        .lp-hiw { background: var(--lp-bg); }
        .lp-hiw-grid {
            display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
            position: relative;
        }
        @media (max-width: 767px) {
            .lp-hiw-grid { grid-template-columns: 1fr; gap: 0; }
        }
        /* connector line (desktop only) */
        .lp-hiw-grid::before {
            content: '';
            position: absolute;
            top: 38px; /* align with center of badge */
            left: calc(16.67% + 20px);
            right: calc(16.67% + 20px);
            height: 2px;
            background: linear-gradient(90deg, var(--lp-indigo), var(--lp-violet), var(--lp-pink));
            opacity: .35;
            z-index: 0;
        }
        @media (max-width: 767px) { .lp-hiw-grid::before { display: none; } }
        .lp-hiw-step {
            position: relative; z-index: 1;
            padding: 28px 24px 24px;
            text-align: center;
            transition: transform .2s;
        }
        .lp-hiw-step:hover { transform: translateY(-4px); }
        .lp-hiw-badge {
            display: inline-flex; align-items: center; justify-content: center;
            width: 52px; height: 52px; border-radius: 50%;
            background: linear-gradient(135deg, var(--lp-indigo), var(--lp-violet));
            color: #fff; font-weight: 800; font-size: 1.1rem;
            box-shadow: 0 6px 20px rgba(79,70,229,.35);
            margin: 0 auto 16px;
            position: relative;
        }
        .lp-hiw-badge::after {
            content: '';
            position: absolute; inset: -4px;
            border-radius: 50%;
            border: 2px dashed rgba(124,58,237,.3);
        }
        .lp-hiw-icon-wrap {
            width: 56px; height: 56px; border-radius: var(--lp-radius-md);
            background: linear-gradient(135deg, rgba(79,70,229,.12), rgba(124,58,237,.12));
            color: var(--lp-violet);
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 22px;
            margin: 0 auto 14px;
            transition: background .2s, box-shadow .2s;
        }
        .lp-hiw-step:hover .lp-hiw-icon-wrap {
            background: linear-gradient(135deg, rgba(79,70,229,.20), rgba(124,58,237,.20));
            box-shadow: var(--lp-shadow);
        }
        .lp-hiw-step h3 {
            font-size: 1.05rem; font-weight: 700; color: var(--lp-ink);
            margin-bottom: 8px;
            font-family: 'Playfair Display','Noto Serif Thai',Georgia,serif;
        }
        .lp-hiw-step p {
            font-size: .84rem; color: var(--lp-muted); line-height: 1.6;
            max-width: 240px; margin: 0 auto 0;
        }
        /* CTA row under steps */
        .lp-hiw-cta-row {
            text-align: center; margin-top: 32px;
        }
        /* Dark mode */
        [data-theme="dark"] .lp-hiw-grid::before { opacity: .22; }
        [data-theme="dark"] .lp-hiw-icon-wrap {
            background: linear-gradient(135deg, rgba(99,102,241,.18), rgba(139,92,246,.18));
        }

/* ═══════════════ R808: Landing conversion upgrade ═══════════════ */
/* --- ROI / savings calculator --- */
.lp-roi-card { max-width:760px; margin:0 auto; background:var(--lp-surface); border:1px solid var(--lp-border);
    border-radius:var(--lp-radius-lg); padding:30px; box-shadow:var(--lp-shadow-lg); }
.lp-roi-inputs { display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-bottom:24px; }
.lp-roi-field label { display:flex; justify-content:space-between; align-items:baseline; font-size:.85rem; font-weight:600; color:var(--lp-muted); margin-bottom:9px; }
.lp-roi-field input[type=range] { width:100%; accent-color:var(--lp-indigo); height:6px; }
.lp-roi-field-val { font-size:1.15rem; font-weight:800; color:var(--lp-indigo); }
.lp-roi-result { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.lp-roi-out { text-align:center; padding:20px 14px; border-radius:var(--lp-radius); background:linear-gradient(135deg,rgba(99,102,241,.09),rgba(139,92,246,.09)); border:1px solid var(--lp-border); }
.lp-roi-out-num { font-size:1.9rem; font-weight:800; background:linear-gradient(135deg,var(--lp-indigo),var(--lp-violet)); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.lp-roi-out-lbl { font-size:.82rem; color:var(--lp-muted); margin-top:5px; }
.lp-roi-disclaimer { text-align:center; font-size:.78rem; color:var(--lp-muted); margin-top:16px; opacity:.85; }
@media (max-width:600px){ .lp-roi-inputs, .lp-roi-result { grid-template-columns:1fr; } }
[data-theme="dark"] .lp-roi-card { background:#0f172a; border-color:rgba(255,255,255,.08); }

/* --- FAQ search + empty state --- */
.lp-faq-search { max-width:560px; margin:0 auto 22px; position:relative; }
.lp-faq-search input { width:100%; padding:13px 16px 13px 44px; border-radius:999px; border:1px solid var(--lp-border); background:var(--lp-surface); color:var(--lp-ink); font-size:.95rem; outline:none; transition:border-color .15s, box-shadow .15s; }
.lp-faq-search input:focus { border-color:var(--lp-indigo); box-shadow:var(--lp-focus-ring); }
.lp-faq-search > .bi { position:absolute; left:16px; top:50%; transform:translateY(-50%); color:var(--lp-muted); pointer-events:none; }
.lp-faq-empty { text-align:center; color:var(--lp-muted); padding:24px; display:none; }
.lp-faq-item.lp-hidden { display:none !important; }
[data-theme="dark"] .lp-faq-search input { background:#0f172a; border-color:rgba(255,255,255,.1); }

/* --- Sticky mobile CTA bar --- */
.lp-sticky-cta { display:none; }
@media (max-width:768px){
    .lp-sticky-cta { display:flex; position:fixed; left:0; right:0; bottom:0; z-index:1200; gap:10px; padding:10px 14px;
        background:rgba(255,255,255,.96); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px);
        border-top:1px solid var(--lp-border); box-shadow:0 -4px 18px rgba(15,23,42,.1); }
    .lp-sticky-cta a { flex:1; text-align:center; justify-content:center; }
    body { padding-bottom:70px; }
}
[data-theme="dark"] .lp-sticky-cta { background:rgba(15,23,42,.97); border-color:rgba(255,255,255,.08); }

/* ═══════════════ R809: Landing UX polish (no data — pure UX) ═══════════════ */
/* Scroll progress bar */
.lp-progress { position:fixed; top:0; left:0; height:3px; width:0; z-index:1300; background:linear-gradient(90deg,var(--lp-indigo),var(--lp-violet),var(--lp-pink)); transition:width .08s linear; }

/* Hero mockup live pulse (illustrative) */
.lp-mock-live { margin-left:auto; display:inline-flex; align-items:center; gap:5px; font-size:.62rem; font-weight:800; color:var(--lp-emerald,#10b981); text-transform:uppercase; letter-spacing:.05em; }
.lp-mock-live-dot { width:7px; height:7px; border-radius:50%; background:var(--lp-emerald,#10b981); box-shadow:0 0 0 0 rgba(16,185,129,.5); animation:lpPulse 1.8s infinite; }
@keyframes lpPulse { 0%{box-shadow:0 0 0 0 rgba(16,185,129,.5);} 70%{box-shadow:0 0 0 7px rgba(16,185,129,0);} 100%{box-shadow:0 0 0 0 rgba(16,185,129,0);} }
@media (prefers-reduced-motion: reduce){ .lp-mock-live-dot{animation:none;} .lp-progress{transition:none;} }

/* Scroll-spy active nav link */
.lp-nav-menu a.active { color:var(--lp-indigo); font-weight:700; }

/* Back-to-top */
.lp-totop { position:fixed; right:20px; bottom:20px; z-index:1150; width:46px; height:46px; border-radius:50%; border:0; cursor:pointer; display:flex; align-items:center; justify-content:center;
    background:linear-gradient(135deg,var(--lp-indigo),var(--lp-violet)); color:#fff; font-size:18px; box-shadow:var(--lp-shadow-lg);
    opacity:0; visibility:hidden; transform:translateY(10px); transition:opacity .25s, transform .25s, visibility .25s; }
.lp-totop.show { opacity:1; visibility:visible; transform:translateY(0); }
.lp-totop:hover { transform:translateY(-2px); }
@media (max-width:768px){ .lp-totop { bottom:84px; width:42px; height:42px; } }

/* Cookie consent banner (PDPA) */
.lp-cookie { position:fixed; left:16px; right:16px; bottom:16px; z-index:1250; max-width:700px; margin:0 auto;
    display:none; align-items:center; gap:16px; flex-wrap:wrap; justify-content:space-between;
    background:var(--lp-surface); border:1px solid var(--lp-border); border-radius:var(--lp-radius-lg);
    box-shadow:var(--lp-shadow-xl,var(--lp-shadow-lg)); padding:16px 20px; }
.lp-cookie.show { display:flex; }
.lp-cookie-text { display:flex; align-items:center; gap:10px; font-size:.88rem; color:var(--lp-ink-2,var(--lp-ink)); flex:1; min-width:220px; }
.lp-cookie-text .bi { color:var(--lp-indigo); font-size:1.2rem; }
.lp-cookie-actions { display:flex; gap:10px; }
.lp-cookie-actions button { min-height:40px; }
@media (max-width:768px){ .lp-cookie { bottom:80px; } .lp-cookie-actions { flex:1; } .lp-cookie-actions button { flex:1; } }
[data-theme="dark"] .lp-cookie { background:#0f172a; border-color:rgba(255,255,255,.1); }

/* ═══════════════ R810: Compact + all-device responsive ═══════════════ */
/* Ultra-small phones (≤390px: iPhone 12/13 mini, SE, small Android) */
@media (max-width: 390px) {
    .lp-container { padding: 0 12px; }
    .lp-nav-inner { height: 52px; }
    .lp-hero { padding: 58px 0 26px; }
    .lp-section-head { margin-bottom: 16px; }
    .lp-hero-trust { gap: 10px; font-size: 11px; }
    .lp-mock-row { gap: 6px; }
    .lp-mock-kpi { padding: 8px 6px; }
}
/* Large desktop / ultrawide (≥1600px) — use space without over-stretching */
@media (min-width: 1600px) {
    .lp-container { max-width: 1280px; }
    .lp-hero-grid { gap: 72px; }
}

/* ═══════════════ R811: Landing premium (bento spotlight · glow · segmentation · tilt) ═══════════════ */
/* A1 — Bento spotlight: make first feature card per tab grander */
.lp-feat-grid > .lp-feat-card:first-child {
    background: linear-gradient(150deg, rgba(79,70,229,.07), rgba(124,58,237,.04) 55%, transparent);
    border-color: rgba(124,58,237,.20);
    padding: 22px 20px; display: flex; flex-direction: column; justify-content: center;
}
[data-theme="dark"] .lp-feat-grid > .lp-feat-card:first-child {
    background: linear-gradient(150deg, rgba(124,58,237,.16), rgba(79,70,229,.07) 55%, transparent);
    border-color: rgba(124,58,237,.30);
}
.lp-feat-grid > .lp-feat-card:first-child .lp-feat-icon { width: 52px; height: 52px; font-size: 24px; border-radius: 14px; margin-bottom: 14px; }
.lp-feat-grid > .lp-feat-card:first-child h5 { font-size: 1.16rem; margin-bottom: 6px; }
.lp-feat-grid > .lp-feat-card:first-child p  { font-size: .9rem; }
@media (max-width: 575px) {
    .lp-feat-grid > .lp-feat-card:first-child { padding: 16px 14px; }
    .lp-feat-grid > .lp-feat-card:first-child .lp-feat-icon { width: 36px; height: 36px; font-size: 16px; border-radius: 9px; margin-bottom: 10px; }
    .lp-feat-grid > .lp-feat-card:first-child h5 { font-size: .92rem; }
    .lp-feat-grid > .lp-feat-card:first-child p  { font-size: .76rem; }
}

/* A5 — premium glow on card hover + CTA shimmer sweep */
.lp-feat-card:hover, .lp-ps-card:hover {
    box-shadow: 0 10px 30px rgba(79,70,229,.16), 0 0 0 1px rgba(124,58,237,.20);
}
.lp-btn-primary { position: relative; overflow: hidden; }
.lp-btn-primary::after {
    content: ""; position: absolute; top: 0; left: -130%; width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
    transform: skewX(-18deg); pointer-events: none;
}
.lp-btn-primary:hover::after { animation: lpShine .85s ease; }
@keyframes lpShine { from { left: -130%; } to { left: 130%; } }

/* A4 — "เหมาะกับใคร" segmentation strip under hero */
.lp-seg { padding: clamp(16px, 2.6vw, 24px) 0; background: var(--lp-bg); border-bottom: 1px solid var(--lp-border); }
.lp-seg-inner { display: flex; align-items: center; justify-content: center; gap: 10px 14px; flex-wrap: wrap; }
.lp-seg-title { font-size: .8rem; font-weight: 700; color: var(--lp-muted); letter-spacing: .02em; }
.lp-seg-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600;
    color: var(--lp-ink-2); background: var(--lp-surface); border: 1px solid var(--lp-border);
    transition: all .18s;
}
.lp-seg-pill .bi { color: var(--lp-violet); font-size: .9rem; }
.lp-seg-pill:hover { border-color: var(--lp-violet); color: var(--lp-violet); transform: translateY(-1px); box-shadow: var(--lp-shadow-sm); }
@media (max-width: 575px) { .lp-seg-inner { gap: 8px; } .lp-seg-pill { padding: 6px 11px; font-size: .76rem; } }

/* A3 — hero mockup interactive tilt (desktop pointer only; reduced-motion safe) */
.lp-mock-card { transition: transform .18s ease; will-change: transform; }
@media (hover: hover) and (pointer: fine) {
    .lp-hero-mockup.tilt .lp-mock-card {
        transform: perspective(1100px) rotateY(var(--mx, -5deg)) rotateX(var(--my, 2deg));
    }
}
@media (prefers-reduced-motion: reduce) {
    .lp-mock-card { transition: none; }
    .lp-hero-mockup.tilt .lp-mock-card { transform: rotateY(-5deg) rotateX(2deg) !important; }
}

/* ═══════════════ R814: Landing motion polish (frontend-only) ═══════════════ */
/* L1: animated gradient on hero headline accent */
.lp-hero h1 .grad { background-size: 200% auto; animation: lpGradShift 7s ease-in-out infinite; }
@keyframes lpGradShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* L2: cursor-follow spotlight in hero (desktop pointer only, behind content) */
.lp-hero-spot {
    position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0;
    transition: opacity .35s ease;
    background: radial-gradient(360px circle at var(--spot-x, 50%) var(--spot-y, 28%), rgba(124,58,237,.12), transparent 62%);
}
.lp-hero.spot-on .lp-hero-spot { opacity: 1; }
[data-theme="dark"] .lp-hero-spot { background: radial-gradient(360px circle at var(--spot-x,50%) var(--spot-y,28%), rgba(129,140,248,.16), transparent 62%); }

/* L3: scroll-cue chevron at hero bottom (fades after scroll) */
.lp-scroll-cue {
    position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%); z-index: 1;
    color: var(--lp-muted-2); opacity: .85; transition: opacity .4s ease; pointer-events: none;
}
.lp-scroll-cue .bi { font-size: 20px; display: block; animation: lpCueBounce 1.8s ease-in-out infinite; }
.lp-scroll-cue.hide { opacity: 0; }
@keyframes lpCueBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (max-width: 991px) { .lp-scroll-cue { display: none; } }

/* L4: FAQ expand/collapse-all pill */
.lp-faq-allwrap { text-align: center; margin-bottom: 12px; }
.lp-faq-allbtn {
    display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
    padding: 6px 14px; border-radius: 999px; font-size: .8rem; font-weight: 600;
    color: var(--lp-violet); background: rgba(124,58,237,.06);
    border: 1px solid rgba(124,58,237,.18); transition: all .18s;
}
.lp-faq-allbtn:hover { background: rgba(124,58,237,.12); border-color: var(--lp-violet); transform: translateY(-1px); }

@media (prefers-reduced-motion: reduce) {
    .lp-hero h1 .grad { animation: none; }
    .lp-scroll-cue .bi { animation: none; }
    .lp-hero-spot { transition: none; }
    .lp-mock-float { animation: none; }
}

/* ═══════════════ R815: Premium active/efficient feel (frontend-only) ═══════════════ */

/* T1 — KPI "alive" pulse: gentle breathing glow on hero dashboard KPI tiles */
@keyframes lp815KpiGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,.0); }
    50%       { box-shadow: 0 0 0 5px rgba(99,102,241,.13); }
}
.lp-mock-kpi {
    animation: lp815KpiGlow 3.2s ease-in-out infinite;
}
.lp-mock-kpi:nth-child(2) { animation-delay: .8s; }
.lp-mock-kpi:nth-child(3) { animation-delay: 1.6s; }
.lp-mock-kpi:nth-child(4) { animation-delay: 2.4s; }

/* T2 — Bento spotlight: slow animated gradient border/glow ring (indigo→violet) */
@keyframes lp815SpotBorder {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.lp-feat-grid > .lp-feat-card:first-child {
    background-image: linear-gradient(var(--lp-surface, #fff), var(--lp-surface, #fff)),
                      linear-gradient(135deg, rgba(79,70,229,.55), rgba(124,58,237,.55), rgba(139,92,246,.45), rgba(79,70,229,.55));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 100% 100%, 300% 300%;
    border: 1.5px solid transparent;
    animation: lp815SpotBorder 5s ease-in-out infinite;
}
[data-theme="dark"] .lp-feat-grid > .lp-feat-card:first-child {
    background-image: linear-gradient(var(--lp-surface, #1e293b), var(--lp-surface, #1e293b)),
                      linear-gradient(135deg, rgba(99,102,241,.7), rgba(139,92,246,.7), rgba(167,139,250,.6), rgba(99,102,241,.7));
}

/* T3 — Card hover refinement: stronger lift + indigo glow; icon micro scale/rotate */
.lp-feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(79,70,229,.18), 0 0 0 1.5px rgba(124,58,237,.22);
    border-color: rgba(99,102,241,.35);
}
.lp-ps-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(79,70,229,.18), 0 0 0 1.5px rgba(124,58,237,.22);
}
@keyframes lp815IconPop {
    0%   { transform: scale(1) rotate(0deg); }
    40%  { transform: scale(1.1) rotate(-5deg); }
    70%  { transform: scale(1.03) rotate(3deg); }
    100% { transform: scale(1) rotate(0deg); }
}
.lp-feat-card:hover .lp-feat-icon {
    animation: lp815IconPop .35s ease forwards;
}

/* T4b — Hero min-height to prevent CLS on font delay */
.lp-hero { min-height: clamp(380px, 60vh, 600px); }

/* T4a + extras: reduced-motion gates for all R815 animations */
@media (prefers-reduced-motion: reduce) {
    .lp-mock-kpi           { animation: none; }
    .lp-feat-grid > .lp-feat-card:first-child { animation: none; background-size: 100% 100%, 100% 100%; }
    .lp-feat-card:hover .lp-feat-icon { animation: none; }
}
