
        /* ═══════════════════ TOKENS ═══════════════════ */
        :root {
            --purple-900: #2d0a6e;
            --purple-800: #3d0f8f;
            --purple-700: #5014b8;
            --purple-600: #6c22d4;
            --purple-500: #8b3ef5;
            --purple-400: #a96cf7;
            --purple-300: #c49dfa;
            --purple-100: #ede8fd;
            --purple-50: #f7f4ff;
            --violet: #7c3aed;
            --indigo: #4f46e5;
            --pink: #d946ef;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-700: #374151;
            --gray-900: #111827;
            --text-body: #374151;
            --text-muted: #6b7280;

            --gradient-hero: linear-gradient(135deg, #2d0a6e 0%, #5014b8 45%, #7c3aed 100%);
            --gradient-accent: linear-gradient(135deg, #6c22d4, #a96cf7);
            --gradient-soft: linear-gradient(135deg, #f7f4ff 0%, #ede8fd 100%);
            --gradient-cta: linear-gradient(135deg, #3d0f8f 0%, #6c22d4 60%, #8b3ef5 100%);
            --shadow-sm: 0 2px 8px rgba(108, 34, 212, 0.08);
            --shadow-md: 0 8px 28px rgba(108, 34, 212, 0.14);
            --shadow-lg: 0 20px 60px rgba(108, 34, 212, 0.18);
            --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--white);
            color: var(--text-body);
            overflow-x: hidden;
            line-height: 1.65;
        }

        /* ═══════════════════ SCROLLBAR ═══════════════════ */
        ::-webkit-scrollbar {
            width: 5px;
        }

        ::-webkit-scrollbar-track {
            background: #f0ebff;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--purple-500);
            border-radius: 5px;
        }

        /* ═══════════════════ NAVBAR ═══════════════════ */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(108, 34, 212, 0.1);
            padding: 5px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow 0.3s;
        }

        .navbar.scrolled {
            box-shadow: 0 4px 24px rgba(108, 34, 212, 0.1);
        }

        .navbar-brand {
            display: flex;
            flex-direction: column;
            line-height: 1;
            text-decoration: none;
        }

        .brand-name {
            font-size: 1.55rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .brand-pre {
            color: var(--purple-700);
        }

        .brand-epe {
            color: var(--purple-400);
        }

        .brand-sub {
            font-size: 0.6rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--gray-400);
            font-weight: 500;
            margin-top: 1px;
        }

        .nav-link {
            color: var(--gray-700) !important;
            font-size: 0.88rem;
            font-weight: 500;
            padding: 7px 15px !important;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .nav-link:hover {
            color: var(--purple-700) !important;
            background: var(--purple-50);
        }

        .btn-nav {
            background: var(--gradient-accent);
            color: #fff !important;
            border-radius: 9px;
            padding: 9px 22px !important;
            font-weight: 700;
            font-size: 0.85rem;
            box-shadow: 0 4px 14px rgba(108, 34, 212, 0.3);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-nav:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(108, 34, 212, 0.4);
        }

        .navbar-toggler {
            border: 1.5px solid rgba(108, 34, 212, 0.3);
            border-radius: 8px;
            padding: 6px 10px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%236c22d4' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        }

        /* ═══════════════════ HERO ═══════════════════ */
        .hero {
            background: var(--gradient-hero);
            min-height: 92vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 90px 0 70px;
        }

        /* Decorative blobs */
        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
            top: -200px;
            right: -150px;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(139, 62, 245, 0.3) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            pointer-events: none;
        }

        .hero-dots {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
            background-size: 36px 36px;
            pointer-events: none;
        }

        .hero-ring {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.06);
            pointer-events: none;
        }

        .ring-1 {
            width: 500px;
            height: 500px;
            top: -120px;
            right: 5%;
        }

        .ring-2 {
            width: 320px;
            height: 320px;
            top: 50px;
            right: 15%;
        }

        .ring-3 {
            width: 180px;
            height: 180px;
            top: 150px;
            right: 22%;
        }

        /* Hero badge */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            border-radius: 100px;
            padding: 7px 18px;
            font-size: 0.76rem;
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 26px;
            animation: fadeUp 0.6s ease both;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: #4ade80;
            border-radius: 50%;
            animation: pulse-green 2s infinite;
        }

        @keyframes pulse-green {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
            }

            50% {
                box-shadow: 0 0 0 5px rgba(74, 222, 128, 0);
            }
        }

        .hero h1 {
            font-size: clamp(2.2rem, 4.5vw, 3.6rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.12;
            letter-spacing: -1.5px;
            animation: fadeUp 0.65s ease 0.1s both;
        }

        .hero h1 .highlight {
            background: linear-gradient(90deg, #f0abfc, #c4b5fd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.72);
            max-width: 560px;
            font-weight: 400;
            line-height: 1.75;
            margin: 22px 0 36px;
            animation: fadeUp 0.65s ease 0.2s both;
        }

        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            animation: fadeUp 0.65s ease 0.3s both;
        }

        .btn-white {
            background: #fff;
            color: var(--purple-700);
            border: none;
            border-radius: 11px;
            padding: 14px 30px;
            font-weight: 700;
            font-size: 0.95rem;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
            transition: transform 0.2s, box-shadow 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
            color: var(--purple-800);
        }

        .btn-glass {
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            border-radius: 11px;
            padding: 14px 28px;
            font-weight: 600;
            font-size: 0.95rem;
            backdrop-filter: blur(6px);
            transition: background 0.2s, border-color 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-glass:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        /* Feature chips */
        .hero-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 44px;
            animation: fadeUp 0.65s ease 0.4s both;
        }

        .chip {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 9px;
            padding: 9px 16px;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.88);
            font-weight: 500;
            backdrop-filter: blur(4px);
        }

        .chip i {
            font-size: 1rem;
            color: #c4b5fd;
        }

        /* Hero right card */
        .hero-card {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 22px;
            padding: 28px;
            backdrop-filter: blur(12px);
            animation: fadeUp 0.75s ease 0.35s both;
        }

        .hero-stat-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 18px;
        }

        .h-stat {
            background: rgba(255, 255, 255, 0.12);
            border-radius: 14px;
            padding: 18px 14px;
            text-align: center;
        }

        .h-stat-val {
            font-size: 1.7rem;
            font-weight: 800;
            color: #fff;
            display: block;
            line-height: 1;
        }

        .h-stat-lbl {
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 4px;
            display: block;
        }

        .api-status-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .api-status-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.83rem;
            color: rgba(255, 255, 255, 0.75);
        }

        .api-status-list li:last-child {
            border: none;
        }

        .api-status-list li .dot-live {
            width: 7px;
            height: 7px;
            background: #4ade80;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .api-status-list li .status-pill {
            margin-left: auto;
            font-size: 0.68rem;
            background: rgba(74, 222, 128, 0.15);
            color: #4ade80;
            padding: 2px 9px;
            border-radius: 100px;
            font-weight: 600;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(22px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ═══════════════════ WAVE DIVIDER ═══════════════════ */
        .wave-divider {
            margin-bottom: -2px;
            line-height: 0;
        }

        .wave-divider svg {
            display: block;
        }

        /* ═══════════════════ SECTION COMMONS ═══════════════════ */
        section {
            padding: 88px 0;
        }

        .sec-label {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--purple-600);
            background: var(--purple-50);
            padding: 5px 14px;
            border-radius: 100px;
            border: 1px solid var(--purple-100);
            margin-bottom: 14px;
        }

        .sec-title {
            font-size: clamp(1.85rem, 3.5vw, 2.7rem);
            font-weight: 800;
            letter-spacing: -0.8px;
            color: var(--gray-900);
            line-height: 1.15;
            margin-bottom: 14px;
        }

        .sec-title .purple {
            color: var(--purple-700);
        }

        .sec-sub {
            color: var(--text-muted);
            font-size: 1rem;
            font-weight: 400;
            max-width: 540px;
        }

        /* ═══════════════════ SERVICES ═══════════════════ */
        .services-section {
            background: var(--gray-50);
        }

        .services-section .tab-row {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .svc-tab-btn {
            font-size: 0.84rem;
            font-weight: 600;
            padding: 9px 20px;
            border-radius: 10px;
            border: 1.5px solid var(--gray-200);
            background: var(--white);
            color: var(--gray-500);
            cursor: pointer;
            transition: all 0.2s;
        }

        .svc-tab-btn.active,
        .svc-tab-btn:hover {
            background: var(--purple-50);
            border-color: var(--purple-300);
            color: var(--purple-700);
        }

        /* Service cards */
        .svc-card {
            background: var(--white);
            border: 1.5px solid var(--gray-100);
            border-radius: 18px;
            padding: 26px 22px;
            height: 100%;
            transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
            position: relative;
            overflow: hidden;
        }

        .svc-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(108, 34, 212, 0.03) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.25s;
        }

        .svc-card:hover {
            transform: translateY(-6px);
            border-color: var(--purple-300);
            box-shadow: var(--shadow-md);
        }

        .svc-card:hover::after {
            opacity: 1;
        }

        .svc-icon {
            width: 50px;
            height: 50px;
            border-radius: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            margin-bottom: 16px;
        }

        .ic-purple {
            background: #f3e8ff;
            color: #7c3aed;
        }

        .ic-violet {
            background: #ede9fe;
            color: #5b21b6;
        }

        .ic-pink {
            background: #fdf4ff;
            color: #c026d3;
        }

        .ic-indigo {
            background: #eef2ff;
            color: #4338ca;
        }

        .ic-blue {
            background: #eff6ff;
            color: #2563eb;
        }

        .ic-cyan {
            background: #ecfeff;
            color: #0891b2;
        }

        .ic-teal {
            background: #f0fdfa;
            color: #0d9488;
        }

        .ic-green {
            background: #f0fdf4;
            color: #16a34a;
        }

        .ic-amber {
            background: #fffbeb;
            color: #d97706;
        }

        .svc-card h5 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 9px;
            color: var(--gray-900);
        }

        .svc-card p {
            font-size: 0.84rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin: 0;
        }

        .svc-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.8rem;
            color: var(--purple-600);
            font-weight: 600;
            margin-top: 14px;
            text-decoration: none;
            transition: gap 0.2s;
        }

        .svc-link:hover {
            gap: 9px;
        }

        /* Loan card accent */
        .loan-card {
            border-color: var(--purple-100);
        }

        .loan-card:hover {
            border-color: var(--purple-400);
        }

        /* Category heading */
        .cat-heading {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 8px;
            margin-bottom: 28px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .cat-api {
            background: #f3e8ff;
            color: var(--purple-700);
        }

        .cat-loan {
            background: #fffbeb;
            color: #b45309;
        }

        /* ═══════════════════ WHY CHOOSE US ═══════════════════ */
        .why-section {
            background: var(--white);
        }

        .why-feature {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 20px;
            border-radius: 16px;
            border: 1.5px solid transparent;
            transition: all 0.25s;
            margin-bottom: 8px;
        }

        .why-feature:hover {
            background: var(--purple-50);
            border-color: var(--purple-100);
        }

        .why-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 12px;
            background: var(--purple-50);
            color: var(--purple-700);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            transition: background 0.2s;
        }

        .why-feature:hover .why-icon {
            background: var(--purple-700);
            color: #fff;
        }

        .why-feature h6 {
            font-size: 0.97rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 5px;
        }

        .why-feature p {
            font-size: 0.83rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
        }

        /* Metrics panel */
        .metrics-panel {
            background: var(--gradient-cta);
            border-radius: 24px;
            padding: 36px 30px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .metrics-panel::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            top: -80px;
            right: -80px;
        }

        .metric-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .metric-item:last-child {
            border: none;
        }

        .m-label {
            font-size: 0.84rem;
            color: rgba(255, 255, 255, 0.65);
        }

        .m-val {
            font-size: 1.1rem;
            font-weight: 800;
            color: #fff;
        }

        .m-badge {
            font-size: 0.68rem;
            padding: 3px 9px;
            border-radius: 100px;
            font-weight: 700;
        }

        .mb-green {
            background: rgba(74, 222, 128, 0.18);
            color: #4ade80;
        }

        .mb-white {
            background: rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.9);
        }

        .mb-amber {
            background: rgba(251, 191, 36, 0.18);
            color: #fbbf24;
        }

        /* ═══════════════════ PARTNER SECTION ═══════════════════ */
        .partner-section {
            background: var(--gray-50);
        }

        .role-card {
            background: var(--white);
            border: 1.5px solid var(--gray-100);
            border-radius: 22px;
            padding: 34px 28px;
            height: 100%;
            transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
            position: relative;
            overflow: hidden;
        }

        .role-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--purple-300);
        }

        .role-num {
            position: absolute;
            top: 20px;
            right: 24px;
            font-size: 4rem;
            font-weight: 800;
            color: var(--purple-100);
            line-height: 1;
        }

        .role-chip {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 100px;
            margin-bottom: 14px;
        }

        .rchip-1 {
            background: #f3e8ff;
            color: var(--purple-700);
        }

        .rchip-2 {
            background: #fef3c7;
            color: #92400e;
        }

        .rchip-3 {
            background: #dcfce7;
            color: #15803d;
        }

        .role-card h4 {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 6px;
        }

        .role-card .role-tagline {
            font-size: 0.83rem;
            color: var(--text-muted);
            font-style: italic;
            margin-bottom: 22px;
        }

        .role-features {
            list-style: none;
            padding: 0;
            margin: 0 0 24px;
        }

        .role-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 9px 0;
            border-bottom: 1px solid var(--gray-100);
            font-size: 0.85rem;
            color: var(--text-body);
        }

        .role-features li:last-child {
            border: none;
        }

        .role-features li i {
            color: var(--purple-600);
            font-size: 0.95rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .btn-role-1 {
            background: var(--gradient-accent);
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 12px 24px;
            font-size: 0.87rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 14px rgba(108, 34, 212, 0.25);
        }

        .btn-role-1:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(108, 34, 212, 0.35);
            color: #fff;
        }

        .btn-role-2 {
            background: linear-gradient(135deg, #f59e0b, #fbbf24);
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 12px 24px;
            font-size: 0.87rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: transform 0.2s;
        }

        .btn-role-2:hover {
            transform: translateY(-2px);
            color: #fff;
        }

        .btn-role-3 {
            background: linear-gradient(135deg, #16a34a, #4ade80);
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 12px 24px;
            font-size: 0.87rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: transform 0.2s;
        }

        .btn-role-3:hover {
            transform: translateY(-2px);
            color: #fff;
        }

        /* B2B / B2C Cards */
        .biz-card {
            background: var(--white);
            border: 1.5px solid var(--gray-100);
            border-radius: 18px;
            padding: 28px 24px;
            height: 100%;
            transition: box-shadow 0.25s, border-color 0.25s;
        }

        .biz-card:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--purple-200);
        }

        .biz-tag {
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 100px;
            display: inline-block;
            margin-bottom: 10px;
        }

        .tag-b2b {
            background: #ede9fe;
            color: #4338ca;
        }

        .tag-b2c {
            background: #fef3c7;
            color: #b45309;
        }

        .biz-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--purple-50);
            border: 1px solid var(--purple-100);
            border-radius: 8px;
            padding: 7px 13px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--purple-700);
            margin: 4px;
        }

        .biz-pill i {
            font-size: 0.9rem;
        }

        /* ═══════════════════ STATS STRIP ═══════════════════ */
        .stats-strip {
            background: var(--gradient-accent);
            padding: 52px 0;
        }

        .stat-item {
            text-align: center;
            padding: 8px;
        }

        .stat-num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #fff;
            display: block;
            line-height: 1;
        }

        .stat-lbl {
            font-size: 0.84rem;
            color: rgba(255, 255, 255, 0.72);
            margin-top: 6px;
            display: block;
        }

        .stat-divider {
            border-left: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* ═══════════════════ CTA / REGISTER ═══════════════════ */
        .cta-section {
            background: var(--white);
            padding: 88px 0;
        }

        .cta-wrap {
            background: var(--gradient-cta);
            border-radius: 28px;
            overflow: hidden;
            position: relative;
        }

        .cta-wrap::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
            top: -200px;
            right: -100px;
        }

        .cta-wrap::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(139, 62, 245, 0.4) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
        }

        .cta-left {
            padding: 64px 48px 64px 56px;
            position: relative;
            z-index: 1;
        }

        .cta-left h2 {
            font-size: clamp(1.9rem, 3.5vw, 2.8rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.8px;
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .cta-left p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .cta-features-list {
            list-style: none;
            padding: 0;
            margin: 0 0 36px;
        }

        .cta-features-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 0.87rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .cta-features-list li i {
            color: #c4b5fd;
            font-size: 1rem;
        }

        /* Form */
        .reg-form-wrap {
            background: var(--white);
            padding: 44px 40px;
            position: relative;
            z-index: 1;
        }

        .reg-form-wrap h4 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 6px;
        }

        .reg-form-wrap .form-sub {
            font-size: 0.84rem;
            color: var(--text-muted);
            margin-bottom: 26px;
        }

        .form-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray-700);
            margin-bottom: 5px;
        }

        .form-control,
        .form-select {
            border: 1.5px solid var(--gray-200);
            border-radius: 10px;
            padding: 11px 14px;
            font-size: 0.88rem;
            color: var(--gray-700);
            transition: border-color 0.2s, box-shadow 0.2s;
            background: var(--white);
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--purple-400);
            box-shadow: 0 0 0 3px rgba(108, 34, 212, 0.1);
            outline: none;
        }

        .form-control::placeholder {
            color: var(--gray-300);
        }

        .btn-submit {
            background: var(--gradient-accent);
            color: #fff;
            border: none;
            border-radius: 11px;
            padding: 14px;
            font-size: 0.95rem;
            font-weight: 700;
            width: 100%;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 6px 20px rgba(108, 34, 212, 0.25);
            cursor: pointer;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(108, 34, 212, 0.35);
        }

        .form-note {
            font-size: 0.75rem;
            color: var(--gray-400);
            text-align: center;
            margin-top: 12px;
        }

        .form-note i {
            color: #16a34a;
        }

        /* ═══════════════════ FOOTER ═══════════════════ */
        footer {
            background: var(--purple-900);
            padding: 60px 0 28px;
        }

        .footer-brand-text {
            font-size: 1.55rem;
            font-weight: 800;
        }

        .footer-brand-text .pre {
            color: #c4b5fd;
        }

        .footer-brand-text .epe {
            color: #a78bfa;
        }

        .footer-desc {
            font-size: 0.83rem;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.65;
            margin-top: 10px;
            max-width: 240px;
        }

        .f-title {
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 18px;
        }

        .f-links {
            list-style: none;
            padding: 0;
        }

        .f-links li {
            margin-bottom: 9px;
        }

        .f-links a {
            font-size: 0.83rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.2s;
        }

        .f-links a:hover {
            color: #c4b5fd;
        }

        .footer-divider {
            border-color: rgba(255, 255, 255, 0.08);
            margin: 40px 0 20px;
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copy {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.35);
        }

        .compliance-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .c-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.71rem;
            color: rgba(255, 255, 255, 0.45);
            background: rgba(255, 255, 255, 0.05);
            padding: 4px 11px;
            border-radius: 100px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .c-badge i {
            color: #4ade80;
            font-size: 0.85rem;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 9px;
            background: rgba(255, 255, 255, 0.07);
            color: rgba(255, 255, 255, 0.6);
            font-size: 1rem;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
            margin-right: 8px;
        }

        .social-icons a:hover {
            background: var(--purple-600);
            color: #fff;
        }

        /* ═══════════════════ UTILITY ═══════════════════ */
        .divider-purple {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--purple-200), transparent);
            border: none;
            margin: 0;
        }

        /* ═══════════════════ RESPONSIVE ═══════════════════ */
        @media (max-width: 991px) {
            .cta-left {
                padding: 44px 32px;
            }

            .reg-form-wrap {
                padding: 36px 28px;
            }
        }

        @media (max-width: 767px) {
            .hero {
                min-height: auto;
                padding: 64px 0 52px;
            }

            .hero h1 {
                font-size: 2rem;
                letter-spacing: -0.8px;
            }

            .hero-sub {
                font-size: 0.93rem;
            }

            section {
                padding: 60px 0;
            }

            .sec-title {
                font-size: 1.75rem;
            }

            .cta-left {
                padding: 36px 24px 0;
            }

            .reg-form-wrap {
                padding: 32px 22px;
            }

            .stat-divider {
                border-left: none;
                border-top: 1px solid rgba(255, 255, 255, 0.15);
                padding-top: 20px;
            }
        }