
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --white: #FAFBFF;
            --bg: #F0F2FA;
            --bg-warm: #F5F3FF;
            --glass: rgba(255, 255, 255, 0.65);
            --glass-border: rgba(255, 255, 255, 0.85);
            --primary: #4F46E5;
            --primary-light: #818CF8;
            --primary-dark: #3730A3;
            --accent: #06B6D4;
            --accent-warm: #8B5CF6;
            --text: #1E1B4B;
            --text-muted: #64648B;
            --text-light: #9795B5;
            --gradient-1: linear-gradient(135deg, #4F46E5 0%, #06B6D4 50%, #8B5CF6 100%);
            --gradient-2: linear-gradient(135deg, #E0E7FF 0%, #F0FDFA 50%, #EDE9FE 100%);
            --gradient-3: linear-gradient(160deg, #4F46E5, #7C3AED, #06B6D4);
            --shadow-sm: 0 2px 8px rgba(79, 70, 229, 0.06);
            --shadow-md: 0 8px 30px rgba(79, 70, 229, 0.08);
            --shadow-lg: 0 20px 60px rgba(79, 70, 229, 0.1);
            --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.15);
            --radius: 20px;
            --radius-sm: 12px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-label::before {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--gradient-1);
            border-radius: 2px;
        }

        .section-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 700;
            line-height: 1.15;
            color: var(--text);
            margin-bottom: 20px;
        }

        .section-title span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 560px;
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        .stagger-1 {
            transition-delay: 0.05s;
        }

        .stagger-2 {
            transition-delay: 0.12s;
        }

        .stagger-3 {
            transition-delay: 0.19s;
        }

        .stagger-4 {
            transition-delay: 0.26s;
        }

        .stagger-5 {
            transition-delay: 0.33s;
        }

        .stagger-6 {
            transition-delay: 0.4s;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 16px 0;
            transition: all 0.4s ease;
        }

        .navbar.scrolled {
            background: rgba(240, 242, 250, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: var(--shadow-sm);
            padding: 10px 0;
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 1.35rem;
            color: var(--text);
        }

        .nav-logo-icon {
            width: 38px;
            height: 38px;
            background: var(--gradient-1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .nav-logo-icon::after {
            content: 'AI';
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            font-size: 0.85rem;
            color: white;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.92rem;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 10px 24px;
            background: var(--gradient-1);
            color: white !important;
            border-radius: 50px;
            font-weight: 600 !important;
            font-size: 0.9rem !important;
            transition: transform 0.3s, box-shadow 0.3s !important;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
        }

        .nav-cta:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 6px 25px rgba(79, 70, 229, 0.4) !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }

        .hamburger span {
            width: 26px;
            height: 2.5px;
            background: var(--text);
            border-radius: 4px;
            transition: all 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100dvh;
            background: rgba(240, 242, 250, 0.97);
            backdrop-filter: blur(30px);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 28px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .mobile-nav.open {
            opacity: 1;
            pointer-events: all;
        }

        .mobile-nav a {
            text-decoration: none;
            color: var(--text);
            font-family: 'Sora', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            transition: color 0.3s;
        }

        .mobile-nav a:hover {
            color: var(--primary);
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, #F5F3FF 0%, #E8ECF9 40%, #F0F2FA 100%);
            padding-top: 80px;
        }

        .hero-bg-grid {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(79, 70, 229, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(79, 70, 229, 0.04) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
        }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.35;
            animation: orbFloat 8s ease-in-out infinite;
        }

        .hero-orb-1 {
            width: 500px;
            height: 500px;
            background: var(--primary-light);
            top: -10%;
            right: -5%;
        }

        .hero-orb-2 {
            width: 350px;
            height: 350px;
            background: var(--accent);
            bottom: 10%;
            left: -5%;
            animation-delay: -3s;
        }

        .hero-orb-3 {
            width: 250px;
            height: 250px;
            background: var(--accent-warm);
            top: 40%;
            right: 30%;
            animation-delay: -5s;
        }

        @keyframes orbFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(20px, -30px) scale(1.05);
            }

            66% {
                transform: translate(-15px, 20px) scale(0.95);
            }
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: var(--glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            color: var(--primary);
            letter-spacing: 1px;
            margin-bottom: 24px;
            opacity: 0;
            animation: fadeSlideUp 0.8s 0.2s forwards;
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background: #22C55E;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(1.3);
            }
        }

        .hero-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(2.5rem, 5.5vw, 4.2rem);
            font-weight: 800;
            line-height: 1.08;
            margin-bottom: 24px;
            opacity: 0;
            animation: fadeSlideUp 0.8s 0.35s forwards;
        }

        .hero-title .line {
            display: block;
        }

        .hero-title .gradient-text {
            background: var(--gradient-3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-desc {
            font-size: 1.15rem;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 480px;
            margin-bottom: 36px;
            opacity: 0;
            animation: fadeSlideUp 0.8s 0.5s forwards;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeSlideUp 0.8s 0.65s forwards;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 50px;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(79, 70, 229, 0.4);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            background: var(--glass);
            backdrop-filter: blur(10px);
            color: var(--text);
            border: 1px solid rgba(79, 70, 229, 0.15);
            border-radius: 50px;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: white;
            border-color: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            animation: fadeSlideUp 1s 0.5s forwards;
        }

        .hero-3d-container {
            width: 100%;
            aspect-ratio: 1;
            max-width: 520px;
            position: relative;
        }

        .neural-ring {
            position: absolute;
            border-radius: 50%;
            border: 1.5px solid rgba(79, 70, 229, 0.12);
            animation: ringRotate 20s linear infinite;
        }

        .neural-ring:nth-child(1) {
            inset: 5%;
        }

        .neural-ring:nth-child(2) {
            inset: 15%;
            animation-direction: reverse;
            animation-duration: 25s;
            border-color: rgba(6, 182, 212, 0.12);
        }

        .neural-ring:nth-child(3) {
            inset: 25%;
            animation-duration: 30s;
            border-color: rgba(139, 92, 246, 0.12);
        }

        .neural-ring .node {
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--gradient-1);
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
        }

        .neural-ring:nth-child(1) .node:nth-child(1) {
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .neural-ring:nth-child(1) .node:nth-child(2) {
            bottom: 0;
            left: 50%;
            transform: translate(-50%, 50%);
        }

        .neural-ring:nth-child(1) .node:nth-child(3) {
            top: 50%;
            right: 0;
            transform: translate(50%, -50%);
        }

        .neural-ring:nth-child(2) .node:nth-child(1) {
            top: 10%;
            right: 10%;
        }

        .neural-ring:nth-child(2) .node:nth-child(2) {
            bottom: 10%;
            left: 10%;
        }

        .neural-ring:nth-child(2) .node {
            background: linear-gradient(135deg, #06B6D4, #8B5CF6);
            box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
        }

        .neural-ring:nth-child(3) .node:nth-child(1) {
            top: 5%;
            left: 30%;
        }

        .neural-ring:nth-child(3) .node {
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, #8B5CF6, #EC4899);
            box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
        }

        @keyframes ringRotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .hero-core {
            position: absolute;
            inset: 32%;
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-glow), inset 0 0 40px rgba(255, 255, 255, 0.5);
            animation: corePulse 4s ease-in-out infinite;
        }

        .hero-core svg {
            width: 50%;
            height: 50%;
        }

        @keyframes corePulse {

            0%,
            100% {
                box-shadow: var(--shadow-glow), inset 0 0 40px rgba(255, 255, 255, 0.5);
            }

            50% {
                box-shadow: 0 0 60px rgba(79, 70, 229, 0.25), inset 0 0 50px rgba(255, 255, 255, 0.6);
            }
        }

        .floating-card {
            position: absolute;
            background: var(--glass);
            backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-sm);
            padding: 14px 18px;
            box-shadow: var(--shadow-md);
            animation: floatCard 6s ease-in-out infinite;
            z-index: 3;
        }

        .floating-card-1 {
            top: 12%;
            right: -5%;
        }

        .floating-card-2 {
            bottom: 15%;
            left: -5%;
            animation-delay: -2s;
        }

        .floating-card-3 {
            bottom: 30%;
            right: -10%;
            animation-delay: -4s;
        }

        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        .floating-card .fc-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            letter-spacing: 1px;
            color: var(--text-light);
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .floating-card .fc-value {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text);
        }

        .floating-card .fc-value span {
            color: var(--primary);
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            opacity: 0;
            animation: fadeSlideUp 0.8s 1.2s forwards;
        }

        .scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--primary), transparent);
            position: relative;
            overflow: hidden;
        }

        .scroll-line::after {
            content: '';
            position: absolute;
            top: -100%;
            width: 100%;
            height: 50%;
            background: var(--primary);
            animation: scrollDown 2s ease-in-out infinite;
        }

        @keyframes scrollDown {
            0% {
                top: -50%;
            }

            100% {
                top: 150%;
            }
        }

        .scroll-text {
            font-family: 'Space Mono', monospace;
            font-size: 0.6rem;
            letter-spacing: 2px;
            color: var(--text-light);
            text-transform: uppercase;
        }

        /* ===== ABOUT ===== */
        .about {
            padding: 120px 0;
            background: var(--white);
        }

        .about .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-visual {
            position: relative;
            height: 480px;
        }

        .about-img-box {
            width: 85%;
            height: 100%;
            background: var(--gradient-2);
            border-radius: var(--radius);
            position: relative;
            overflow: hidden;
        }

        .about-pattern {
            position: absolute;
            inset: 0;
            background-image: url('../images/Newmont-1.jpg');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .about-floating-block {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: white;
            border-radius: var(--radius-sm);
            padding: 24px;
            box-shadow: var(--shadow-lg);
            z-index: 2;
        }

        .about-floating-block .afb-number {
            font-family: 'Sora', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-floating-block .afb-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 32px;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px;
            background: var(--bg);
            border-radius: var(--radius-sm);
            transition: all 0.3s;
        }

        .about-feature:hover {
            background: white;
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .about-feature .af-icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            background: var(--gradient-1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-feature .af-text h4 {
            font-weight: 600;
            font-size: 0.92rem;
            margin-bottom: 2px;
        }

        .about-feature .af-text p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

        .icon-svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .service-icon .icon-svg {
            color: var(--primary);
        }

        .service-card:hover .service-icon .icon-svg {
            color: white;
        }

        /* ===== SERVICES ===== */
        .services {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.06), transparent 70%);
            border-radius: 50%;
        }

        .services-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 64px;
        }

        .services-header .section-label {
            justify-content: center;
        }

        .services-header .section-desc {
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            background: white;
            border-radius: var(--radius);
            padding: 36px 28px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid rgba(79, 70, 229, 0.06);
            cursor: default;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 56px;
            height: 56px;
            background: var(--gradient-2);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.4s;
        }

        .service-card:hover .service-icon {
            background: var(--gradient-1);
            transform: scale(1.05);
        }

        .service-card h3 {
            font-family: 'Sora', sans-serif;
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .service-card p {
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .service-tag {
            display: inline-block;
            margin-top: 16px;
            padding: 5px 12px;
            background: var(--bg);
            border-radius: 50px;
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            letter-spacing: 0.5px;
            color: var(--primary);
        }

        /* ===== PROCESS / HOW WE BUILD LABS ===== */
        .tech {
            padding: 120px 0;
            background: var(--white);
        }

        .tech .container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
        }

        .tech-visual {
            position: relative;
        }

        .tech-orbit {
            width: 100%;
            aspect-ratio: 1;
            max-width: 500px;
            margin: 0 auto;
            position: relative;
        }

        .tech-orbit-ring {
            position: absolute;
            border: 1.5px dashed rgba(79, 70, 229, 0.1);
            border-radius: 50%;
            animation: ringRotate 30s linear infinite;
        }

        .tech-orbit-ring:nth-child(1) {
            inset: 0;
        }

        .tech-orbit-ring:nth-child(2) {
            inset: 18%;
            animation-direction: reverse;
            animation-duration: 22s;
        }

        .tech-orbit-ring:nth-child(3) {
            inset: 36%;
            animation-duration: 18s;
        }

        .tech-node {
            position: absolute;
            width: 52px;
            height: 52px;
            background: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            font-size: 0.65rem;
            font-weight: 700;
            font-family: 'Space Mono', monospace;
            color: var(--primary);
            border: 1px solid rgba(79, 70, 229, 0.08);
            animation: counterRotate 30s linear infinite;
        }

        .tech-orbit-ring:nth-child(2) .tech-node {
            animation-direction: reverse;
            animation-duration: 22s;
        }

        .tech-orbit-ring:nth-child(3) .tech-node {
            animation-duration: 18s;
        }

        @keyframes counterRotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(-360deg);
            }
        }

        .tech-orbit-ring:nth-child(1) .tech-node:nth-child(1) {
            top: -26px;
            left: calc(50% - 26px);
        }

        .tech-orbit-ring:nth-child(1) .tech-node:nth-child(2) {
            bottom: -26px;
            left: calc(50% - 26px);
        }

        .tech-orbit-ring:nth-child(1) .tech-node:nth-child(3) {
            top: calc(50% - 26px);
            right: -26px;
        }

        .tech-orbit-ring:nth-child(1) .tech-node:nth-child(4) {
            top: calc(50% - 26px);
            left: -26px;
        }

        .tech-orbit-ring:nth-child(2) .tech-node:nth-child(1) {
            top: -26px;
            left: calc(50% - 26px);
        }

        .tech-orbit-ring:nth-child(2) .tech-node:nth-child(2) {
            top: calc(50% - 26px);
            right: -26px;
        }

        .tech-orbit-ring:nth-child(2) .tech-node:nth-child(3) {
            bottom: -26px;
            left: calc(50% - 26px);
        }

        .tech-orbit-ring:nth-child(3) .tech-node:nth-child(1) {
            top: -26px;
            left: calc(50% - 26px);
        }

        .tech-orbit-ring:nth-child(3) .tech-node:nth-child(2) {
            bottom: -26px;
            left: calc(50% - 26px);
        }

        .tech-center {
            position: absolute;
            inset: 42%;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            font-size: 0.8rem;
            box-shadow: var(--shadow-glow);
            animation: corePulse 3s ease-in-out infinite;
        }

        .tech-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 32px;
        }

        .tech-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 20px;
            background: var(--bg);
            border-radius: var(--radius-sm);
            transition: all 0.3s;
        }

        .tech-item:hover {
            background: white;
            box-shadow: var(--shadow-md);
            transform: translateX(8px);
        }

        .tech-item .ti-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            background: var(--gradient-2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .tech-item .ti-info h4 {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 2px;
        }

        .tech-item .ti-info p {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        /* ===== STATS ===== */
        .stats {
            padding: 100px 0;
            overflow: hidden;
        }

        .stats-inner {
            background: var(--gradient-1);
            border-radius: var(--radius);
            padding: 80px 40px;
            position: relative;
            overflow: hidden;
        }

        .stats-inner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.07) 1px, transparent 0);
            background-size: 30px 30px;
        }

        .stats-inner::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
            border-radius: 50%;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
            color: white;
        }

        .stat-number {
            font-family: 'Sora', sans-serif;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.95rem;
            opacity: 0.85;
        }

        .stat-divider {
            width: 40px;
            height: 2px;
            background: rgba(255, 255, 255, 0.3);
            margin: 12px auto 0;
            border-radius: 2px;
        }

        /* ===== PROGRAMS ===== */
        .programs {
            padding: 120px 0;
            background: var(--white);
        }

        .programs-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 64px;
        }

        .programs-header .section-label {
            justify-content: center;
        }

        .programs-header .section-desc {
            margin: 0 auto;
        }

        .programs-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .program-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid rgba(79, 70, 229, 0.06);
            transition: all 0.4s;
            cursor: default;
        }

        .program-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .program-card:first-child {
            grid-row: span 2;
        }

        .pv-visual {
            height: 200px;
            background: var(--gradient-2);
            position: relative;
            overflow: hidden;
        }

        .program-card:first-child .pv-visual {
            height: 280px;
        }

        .pv-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.5;
        }

        .pv-pattern.neural {
            background: radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 50%), radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
        }

        .pv-pattern.wave {
            background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(79, 70, 229, 0.04) 10px, rgba(79, 70, 229, 0.04) 20px);
        }

        .pv-pattern.mesh {
            background-image: linear-gradient(rgba(79, 70, 229, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(79, 70, 229, 0.06) 1px, transparent 1px);
            background-size: 20px 20px;
        }

        .pv-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 64px;
            height: 64px;
            background: var(--glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: var(--shadow-md);
        }

        .pv-content {
            padding: 28px;
        }

        .pv-tag {
            display: inline-block;
            padding: 4px 10px;
            background: var(--bg);
            border-radius: 6px;
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            letter-spacing: 1px;
            color: var(--primary);
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .pv-content h3 {
            font-family: 'Sora', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .pv-content p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ===== PROJECTS / SUCCESS STORIES ===== */
        .projects {
            padding: 120px 0;
        }

        .projects-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 64px;
            flex-wrap: wrap;
            gap: 24px;
        }

        .projects-scroll {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .project-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.4s;
            border: 1px solid rgba(79, 70, 229, 0.06);
            cursor: default;
        }

        .project-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .pj-image {
            height: 200px;
            position: relative;
            overflow: hidden;
        }

        .pj-image-bg {
            width: 100%;
            height: 100%;
            transition: transform 0.6s;
        }

        .project-card:hover .pj-image-bg {
            transform: scale(1.05);
        }

        .pj-image-bg.education {
            background: linear-gradient(135deg, #DBEAFE, #E0E7FF, #EDE9FE);
        }

        .pj-image-bg.corporate {
            background: linear-gradient(135deg, #D1FAE5, #CFFAFE, #DBEAFE);
        }

        .pj-image-bg.government {
            background: linear-gradient(135deg, #FEF3C7, #FDE68A, #FBBF24);
        }

        .pj-image-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
        }

        .pj-content {
            padding: 24px;
        }

        .pj-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .pj-category {
            padding: 4px 10px;
            background: var(--bg);
            border-radius: 6px;
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            letter-spacing: 1px;
            color: var(--primary);
            text-transform: uppercase;
        }

        .pj-location {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .pj-content h3 {
            font-family: 'Sora', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .pj-content p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .pj-results {
            display: flex;
            gap: 20px;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--bg);
        }

        .pj-result .pjr-value {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--primary);
        }

        .pj-result .pjr-label {
            font-size: 0.72rem;
            color: var(--text-light);
        }

        /* ===== WHY US ===== */
        .why-us {
            padding: 120px 0;
            background: var(--white);
        }

        .why-us-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 64px;
        }

        .why-us-header .section-label {
            justify-content: center;
        }

        .why-us-header .section-desc {
            margin: 0 auto;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .why-card {
            text-align: center;
            padding: 32px 20px;
            background: white;
            border-radius: var(--radius);
            border: 1px solid rgba(79, 70, 229, 0.04);
            transition: all 0.4s;
            cursor: default;
        }

        .why-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .why-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: var(--gradient-2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            position: relative;
        }

        .why-icon::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            border: 2px solid transparent;
            background: var(--gradient-1) border-box;
            mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            -webkit-mask-composite: xor;
        }

        .why-card h3 {
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .why-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            padding: 120px 0;
            overflow: hidden;
        }

        .testimonials-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 64px;
        }

        .testimonials-header .section-label {
            justify-content: center;
        }

        .testimonials-header .section-desc {
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            background: white;
            border-radius: var(--radius);
            padding: 32px;
            border: 1px solid rgba(79, 70, 229, 0.06);
            transition: all 0.4s;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .tc-quote-icon {
            font-family: 'Sora', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            line-height: 1;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }

        .tc-text {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 24px;
            font-style: italic;
        }

        .tc-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .tc-author-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--gradient-2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--primary);
        }

        .tc-author-info h4 {
            font-weight: 600;
            font-size: 0.9rem;
        }

        .tc-author-info p {
            font-size: 0.78rem;
            color: var(--text-light);
        }

        .tc-stars {
            display: flex;
            gap: 2px;
            margin-bottom: 16px;
        }

        .tc-stars span {
            color: #FBBF24;
            font-size: 0.9rem;
        }

        /* ===== GLOBAL PRESENCE ===== */
        .global {
            padding: 80px 0;
        }

        .global-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .global-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 28px;
            background: white;
            border-radius: 60px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s;
        }

        .global-item:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .global-item .gi-flag {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            background: var(--gradient-2);
        }

        .global-item .gi-info h4 {
            font-weight: 600;
            font-size: 0.92rem;
        }

        .global-item .gi-info p {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ===== CTA ===== */
        .cta {
            padding: 120px 0;
            background: var(--white);
        }

        .cta-inner {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            padding: 80px 40px;
            position: relative;
        }

        .cta-inner::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: var(--radius);
            padding: 2px;
            background: var(--gradient-1);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            -webkit-mask-composite: xor;
            opacity: 0.5;
        }

        .cta-inner .section-label {
            justify-content: center;
        }

        .cta-inner .section-title {
            margin-bottom: 16px;
        }

        .cta-inner .section-desc {
            margin: 0 auto 36px;
            text-align: center;
        }

        .cta-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cta-note {
            margin-top: 24px;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* ===== FOOTER ===== */
        .footer {
            padding: 80px 0 40px;
            background: var(--text);
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand .nav-logo {
            color: white;
            margin-bottom: 16px;
        }

        .footer-brand .nav-logo-icon {
            background: rgba(255, 255, 255, 0.1);
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            max-width: 300px;
            margin-bottom: 20px;
        }

        .footer-socials {
            display: flex;
            gap: 10px;
        }

        .footer-socials a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.07);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .footer-socials a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .footer-column h4 {
            color: white;
            font-family: 'Sora', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-column a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: white;
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p {
            font-size: 0.82rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.82rem;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: white;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .hero-desc {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-actions {
                justify-content: center;
            }

            .hero-visual {
                max-width: 400px;
                margin: 0 auto;
            }

            .floating-card-1 {
                right: 0;
            }

            .floating-card-2 {
                left: 0;
            }

            .floating-card-3 {
                right: 0;
            }

            .about .container {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .about-visual {
                height: 360px;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .tech .container {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .tech-orbit {
                max-width: 380px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .programs-showcase {
                grid-template-columns: 1fr;
            }

            .program-card:first-child {
                grid-row: auto;
            }

            .projects-scroll {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-nav {
                display: flex;
            }

            .hero {
                padding-top: 100px;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .hero-3d-container {
                max-width: 300px;
            }

            .floating-card-3 {
                display: none;
            }

            .about-visual {
                height: 280px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .stats-inner {
                padding: 60px 24px;
            }

            .projects-scroll {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: 1fr 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .cta-inner {
                padding: 60px 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .global-inner {
                gap: 16px;
            }

            .global-item {
                padding: 12px 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.85rem;
            }

            .hero-actions {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .hero-3d-container {
                max-width: 260px;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }
        }