
        html {
            font-size: 15px;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #ffffff;
            color: #0f172a;
            min-height: 100vh;
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }


        @media (min-width: 1024px) {
            .lg\:grid-cols-7 {
                grid-template-columns: repeat(8, 1fr);
            }
        }

        a {
            transition: all 0.2s ease-in-out;
            text-decoration: none;
        }

        /* Layout Utilities */

        .px-4 {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .px-6 {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        .py-2 {
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }

        .py-3 {
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
        }

        .py-6 {
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
        }

        .pt-2 {
            padding-top: 0.5rem;
        }

        .pt-8 {
            padding-top: 2rem;
        }

        .pt-16 {
            padding-top: 4rem;
        }

        .pb-12 {
            padding-bottom: 3rem;
        }

        .pb-20 {
            padding-bottom: 5rem;
        }

        .pb-24 {
            padding-bottom: 6rem;
        }

        .mb-1 {
            margin-bottom: 0.25rem;
        }

        .mb-2 {
            margin-bottom: 0.5rem;
        }

        .mb-6 {
            margin-bottom: 1.5rem;
        }

        .mb-8 {
            margin-bottom: 2rem;
        }

        .mb-10 {
            margin-bottom: 2.5rem;
        }

        .mt-1 {
            margin-top: 0.25rem;
        }

        .mt-2 {
            margin-top: 0.5rem;
        }

        .mt-3 {
            margin-top: 0.75rem;
        }

        .mt-5 {
            margin-top: 1.25rem;
        }

        .mt-6 {
            margin-top: 1.5rem;
        }

        .mt-8 {
            margin-top: 2rem;
        }

        .mt-10 {
            margin-top: 2.5rem;
        }

        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        /* Flexbox */
        .flex {
            display: flex;
        }

        .inline-flex {
            display: inline-flex;
        }

        .flex-col {
            flex-direction: column;
        }

        .flex-wrap {
            flex-wrap: wrap;
        }

        .items-center {
            align-items: center;
        }

        .justify-center {
            justify-content: center;
        }

        .justify-between {
            justify-content: space-between;
        }

        .gap-3 {
            gap: 0.75rem;
        }

        .gap-4 {
            gap: 1rem;
        }

        .gap-5 {
            gap: 1.25rem;
        }

        .gap-6 {
            gap: 1.5rem;
        }

        .space-x-1\.5>*+* {
            margin-left: 0.375rem;
        }

        .space-x-2>*+* {
            margin-left: 0.5rem;
        }

        .space-y-3>*+* {
            margin-top: 0.75rem;
        }

        .space-y-5>*+* {
            margin-top: 1.25rem;
        }

        .space-y-6>*+* {
            margin-top: 1.5rem;
        }

        /* Grid */
        .grid {
            display: grid;
        }

        .grid-cols-1 {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }

        .grid-cols-2 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        /* Text */
        .text-left {
            text-align: left;
        }

        .text-center {
            text-align: center;
        }

        .text-xs {
            font-size: 0.75rem;
            line-height: 1rem;
        }

        .text-sm {
            font-size: 0.875rem;
            line-height: 1.25rem;
        }

        .text-base {
            font-size: 1rem;
            line-height: 1.5rem;
        }

        .text-lg {
            font-size: 1.125rem;
            line-height: 1.75rem;
        }

        .text-xl {
            font-size: 1.25rem;
            line-height: 1.75rem;
        }

        .text-2xl {
            font-size: 1.5rem;
            line-height: 2rem;
        }

        .text-3xl {
            font-size: 1.875rem;
            line-height: 2.25rem;
        }

        .text-4xl {
            font-size: 2.25rem;
            line-height: 2.5rem;
        }

        .font-semibold {
            font-weight: 600;
        }

        .font-bold {
            font-weight: 700;
        }

        .font-extrabold {
            font-weight: 800;
        }

        .tracking-tight {
            letter-spacing: -0.025em;
        }

        .leading-relaxed {
            line-height: 1.625;
        }

        /* Colors */
        .text-slate-600 {
            color: #475569;
        }

        .text-slate-700 {
            color: #334155;
        }

        .text-slate-800 {
            color: #1e293b;
        }

        .text-slate-900 {
            color: #0f172a;
        }

        .text-blue-500 {
            color: #3b82f6;
        }

        .text-blue-600 {
            color: #2563eb;
        }

        .text-purple-600 {
            color: #9333ea;
        }

        .text-emerald-500 {
            color: #10b981;
        }

        .text-emerald-600 {
            color: #059669;
        }

        .text-cyan-600 {
            color: #0891b2;
        }

        .bg-white {
            background-color: #ffffff;
        }

        .bg-gray-50 {
            background-color: #f9fafb;
        }

        .bg-emerald-500 {
            background-color: #10b981;
        }

        .bg-blue-100 {
            background-color: #dbeafe;
        }

        /* Borders */
        .border {
            border-width: 1px;
        }

        .border-slate-200 {
            border-color: #e2e8f0;
        }

        .border-slate-700 {
            border-color: #334155;
        }

        .rounded-full {
            border-radius: 9999px;
        }

        .rounded-xl {
            border-radius: 0.75rem;
        }

        .rounded-2xl {
            border-radius: 1rem;
        }

        .rounded-3xl {
            border-radius: 1.5rem;
        }

        /* Display */
        .hidden {
            display: none;
        }

        .block {
            display: block;
        }

        .inline-block {
            display: inline-block;
        }

        /* Position */
        .relative {
            position: relative;
        }

        .absolute {
            position: absolute;
        }

        .inset-0 {
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }

        /* Size */
        .w-4 {
            width: 1rem;
        }

        .w-5 {
            width: 1.25rem;
        }

        .w-6 {
            width: 1.5rem;
        }

        .w-8 {
            width: 2rem;
        }

        .w-16 {
            width: 4rem;
        }

        .w-full {
            width: 100%;
        }

        .h-2 {
            height: 0.5rem;
        }

        .h-3 {
            height: 0.75rem;
        }

        .h-4 {
            height: 1rem;
        }

        .h-5 {
            height: 1.25rem;
        }

        .h-6 {
            height: 1.5rem;
        }

        .h-7 {
            height: 1.75rem;
        }

        .h-8 {
            height: 2rem;
        }

        .h-12 {
            height: 3rem;
        }

        .h-16 {
            height: 4rem;
        }

        .h-48 {
            height: 12rem;
        }

        .max-w-md {
            max-width: 28rem;
        }

        .max-w-xl {
            max-width: 36rem;
        }

        .max-w-2xl {
            max-width: 42rem;
        }

        .max-w-4xl {
            max-width: 56rem;
        }

        .max-w-6xl {
            max-width: 72rem;
        }

        /* Effects */
        .shadow-md {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .shadow-lg {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .cursor-pointer {
            cursor: pointer;
        }

        .transition {
            transition-property: all;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-duration: 150ms;
        }

        /* Animations */

        .animate-ping {
            animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        /* Custom Styles */
        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        .badge-glass {
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 252, 0.8));
            border: 1px solid rgba(59, 130, 246, 0.2);
            box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
        }

        .gradient-text {
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }


        /* Responsive Grid */
        @media (min-width: 640px) {
            .sm\:grid-cols-2 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .sm\:grid-cols-3 {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .sm\:grid-cols-4 {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }

            .sm\:text-sm {
                font-size: 0.875rem;
                line-height: 1.25rem;
            }

            .sm\:text-lg {
                font-size: 1.125rem;
                line-height: 1.75rem;
            }

            .sm\:text-xl {
                font-size: 1.25rem;
                line-height: 1.75rem;
            }

            .sm\:text-3xl {
                font-size: 1.875rem;
                line-height: 2.25rem;
            }

            .sm\:text-4xl {
                font-size: 2.25rem;
                line-height: 2.5rem;
            }

            .sm\:text-5xl {
                font-size: 3rem;
                line-height: 1;
            }

            .sm\:h-64 {
                height: 16rem;
            }

            .sm\:p-10 {
                padding: 2.5rem;
            }

            .sm\:px-5 {
                padding-left: 1.25rem;
                padding-right: 1.25rem;
            }

            .sm\:py-4 {
                padding-top: 1rem;
                padding-bottom: 1rem;
            }

            .sm\:p-8 {
                padding: 2rem;
            }
        }

        @media (min-width: 768px) {
            .md\:grid-cols-2 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .md\:grid-cols-3 {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .md\:grid-cols-4 {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }

            .md\:mt-0 {
                margin-top: 0;
            }

            .md\:pt-20 {
                padding-top: 5rem;
            }

            .md\:pb-24 {
                padding-bottom: 6rem;
            }

            .md\:mt-12 {
                margin-top: 3rem;
            }
        }

        @media (min-width: 1024px) {
            .lg\:grid-cols-4 {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }

            .lg\:text-6xl {
                font-size: 3.75rem;
                line-height: 1;
            }
        }



        .p-8 {
            padding: 2rem;
        }

        .gap-10 {
            gap: 2.5rem;
        }

        .leading-\[1\.1\] {
            line-height: 1.1;
        }

        .p-6 {
            padding: 1.5rem;
        }

        .ml-1 {
            margin-left: 0.25rem;
        }

        .ml-3 {
            margin-left: 0.75rem;
        }

        .-top-1 {
            top: -0.25rem;
        }

        .-right-1 {
            right: -0.25rem;
        }

        .z-10 {
            z-index: 10;
        }

        .group:hover .group-hover\:scale-110 {
            transform: scale(1.1);
        }

        .duration-300 {
            transition-duration: 300ms;
        }

/* ── Product Hero orbit animation ── */
        .ph {
            background: #fff;
            padding: 32px 0 44px;
            overflow: hidden;
        }

        .ph-wrap {
            max-width: 780px;
            margin: 0 auto;
            text-align: center;
            padding: 0 24px;
        }

        /* Orbit clip box — controls visible height of the scaled orbit */
        .ph-orbit-clip {
            height: calc(400px * .75);
            overflow: hidden;
            margin-bottom: 28px;
        }

        .ph-orbit {
            position: relative;
            width: 700px;
            height: 400px;
            margin: 0 auto;
            transform: scale(.75);
            transform-origin: top center;
        }

        /* Center hub icon */
        .ph-hub {
            position: absolute;
            left: 306px;
            top: 111px;
            width: 88px;
            height: 88px;
            background: linear-gradient(135deg, #6366f1, #7c3aed);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 16px 44px rgba(99, 102, 241, .38);
            animation: phf0 5s ease-in-out infinite;
        }

        /* Surrounding tool cards */
        .ph-ic {
            position: absolute;
            width: 54px;
            height: 54px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .11);
        }

        .ph-a {
            left: 121px;
            top: 35px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            animation: phf1 5.2s ease-in-out infinite;
        }

        .ph-b {
            left: 25px;
            top: 158px;
            background: linear-gradient(135deg, #10b981, #059669);
            animation: phf2 4.8s ease-in-out infinite;
        }

        .ph-c {
            left: 131px;
            top: 295px;
            background: linear-gradient(135deg, #06b6d4, #0284c7);
            animation: phf3 5.5s ease-in-out infinite;
        }

        .ph-d {
            left: 505px;
            top: 28px;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            animation: phf4 4.9s ease-in-out infinite;
        }

        .ph-e {
            left: 598px;
            top: 151px;
            background: linear-gradient(135deg, #f97316, #ef4444);
            animation: phf5 5.3s ease-in-out infinite;
        }

        .ph-f {
            left: 481px;
            top: 295px;
            background: linear-gradient(135deg, #8b5cf6, #6366f1);
            animation: phf6 5.1s ease-in-out infinite;
        }

        @keyframes phf0 {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-8px)
            }
        }

        @keyframes phf1 {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-10px)
            }
        }

        @keyframes phf2 {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-7px)
            }
        }

        @keyframes phf3 {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-11px)
            }
        }

        @keyframes phf4 {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-9px)
            }
        }

        @keyframes phf5 {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-8px)
            }
        }

        @keyframes phf6 {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-10px)
            }
        }

        /* Text */
        .ph-h1 {
            font-size: clamp(1.875rem, 4.5vw, 3rem);
            font-weight: 800;
            color: #0f172a;
            letter-spacing: -.03em;
            line-height: 1.1;
            margin: 0 0 .75rem;
        }

        .ph-sub {
            font-size: .9375rem;
            color: #64748b;
            max-width: 440px;
            margin: 0 auto 1.375rem;
            line-height: 1.7;
        }

        .ph-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: linear-gradient(135deg, #6366f1, #7c3aed);
            color: #fff;
            padding: 12px 28px;
            border-radius: 9999px;
            font-size: 14.5px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 4px 22px rgba(99, 102, 241, .34);
            transition: transform .18s, box-shadow .18s;
        }

        .ph-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(99, 102, 241, .44);
        }

        .ph-trust {
            margin-top: 1.125rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            font-size: 12px;
            color: #94a3b8;
            font-weight: 500;
        }

        .ph-trust span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        /* Responsive orbit scaling */
        @media (max-width:748px) {
            .ph-orbit {
                transform: scale(.6);
                transform-origin: top center;
            }

            .ph-orbit-clip {
                height: calc(400px * .6);
                margin-bottom: 20px;
            }
        }

        /* Compact mobile orbit — replaces the desktop orbit below 520px
           instead of hiding it, so mobile keeps the same lively visual */
        .ph-orbit-m {
            display: none;
        }

        @media (max-width:520px) {
            .ph-orbit-clip {
                display: none;
            }

            .ph-orbit-m {
                display: block;
                position: relative;
                width: 300px;
                height: 195px;
                margin: 0 auto 22px;
            }

            .ph-m-hub {
                position: absolute;
                left: 118px;
                top: 68px;
                width: 64px;
                height: 64px;
                background: linear-gradient(135deg, #6366f1, #7c3aed);
                border-radius: 18px;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 12px 30px rgba(99, 102, 241, .35);
                animation: phf0 5s ease-in-out infinite;
            }

            .ph-m-ic {
                position: absolute;
                width: 36px;
                height: 36px;
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 5px 14px rgba(0, 0, 0, .11);
            }

            .ph-m-a {
                left: 51px;
                top: 45px;
                background: linear-gradient(135deg, #fbbf24, #f59e0b);
                animation: phf1 5.2s ease-in-out infinite;
            }

            .ph-m-b {
                left: 13px;
                top: 94px;
                background: linear-gradient(135deg, #10b981, #059669);
                animation: phf2 4.8s ease-in-out infinite;
            }

            .ph-m-c {
                left: 55px;
                top: 149px;
                background: linear-gradient(135deg, #06b6d4, #0284c7);
                animation: phf3 5.5s ease-in-out infinite;
            }

            .ph-m-d {
                left: 205px;
                top: 42px;
                background: linear-gradient(135deg, #ef4444, #dc2626);
                animation: phf4 4.9s ease-in-out infinite;
            }

            .ph-m-e {
                left: 242px;
                top: 91px;
                background: linear-gradient(135deg, #f97316, #ef4444);
                animation: phf5 5.3s ease-in-out infinite;
            }

            .ph-m-f {
                left: 195px;
                top: 149px;
                background: linear-gradient(135deg, #8b5cf6, #6366f1);
                animation: phf6 5.1s ease-in-out infinite;
            }
        }

/* ── Landing-page component system (.lp-*) ── */
        /* ── Shared layout ── */
        .lp-section {
            padding: 72px 24px;
        }

        .lp-section-sm {
            padding: 48px 24px;
        }

        .lp-inner {
            max-width: 1080px;
            margin: 0 auto;
        }

        .lp-inner-md {
            max-width: 760px;
            margin: 0 auto;
        }

        /* ── Section headings ── */
        .lp-eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: #94a3b8;
            margin-bottom: 10px;
        }

        .lp-heading {
            font-size: clamp(1.5rem, 3vw, 2.125rem);
            font-weight: 800;
            color: #0f172a;
            letter-spacing: -.02em;
            line-height: 1.2;
            margin: 0 0 .75rem;
        }

        .lp-subhead {
            font-size: .9375rem;
            color: #64748b;
            line-height: 1.7;
            margin: 0;
        }

        /* ── Trust bar ── */
        .lp-trust {
            border-top: 1px solid #f1f5f9;
            border-bottom: 1px solid #f1f5f9;
            background: #fafafa;
        }

        .lp-trust-inner {
            max-width: 1080px;
            margin: 0 auto;
            padding: 22px 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 12px 36px;
        }

        .lp-trust-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13.5px;
            font-weight: 600;
            color: #334155;
            white-space: nowrap;
        }

        .lp-trust-item svg {
            flex-shrink: 0;
        }

        @media (max-width: 600px) {
            .lp-trust-inner {
                gap: 10px 20px;
                padding: 18px 20px;
            }

            .lp-trust-item {
                font-size: 12.5px;
            }
        }

        /* ── Search ── */
        .lp-search-wrap {
            position: relative;
            max-width: 440px;
            margin: 32px auto 0;
        }

        .lp-search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
            pointer-events: none;
            display: flex;
            align-items: center;
        }

        #lp-search-input {
            width: 100%;
            height: 44px;
            padding: 0 16px 0 44px;
            border: 1.5px solid #e2e8f0;
            border-radius: 9999px;
            font-size: 14px;
            font-family: inherit;
            color: #0f172a;
            background: #fff;
            outline: none;
            box-sizing: border-box;
            transition: border-color .15s, box-shadow .15s;
        }

        #lp-search-input::placeholder {
            color: #a3a3a3;
        }

        #lp-search-input:focus {
            border-color: #6366f1;
            box-shadow: 0 0 0 3px rgba(99, 102, 241, .1);
        }

        /* ── Category label ── */
        .lp-cat {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .07em;
            text-transform: uppercase;
            color: #94a3b8;
            padding: 40px 0 14px;
            display: block;
        }

        .lp-cat:first-child {
            padding-top: 0;
        }

        /* ── Tool grid ── */
        .lp-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }

        @media (max-width: 900px) {
            .lp-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

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

        /* ── Tool card ── */
        .lp-tool {
            display: flex;
            align-items: center;
            gap: 11px;
            padding: 13px 14px;
            background: #fff;
            border: 1px solid #e8ecf0;
            border-radius: 12px;
            text-decoration: none;
            color: inherit;
            transition: border-color .15s, box-shadow .15s, background .15s;
        }

        .lp-tool:hover {
            border-color: #c7d2fe;
            background: #fafafe;
            box-shadow: 0 4px 14px rgba(99, 102, 241, .09);
            transform: translateY(-1px);
        }

        .lp-tool-ic {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lp-tool-name {
            font-size: 13px;
            font-weight: 600;
            color: #0f172a;
            line-height: 1.3;
        }

        .lp-tool-desc {
            font-size: 11.5px;
            color: #94a3b8;
            line-height: 1.3;
            margin-top: 1px;
        }

        .lp-tool.hidden {
            display: none;
        }

        /* ── Features ── */
        .lp-feat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: #e8ecf0;
            border: 1px solid #e8ecf0;
            border-radius: 16px;
            overflow: hidden;
        }

        @media (max-width: 640px) {
            .lp-feat-grid {
                grid-template-columns: 1fr;
            }
        }

        .lp-feat {
            background: #fff;
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .lp-feat-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: #f5f3ff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .lp-feat-title {
            font-size: 15px;
            font-weight: 700;
            color: #0f172a;
        }

        .lp-feat-body {
            font-size: 13.5px;
            color: #64748b;
            line-height: 1.7;
        }

        /* ── FAQ ── */
        .lp-faq-item {
            border-bottom: 1px solid #f1f5f9;
        }

        .lp-faq-item:first-child {
            border-top: 1px solid #f1f5f9;
        }

        .lp-faq-q {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 0;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 14.5px;
            font-weight: 600;
            color: #0f172a;
            font-family: inherit;
            text-align: left;
        }

        .lp-faq-q:hover {
            color: #6366f1;
        }

        .lp-faq-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 1.5px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64748b;
            transition: transform .2s, border-color .2s;
        }

        .lp-faq-item.open .lp-faq-icon {
            transform: rotate(45deg);
            border-color: #6366f1;
            color: #6366f1;
        }

        .lp-faq-a {
            font-size: 13.5px;
            color: #64748b;
            line-height: 1.75;
            padding: 0 0 18px;
            display: none;
        }

        .lp-faq-item.open .lp-faq-a {
            display: block;
        }

        /* ── CTA banner ── */
        .lp-cta-wrap {
            background: #0f172a;
            border-radius: 20px;
            padding: 52px 40px;
            text-align: center;
        }

        .lp-cta-wrap h2 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: -.02em;
            margin: 0 0 .75rem;
        }

        .lp-cta-wrap p {
            font-size: 14.5px;
            color: #94a3b8;
            margin: 0 0 2rem;
            line-height: 1.6;
        }

        .lp-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: linear-gradient(135deg, #6366f1, #7c3aed);
            color: #fff;
            padding: 13px 28px;
            border-radius: 9999px;
            font-size: 14.5px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(99, 102, 241, .4);
            transition: transform .18s, box-shadow .18s;
        }

        .lp-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(99, 102, 241, .5);
        }

        @media (max-width: 600px) {
            .lp-cta-wrap {
                padding: 36px 24px;
            }
        }
