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

        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #3b82f6;
            --primary-50: #eff6ff;
            --primary-100: #dbeafe;
            --primary-200: #bfdbfe;
            --primary-300: #93c5fd;
            --slate-50: #f8fafc;
            --slate-100: #f1f5f9;
            --slate-200: #e2e8f0;
            --slate-300: #cbd5e1;
            --slate-400: #94a3b8;
            --slate-500: #64748b;
            --slate-600: #475569;
            --slate-700: #334155;
            --slate-800: #1e293b;
            --slate-900: #0f172a;
            --white: #ffffff;
            --green-400: #4ade80;
            --green-600: #16a34a;
            --green-50: #f0fdf4;
            --yellow-400: #facc15;
            --orange-50: #fff7ed;
            --orange-600: #ea580c;
            --purple-50: #faf5ff;
            --purple-600: #9333ea;
            --red-400: #f87171;
            --font: 'Plus Jakarta Sans', sans-serif;
            --radius-sm: 6px;
            --radius: 10px;
            --radius-lg: 14px;
            --radius-xl: 18px;
            --radius-full: 9999px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
            --shadow: 0 4px 12px rgba(0, 0, 0, .08);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, .10);
            --shadow-xl: 0 20px 50px rgba(0, 0, 0, .12);
            --shadow-primary: 0 8px 24px rgba(37, 99, 235, .25);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font);
            color: var(--slate-800);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .container-sm {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ─── Animations ─── */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.visible { opacity: 1; transform: translateY(0); }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }

        /* ─── Buttons ─── */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            border-radius: var(--radius-full);
            font-family: var(--font);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: all .18s ease;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
            box-shadow: var(--shadow-primary);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 12px 28px rgba(37, 99, 235, .32);
        }

        .btn-outline {
            background: transparent;
            color: var(--slate-700);
            border: 1.5px solid var(--slate-200);
        }

        .btn-outline:hover { border-color: var(--slate-300); background: var(--slate-50); }

        .btn-white {
            background: var(--white);
            color: var(--primary);
            font-weight: 700;
        }

        .btn-white:hover { background: var(--primary-50); }

        .btn-ghost-white {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255, 255, 255, .35);
        }

        .btn-ghost-white:hover { background: rgba(255, 255, 255, .12); }

        .btn-lg { padding: 14px 32px; font-size: 15px; }

        .btn svg { width: 16px; height: 16px; }

        /* ─── Badge ─── */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            border-radius: var(--radius-full);
            font-size: 12px;
            font-weight: 600;
        }

        .badge-blue { background: var(--primary-50); color: var(--primary); }
        .badge-green { background: var(--green-50); color: var(--green-600); }
        .badge-live { background: var(--green-50); color: var(--green-600); font-size: 11px; }

        /* ─── NAV ─── */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            transition: all .3s ease;
            padding: 20px 0;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, .95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--slate-100);
            box-shadow: var(--shadow-sm);
            padding: 12px 0;
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 20px;
            color: var(--slate-900);
            letter-spacing: -.3px;
        }

        .logo-icon {
            width: 34px;
            height: 34px;
            border-radius: 9px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(37, 99, 235, .30);
            flex-shrink: 0;
        }

        .logo-icon svg { width: 18px; height: 18px; }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: var(--slate-500);
            transition: color .15s;
        }

        .nav-links a:hover { color: var(--slate-900); }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-login {
            font-size: 14px;
            font-weight: 600;
            color: var(--slate-600);
            padding: 8px 14px;
            border-radius: var(--radius-full);
            transition: all .15s;
        }

        .nav-login:hover { background: var(--slate-100); color: var(--slate-800); }

        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--slate-700);
            margin: 5px 0;
            border-radius: 2px;
            transition: all .3s;
        }

        .mobile-menu {
            display: none;
            padding: 16px 24px 20px;
            border-top: 1px solid var(--slate-100);
            background: white;
        }

        .mobile-menu.open { display: block; }

        .mobile-menu a {
            display: block;
            padding: 10px 0;
            font-size: 15px;
            font-weight: 500;
            color: var(--slate-700);
            border-bottom: 1px solid var(--slate-100);
        }

        /* ─── HERO ─── */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 0 60px;
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 40%, #eff6ff 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(to right, #e2e8f015 1px, transparent 1px), linear-gradient(to bottom, #e2e8f015 1px, transparent 1px);
            background-size: 48px 48px;
            pointer-events: none;
        }

        .hero-glow-1 {
            position: absolute;
            top: 5%;
            right: -5%;
            width: 550px;
            height: 550px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(37, 99, 235, .07) 0%, transparent 70%);
        }

        .hero-glow-2 {
            position: absolute;
            bottom: 5%;
            left: -5%;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(147, 197, 253, .15) 0%, transparent 70%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-announce {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            background: var(--primary-50);
            border: 1px solid var(--primary-200);
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 22px;
        }

        .hero-announce .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--primary);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: .6; transform: scale(1.3); }
        }

        .hero h1 {
            font-size: clamp(36px, 4.5vw, 58px);
            font-weight: 900;
            line-height: 1.08;
            letter-spacing: -.03em;
            color: var(--slate-900);
            margin-bottom: 22px;
        }

        .hero h1 span { color: var(--primary); }

        .hero p {
            font-size: 17px;
            color: var(--slate-500);
            line-height: 1.7;
            max-width: 480px;
            margin-bottom: 32px;
        }

        .hero-ctas {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }

        .hero-trust-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--slate-500);
        }

        .hero-trust-item svg { width: 15px; height: 15px; color: var(--primary); }

        /* Dashboard mockup */
        .dashboard {
            background: white;
            border-radius: 18px;
            border: 1px solid var(--slate-200);
            box-shadow: var(--shadow-xl);
            overflow: hidden;
            position: relative;
        }

        .dash-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 18px;
            background: var(--slate-50);
            border-bottom: 1px solid var(--slate-100);
        }

        .dash-dots { display: flex; gap: 6px; }
        .dash-dots span { width: 11px; height: 11px; border-radius: 50%; }
        .dot-red { background: #f87171; }
        .dot-yellow { background: #fbbf24; }
        .dot-green { background: #4ade80; }

        .dash-title { font-size: 11px; font-weight: 500; color: var(--slate-400); }
        .dash-badges { display: flex; align-items: center; gap: 8px; }
        .dash-body { padding: 16px; }

        .stat-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 14px;
        }

        .stat-card {
            background: var(--slate-50);
            border: 1px solid var(--slate-100);
            border-radius: 10px;
            padding: 10px 12px;
        }

        .stat-card .label {
            font-size: 9px;
            color: var(--slate-400);
            font-weight: 500;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: .04em;
        }

        .stat-card .value {
            font-size: 18px;
            font-weight: 800;
            color: var(--slate-800);
            line-height: 1;
            margin-bottom: 5px;
        }

        .stat-pill {
            font-size: 9px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 999px;
        }

        .pill-blue { background: var(--primary-50); color: var(--primary); }
        .pill-green { background: var(--green-50); color: var(--green-600); }
        .pill-orange { background: var(--orange-50); color: var(--orange-600); }
        .pill-purple { background: var(--purple-50); color: var(--purple-600); }

        .chart-box {
            background: var(--slate-50);
            border: 1px solid var(--slate-100);
            border-radius: 10px;
            padding: 12px 14px;
        }

        .chart-box-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .chart-box-header p { font-size: 11px; font-weight: 600; color: var(--slate-700); }
        .chart-box-header span { font-size: 9px; color: var(--slate-400); }

        .chart-row {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 10px;
            margin-top: 10px;
        }

        .chart-label {
            font-size: 11px;
            font-weight: 600;
            color: var(--slate-700);
            margin-bottom: 10px;
        }

        /* Floating badges */
        .float-badge {
            position: absolute;
            background: white;
            border: 1px solid var(--slate-100);
            border-radius: 14px;
            box-shadow: var(--shadow-lg);
            padding: 10px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 10;
        }

        .float-badge-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .float-badge .fb-title { font-size: 11px; font-weight: 700; color: var(--slate-800); line-height: 1.2; }
        .float-badge .fb-sub { font-size: 9px; color: var(--slate-400); }

        .float-left { left: -24px; top: 35%; }
        .float-right { right: -16px; bottom: 18%; }

        /* ─── STATS BAR ─── */
        .stats-bar {
            padding: 52px 0;
            border-top: 1px solid var(--slate-100);
            border-bottom: 1px solid var(--slate-100);
            background: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center;
        }

        .stat-item .big-num {
            font-size: 38px;
            font-weight: 900;
            color: var(--primary);
            letter-spacing: -.03em;
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-item .desc {
            font-size: 14px;
            font-weight: 500;
            color: var(--slate-500);
        }

        /* ─── TRUSTED BY ─── */
        .trusted {
            padding: 48px 0;
            background: var(--slate-50);
            border-bottom: 1px solid var(--slate-100);
        }

        .trusted p {
            text-align: center;
            font-size: 11px;
            font-weight: 600;
            color: var(--slate-400);
            text-transform: uppercase;
            letter-spacing: .1em;
            margin-bottom: 28px;
        }

        .logo-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 48px 56px;
            opacity: .5;
            filter: grayscale(1);
        }

        .logo-pill {
            height: 26px;
            background: var(--slate-400);
            border-radius: 5px;
        }

        /* ─── SECTIONS ─── */
        .section { padding: 96px 0; }
        .section-alt { background: var(--slate-50); }

        .section-header {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-size: clamp(28px, 3.5vw, 42px);
            font-weight: 900;
            color: var(--slate-900);
            letter-spacing: -.03em;
            line-height: 1.15;
            margin-bottom: 14px;
        }

        .section-header p {
            font-size: 17px;
            color: var(--slate-500);
            line-height: 1.65;
        }

        .showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .showcase-text h2 {
            font-size: clamp(26px, 3vw, 38px);
            font-weight: 900;
            color: var(--slate-900);
            letter-spacing: -.03em;
            line-height: 1.18;
            margin: 14px 0 18px;
        }

        .showcase-text p {
            font-size: 16px;
            color: var(--slate-500);
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .check-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 28px;
        }

        .check-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .check-item svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 1px; }
        .check-item span { font-size: 15px; color: var(--slate-700); }

        .mini-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 28px;
        }

        .mini-feat {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 16px;
            background: white;
            border: 1px solid var(--slate-100);
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
        }

        .mini-feat-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--primary-50);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .mini-feat-icon svg { width: 15px; height: 15px; color: var(--primary); }
        .mini-feat h4 { font-size: 14px; font-weight: 700; color: var(--slate-800); margin-bottom: 2px; }
        .mini-feat p { font-size: 13px; color: var(--slate-500); line-height: 1.5; }

        .photo-wrap {
            position: relative;
            border-radius: 20px;
            overflow: visible;
        }

        .photo-wrap img {
            border-radius: 18px;
            border: 1px solid var(--slate-200);
            box-shadow: var(--shadow-xl);
            width: 100%;
            object-fit: cover;
            height: 400px;
        }

        .view-switcher {
            position: absolute;
            top: 14px;
            left: 14px;
            display: flex;
            gap: 4px;
            background: rgba(255, 255, 255, .96);
            backdrop-filter: blur(8px);
            border: 1px solid var(--slate-100);
            border-radius: 10px;
            padding: 5px;
            box-shadow: var(--shadow);
        }

        .vs-btn {
            font-size: 11px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 7px;
            border: none;
            cursor: pointer;
            transition: all .15s;
            background: transparent;
            color: var(--slate-500);
        }

        .vs-btn.active { background: var(--primary); color: white; }

        .on-track-card {
            position: absolute;
            bottom: -14px;
            right: -14px;
            background: white;
            border: 1px solid var(--slate-100);
            border-radius: 14px;
            padding: 14px 18px;
            box-shadow: var(--shadow-lg);
        }

        .on-track-card .ot-title { font-size: 11px; color: var(--slate-500); margin-bottom: 4px; }

        .on-track-card .ot-num { display: flex; align-items: baseline; gap: 4px; }
        .on-track-card .ot-num strong { font-size: 24px; font-weight: 800; color: var(--slate-800); }
        .on-track-card .ot-num span { font-size: 13px; color: var(--slate-400); }

        .progress-bar {
            height: 5px;
            background: var(--slate-100);
            border-radius: 999px;
            margin-top: 8px;
            width: 120px;
            overflow: hidden;
        }

        .progress-fill { height: 100%; background: var(--primary); border-radius: 999px; }

        .online-card {
            position: absolute;
            top: -14px;
            left: -14px;
            background: white;
            border: 1px solid var(--slate-100);
            border-radius: 14px;
            padding: 12px 16px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .avatars { display: flex; }

        .avatars img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 2px solid white;
            object-fit: cover;
            margin-left: -8px;
        }

        .avatars img:first-child { margin-left: 0; }

        .avatar-more {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 2px solid white;
            background: var(--primary);
            color: white;
            font-size: 9px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: -8px;
        }

        .online-text { font-size: 12px; font-weight: 600; color: var(--slate-700); }

        /* ─── FEATURE GRID ─── */
        .feat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .feat-card {
            background: white;
            border: 1px solid var(--slate-100);
            border-radius: 18px;
            padding: 26px;
            box-shadow: var(--shadow-sm);
            transition: all .2s ease;
        }

        .feat-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

        .feat-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: var(--primary-50);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .feat-icon svg { width: 19px; height: 19px; color: var(--primary); }
        .feat-card h3 { font-size: 15px; font-weight: 700; color: var(--slate-800); margin-bottom: 8px; }
        .feat-card p { font-size: 13px; color: var(--slate-500); line-height: 1.6; }

        /* ─── HOW IT WORKS ─── */
        .how-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .how-card {
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid var(--slate-100);
            box-shadow: var(--shadow-sm);
            background: white;
            transition: box-shadow .2s;
        }

        .how-card:hover { box-shadow: var(--shadow); }

        .how-img-wrap {
            position: relative;
            height: 180px;
            overflow: hidden;
        }

        .how-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

        .how-card:hover .how-img-wrap img { transform: scale(1.05); }

        .how-img-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 23, 42, .55) 0%, transparent 100%);
        }

        .how-step {
            position: absolute;
            top: 16px;
            left: 16px;
            font-size: 48px;
            font-weight: 900;
            color: rgba(255, 255, 255, .18);
            z-index: 1;
            line-height: 1;
        }

        .how-body { padding: 22px; }
        .how-body h3 { font-size: 16px; font-weight: 700; color: var(--slate-800); margin-bottom: 8px; }
        .how-body p { font-size: 13px; color: var(--slate-500); line-height: 1.65; }

        /* ─── PRICING ─── */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            align-items: center;
            max-width: 960px;
            margin: 0 auto;
        }

        .pricing-card {
            background: white;
            border: 1px solid var(--slate-200);
            border-radius: 20px;
            padding: 30px;
            box-shadow: var(--shadow-sm);
            position: relative;
        }

        .pricing-card.featured {
            border-color: var(--primary);
            box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
            transform: scale(1.04);
            z-index: 2;
        }

        .most-popular {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            font-size: 11px;
            font-weight: 700;
            padding: 5px 16px;
            border-radius: var(--radius-full);
            white-space: nowrap;
            box-shadow: var(--shadow-primary);
            letter-spacing: .04em;
            text-transform: uppercase;
        }

        .pricing-card h3 { font-size: 18px; font-weight: 800; color: var(--slate-800); margin-bottom: 4px; }
        .pricing-card.featured h3 { color: var(--primary); }
        .pricing-card .sub { font-size: 13px; color: var(--slate-500); margin-bottom: 16px; }

        .price-row {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--slate-100);
        }

        .price-big {
            font-size: 30px;
            font-weight: 900;
            color: var(--slate-900);
            letter-spacing: -.04em;
            line-height: 1;
        }

        .price-big.featured-price { color: var(--primary); }
        .price-period { font-size: 13px; color: var(--slate-400); }

        .feat-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 28px;
        }

        .feat-list li {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 14px;
            color: var(--slate-600);
        }

        .feat-list li svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
        .feat-list li.dim { color: var(--slate-400); }
        .feat-list li.dim svg { color: var(--slate-300); }

        .pricing-note {
            text-align: center;
            font-size: 13px;
            color: var(--slate-400);
            margin-top: 24px;
        }

        /* ─── TESTIMONIALS ─── */
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .testi-card {
            background: var(--slate-50);
            border: 1px solid var(--slate-100);
            border-radius: 20px;
            padding: 28px;
            transition: box-shadow .2s;
        }

        .testi-card:hover { box-shadow: var(--shadow); }

        .stars { display: flex; gap: 4px; margin-bottom: 14px; }
        .stars svg { width: 14px; height: 14px; fill: var(--yellow-400); stroke: none; }

        .testi-card blockquote {
            font-size: 14px;
            color: var(--slate-700);
            line-height: 1.72;
            font-style: italic;
            margin-bottom: 20px;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testi-author img {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid white;
            box-shadow: var(--shadow-sm);
        }

        .testi-author strong { font-size: 14px; font-weight: 700; color: var(--slate-800); display: block; }
        .testi-author span { font-size: 12px; color: var(--slate-400); }

        /* ─── FAQ ─── */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: white;
            border: 1px solid var(--slate-100);
            border-radius: 14px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: box-shadow .2s;
        }

        .faq-item.open { box-shadow: var(--shadow); }

        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 22px;
            cursor: pointer;
            gap: 16px;
        }

        .faq-q h4 { font-size: 15px; font-weight: 600; color: var(--slate-800); line-height: 1.4; }

        .faq-q svg {
            width: 18px;
            height: 18px;
            color: var(--slate-400);
            flex-shrink: 0;
            transition: transform .3s;
        }

        .faq-item.open .faq-q svg {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease, padding .3s;
        }

        .faq-a p {
            padding: 0 22px 20px;
            font-size: 14px;
            color: var(--slate-500);
            line-height: 1.7;
        }

        /* ─── CTA BANNER ─── */
        .cta-banner {
            padding: 100px 0;
            background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(to right, rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, .06) 1px, transparent 1px);
            background-size: 3rem 3rem;
        }

        .cta-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(70px);
            pointer-events: none;
        }

        .cta-glow-1 {
            top: -40%;
            left: 15%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, .06);
        }

        .cta-glow-2 {
            bottom: -40%;
            right: 15%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, .06);
        }

        .cta-inner {
            text-align: center;
            position: relative;
            z-index: 1;
            max-width: 760px;
            margin: 0 auto;
        }

        .cta-inner h2 {
            font-size: clamp(30px, 4vw, 48px);
            font-weight: 900;
            color: white;
            letter-spacing: -.03em;
            margin-bottom: 18px;
            line-height: 1.1;
        }

        .cta-inner p {
            font-size: 18px;
            color: rgba(255, 255, 255, .85);
            line-height: 1.65;
            margin-bottom: 36px;
        }

        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .cta-inner small {
            display: block;
            color: rgba(255, 255, 255, .55);
            font-size: 13px;
        }

        /* ─── FOOTER ─── */
        footer {
            background: var(--slate-900);
            color: var(--slate-400);
            padding: 60px 0 28px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 48px;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.65;
            color: var(--slate-400);
            max-width: 280px;
            margin: 18px 0 22px;
        }

        .social-links { display: flex; gap: 10px; }

        .social-link {
            width: 34px;
            height: 34px;
            border-radius: 9px;
            background: var(--slate-800);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--slate-400);
            transition: all .15s;
        }

        .social-link:hover { background: var(--slate-700); color: white; }
        .social-link svg { width: 15px; height: 15px; }

        .footer-col h4 {
            font-size: 13px;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
            letter-spacing: .02em;
            text-transform: uppercase;
        }

        .footer-col ul { display: flex; flex-direction: column; gap: 10px; }

        .footer-col a {
            font-size: 14px;
            color: var(--slate-400);
            transition: color .15s;
        }

        .footer-col a:hover { color: white; }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding-top: 24px;
            border-top: 1px solid var(--slate-800);
            font-size: 13px;
        }

        .footer-bottom-links { display: flex; gap: 20px; }

        .footer-bottom-links a {
            color: var(--slate-500);
            transition: color .15s;
        }

        .footer-bottom-links a:hover { color: var(--slate-300); }

        .status-dot {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--green-400);
            font-size: 12px;
            font-weight: 500;
        }

        .status-dot span.dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--green-400);
            animation: pulse 2s infinite;
        }

        /* ─── Analytics chart card ─── */
        .analytics-card {
            background: white;
            border-radius: 18px;
            border: 1px solid var(--slate-200);
            box-shadow: var(--shadow-xl);
            overflow: hidden;
        }

        .analytics-card-header {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 18px;
            border-bottom: 1px solid var(--slate-100);
            background: var(--slate-50);
        }

        .analytics-card-header svg { width: 14px; height: 14px; color: var(--primary); }
        .analytics-card-header span { font-size: 12px; font-weight: 600; color: var(--slate-600); }
        .analytics-body { padding: 22px; }

        .perf-top { display: flex; gap: 14px; margin-bottom: 20px; }

        .perf-box {
            flex: 1;
            padding: 14px 16px;
            border-radius: 12px;
        }

        .perf-box-blue { background: var(--primary-50); }
        .perf-box-gray { background: var(--slate-50); }

        .perf-box label {
            font-size: 11px;
            font-weight: 500;
            color: var(--slate-400);
            display: block;
            margin-bottom: 4px;
        }

        .perf-box-blue label { color: var(--primary); }

        .perf-box strong {
            font-size: 28px;
            font-weight: 900;
            color: var(--slate-800);
            line-height: 1;
        }

        .perf-box-gray strong { color: var(--slate-400); }

        .perf-box sup {
            font-size: 14px;
            font-weight: 500;
            color: var(--slate-400);
        }

        .chart-legend {
            display: flex;
            gap: 18px;
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid var(--slate-100);
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--slate-500);
        }

        .legend-line {
            width: 24px;
            height: 2px;
            border-radius: 2px;
        }

        .legend-dashed {
            background: repeating-linear-gradient(to right, var(--slate-300) 0px, var(--slate-300) 5px, transparent 5px, transparent 9px);
        }

        .legend-solid { background: var(--primary); }

        .svg-chart { width: 100%; overflow: visible; }

        .axis-label {
            font-size: 9px;
            fill: var(--slate-400);
            font-family: var(--font);
        }

        /* ─── INDUSTRIES ─── */
        .industries {
            padding: 96px 0;
            background: white;
        }

        .industries .section-header {
            margin-bottom: 52px;
        }

        .industry-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .industry-card {
            background: white;
            border: 1px solid var(--slate-100);
            border-radius: 18px;
            padding: 28px 24px;
            text-align: center;
            transition: all .25s ease;
            position: relative;
            overflow: hidden;
        }

        .industry-card::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0;
            background: linear-gradient(180deg, var(--primary-50) 0%, white 100%);
            transition: opacity .25s ease;
        }

        .industry-card:hover {
            border-color: var(--primary-200);
            box-shadow: 0 8px 28px rgba(37, 99, 235, .10);
            transform: translateY(-4px);
        }

        .industry-card:hover::before {
            opacity: 1;
        }

        .industry-card > * {
            position: relative;
            z-index: 1;
        }

        .industry-icon {
            width: 52px;
            height: 52px;
            margin: 0 auto 16px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .industry-icon svg {
            width: 24px;
            height: 24px;
        }

        .industry-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--slate-800);
            margin-bottom: 8px;
        }

        .industry-card p {
            font-size: 13px;
            color: var(--slate-500);
            line-height: 1.6;
        }

        .industry-card .industry-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 14px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--slate-50);
            border: 1px solid var(--slate-100);
            color: var(--slate-400);
            transition: all .2s ease;
        }

        .industry-card:hover .industry-arrow {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }

        .industry-card .industry-arrow svg {
            width: 14px;
            height: 14px;
        }

        @media (max-width: 1024px) {
            .industry-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .industry-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 540px) {
            .industry-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ─── Responsive ─── */
        @media (max-width: 1024px) {
            .hero-grid { grid-template-columns: 1fr; gap: 48px; }
            .float-left, .float-right { display: none; }
            .showcase { grid-template-columns: 1fr; gap: 40px; }
            .showcase .order-first { order: -1; }
        }

        @media (max-width: 768px) {
            .nav-links, .nav-actions { display: none; }
            .hamburger { display: block; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .feat-grid, .how-grid, .pricing-grid, .testi-grid { grid-template-columns: 1fr; }
            .pricing-card.featured { transform: none; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .hero-ctas { gap: 10px; }
            .stat-cards { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 480px) {
            .stats-grid { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .cta-btns { flex-direction: column; align-items: center; }
        }
    </style>
