    :root {
        --emerald: #8BC342;
        --cyan: #2BA8E0;
        --violet: #7c5cfc;
        --gold: #f5a623;
        --bg: #01091d;
        --bg2: #041322;
        --bg3: #06192e;
        --card: rgba(5, 18, 36, 0.9);
        --border: rgba(139, 195, 66, 0.1);
        --border2: rgba(43, 168, 224, 0.1);
        --text: #dff0ff;
        --text2: #a6c4da;
        --text3: #3a6880;
        --glow-e: 0 0 30px rgba(139, 195, 66, 0.35);
        --glow-c: 0 0 30px rgba(43, 168, 224, 0.35);
        --border-w-5: rgba(255, 255, 255, 0.05);
        --border-w-10: rgba(255, 255, 255, 0.1);
        --bg-w-2: rgba(255, 255, 255, 0.02);
        --bg-w-5: rgba(255, 255, 255, 0.05);
        --heading: #ffffff;
        --heading-90: rgba(255, 255, 255, 0.9);
        --heading-80: rgba(255, 255, 255, 0.8);
        --grad: linear-gradient(147deg, var(--emerald) 0%, var(--cyan) 77%, var(--cyan) 81%);
        --grid-line: rgba(139, 195, 66, 0.04);
        --sec-bg: rgba(255, 255, 255, 0.03);
    }

    [data-theme="light"] {
        --emerald: #76A534;
        --cyan: #1E88E5;
        --violet: #6200EA;
        --bg: #F5F9FC;
        --bg2: #FFFFFF;
        --bg3: #EBF2F7;
        --card: rgba(255, 255, 255, 0.85);
        --card-bg: #FFFFFF;
        --border: rgba(118, 165, 52, 0.12);
        --border2: rgba(30, 136, 229, 0.1);
        --text: #1A2B3D;
        --text2: #2C3E50;
        --text3: #50667F;
        --glow-e: 0 10px 30px rgba(118, 165, 52, 0.2);
        --glow-c: 0 10px 30px rgba(30, 136, 229, 0.2);
        --border-w-5: rgba(0, 0, 0, 0.05);
        --border-w-10: rgba(0, 0, 0, 0.1);
        --bg-w-2: rgba(0, 0, 0, 0.02);
        --bg-w-5: rgba(0, 0, 0, 0.05);
        --heading: #1A2B3D;
        --heading-90: rgba(26, 43, 61, 0.9);
        --heading-80: rgba(26, 43, 61, 0.8);
        --grid-line: rgba(0, 0, 0, 0.03);
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    html,
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    body {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.95rem;
        background: var(--bg);
        color: var(--text);
        min-height: 100vh;
        transition: background 0.4s, color 0.4s;
    }

    /* â”€â”€â”€ NOISE TEXTURE â”€â”€â”€ */
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background: url('https://grainy-gradients.vercel.app/noise.svg');
        opacity: 0.12;
        pointer-events: none;
        z-index: 50;
        filter: contrast(120%) brightness(100%);
    }

    /* â”€â”€â”€ CYBER GRID â”€â”€â”€ */
    .cyber-grid {
        position: fixed;
        inset: 0;
        background-image:
            linear-gradient(var(--grid-line) 1px, transparent 1px),
            linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
        background-size: 100px 100px;
        pointer-events: none;
        z-index: -1;
        mask-image: radial-gradient(circle at 50% 50%, black 10%, transparent 80%);
    }




    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       PREMIUM GLOSSY SYSTEM
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .glossy-card {
        position: relative;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 32px;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        overflow: visible;
        z-index: 1;
    }

    /* Gradient Corner Glows - Animated on Hover */
    .glossy-card::before,
    .glossy-card::after {
        content: '';
        position: absolute;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        filter: blur(60px);
        opacity: 0;
        transition: opacity 0.8s ease, transform 0.8s ease;
        z-index: -1;
        pointer-events: none;
    }

    /* Top Left Emerald Glow */
    .glossy-card::before {
        top: -10px;
        left: -10px;
        background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
    }

    /* Bottom Right Cyan/Emerald Glow */
    .glossy-card::after {
        bottom: -10px;
        right: -10px;
        background: radial-gradient(circle, var(--cyan) 0%, var(--emerald) 70%);
    }

    /* Hover State */
    .glossy-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-8px);
        box-shadow:
            0 20px 40px -10px rgba(0, 0, 0, 0.2),
            0 8px 15px -8px rgba(0, 0, 0, 0.1),
            inset 0 1px 1px rgba(255, 255, 255, 0.05);
    }

    .glossy-card:hover::before,
    .glossy-card:hover::after {
        opacity: 0.6;
        transform: scale(1.3);
    }

    /* Text Gradient Utility */
    .text-gradient {
        background: linear-gradient(135deg, #fff 0%, #a6c4da 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }

    .shimmer {
        position: relative;
        overflow: hidden;
    }

    .shimmer::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.08) 50%, transparent 55%);
        animation: shimmer_key 5s infinite;
    }

    @keyframes shimmer_key {
        0% {
            transform: translateX(-100%) translateY(-100%);
        }

        100% {
            transform: translateX(100%) translateY(100%);
        }
    }

    #preloader {
        position: fixed;
        inset: 0;
        background: #000724;
        z-index: 3000;
        font-family: 'Courier New', monospace;
        cursor: none;
        overflow: hidden;
        transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    }

    #preloader.loaded {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }



    .corner {
        position: fixed;
        width: 28px;
        height: 28px;
        z-index: 10;
    }

    .corner::before,
    .corner::after {
        content: '';
        position: absolute;
        background: #fff;
    }

    .corner::before {
        width: 100%;
        height: 1.5px;
    }

    .corner::after {
        width: 1.5px;
        height: 100%;
    }

    .corner.tl {
        top: 22px;
        left: 22px;
    }

    .corner.tl::before {
        top: 0;
        left: 0;
    }

    .corner.tl::after {
        top: 0;
        left: 0;
    }

    .corner.tr {
        top: 22px;
        right: 22px;
    }

    .corner.tr::before {
        top: 0;
        right: 0;
    }

    .corner.tr::after {
        top: 0;
        right: 0;
    }

    .corner.bl {
        bottom: 22px;
        left: 22px;
    }

    .corner.bl::before {
        bottom: 0;
        left: 0;
    }

    .corner.bl::after {
        bottom: 0;
        left: 0;
    }

    .corner.br {
        bottom: 22px;
        right: 22px;
    }

    .corner.br::before {
        bottom: 0;
        right: 0;
    }

    .corner.br::after {
        bottom: 0;
        right: 0;
    }

    .line-h {
        position: fixed;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.08);
        top: 50%;
        transform: translateY(-50%);
    }

    .line-v-left {
        position: fixed;
        top: 0;
        bottom: 0;
        width: 1px;
        background: rgba(255, 255, 255, 0.08);
        left: calc(50% - 220px);
    }

    .panel-h {
        position: fixed;
        left: 60px;
        width: calc(50% - 220px - 60px);
        height: 1px;
        background: rgba(255, 255, 255, 0.12);
        top: 50%;
    }

    .label {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        color: #fff;
        font-size: 11px;
        letter-spacing: 0.3em;
        display: flex;
        align-items: center;
        gap: 14px;
        user-select: none;
        padding-top: 165px;
    }



    .label .dots span {
        animation: blink 1.2s infinite;
        opacity: 0;
    }

    .label .dots span:nth-child(1) {
        animation-delay: 0s;
    }

    .label .dots span:nth-child(2) {
        animation-delay: 0.3s;
    }

    .label .dots span:nth-child(3) {
        animation-delay: 0.6s;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 0
        }

        50% {
            opacity: 1
        }
    }

    .progress-bar {
        position: fixed;
        top: calc(50% + 14px);
        height: 1px;
        background: rgba(255, 255, 255, 0.08);
        overflow: hidden;
    }

    .progress-bar.left {
        left: 60px;
        width: calc(50% - 220px - 60px);
    }

    .progress-bar.right {
        right: 60px;
        width: calc(50% - 220px - 60px);
    }

    .progress-fill {
        height: 100%;
        background: rgba(255, 255, 255, 0.6);
        width: 0%;
        animation: progress 3s ease-in-out infinite;
    }

    .progress-bar.right .progress-fill {
        margin-left: auto;
    }

    @keyframes progress {
        0% {
            width: 0%;
            opacity: 1;
        }

        70% {
            width: 100%;
            opacity: 1;
        }

        100% {
            width: 100%;
            opacity: 0;
        }
    }

    .logo-wrap {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 220px;
        height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-glow {
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        animation: pulse-glow 2.8s ease-in-out infinite;
        transition: background 0.6s ease;
    }

    @keyframes pulse-glow {

        0%,
        100% {
            transform: scale(0.88);
            opacity: 0.5;
        }

        50% {
            transform: scale(1.12);
            opacity: 1;
        }
    }

    .spin-ring {
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        border: 1px solid transparent;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        animation: spin 4.5s linear infinite;
        z-index: 1;
    }

    .spin-ring-2 {
        position: absolute;
        width: 255px;
        height: 255px;
        border-radius: 50%;
        border: 1px solid transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        border-left: 1px solid rgba(255, 255, 255, 0.03);
        animation: spin 7.5s linear infinite reverse;
        z-index: 1;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .logo-svg-wrap {
        position: relative;
        z-index: 2;
        width: 140px;
        animation: logo-breathe 2.8s ease-in-out infinite;
    }

    @keyframes logo-breathe {

        0%,
        100% {
            transform: scale(0.96);
        }

        50% {
            transform: scale(1.04);
        }
    }

    #logo-svg {
        display: block;
        width: 140px;
        height: auto;
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
        transition: filter 0.6s ease;
    }

    #preloader::after {
        content: '';
        position: fixed;
        inset: 0;
        background: repeating-linear-gradient(to bottom, transparent 0px, transparent 3px,
                rgba(0, 0, 0, 0.03) 3px, rgba(0, 0, 0, 0.03) 4px);
        pointer-events: none;
        z-index: 100;
        opacity: 0.35;
    }

    .cursor {
        position: fixed;
        width: 6px;
        height: 6px;
        background: white;
        border-radius: 50%;
        pointer-events: none;
        z-index: 999;
        transform: translate(-50%, -50%);
    }

    .cursor-ring {
        position: fixed;
        width: 28px;
        height: 28px;
        border: 1px solid rgba(255, 255, 255, 0.45);
        border-radius: 50%;
        pointer-events: none;
        z-index: 998;
        transform: translate(-50%, -50%);
        transition: left 0.1s ease, top 0.1s ease;
    }






    .cyber-grid::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg) 100%);
    }

    /* â”€â”€â”€ ORBS â”€â”€â”€ */
    .orb {
        position: fixed;
        border-radius: 50%;
        filter: blur(130px);
        pointer-events: none;
        z-index: 0;
    }

    .orb-1 {
        width: 900px;
        height: 900px;
        background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
        top: -400px;
        left: -300px;
        opacity: 0.18;
        animation: drift 20s ease-in-out infinite;
    }

    .orb-2 {
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
        bottom: -100px;
        right: -300px;
        opacity: 0.15;
        animation: drift 25s ease-in-out infinite reverse;
    }

    .orb-3 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, var(--violet) 0%, transparent 70%);
        top: 30%;
        left: 30%;
        opacity: 0.12;
        animation: drift 18s ease-in-out infinite 3s;
    }

    @keyframes drift {

        0%,
        100% {
            transform: translate(0, 0)
        }

        33% {
            transform: translate(30px, -40px)
        }

        66% {
            transform: translate(-20px, 20px)
        }
    }

    /* â”€â”€â”€ HEADER â”€â”€â”€ */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 200;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
        height: 72px;
        background: rgba(2, 12, 22, 0.4);
        backdrop-filter: blur(32px) saturate(210%);
        -webkit-backdrop-filter: blur(32px) saturate(210%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    [data-theme="light"] header {
        background: rgba(255, 255, 255, 0.85);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    .logo {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 1.3rem;
        letter-spacing: -0.04em;
        text-decoration: none;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo-mark {
        width: 52px;
        height: 52px;
        background: var(--grad);
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 900;
        color: #020c16;
        letter-spacing: -0.05em;
        box-shadow: var(--glow-e);
    }

    .logo em {
        color: var(--emerald);
        font-style: normal;
    }

    nav {
        display: flex;
        gap: 36px;
        margin-left: auto;
        position: relative;
    }

    nav a {
        font-size: 0.83rem;
        font-weight: 700;
        color: var(--text2);
        text-decoration: none;
        letter-spacing: 0.02em;
        transition: all 0.3s ease;
        position: relative;
        padding-bottom: 6px;
    }

    nav a:hover,
    nav a.active {
        color: var(--emerald);
    }

    /* Premium highlight in navbar */
    nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--grad);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border-radius: 10px;
    }

    nav a:hover::after,
    nav a.active::after {
        transform: scaleX(1);
        transform-origin: left;
        box-shadow: 0 0 10px rgba(139, 195, 66, 0.5);
    }

    .header-controls {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-left: 20px;
        margin-right: 15px;
    }

    .mobile-toggle {
        display: none;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 300;
        transition: transform 0.3s;
    }

    /* â”€â”€â”€ THEME TOGGLE â”€â”€â”€ */
    /* ——— THEME TOGGLE (PILL STYLE) ——— */
    .theme-toggle-wrap {
        margin-left: 20px;
    }

    .theme-toggle {
        width: 70px;
        height: 36px;
        border-radius: 36px;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.1);
        position: relative;
        cursor: pointer;
        padding: 0;
        margin: 0 0 0 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        color: var(--text2);
        z-index: 210;
        display: block;
        box-sizing: border-box;
    }

    [data-theme="light"] .theme-toggle {
        background: rgba(0, 0, 0, 0.04);
        border-color: rgba(0, 0, 0, 0.08);
    }

    .toggle-track {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        pointer-events: none;
    }

    .toggle-icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s, color 0.3s;
    }

    .toggle-icon.sun {
        left: 10px;
    }

    .toggle-icon.moon {
        right: 10px;
    }

    .toggle-thumb {
        position: absolute;
        width: 24px;
        height: 24px;
        background: var(--grad);
        border-radius: 50%;
        left: 4px;
        top: 4px;
        z-index: 5;
        transition: transform 0.4s cubic-bezier(0.4, 1.2, 0.2, 1), box-shadow 0.4s;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), var(--glow-e);
    }

    [data-theme="dark"] .toggle-thumb {
        transform: translateX(34px);
        box-shadow: 0 3px 15px rgba(139, 195, 66, 0.4), var(--glow-c);
    }

    [data-theme="light"] .toggle-icon.sun {
        color: #ffffff;
        opacity: 1;
    }

    [data-theme="light"] .toggle-icon.moon {
        opacity: 0.3;
    }

    [data-theme="dark"] .toggle-icon.sun {
        opacity: 0.3;
    }

    [data-theme="dark"] .toggle-icon.moon {
        color: #ffffff;
        opacity: 1;
    }

    .theme-toggle:hover {
        border-color: var(--emerald);
        transform: translateY(-1px);
    }

    .desktop-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-nav-actions {
        display: none;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        margin-top: 30px;
        align-items: center;
    }

    .nav-links {
        display: flex;
        gap: 36px;
    }

    footer {
        padding: 80px 5%;
        background: var(--bg3);
        border-top: 1px solid var(--border);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        text-align: center;
        position: relative;
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--emerald), transparent);
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer-brand .logo-mark {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: var(--grad);
        color: #020c16;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 0.9rem;
        box-shadow: var(--glow-e);
        margin-bottom: 10px;
    }

    .footer-logo {
        font-family: 'Outfit', sans-serif;
        font-weight: 900;
        font-size: 1.6rem;
        letter-spacing: -0.02em;
    }

    .footer-links {
        display: flex;
        gap: 32px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        color: var(--text3);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: var(--emerald);
    }

    .footer-copy {
        color: var(--text3);
        font-size: 0.8rem;
        opacity: 0.6;
    }

    .btn-ghost {
        padding: 10px 24px;
        font-size: 0.85rem;
        font-weight: 600;
        font-family: 'Outfit', sans-serif;
        letter-spacing: 0.03em;
        border: 1px solid rgb(118 118 118 / 12%);
        color: var(--text2);
        background: rgba(255, 255, 255, 0.03);
        border-radius: 50px;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(8px);
        margin-left: 25px;
    }

    .btn-ghost:hover {
        border-color: var(--emerald);
        background: rgba(139, 195, 66, 0.05);
        color: var(--text);
        transform: translateY(-1px);
    }

    .btn-cta-sm {
        padding: 10px 24px;
        font-size: 0.85rem;
        font-weight: 700;
        font-family: 'Outfit', sans-serif;
        letter-spacing: 0.03em;
        background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--grad) border-box;
        color: var(--heading);
        border: 2px solid transparent;
        border-radius: 50px;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        box-shadow: 0 4px 15px rgba(139, 195, 66, 0.15);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn-cta-sm:hover {
        background: var(--grad);
        color: #ffffff;
        transform: translateY(-1px);
        box-shadow: 0 0 40px rgba(139, 195, 66, 0.5);
    }



    /* â”€â”€â”€ MOBILE TOGGLE ICON â”€â”€â”€ */
    .mobile-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 32px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 300;
        transition: transform 0.3s;
    }

    .mobile-toggle span {
        width: 100%;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: all 0.3s;
        transform-origin: left center;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(10px);
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    /* â”€â”€â”€ HERO â”€â”€â”€ */
    .hero {
        position: relative;
        z-index: 1;
        min-height: 85vh;
        padding: 40px 5% 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        margin-top: 50px;
    }

    .hero-intro {
        margin-bottom: 32px;
    }

    .intro-label {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 1.5rem;
        color: var(--text);
        letter-spacing: -0.02em;
        margin-bottom: 6px;
    }

    .intro-tagline {
        font-size: 1.15rem;
        color: var(--text2);
        font-weight: 400;
        opacity: 0.85;
        letter-spacing: 0.01em;
    }

    .hero h1 {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2rem, 3vw, 3.5rem);
        line-height: 1.05;
        letter-spacing: -0.04em;
        margin-bottom: 5px;
    }

    .h-line {
        display: block;
        font-weight: 300;
        color: var(--text);
    }

    .h-line.em-text {
        font-weight: 700;
        color: var(--emerald);
        filter: drop-shadow(0 0 20px rgba(139, 195, 66, 0.2));
        margin: 4px 0;
    }

    .hero-ctas {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .hero-badge-wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .hero-badge-wrap:hover {
        transform: scale(1.02);
    }

    .hero-badge {
        height: 85px;
        width: auto;
        position: relative;
        z-index: 2;
    }

    .btn-tour {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text2);
        text-decoration: none;
        transition: all 0.3s;
    }

    .btn-tour:hover {
        color: var(--emerald);
    }

    .play-btn {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        transition: all 0.3s;
    }

    .btn-tour:hover .play-btn {
        background: var(--grad);
        color: #020c16;
        border-color: transparent;
        box-shadow: var(--glow-e);
        transform: scale(1.1);
    }

    .hero-badge-wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 10px;
    }

    .hero-badge {
        height: 80px;
        width: auto;
        position: relative;
        z-index: 2;
        filter: drop-shadow(0 0 25px rgba(139, 195, 66, 0.25));
    }

    .hero-badge-glow {
        position: absolute;
        width: 110px;
        height: 110px;
        background: radial-gradient(circle, rgba(139, 195, 66, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        animation: pulseGlow 4s ease-in-out infinite;
    }

    @keyframes pulseGlow {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.4;
        }

        50% {
            transform: scale(1.4);
            opacity: 0.7;
        }
    }

    .btn-primary {
        padding: 16px 40px;
        font-size: 1rem;
        font-weight: 700;
        font-family: 'Outfit', sans-serif;
        letter-spacing: 0.02em;
        background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--grad) border-box;
        color: var(--heading);
        border: 2px solid transparent;
        border-radius: 50px;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        box-shadow: 0 8px 25px rgba(139, 195, 66, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .btn-primary:hover {
        background: var(--grad);
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(139, 195, 66, 0.5);
    }

    .btn-secondary {
        padding: 16px 40px;
        font-size: 1rem;
        font-weight: 600;
        font-family: 'Outfit', sans-serif;
        background: rgba(255, 255, 255, 0.03);
        color: var(--text);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        backdrop-filter: blur(16px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn-secondary:hover {
        border-color: var(--emerald);
        color: var(--emerald);
    }

    .hero-footer {
        margin-top: auto;
        padding-bottom: 40px;
        display: flex;
        justify-content: center;
    }

    .mouse-scroll {
        width: 26px;
        height: 42px;
        border: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        position: relative;
        cursor: pointer;
    }

    .mouse-scroll::after {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 8px;
        background: var(--emerald);
        border-radius: 2px;
        animation: mouseScroll 2s ease-in-out infinite;
    }

    @keyframes mouseScroll {
        0% {
            top: 8px;
            opacity: 1;
        }

        100% {
            top: 22px;
            opacity: 0;
        }
    }

    .trust-avatars {
        display: flex;
    }

    .trust-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 2px solid var(--bg);
        background: var(--grad);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.6rem;
        font-weight: 700;
        color: #020c16;
        margin-left: -8px;
    }

    .trust-avatar:first-child {
        margin-left: 0;
    }

    .trust-text {
        font-size: 0.8rem;
        color: var(--text3);
    }

    .trust-text strong {
        color: var(--text);
    }

    /* â”€â”€â”€ DASHBOARD VISUAL â”€â”€â”€ */
    .hero-visual {
        position: relative;
    }

    .dash-wrapper {
        position: relative;
        animation: floatDash 7s ease-in-out infinite;
    }

    @keyframes floatDash {

        0%,
        100% {
            transform: translateY(0) perspective(1200px) rotateY(-4deg) rotateX(3deg)
        }

        50% {
            transform: translateY(-16px) perspective(1200px) rotateY(-4deg) rotateX(3deg)
        }
    }

    .dash-frame {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        overflow: hidden;
        backdrop-filter: blur(40px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        position: relative;
    }

    [data-theme="dark"] .dash-frame {
        background: rgba(4, 16, 30, 0.4);
        border-color: rgba(255, 255, 255, 0.06);
        box-shadow:
            0 40px 100px -20px rgba(0, 0, 0, 0.3),
            0 0 50px -10px rgba(139, 195, 66, 0.05);
    }

    .dash-frame::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
        pointer-events: none;
        z-index: 10;
    }



    .dash-topbar {
        background: rgba(255, 255, 255, 0.05);
        padding: 14px 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    [data-theme="dark"] .dash-topbar {
        background: rgba(10, 25, 41, 0.9);
        border-bottom-color: rgba(255, 255, 255, 0.06);
    }

    .dash-dots {
        display: flex;
        gap: 6px;
    }

    .dash-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

    .dash-dot-r {
        background: #ff5f57;
    }

    .dash-dot-y {
        background: #febc2e;
    }

    .dash-dot-g {
        background: #28c840;
    }

    .dash-url {
        flex: 1;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 8px;
        height: 28px;
        padding: 0 12px;
        margin: 0 12px;
        display: flex;
        align-items: center;
        font-size: 0.68rem;
        color: var(--text3);
        gap: 8px;
    }

    .dash-actions {
        display: flex;
        gap: 12px;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.2);
    }

    .dash-body {
        display: grid;
        grid-template-columns: 80px 1fr;
        min-height: 400px;
    }

    .dash-sidebar {
        background: rgba(0, 0, 0, 0.02);
        border-right: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px 0;
        gap: 20px;
    }

    [data-theme="dark"] .dash-sidebar {
        background: rgba(255, 255, 255, 0.02);
        border-right-color: rgba(255, 255, 255, 0.05);
    }

    .sidebar-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s;
    }

    .sidebar-icon span {
        opacity: 0;
        display: none;
        /* Crucial: Prevent width stretching */
        transition: opacity 0.3s;
        font-weight: 600;
        letter-spacing: 0.02em;
    }

    .sidebar-icon svg {
        flex-shrink: 0;
    }

    .sidebar-icon.active {
        background: var(--grad);
        color: #020c16;
        box-shadow: 0 0 25px rgba(139, 195, 66, 0.4);
    }

    .sidebar-icon:hover:not(.active) {
        background: rgba(255, 255, 255, 0.08);
        color: var(--text);
    }

    .dash-main {
        padding: 24px;
        overflow-y: auto;
        position: relative;
    }

    /* --- DASHBOARD COMPONENTS (Restored) --- */
    .dash-row1 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }

    .dash-title-txt {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .dash-status-pill {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 3px 10px;
        border-radius: 20px;
        background: rgba(139, 195, 66, 0.1);
        border: 1px solid rgba(139, 195, 66, 0.2);
        font-size: 0.6rem;
        font-weight: 600;
        color: var(--emerald);
        letter-spacing: 0.06em;
    }

    .dash-status-pill::before {
        content: '';
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--emerald);
        animation: blink 1.5s ease-in-out infinite;
    }

    .dash-view {
        display: none;
        animation: fadeDash 0.3s ease-out;
    }

    .dash-view.active {
        display: block;
    }

    @keyframes fadeDash {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .kpi-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 14px;
    }

    .kpi {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 14px;
        padding: 15px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s;
    }

    .kpi:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(139, 195, 66, 0.3);
        transform: translateY(-2px);
    }

    .kpi::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--grad);
    }

    .kpi-val {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 1.3rem;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .kpi-label {
        font-size: 0.6rem;
        color: var(--text2);
        margin-top: 2px;
    }

    .kpi-trend {
        display: inline-flex;
        align-items: center;
        gap: 2px;
        font-size: 0.58rem;
        color: var(--emerald);
        margin-top: 4px;
    }

    .chart-area {
        background: rgb(255 255 255 / 20%);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 18px;
        margin-bottom: 15px;
        position: relative;
        overflow: hidden;
    }

    .chart-grid {
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 20px 20px;
        pointer-events: none;
    }

    .chart-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 18px;
        position: relative;
        z-index: 1;
    }

    .chart-title {
        font-size: 0.72rem;
        font-weight: 600;
        color: var(--text2);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .bars-container {
        display: flex;
        align-items: flex-end;
        gap: 5px;
        height: 90px;
        position: relative;
        z-index: 1;
    }

    .bar-wrap {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        height: 100%;
    }

    .bar-track {
        flex: 1;
        display: flex;
        align-items: flex-end;
        width: 100%;
    }

    .bar-fill {
        width: 100%;
        border-radius: 4px 4px 0 0;
        transition: height 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
    }

    .bar-fill::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 10px;
        background: rgba(255, 255, 255, 0.2);
        filter: blur(4px);
        border-radius: 10px;
    }

    .bar-fill.em {
        background: linear-gradient(180deg, var(--emerald), transparent);
        box-shadow: 0 0 15px rgba(139, 195, 66, 0.2);
    }

    .bar-fill.cy {
        background: linear-gradient(180deg, var(--cyan), transparent);
        box-shadow: 0 0 15px rgba(43, 168, 224, 0.2);
    }

    .bar-fill.vi {
        background: linear-gradient(180deg, var(--violet), transparent);
        box-shadow: 0 0 15px rgba(124, 92, 252, 0.2);
    }

    .bar-lbl {
        font-size: 0.55rem;
        color: var(--text2);
        font-weight: 500;
        margin-top: 6px;
    }

    .dash-recent {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 12px 16px;
        position: relative;
        overflow: hidden;
    }

    .recent-txt {
        font-size: 0.68rem;
        color: var(--text2);
    }

    .recent-txt span {
        color: var(--emerald);
        font-weight: 600;
    }

    .recent-badge {
        padding: 4px 12px;
        border-radius: 30px;
        font-size: 0.6rem;
        font-weight: 800;
        background: var(--emerald);
        color: #020c16;
        letter-spacing: 0.08em;
        box-shadow: 0 0 20px rgba(139, 195, 66, 0.3);
        animation: pulseActive 2s infinite;
    }

    /* --- DASHBOARD VIEW SYSTEM --- */
    .dash-view {
        display: none;
        animation: dashFadeIn 0.5s ease;
    }

    .dash-view.active {
        display: block;
    }

    @keyframes dashFadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mini Components */
    .mini-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mini-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgb(0 0 0 / 15%);
        border-radius: 10px;
    }

    .mi-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: rgb(185 185 185 / 20%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mi-info {
        flex: 1;
    }

    .mi-name {
        font-size: 0.72rem;
        font-weight: 600;
        color: var(--text);
    }

    .mi-desc {
        font-size: 0.6rem;
        color: var(--text2);
    }

    .mi-status {
        font-size: 0.6rem;
        color: var(--emerald);
        font-weight: 700;
    }

    .tender-grid-small {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .t-card-small {
        padding: 12px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgb(0 0 0 / 6%);
        border-radius: 10px;
    }

    .tc-top {
        font-size: 0.55rem;
        color: var(--cyan);
        margin-bottom: 4px;
    }

    .tc-name {
        font-size: 0.68rem;
        font-weight: 600;
        line-height: 1.2;
    }

    .tc-btm {
        font-size: 0.55rem;
        color: var(--text3);
        margin-top: 6px;
    }

    /* Vendor Management Hub Styles */
    .v-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .v-card {
        padding: 12px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .vc-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .vc-logo {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.65rem;
        font-weight: 800;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .vc-score {
        text-align: right;
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--emerald);
        line-height: 1;
    }

    .vc-score span {
        display: block;
        font-size: 0.45rem;
        color: var(--text3);
        font-weight: 400;
        text-transform: uppercase;
        margin-top: 2px;
    }

    .vc-name {
        font-size: 0.68rem;
        font-weight: 600;
        color: var(--text);
    }

    .vc-desc {
        font-size: 0.55rem;
        color: var(--text3);
        margin-top: -2px;
    }

    .compliance-row {
        display: flex;
        flex-direction: column;
        gap: 3px;
        margin-top: 4px;
    }

    .compliance-row span {
        font-size: 0.5rem;
        color: var(--text3);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .c-bar {
        height: 3px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 3px;
        overflow: hidden;
    }

    .c-fill {
        height: 100%;
        background: var(--emerald);
        border-radius: 3px;
    }

    /* Contract Lifecycle (CMS) Better Styles */
    .cms-grid {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .cms-card {
        padding: 12px;
        background: rgba(255, 255, 255, 0.02);
        border-left: 3px solid var(--cyan);
        border-radius: 4px 10px 10px 4px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-left: 3px solid var(--cyan);
    }

    .cc-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 6px;
    }

    .cc-status {
        width: 6px;
        height: 6px;
        border-radius: 50%;
    }

    .cc-status.active {
        background: var(--emerald);
        box-shadow: 0 0 8px var(--emerald);
    }

    .cc-status.alert {
        background: #ffbb33;
        box-shadow: 0 0 8px #ffbb33;
    }

    .cc-id {
        font-size: 0.58rem;
        font-weight: 500;
        font-family: monospace;
        color: var(--text3);
        background: rgba(255, 255, 255, 0.03);
        padding: 2px 6px;
        border-radius: 4px;
    }

    .cc-title {
        font-size: 0.68rem;
        font-weight: 600;
        color: var(--text);
        margin-bottom: 8px;
    }

    .cc-info {
        display: flex;
        gap: 15px;
    }

    .cc-stat {
        font-size: 0.6rem;
        color: var(--text);
        font-weight: 700;
    }

    .cc-stat span {
        display: block;
        font-size: 0.45rem;
        color: var(--text3);
        font-weight: 400;
        text-transform: uppercase;
    }

    /* Vendor Hub Sparklines */
    .v-spark {
        width: 100%;
        height: 20px;
        margin: 4px 0;
        opacity: 0.8;
    }

    .v-spark svg {
        width: 100%;
        height: 100%;
        overflow: visible;
    }

    .v-spark path {
        stroke-dasharray: 200;
        stroke-dashoffset: 200;
        animation: drawSpark 1.5s ease-out forwards;
    }

    @keyframes drawSpark {
        to {
            stroke-dashoffset: 0;
        }
    }


    /* Marketplace View Components */
    .market-grid-small {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .m-item {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgb(0 0 0 / 6%);
        border-radius: 12px;
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        transition: 0.3s;
    }

    .m-img-box {
        width: 100%;
        height: 60px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .m-badge {
        position: absolute;
        top: 0;
        left: 0;
        background: var(--cyan);
        color: #fff;
        font-size: 0.45rem;
        padding: 2px 6px;
        border-bottom-right-radius: 8px;
        font-weight: 800;
    }

    .m-name {
        font-size: 0.68rem;
        font-weight: 600;
        color: var(--text);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .m-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .m-price {
        font-size: 0.75rem;
        font-weight: 800;
        color: var(--emerald);
    }

    .m-stock {
        font-size: 0.55rem;
        color: var(--text3);
    }

    .m-item:hover {
        transform: translateY(-4px);
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.15);
    }

    .m-price {
        font-size: 0.55rem;
        color: var(--emerald);
        font-weight: 700;
        margin-top: 2px;
    }

    .settings-mock {
        font-size: 0.7rem;
        color: var(--text2);
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .set-line {
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Floating cards */
    .float-cards {
        position: absolute;
        top: 5%;
        right: -70px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .fcard {
        background: var(--bg2);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 16px 20px;
        width: 200px;
        backdrop-filter: blur(24px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        animation: floatHUD 5s ease-in-out infinite;
    }

    [data-theme="dark"] .fcard {
        background: rgba(10, 25, 41, 0.8);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow:
            0 20px 50px -10px rgba(0, 0, 0, 0.25),
            inset 0 1px 1px rgba(255, 255, 255, 0.05),
            0 0 20px rgba(43, 168, 224, 0.1);
    }

    @keyframes floatHUD {

        0%,
        100% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(10px);
        }
    }

    .fcard-label {
        font-size: 0.62rem;
        color: var(--text3);
        margin-bottom: 6px;
    }

    .fcard-val {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 1.2rem;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .fcard-sub {
        font-size: 0.6rem;
        color: var(--text3);
        margin-top: 2px;
    }

    .fcard-bar {
        height: 3px;
        border-radius: 2px;
        margin-top: 8px;
        background: var(--grad);
        width: 70%;
    }

    /* â”€â”€â”€ STATS BAR â”€â”€â”€ */
    .stats-bar {
        position: relative;
        z-index: 1;
        padding: 20px 5%;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        background: linear-gradient(90deg, rgba(139, 195, 66, 0.03), rgba(43, 168, 224, 0.03), rgba(124, 92, 252, 0.03));
    }

    .stats-inner {
        display: flex;
        justify-content: center;
        max-width: 900px;
        margin: 0 auto;
    }

    .section-hd {
        max-width: 800px;
        margin: 0 auto 50px;
        text-align: center;
        position: relative;
    }

    .section-hd::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 400px;
        height: 200px;
        background: radial-gradient(circle, rgba(139, 195, 66, 0.05) 0%, transparent 70%);
        pointer-events: none;
        z-index: -1;
    }

    .stat-block {
        flex: 1;
        text-align: center;
        padding: 16px 32px;
        border-right: 1px solid var(--border);
        position: relative;
    }

    .stat-block:last-child {
        border-right: none;
    }

    .stat-block::before {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, transparent, var(--emerald), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .stat-block:hover::before {
        opacity: 1;
    }

    .stat-num {
        font-family: 'Outfit', sans-serif;
        font-weight: 900;
        font-size: clamp(2.5rem, 4vw, 3.8rem);
        line-height: 1;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 6px;
    }

    .stat-label {
        color: var(--text3);
        font-size: 0.82rem;
        font-weight: 400;
        letter-spacing: 0.05em;
    }

    /* --- SECTIONS --- */
    section {
        position: relative;
        z-index: 1;
        padding: 60px 5%;
    }

    .sec-eyebrow {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.8rem;
        font-weight: 800;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--emerald);
        margin-bottom: 16px;
        justify-content: center;
    }

    .sec-eyebrow::before,
    .sec-eyebrow::after {
        content: '';
        width: 30px;
        height: 2px;
        background: var(--grad);
        opacity: 0.4;
    }

    .sec-h {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2rem, 5vw, 2.5rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        margin-bottom: 24px;
        line-height: 1.1;
        position: relative;
        color: var(--heading);
    }

    .sec-sub {
        color: var(--text2);
        font-weight: 400;
        line-height: 1.7;
        max-width: 720px;
        font-size: 1.1rem;
        margin: 0 auto;
        opacity: 0.85;
    }

    /* â”€â”€â”€ SOLUTIONS â”€â”€â”€ */
    .solutions-intro {
        font-size: 0.92rem;
        color: var(--text2);
        line-height: 1.75;
        max-width: 1000px;
        margin: 0 auto 30px;
    }

    .solutions-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .sol-card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 24px 24px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        cursor: pointer;
    }

    [data-theme="dark"] .sol-card {
        background: rgba(255, 255, 255, 0.02);
        border-color: rgba(255, 255, 255, 0.05);
    }

    .sol-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(139, 195, 66, 0.1), transparent 50%);
        opacity: 0;
        transition: opacity 0.4s;
    }

    .sol-card:hover {
        transform: translateY(-8px) scale(1.02);
        border-color: rgba(139, 195, 66, 0.2);
        box-shadow:
            0 25px 50px -15px rgba(0, 0, 0, 0.2),
            0 10px 20px -10px rgba(0, 0, 0, 0.15),
            0 0 40px rgba(139, 195, 66, 0.08);
    }

    .sol-card:hover::before {
        opacity: 1;
    }

    .sol-icon-wrap {
        width: 90px;
        height: 90px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        position: relative;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sol-icon-wrap img {
        width: 72px;
        height: 72px;
        object-fit: contain;
        filter: drop-shadow(0 0 8px rgba(139, 195, 66, 0.3));
    }

    .ic-g {
        --sol-color: var(--emerald);
    }

    .ic-c {
        --sol-color: var(--cyan);
    }

    .ic-v {
        --sol-color: var(--violet);
    }

    .ic-o {
        --sol-color: var(--gold);
    }

    .ic-r {
        --sol-color: #ff5a5a;
    }

    .ic-p {
        --sol-color: var(--emerald);
    }

    .sol-brand {
        font-size: 0.7rem;
        color: var(--text3);
        font-weight: 500;
        letter-spacing: 0.04em;
        margin-bottom: 4px;
    }

    .sol-title {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 1.1rem;
        margin-bottom: 8px;
        line-height: 1.1;
    }

    .sol-title .em {
        color: var(--emerald);
    }

    .sol-title .cy {
        color: var(--cyan);
    }

    .sol-title .vi {
        color: var(--violet);
    }

    .sol-title .go {
        color: var(--gold);
    }

    .sol-title .rd {
        color: #ff6b6b;
    }

    .sol-title .pk {
        color: #f472b6;
    }

    .sol-desc {
        font-size: 0.79rem;
        color: var(--text3);
        line-height: 1.65;
        font-weight: 400;
    }

    .sol-arrow {
        margin-top: 18px;
        font-size: 0.72rem;
        color: var(--text3);
        display: flex;
        align-items: center;
        gap: 4px;
        transition: color 0.2s, gap 0.2s;
    }

    .sol-card:hover .sol-arrow {
        color: var(--emerald);
        gap: 8px;
    }

    /* â”€â”€â”€ INTEGRATION â”€â”€â”€ */
    .integration-section {
        background: var(--bg2);
        border-top: 1px solid var(--border);
    }

    .int-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .int-visual.hub-spoke {
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background: transparent;
        border: none;
        padding: 0;
        overflow: hidden;
    }

    .int-lines-svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
    }

    .int-line {
        fill: none;
        stroke: var(--emerald);
        stroke-width: 1.5;
        stroke-opacity: 0.15;
        stroke-dasharray: 6 10;
        animation: lineFlow 35s linear infinite;
    }

    [data-theme="light"] .int-line {
        stroke-opacity: 0.35;
    }

    @keyframes lineFlow {
        to {
            stroke-dashoffset: -1000;
        }
    }

    .int-center-hub {
        position: relative;
        z-index: 10;
        width: 110px;
        height: 110px;
        background: #f8faff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 50px rgba(139, 195, 66, 0.4),
            0 0 20px rgba(255, 255, 255, 1),
            inset 0 0 15px rgba(0, 0, 0, 0.05);
        border: 6px solid #eef3f7;
    }

    .hub-logo {
        width: 65%;
        height: 65%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hub-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .hub-rings {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 2;
    }

    .hub-ring {
        position: absolute;
        border: 1px dashed rgba(139, 195, 66, 0.2);
        border-radius: 50%;
    }

    [data-theme="light"] .hub-ring {
        border-color: rgba(0, 0, 0, 0.1);
    }

    .hub-ring.r1 {
        width: 180px;
        height: 180px;
        opacity: 0.3;
    }

    .hub-ring.r2 {
        width: 300px;
        height: 300px;
        opacity: 0.15;
    }

    .hub-ring.r3 {
        width: 420px;
        height: 420px;
        opacity: 0.1;
    }

    [data-theme="light"] .hub-ring.r1 {
        opacity: 0.6;
    }

    [data-theme="light"] .hub-ring.r2 {
        opacity: 0.35;
    }

    [data-theme="light"] .hub-ring.r3 {
        opacity: 0.25;
    }

    .int-node {
        position: absolute;
        z-index: 15;
        background: rgba(13, 25, 41, 0.45);
        border: 1px solid rgba(255, 255, 255, 0.08);
        width: 110px;
        height: 110px;
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(12px);
        box-shadow:
            0 20px 40px -10px rgba(0, 0, 0, 0.2),
            0 5px 15px -5px rgba(0, 0, 0, 0.1);
        padding: 0;
    }

    [data-theme="light"] .int-node {
        background: #fff;
        border-color: rgba(0, 0, 0, 0.05);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    }

    .int-node img {
        width: 65px;
        height: 65px;
        object-fit: contain;
        transition: transform 0.4s;
    }

    .int-node:hover {
        transform: translateY(-8px) scale(1.1);
        border-color: var(--emerald);
        box-shadow: 0 20px 45px rgba(139, 195, 66, 0.25);
        background: rgba(13, 25, 41, 0.85);
    }

    .int-node:hover img {
        transform: scale(1.1);
    }

    /* Positions for nodes based on the hub-and-spoke image */
    .n-t {
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .n-b {
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .n-tr {
        top: 110px;
        right: 18%;
    }

    .n-tl {
        top: 110px;
        left: 18%;
    }

    .n-br {
        bottom: 110px;
        right: 18%;
    }

    .n-bl {
        bottom: 110px;
        left: 18%;
    }

    .n-r {
        top: 50%;
        right: 8%;
        transform: translateY(-50%);
    }

    .n-l {
        top: 50%;
        left: 8%;
        transform: translateY(-50%);
    }

    /* Theme override for Light mode */
    [data-theme="light"] .int-node {
        background: rgba(255, 255, 255, 0.85);
        border-color: rgba(0, 0, 0, 0.05);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    }

    .int-node-icon {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .int-node-name {
        font-size: 0.65rem;
        color: var(--text3);
        font-weight: 500;
    }

    .int-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 30px;
    }

    .int-item {
        display: flex;
        gap: 16px;
        align-items: flex-start;
        padding: 16px 20px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(16px);
        position: relative;
        overflow: hidden;
    }

    [data-theme="dark"] .int-item {
        background: rgba(4, 16, 32, 0.5);
        border-color: rgba(255, 255, 255, 0.06);
    }

    .int-item::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.03), transparent);
        transform: translateX(-100%);
        transition: 0.6s;
    }

    .int-item:hover::after {
        transform: translateX(100%);
    }

    .int-item:hover {
        border-color: rgba(139, 195, 66, 0.2);
        transform: translateX(4px);
    }

    .int-item-icon {
        width: 80px;
        height: 80px;
        border-radius: 12px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        position: relative;
    }

    .int-item-icon::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 12px;
        background: var(--grad);
        opacity: 0.1;
        transition: opacity 0.3s;
    }

    .int-item:hover .int-item-icon::after {
        opacity: 0.25;
    }

    .int-item-title {
        font-weight: 600;
        font-size: 0.88rem;
        margin-bottom: 4px;
        padding-top: 15px;
    }

    .int-item-desc {
        font-size: 0.78rem;
        color: var(--text3);
        line-height: 1.5;
    }

    /* â”€â”€â”€ PLANS â”€â”€â”€ */
    .plans-grid {
        margin-top: 60px;
    }

    .p-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 28px;
        position: relative;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(24px);
    }

    [data-theme="dark"] .p-card {
        background: rgba(255, 255, 255, 0.02);
        border-color: rgba(255, 255, 255, 0.05);
    }

    .p-card.featured {
        background: var(--card);
    }

    [data-theme="dark"] .p-card.featured.em {
        border-color: rgba(139, 195, 66, 0.2);
        box-shadow: 0 0 100px rgba(139, 195, 66, 0.05);
    }

    [data-theme="dark"] .p-card.featured.cy {
        border-color: rgba(43, 168, 224, 0.2);
        box-shadow: 0 0 100px rgba(43, 168, 224, 0.05);
    }

    [data-theme="light"] .p-card.featured.em {
        background: rgba(139, 195, 66, 0.05);
        border-color: rgba(139, 195, 66, 0.15);
        box-shadow: 0 20px 50px rgba(139, 195, 66, 0.08);
    }

    [data-theme="light"] .p-card.featured.cy {
        background: rgba(43, 168, 224, 0.05);
        border-color: rgba(43, 168, 224, 0.15);
        box-shadow: 0 20px 50px rgba(43, 168, 224, 0.08);
    }

    .p-card.featured::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 150px;
        height: 150px;
        pointer-events: none;
    }

    .p-card.featured.em::after {
        background: radial-gradient(circle at top right, rgba(139, 195, 66, 0.1), transparent 70%);
    }

    .p-card.featured.cy::after {
        background: radial-gradient(circle at top right, rgba(43, 168, 224, 0.1), transparent 70%);
    }

    .p-card:hover {
        transform: translateY(-10px);
        box-shadow:
            0 25px 50px -12px rgba(0, 0, 0, 0.25),
            0 10px 20px -5px rgba(0, 0, 0, 0.15);
    }

    [data-theme="light"] .p-card:hover {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
        border-color: var(--emerald);
    }

    .p-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -150%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
        transform: skewX(-25deg);
        transition: 0.75s;
    }

    [data-theme="light"] .p-card::before {
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    }

    .p-card:hover::before {
        left: 150%;
    }

    .p-card.featured.em::before {
        background: linear-gradient(90deg, transparent, rgba(139, 195, 66, 0.1), transparent);
    }

    .p-card.featured.cy::before {
        background: linear-gradient(90deg, transparent, rgba(43, 168, 224, 0.1), transparent);
    }

    .p-tag {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .p-tag.cloud {
        background: rgba(139, 195, 66, 0.1);
        color: var(--emerald);
        border: 1px solid rgba(139, 195, 66, 0.2);
    }

    [data-theme="light"] .p-tag.cloud {
        background: rgba(118, 165, 52, 0.08);
        border-color: rgba(118, 165, 52, 0.25);
    }

    .p-tag.enterprise {
        background: rgba(43, 168, 224, 0.1);
        color: var(--cyan);
        border: 1px solid rgba(0, 200, 255, 0.2);
    }

    [data-theme="light"] .p-tag.enterprise {
        background: rgba(30, 136, 229, 0.08);
        border-color: rgba(30, 136, 229, 0.25);
    }

    .p-title {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 1.8rem;
    }

    .p-title.em {
        color: var(--emerald);
    }

    .p-title.cy {
        color: var(--cyan);
    }

    [data-theme="light"] .p-title {
        font-weight: 900;
        letter-spacing: -0.02em;
    }

    .p-desc {
        color: var(--text2);
        line-height: 1.6;
    }

    .p-features {
        list-style: none;
    }

    .p-features li {
        color: var(--text2);
        transition: all 0.3s;
    }

    [data-theme="light"] .p-features li {
        color: var(--text);
        font-weight: 500;
    }

    .p-icon-wrap img {
        transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .p-card.em:hover .p-icon-wrap img {
        transform: rotate(2deg) scale(1.1);
        filter: drop-shadow(0 30px 60px rgba(139, 195, 66, 0.4));
    }

    .p-card.cy:hover .p-icon-wrap img {
        transform: rotate(-2deg) scale(1.1);
        filter: drop-shadow(0 30px 60px rgba(43, 168, 224, 0.4));
    }

    /* â”€â”€â”€ SERVICES â”€â”€â”€ */
    .services-section {
        background: var(--bg1);
        border-top: 1px solid var(--border);
    }

    .services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 50px;
    }

    .svc-card {
        display: flex;
        gap: 24px;
        align-items: flex-start;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        padding: 28px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(16px);
        position: relative;
        overflow: hidden;
    }

    [data-theme="dark"] .svc-card {
        background: rgba(255, 255, 255, 0.02);
        border-color: rgba(255, 255, 255, 0.05);
    }

    .svc-card::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.02), transparent);
        transform: rotate(45deg);
        transition: 0.6s;
    }

    .svc-card:hover::after {
        left: 100%;
        top: 100%;
    }

    .svc-card:hover {
        border-color: rgba(139, 195, 66, 0.25);
        transform: translateY(-6px);
        box-shadow:
            0 15px 30px -10px rgba(0, 0, 0, 0.15),
            0 5px 15px -5px rgba(0, 0, 0, 0.1);
    }

    .svc-icon-wrap {
        width: 100px;
        height: 100px;
        border-radius: 16px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        /* background: rgba(139, 195, 66, 0.06);
        border: 1px solid rgba(139, 195, 66, 0.12); */
    }

    .svc-icon-wrap img {

        object-fit: contain;
        filter: brightness(1.2);
    }

    .svc-title {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .svc-desc {
        font-size: 0.8rem;
        color: var(--text3);
        line-height: 1.65;
    }

    /* â”€â”€â”€ TESTIMONIALS â”€â”€â”€ */
    .testi-grid-wrapper {
        position: relative;
        margin-top: 50px;
    }

    .testi-grid-wrapper {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding: 20px 0;
    }

    .testi-grid-wrapper::before,
    .testi-grid-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 150px;
        z-index: 2;
        pointer-events: none;
    }

    .testi-grid-wrapper::before {
        left: 0;
        background: linear-gradient(to right, var(--bg), transparent);
    }

    .testi-grid-wrapper::after {
        right: 0;
        background: linear-gradient(to left, var(--bg), transparent);
    }

    .testi-grid {
        display: flex;
        gap: 24px;
        width: max-content;
        animation: testiScroll 40s linear infinite;
    }

    @keyframes testiScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-50% - 12px));
        }
    }

    .testi-grid:hover {
        animation-play-state: paused;
    }

    .testi-card {
        flex: 0 0 380px;
        background: var(--bg2);
        border: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border-radius: 16px;
        padding: 24px;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }

    [data-theme="dark"] .testi-card {
        background: rgba(4, 16, 32, 0.85);
        border-color: rgba(255, 255, 255, 0.07);
        box-shadow: none;
    }

    /* Scrollbar styles removed as grid is now auto-scrolling */

    /* Updated card styles integrated above */

    @media (max-width: 1100px) {
        .testi-card {
            flex: 0 0 320px;
            padding: 24px;
        }
    }

    @media (max-width: 768px) {
        .testi-card {
            flex: 0 0 280px;
            padding: 20px;
        }

        .testi-grid {
            gap: 16px;
            animation-duration: 30s;
        }

        @keyframes testiScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-50% - 8px));
            }
        }
    }

    .testi-card::before {
        content: '"';
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 4rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 900;
        color: rgba(139, 195, 66, 0.06);
        line-height: 1;
    }

    .testi-card:hover {
        border-color: rgba(139, 195, 66, 0.15);
        transform: translateY(-3px);
    }

    .stars {
        color: var(--gold);
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }

    .testi-text {
        font-size: 0.83rem;
        color: var(--text2);
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .testi-author {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        position: relative;
    }

    [data-theme="light"] .testi-author {
        border-top-color: rgba(0, 0, 0, 0.05);
    }

    .testi-author::before {
        content: '';
        position: absolute;
        inset: -12px -24px -24px;
        background: linear-gradient(to bottom, transparent, rgba(139, 195, 66, 0.02));
        z-index: -1;
        border-radius: 0 0 16px 16px;
        transition: opacity 0.3s;
        opacity: 0;
    }

    .testi-card:hover .testi-author::before {
        opacity: 1;
    }

    .testi-av {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        flex-shrink: 0;
        background: var(--bg3);
        border: 2px solid rgba(139, 195, 66, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.65rem;
        font-weight: 700;
        color: var(--emerald);
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .testi-name {
        font-weight: 700;
        font-size: 0.88rem;
        color: var(--heading);
        letter-spacing: -0.01em;
    }

    .testi-role {
        font-size: 0.72rem;
        color: var(--text3);
    }

    /* â”€â”€â”€ CONTACT â”€â”€â”€ */
    .contact-section {
        background: var(--bg1);
        border-top: 1px solid var(--border);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
        align-items: start;
    }

    /* Hero sections styles moved up */

    .contact-info-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 30px;
    }

    .contact-info-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        font-size: 0.85rem;
        color: var(--text2);
    }

    .ci-icon {
        width: 60px;
        height: 60px;
        border-radius: 9px;
        flex-shrink: 0;
        background: rgba(139, 195, 66, 0.08);
        border: 1px solid rgba(139, 195, 66, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
    }

    .contact-form {
        background: var(--bg2);
        border: 1px solid var(--border);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
        border-radius: 20px;
        padding: 24px;
    }

    [data-theme="dark"] .contact-form {
        background: rgba(4, 16, 32, 0.85);
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: none;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .form-field {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 14px;
    }

    .form-field label {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--text2);
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .form-field input,
    .form-field textarea {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 14px 18px;
        color: var(--text);
        font-family: inherit;
        font-size: 0.9rem;
        transition: all 0.3s;
        outline: none;
    }

    .form-field input:focus,
    .form-field textarea:focus {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--emerald);
        box-shadow: 0 0 20px rgba(139, 195, 66, 0.1);
    }

    [data-theme="light"] .form-field input,
    [data-theme="light"] .form-field textarea {
        background: #f1f5f9;
        border-color: rgba(0, 0, 0, 0.1);
    }

    [data-theme="light"] .form-field input:focus,
    [data-theme="light"] .form-field textarea:focus {
        background: #ffffff;
        border-color: var(--emerald);
    }

    .form-field textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-feedback {
        padding: 14px 18px;
        border-radius: 10px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .form-feedback--success {
        background: rgba(139, 195, 66, 0.1);
        border: 1px solid rgba(139, 195, 66, 0.35);
        color: var(--emerald);
    }

    .form-feedback--error {
        background: rgba(255, 90, 90, 0.08);
        border: 1px solid rgba(255, 90, 90, 0.3);
        color: #ff6b6b;
    }

    [data-theme="light"] .form-feedback--success {
        background: rgba(118, 165, 52, 0.08);
        color: #5a8a1e;
    }

    [data-theme="light"] .form-feedback--error {
        background: rgba(220, 50, 50, 0.06);
        color: #cc3333;
    }

    .btn-submit:disabled {
        opacity: 0.65;
        cursor: not-allowed;
    }

    .btn-submit {
        width: 100%;
        max-width: 280px;
        padding: 18px;
        background: linear-gradient(var(--bg2), var(--bg2)) padding-box, var(--grad) border-box;
        color: var(--heading);
        border: 2px solid transparent;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 800;
        font-family: 'Outfit', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        cursor: pointer;
        margin-top: 20px;
        box-shadow: 0 4px 20px rgba(139, 195, 66, 0.1);
        transition: all 0.3s;
    }

    .btn-submit:hover:not(:disabled) {
        background: var(--grad);
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 0 60px rgba(139, 195, 66, 0.4);
    }

    /* â”€â”€â”€ FOOTER â”€â”€â”€ */
    footer {
        position: relative;
        z-index: 1;
        background: var(--bg);
        border-top: 1px solid var(--border);
        padding: 30px 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-brand {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .logo-mark {
        width: 42px;
        height: 42px;
        background: var(--grad);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        color: #020c16;
        font-size: 0.7rem;
        box-shadow: var(--glow-e);
    }

    .footer-logo {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 1rem;
        letter-spacing: -0.03em;
    }

    .footer-logo em {
        color: var(--emerald);
        font-style: normal;
    }

    .footer-links {
        display: flex;
        gap: 28px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        font-size: 0.8rem;
        color: var(--text3);
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: var(--emerald);
    }

    .footer-copy {
        font-size: 0.75rem;
        color: var(--text3);
        text-align: right;
    }

    /* â”€â”€â”€ REVEAL ANIMATIONS â”€â”€â”€ */
    .reveal {
        /* Default visible fallback; GSAP handles FROM 0 to 1 */
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

    /* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
    @media (max-width: 1100px) {
        .hero {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
            padding-top: 120px;
            min-height: auto;
            padding-bottom: 60px;
        }

        .hero-ctas {
            align-items: center;
            justify-content: center;
        }

        .hero-visual {
            max-width: 600px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 2.8rem;
        }
    }

    @media (max-width: 900px) {
        .header-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mobile-toggle {
            display: flex !important;
        }

        .desktop-actions {
            display: none;
        }

        .mobile-nav-actions {
            display: flex;
        }

        .nav-links {
            flex-direction: column;
            align-items: center;
            width: 100%;
            gap: 15px;
        }

        nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: var(--bg);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 40px;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 250;
            padding: 40px;
        }

        nav.active {
            right: 0;
        }

        nav a {
            font-size: 1.4rem;
            font-weight: 600;
            padding: 10px;
            width: auto;
            text-align: center;
        }

        .hero-visual {
            display: none;
        }

        .solutions-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .plans-grid,
        .services-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .contact-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .contact-grid>div:nth-child(1) {
            order: 2;
        }

        .contact-grid>div:nth-child(2) {
            order: 1;
        }

        .integration-section .int-grid {
            grid-template-columns: 1fr;
        }

        .int-visual.hub-spoke {
            display: none;
            /* Hub spoke visual is too complex for mobile viewport */
        }

        .p-title.em,
        .p-title.cy,
        .p-desc,
        .p-features {
            margin-right: 0;
            text-align: left;
        }

        .p-icon-wrap {
            margin: 30px auto 0 !important;
            width: 100% !important;
            max-width: 280px !important;
            display: block;
        }

        .sec-h {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 600px) {
        header {
            padding: 0 4%;
        }

        .logo img {
            height: 28px;
        }

        .theme-btn {
            width: 38px;
            height: 38px;
        }

        .hero h1 {
            font-size: 1.75rem;
        }

        .intro-label {
            font-size: 1.1rem;
        }

        .solutions-grid {
            grid-template-columns: 1fr;
        }

        .stat-block {
            padding: 20px;
        }

        .footer-links {
            flex-direction: column;
            gap: 12px;
        }

        .contact-form {
            padding: 20px 16px;
        }

        .form-row {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .form-field {
            margin-bottom: 15px;
        }

        .hero-badge {
            height: 50px;
        }
    }

    @media (max-width: 480px) {
        .hero h1 {
            font-size: 1.5rem;
        }

        .intro-tagline {
            font-size: 0.9rem;
        }

        .btn-primary {
            width: 100%;
            text-align: center;
            font-size: 0.9rem;
            padding: 14px 20px;
        }

        .mobile-nav-actions .btn-ghost,
        .mobile-nav-actions .btn-cta-sm {
            width: 100%;
            text-align: center;
        }
    }

    /* â”€â”€â”€ SCROLL TO TOP â”€â”€â”€ */
    #scrollTop {
        position: fixed;
        bottom: 24px;
        right: 24px;
        z-index: 300;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--grad);
        color: #ffffff;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 24px rgba(139, 195, 66, 0.4);
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s;
        pointer-events: none;
    }

    #scrollTop.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* --- FORM VALIDATION --- */
    .form-field input.invalid,
    .form-field textarea.invalid {
        border-color: #ff6b6b !important;
        box-shadow: 0 0 10px rgba(255, 107, 107, 0.1) !important;
    }

    .error-text {
        color: #ff6b6b;
        font-size: 0.72rem;
        font-weight: 600;
        margin-top: 0;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        display: block;
    }

    .error-text.visible {
        opacity: 1;
        max-height: 20px;
        margin-top: 4px;
    }

    [data-theme="light"] .error-text {
        color: #d32f2f;
    }

    .input-error {
        border: 1px solid #ff3b3b !important;
    }

    .error-text {
        color: #ff3b3b;
        font-size: 12px;
        margin-top: 4px;
        display: block;
    }