        :root {
            --brand: #5e17eb;
            --brand-dark: #4a0fbf;
            --brand-light: #7c3aff;
            --brand-pale: #f0eaff;
            --ink: #0a0a14;
            --muted: #64718a;
            --surface: #ffffff;
            --bg: #faf9ff;
            --border: rgba(94, 23, 235, 0.12);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg);
            color: var(--ink);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Sora', sans-serif;
        }

        /* ===== PRELOADER ===== */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: #fff;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            animation: slideOut 1s ease forwards;
            animation-delay: 2s;
            /* Time before sliding out */
        }

        /* Logo */
        #preloader img {
            width: 120px;
            margin-bottom: 20px;
            animation: dropIn 1s ease forwards;
        }

        /* Spinner */
        .spinner-border {
            width: 3rem;
            height: 3rem;
        }

        /* Logo dropping from top */
        @keyframes dropIn {
            from {
                transform: translateY(-150px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Preloader sliding out down */
        @keyframes slideOut {
            to {
                transform: translateY(100%);
                opacity: 0;
                visibility: hidden;
            }
        }

        /* ===== NAVBAR ===== */
        .axx-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s;
        }

        .axx-nav.scrolled {
            box-shadow: 0 4px 24px rgba(94, 23, 235, 0.08);
        }

        .navbar-brand img {
            height: 48px;
        }

        .nav-link {
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 0.88rem;
            color: var(--ink) !important;
            padding: 8px 14px !important;
        }

        .nav-link:hover {
            color: var(--brand) !important;
        }

        .mega-parent {
            position: relative;
        }

        .mega-menu {
            display: none;
            position: absolute;
            top: calc(100% + 0px);
            left: 0;
            background: #fff;
            border-radius: 16px;
            padding: 16px;
            box-shadow: 0 20px 60px rgba(94, 23, 235, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border);
            min-width: 580px;
        }

        .mega-parent:hover .mega-menu {
            display: block;
        }

        .small-menu {
            min-width: 360px;
        }

        .mega-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        .mega-item {
            display: flex;
            gap: 12px;
            align-items: center;
            padding: 12px;
            border-radius: 12px;
            text-decoration: none;
            color: var(--ink);
            transition: all 0.2s;
        }

        .mega-item:hover {
            background: var(--brand-pale);
            transform: translateY(-2px);
        }

        .mega-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: grid;
            place-items: center;
            font-size: 15px;
            background: var(--brand-pale);
            color: var(--brand);
            flex-shrink: 0;
        }

        .mega-item strong {
            font-size: 0.88rem;
        }

        .mega-item small {
            color: var(--muted);
            font-size: 0.77rem;
        }

        .axx-cta {
            padding: 10px 22px;
            background: var(--brand);
            color: #fff !important;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.88rem;
            text-decoration: none;
            transition: all 0.2s;
            box-shadow: 0 6px 20px rgba(94, 23, 235, 0.28);
        }

        .axx-cta:hover {
            background: var(--brand-dark);
            transform: translateY(-1px);
            box-shadow: 0 10px 28px rgba(94, 23, 235, 0.36);
        }

        /* Mobile nav */
        .mobile-item {
            border-bottom: 1px solid #f0eaff;
            padding: 6px 0;
        }

        .mobile-toggle {
            width: 100%;
            border: 0;
            background: none;
            font-weight: 600;
            padding: 10px 0;
            font-family: 'Sora', sans-serif;
            color: var(--ink);
        }

        .mobile-submenu {
            padding-left: 16px;
            padding-top: 4px;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .mobile-submenu a {
            color: var(--brand);
            padding: 6px 0;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .mobile-link {
            display: block;
            padding: 12px 0;
            font-weight: 600;
            color: var(--ink);
            font-family: 'Sora', sans-serif;
        }

        /* ===== HERO ===== */
        .hero-wrap {
            /* padding-top: 78px; */
            padding-top: 0px;
        }

        /* Swiper hero slides */
        .hero-swiper {
            overflow: hidden;
        }

        .hero-swiper .swiper-button-next,
        .hero-swiper .swiper-button-prev {
            color: var(--brand);
        }

        .hero-swiper .swiper-pagination-bullet-active {
            background: var(--brand);
        }

        .hero-slide-outer {
            min-height: 70vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 48px 0;
        }

        .slide-1-bg {
            background: linear-gradient(135deg, #f0eaff 0%, #e8f4ff 60%, #f5ffee 100%);
        }

        .slide-2-bg {
            background: linear-gradient(135deg, #fff0ea 0%, #ffeeff 60%, #eafff4 100%);
        }

        .slide-3-bg {
            background: linear-gradient(135deg, #eafffa 0%, #eaf0ff 60%, #fff8ea 100%);
        }

        .hero-text-col h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--ink);
            line-height: 1.1;
        }

        .hero-text-col h1 span {
            color: var(--brand);
        }

        .hero-text-col p {
            font-size: 1.05rem;
            color: var(--muted);
            margin-top: 14px;
            max-width: 480px;
        }

        .hero-ctas {
            margin-top: 24px;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }

        .btn-brand {
            background: var(--brand);
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 12px 28px;
            font-weight: 700;
            font-family: 'Sora', sans-serif;
            font-size: 0.9rem;
            transition: all 0.2s;
            box-shadow: 0 8px 24px rgba(94, 23, 235, 0.28);
        }

        .btn-brand:hover {
            background: var(--brand-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(94, 23, 235, 0.38);
        }

        .btn-outline-brand {
            background: transparent;
            border: 2px solid var(--brand);
            color: var(--brand);
            border-radius: 30px;
            padding: 10px 24px;
            font-weight: 700;
            font-family: 'Sora', sans-serif;
            font-size: 0.9rem;
            transition: all 0.2s;
            text-decoration: none;
        }

        .btn-outline-brand:hover {
            background: var(--brand-pale);
        }

        /* ===== FLOW ANIMATION (hero right side) ===== */
        .flow-canvas {
            width: 100%;
            max-width: 560px;
            min-height: 380px;
            position: relative;
        }

        /* Flow nodes */
        .flow-nodes {
            position: relative;
            width: 100%;
            height: 380px;
        }

        .flow-node {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            animation: nodeIn 0.6s cubic-bezier(.22, 1, .36, 1) both;
        }

        .node-icon {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            display: grid;
            place-items: center;
            font-size: 26px;
            background: #fff;
            box-shadow: 0 8px 30px rgba(94, 23, 235, 0.15);
            border: 2px solid rgba(94, 23, 235, 0.15);
            color: var(--brand);
            position: relative;
            transition: transform 0.3s;
        }

        .node-icon:hover {
            transform: scale(1.08);
        }

        .node-label {
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--ink);
            text-align: center;
            max-width: 80px;
        }

        /* Pulse ring on active node */
        .node-icon.active::after {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 24px;
            border: 2px solid var(--brand);
            opacity: 0;
            animation: pulseRing 1.5s ease-out infinite;
        }

        @keyframes pulseRing {
            0% {
                opacity: 0.6;
                transform: scale(1);
            }

            100% {
                opacity: 0;
                transform: scale(1.35);
            }
        }

        @keyframes nodeIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.85);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* SVG thread */
        .flow-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        /* Moving dot on path */
        .travel-dot {
            width: 10px;
            height: 10px;
            background: var(--brand);
            border-radius: 50%;
            position: absolute;
            box-shadow: 0 0 0 4px rgba(94, 23, 235, 0.2);
            pointer-events: none;
            transition: none;
        }

        /* profit badge */
        .profit-badge {
            position: absolute;
            bottom: 20px;
            right: 10px;
            background: #fff;
            border-radius: 14px;
            padding: 10px 16px;
            box-shadow: 0 8px 30px rgba(94, 23, 235, 0.15);
            border: 1px solid var(--border);
            font-family: 'Sora', sans-serif;
            animation: badgeFloat 3s ease-in-out infinite alternate;
        }

        .profit-badge .amount {
            font-size: 1.4rem;
            font-weight: 800;
            color: #16a34a;
        }

        .profit-badge .label {
            font-size: 0.7rem;
            color: var(--muted);
        }

        @keyframes badgeFloat {
            from {
                transform: translateY(0);
            }

            to {
                transform: translateY(-8px);
            }
        }

        .warehouse-anim {
            position: relative;
            width: 300px;
            height: 320px;
        }

        .wh-card {
            position: absolute;
            background: #fff;
            border-radius: 14px;
            padding: 12px 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            font-size: 0.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: wh-float 4s ease-in-out infinite alternate;
        }

        .wh-card:nth-child(2) {
            animation-delay: 0.5s;
        }

        .wh-card:nth-child(3) {
            animation-delay: 1s;
        }

        .wh-card:nth-child(4) {
            animation-delay: 1.5s;
        }

        .wh-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: grid;
            place-items: center;
            font-size: 14px;
        }

        .wh-center {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: var(--brand);
            border-radius: 20px;
            display: grid;
            place-items: center;
            box-shadow: 0 12px 32px rgba(94, 23, 235, 0.35);
        }

        .wh-center i {
            font-size: 36px;
            color: #fff;
        }

        .orbit-ring {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 1.5px dashed rgba(94, 23, 235, 0.2);
        }

        .ring-1 {
            width: 170px;
            height: 170px;
            animation: spin 12s linear infinite;
        }

        .ring-2 {
            width: 240px;
            height: 240px;
            animation: spin 18s linear infinite reverse;
        }

        @keyframes wh-float {
            from {
                transform: translateY(0);
            }

            to {
                transform: translateY(-6px);
            }
        }

        @keyframes spin {
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        /* ===== ABOUT ===== */
        #about {
            padding: 80px 0;
            background: #fff;
        }

        #about .badge-pill {
            background: var(--brand-pale);
            color: var(--brand);
            border: 1px solid var(--border);
            border-radius: 99px;
            padding: 6px 16px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        #about h2 {
            font-size: 2.2rem;
            font-weight: 800;
            margin: 12px 0 16px;
        }

        #about h2 span {
            color: var(--brand);
        }

        .soft-card {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 20px;
            backdrop-filter: blur(8px);
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
        }

        .soft-card:hover {
            box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
            transform: translateY(-2px);
            transition: all .25s;
        }

        .service-img {
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
        }

        /* ===== ANIMATED SERVICES ===== */
        #services {
            padding: 80px 0;
            background: var(--bg);
        }

        #services .section-title h2 {
            font-size: 2rem;
            font-weight: 800;
        }

        .section-title {
            margin-bottom: 48px;
        }

        .service-card-wrap {
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            min-height: 420px;
            display: flex;
            align-items: center;
        }

        .svc-1 {
            background: linear-gradient(135deg, #f0eaff, #e5d5ff);
        }

        .svc-2 {
            background: linear-gradient(135deg, #eaffe8, #d0f5d0);
        }

        .svc-3 {
            background: linear-gradient(135deg, #eafbff, #cdeeff);
        }

        .svc-content {
            position: relative;
            z-index: 2;
            padding: 40px;
        }

        .svc-content h3 {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--ink);
        }

        .svc-content p {
            color: var(--muted);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .svc-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0, 0, 0, 0.07);
            border-radius: 99px;
            padding: 5px 14px;
            font-size: 0.78rem;
            font-weight: 600;
            margin: 3px;
        }

        .svc-icon-big {
            font-size: 2.2rem;
            color: var(--brand);
            margin-bottom: 16px;
        }

        /* ===== CTA BANNER ===== */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f0eaff 0%, #e8f4ff 100%);
        }

        .cta-inner {
            background: var(--brand);
            border-radius: 28px;
            padding: 60px 48px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-inner::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 280px;
            height: 280px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }

        .cta-inner::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -60px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .cta-inner h2 {
            font-size: 2rem;
            font-weight: 800;
        }

        .btn-white {
            background: #fff;
            color: var(--brand);
            border-radius: 30px;
            padding: 14px 32px;
            font-weight: 700;
            font-family: 'Sora', sans-serif;
            border: none;
            transition: all 0.2s;
        }

        .btn-white:hover {
            background: #f0eaff;
            transform: translateY(-2px);
        }

        /* ===== CONTACT ===== */
        #contact {
            padding: 80px 0;
            background: var(--bg);
        }

        #contact h2 {
            font-size: 2rem;
            font-weight: 800;
        }

        .contact-card {
            background: #fff;
            border-radius: 24px;
            padding: 48px;
            box-shadow: 0 20px 60px rgba(94, 23, 235, 0.08);
            border: 1px solid var(--border);
        }

        .form-control {
            border-radius: 12px;
            border: 1.5px solid #e2e8f0;
            padding: 12px 16px;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.2s;
        }

        .form-control:focus {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px rgba(94, 23, 235, 0.1);
            outline: none;
        }

        .form-label {
            font-weight: 600;
            font-size: 0.88rem;
            margin-bottom: 6px;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #0a0a14;
            color: #94a3b8;
            padding: 60px 0 24px;
        }

        footer .logo-text {
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            color: #fff;
        }

        footer .logo-text span {
            color: var(--brand-light);
        }

        footer h6 {
            color: #fff;
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            margin-bottom: 14px;
        }

        footer a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.88rem;
            display: block;
            margin-bottom: 8px;
        }

        footer a:hover {
            color: var(--brand-light);
        }

        .footer-divider {
            border-color: rgba(255, 255, 255, 0.06);
            margin: 32px 0 20px;
        }

        .social-btn {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.06);
            display: inline-grid;
            place-items: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.2s;
        }

        .social-btn:hover {
            background: var(--brand);
            color: #fff;
            transform: translateY(-2px);
        }

        /* ===== BG BANNER ===== */
        .bg-banner-2 {
            padding: 50px 0;
            background: linear-gradient(135deg, #fff0f0, #ffe4ff, #eef0ff);
        }

        .banner-form input {
            border-radius: 10px;
            border: 1.5px solid #e2e8f0;
            padding: 12px 16px;
            width: 100%;
            font-family: 'DM Sans', sans-serif;
        }

        .banner-form input:focus {
            border-color: var(--brand);
            outline: none;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .mega-menu {
                display: none !important;
            }

            .hero-slide-outer {
                padding: 40px 0;
                min-height: auto;
            }

            .flow-canvas {
                margin: 0 auto;
            }

            .svc-anim-panel {
                min-height: 280px;
            }

            .ds-flow,
            .warehouse-anim,
            .aff-anim {
                transform: scale(0.85);
                transform-origin: center;
            }
        }

        @media (max-width: 576px) {
            .hero-text-col h1 {
                font-size: 1.8rem;
            }

            .cta-inner {
                padding: 32px 24px;
            }

            .contact-card {
                padding: 28px 20px;
            }
        }

        /* Scroll reveal for service cards */
        .svc-reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.7s cubic-bezier(.22, 1, .36, 1);
        }

        .svc-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== STATS ===== */
        .stat-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .stat-num {
            font-family: 'Sora', sans-serif;
            font-weight: 900;
            font-size: 3rem;
            line-height: 1;
            color: #fff;
            display: inline-block;
        }

        .stat-suffix {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 1.6rem;
            color: rgba(255, 255, 255, 0.7);
            margin-left: 2px;
        }

        .stat-label {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 6px;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .stat-block {
            position: relative;
        }

        .stat-block::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -20px;
            transform: translateY(-50%);
            width: 1px;
            height: 40px;
            background: rgba(255, 255, 255, 0.15);
        }

        .col-lg-3:last-child .stat-block::after {
            display: none;
        }

        @media (max-width: 767px) {
            .stat-block::after {
                display: none;
            }

            .stat-num {
                font-size: 2.2rem;
            }
        }

        /* ===== INTEGRATIONS ===== */
        .integ-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
            margin-bottom: 48px;
        }

        @media (max-width: 767px) {
            .integ-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {
            .integ-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .integ-card {
            background: var(--bg);
            border: 1.5px solid var(--border);
            border-radius: 18px;
            padding: 22px 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            text-align: center;
            transition: all 0.25s;
            cursor: default;
            position: relative;
        }

        .integ-card:hover {
            border-color: var(--brand);
            box-shadow: 0 10px 32px rgba(94, 23, 235, 0.1);
            transform: translateY(-4px);
        }

        .integ-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: grid;
            place-items: center;
        }

        .integ-card strong {
            font-size: 0.83rem;
        }

        .integ-badge {
            font-size: 0.67rem;
            font-weight: 700;
            padding: 2px 9px;
            border-radius: 99px;
            letter-spacing: 0.4px;
        }

        .integ-badge.live {
            background: #dcfce7;
            color: #16a34a;
        }

        .integ-badge.soon {
            background: #fff3e0;
            color: #d97706;
        }

        .integ-strip {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            background: var(--bg);
            border: 1.5px solid var(--border);
            border-radius: 20px;
            padding: 20px 32px;
            overflow: hidden;
        }

        .integ-strip-label {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 0.88rem;
            white-space: nowrap;
            padding: 0 16px;
        }

        .integ-strip-line {
            flex: 1;
            height: 2px;
            background: linear-gradient(to right, rgba(94, 23, 235, 0.15), rgba(94, 23, 235, 0.4));
            position: relative;
            overflow: visible;
        }

        .integ-strip-dot {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--brand);
            border-radius: 50%;
            animation: dotSlide 1.8s linear infinite;
        }

        .integ-hub {
            width: 56px;
            height: 56px;
            background: var(--brand);
            border-radius: 16px;
            display: grid;
            place-items: center;
            flex-shrink: 0;
            box-shadow: 0 8px 24px rgba(94, 23, 235, 0.3);
        }

        @keyframes dotSlide {
            0% {
                left: 0;
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                left: 100%;
                opacity: 0;
            }
        }

        @media (max-width: 576px) {
            .integ-strip {
                padding: 14px 16px;
            }

            .integ-strip-label {
                font-size: 0.75rem;
                padding: 0 8px;
            }
        }

        /* ===== FAQ ===== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            background: #fff;
            border: 1.5px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .faq-item.active {
            border-color: var(--brand);
            box-shadow: 0 6px 24px rgba(94, 23, 235, 0.08);
        }

        .faq-q {
            width: 100%;
            background: none;
            border: none;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--ink);
            cursor: pointer;
            text-align: left;
        }

        .faq-icon {
            flex-shrink: 0;
            color: var(--brand);
            font-size: 0.85rem;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s;
        }

        .faq-item.active .faq-a {
            max-height: 200px;
        }

        .faq-a p {
            padding: 0 20px 18px;
            font-size: 0.87rem;
            color: var(--muted);
            line-height: 1.75;
            margin: 0;
        }

        /* ===== BLOG PREVIEW ===== */
        .blog-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            border: 1.5px solid var(--border);
            transition: all 0.25s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .blog-card:hover {
            border-color: var(--brand);
            box-shadow: 0 14px 40px rgba(94, 23, 235, 0.1);
            transform: translateY(-4px);
        }

        .blog-thumb {
            height: 160px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .blog-cat-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(94, 23, 235, 0.12);
            color: var(--brand);
            border-radius: 99px;
            padding: 4px 12px;
            font-size: 0.72rem;
            font-weight: 700;
        }

        .blog-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
        }

        .blog-meta {
            font-size: 0.75rem;
            color: var(--muted);
            margin: 0;
        }

        .blog-title {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            line-height: 1.4;
            margin: 0;
            color: var(--ink);
        }

        .blog-excerpt {
            font-size: 0.83rem;
            color: var(--muted);
            line-height: 1.65;
            margin: 0;
            flex: 1;
        }

        .blog-link {
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--brand);
            text-decoration: none;
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .blog-link:hover {
            color: var(--brand-dark);
        }

        /* Video section */
        #promo {
            padding: 80px 0;
            background: linear-gradient(135deg, #f9f5ff, #f5fff9);
        }

        .video-wrapper {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(94, 23, 235, 0.12);
        }

        /* ===== FLOAT KEYFRAMES for hub nodes ===== */
        @keyframes floatA {
            from {
                transform: translateY(0px);
            }

            to {
                transform: translateY(-7px);
            }
        }

        @keyframes floatB {
            from {
                transform: translateY(-4px);
            }

            to {
                transform: translateY(6px);
            }
        }

        @keyframes badgeFloat {
            from {
                transform: translateY(0);
            }

            to {
                transform: translateY(-8px);
            }
        }

        @keyframes pulseRing {
            0% {
                opacity: 0.6;
                transform: scale(1);
            }

            100% {
                opacity: 0;
                transform: scale(1.35);
            }
        }

        @keyframes nodeIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.85);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* ===== MARQUEE TESTIMONIALS ===== */
        #testimonials {
            padding: 80px 0 60px;
            background: #fff;
            overflow: hidden;
        }

        #testimonials h2 {
            font-size: 2rem;
            font-weight: 800;
        }

        @keyframes marqueeLeft {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        @keyframes marqueeRight {
            from {
                transform: translateX(-50%);
            }

            to {
                transform: translateX(0);
            }
        }

        .marquee-left {
            animation: marqueeLeft 38s linear infinite;
        }

        .marquee-right {
            animation: marqueeRight 42s linear infinite;
        }

        .marquee-outer:hover .marquee-track {
            animation-play-state: paused;
        }

        .t-card-pill {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 22px 24px;
            width: 320px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .t-card-alt {
            background: linear-gradient(135deg, #f5f0ff, #eef8ff);
            border-color: rgba(94, 23, 235, 0.1);
        }

        .t-card-pill p {
            font-style: italic;
            color: var(--muted);
            font-size: 0.87rem;
            line-height: 1.65;
            flex: 1;
        }

        .t-pill-author {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: auto;
        }

        .t-pill-author strong {
            display: block;
            font-size: 0.85rem;
        }

        .t-pill-author small {
            color: var(--muted);
            font-size: 0.75rem;
        }

        .t-avatar {
            width: 38px;
            height: 38px;
            background: var(--brand-pale);
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: var(--brand);
            font-size: 15px;
            flex-shrink: 0;
        }

        .t-avatar-alt {
            background: linear-gradient(135deg, #f0eaff, #e0f0ff);
        }

        .stars {
            color: #f59e0b;
            font-size: 0.82rem;
        }