
        

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Utility Classes */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (min-width: 768px) {
            .container {
                padding: 0 48px;
            }
        }

        @media (min-width: 1200px) {
            .container {
                padding: 0 64px;
            }
        }

        /* Animation Classes */
        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        .reveal-delay-4 {
            transition-delay: 0.4s;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: all 0.3s var(--transition-smooth);
        }

        nav.scrolled {
            background: rgba(0, 0, 0, 0.95);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.25rem;
            font-weight: 600;
            letter-spacing: -0.03em;
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--color-primary);
        }

        .nav-links {
            display: none;
            gap: 40px;
            list-style: none;
        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
        }

        .nav-links a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--white);
        }

        .nav-cta {
            background: var(--color-primary);
            color: var(--black);
            padding: 12px 24px;
            border-radius: var(--radius-md);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s var(--transition-smooth);
            box-shadow: 0 0 30px var(--primary-glow);
        }

        .nav-cta:hover {
            background: var(--color-primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 0 50px var(--primary-glow);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 120px 0 80px;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
        }

        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.5;
            animation: float 20s ease-in-out infinite;
        }

        .orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation-delay: 0s;
            opacity: 0.35;
        }

        .orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            animation-delay: -7s;
            opacity: 0.3;
        }

        .orb-3 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(230, 25, 25, 0.25) 0%, transparent 70%);
            top: 40%;
            left: 30%;
            animation-delay: -14s;
            opacity: 0.3;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            25% {
                transform: translate(50px, -50px) scale(1.1);
            }

            50% {
                transform: translate(-30px, 30px) scale(0.95);
            }

            75% {
                transform: translate(-50px, -30px) scale(1.05);
            }
        }

        /* 3D Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(10px);
            padding: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: transform 0.1s ease-out;
        }

        .floating-element img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            opacity: 0.9;
        }

        .float-1 {
            width: 80px;
            height: 80px;
            top: 15%;
            left: 8%;
            animation: floatElement 15s ease-in-out infinite;
        }

        .float-2 {
            width: 100px;
            height: 100px;
            top: 25%;
            right: 10%;
            animation: floatElement 18s ease-in-out infinite;
            animation-delay: -3s;
        }

        .float-3 {
            width: 70px;
            height: 70px;
            bottom: 30%;
            left: 12%;
            animation: floatElement 20s ease-in-out infinite;
            animation-delay: -6s;
        }

        .float-4 {
            width: 90px;
            height: 90px;
            bottom: 20%;
            right: 8%;
            animation: floatElement 16s ease-in-out infinite;
            animation-delay: -9s;
        }

        .float-5 {
            width: 60px;
            height: 60px;
            top: 50%;
            left: 5%;
            animation: floatElement 22s ease-in-out infinite;
            animation-delay: -12s;
        }

        .float-6 {
            width: 75px;
            height: 75px;
            top: 60%;
            right: 5%;
            animation: floatElement 19s ease-in-out infinite;
            animation-delay: -15s;
        }

        @media (max-width: 768px) {
            .floating-element {
                display: none;
            }

            .float-2,
            .float-4 {
                display: block;
                width: 60px;
                height: 60px;
            }
        }

        @keyframes floatElement {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            25% {
                transform: translateY(-20px) rotate(5deg);
            }

            50% {
                transform: translateY(10px) rotate(-3deg);
            }

            75% {
                transform: translateY(-15px) rotate(2deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1000px;
            padding: 0 24px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-subtle);
            border: 1px solid rgba(230, 25, 25, 0.15);
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            color: var(--color-primary);
            margin-bottom: 32px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 500;
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--color-primary);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(1.2);
            }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 50%, var(--white) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            color: var(--gray-400);
            max-width: 600px;
            margin: 0 auto 48px;
            line-height: 1.7;
            font-weight: 400;
        }

        .hero-cta-group {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            justify-content: center;
        }

        @media (min-width: 480px) {
            .hero-cta-group {
                flex-direction: row;
            }
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--color-primary);
            color: var(--black);
            padding: 16px 32px;
            border-radius: var(--radius-md);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s var(--transition-smooth);
            box-shadow: 0 0 40px var(--primary-glow);
        }

        .btn-primary:hover {
            background: var(--color-primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 0 60px var(--primary-glow);
        }

        .btn-primary svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s var(--transition-smooth);
        }

        .btn-primary:hover svg {
            transform: translateX(4px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: transparent;
            color: var(--white);
            padding: 16px 32px;
            border-radius: var(--radius-md);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            border: 1px solid var(--gray-700);
            transition: all 0.3s var(--transition-smooth);
        }

        .btn-secondary:hover {
            background: var(--gray-800);
            border-color: var(--gray-600);
            transform: translateY(-2px);
        }

        /* Grid Pattern Overlay */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: 0;
        }

        /* Social Proof Section */
        .social-proof {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
        }

        .social-proof-label {
            text-align: center;
            font-size: 0.85rem;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 40px;
            font-weight: 500;
        }

        .logo-slider {
            display: flex;
            animation: scroll 30s linear infinite;
        }

        .logo-track {
            display: flex;
            gap: 80px;
            align-items: center;
            padding: 0 40px;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .partner-logo {
            height: 36px;
            opacity: 0.5;
            filter: grayscale(100%) brightness(2);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .partner-logo:hover {
            opacity: 1;
            filter: grayscale(0%) brightness(1);
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gray-500);
            white-space: nowrap;
            letter-spacing: -0.02em;
        }

        /* Case Studies Section */
        .case-studies {
            padding: 140px 0;
            background: var(--black-light);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--color-primary);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .section-tag::before,
        .section-tag::after {
            content: '';
            width: 30px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--color-primary));
        }

        .section-tag::after {
            background: linear-gradient(90deg, var(--color-primary), transparent);
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--gray-400);
            max-width: 600px;
            margin: 0 auto;
        }

        .cases-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }

        @media (min-width: 768px) {
            .cases-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .case-card {
            background: linear-gradient(145deg, var(--black-medium) 0%, var(--black) 100%);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-lg);
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s var(--transition-smooth);
        }

        .case-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-primary-hover));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .case-card:hover {
            transform: translateY(-4px);
            border-color: rgba(230, 25, 25, 0.15);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--primary-glow);
        }

        .case-card:hover::before {
            opacity: 1;
        }

        .case-industry {
            display: inline-block;
            background: var(--primary-subtle);
            color: var(--color-primary);
            padding: 6px 12px;
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .case-title {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .case-description {
            color: var(--gray-400);
            font-size: 0.95rem;
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .case-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .stat {
            text-align: left;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-primary);
            line-height: 1;
            margin-bottom: 4px;
            font-variant-numeric: tabular-nums;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* How It Works Section */
        .how-it-works {
            padding: 140px 0;
            background: var(--black);
            position: relative;
        }

        .how-it-works::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: linear-gradient(180deg, transparent, var(--gray-800), transparent);
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 80px;
            position: relative;
        }

        .process-step {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
        }

        @media (min-width: 768px) {
            .process-step {
                grid-template-columns: 1fr 1fr;
            }

            .process-step:nth-child(even) .step-content {
                order: 2;
            }

            .process-step:nth-child(even) .step-visual {
                order: 1;
            }
        }

        .step-content {
            padding: 20px;
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
            color: var(--black);
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: var(--radius-md);
            margin-bottom: 24px;
            box-shadow: 0 10px 30px var(--primary-glow);
        }

        .step-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .step-description {
            color: var(--gray-400);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .step-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .step-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--gray-300);
            font-size: 0.95rem;
        }

        .step-features li::before {
            content: '';
            width: 18px;
            height: 18px;
            background: var(--primary-subtle);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2310b981'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 11px;
        }

        .step-visual {
            position: relative;
            aspect-ratio: 4/3;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: linear-gradient(145deg, var(--black-medium) 0%, var(--black-soft) 100%);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .step-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
            transition: all 0.5s var(--transition-smooth);
        }

        .step-visual:hover img {
            transform: scale(1.05);
            opacity: 1;
        }

        .step-visual::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 50%, rgba(230, 25, 25, 0.08) 100%);
            pointer-events: none;
        }

        /* Services Section */
        .services {
            padding: 140px 0;
            background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        @media (min-width: 640px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .service-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.01) 100%);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-lg);
            padding: 36px 28px;
            transition: all 0.4s var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at top left, var(--primary-glow) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-3px);
            border-color: rgba(230, 25, 25, 0.12);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary-subtle) 0%, transparent 100%);
            border: 1px solid rgba(230, 25, 25, 0.15);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .service-icon svg {
            width: 24px;
            height: 24px;
            color: var(--color-primary);
        }

        .service-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .service-description {
            color: var(--gray-400);
            font-size: 0.95rem;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        /* CTA Section */
        .cta-section {
            padding: 140px 0;
            background: var(--black);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
            opacity: 0.5;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .cta-subtitle {
            font-size: 1.15rem;
            color: var(--gray-400);
            margin-bottom: 48px;
            line-height: 1.7;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: var(--color-primary);
            color: var(--black);
            padding: 18px 40px;
            border-radius: var(--radius-md);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s var(--transition-smooth);
            box-shadow: 0 0 60px var(--primary-glow);
        }

        .cta-button:hover {
            background: var(--color-primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 0 80px rgba(230, 25, 25, 0.25);
        }

        .cta-button svg {
            width: 24px;
            height: 24px;
            transition: transform 0.3s var(--transition-smooth);
        }

        .cta-button:hover svg {
            transform: translateX(4px);
        }

        .cta-note {
            margin-top: 24px;
            font-size: 0.9rem;
            color: var(--gray-500);
        }

        .cta-note strong {
            color: var(--gray-400);
        }

        /* Footer */
        footer {
            padding: 60px 0 40px;
            background: var(--black-light);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            text-align: center;
        }

        @media (min-width: 768px) {
            .footer-content {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

        .footer-logo {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--white);
            letter-spacing: -0.03em;
        }

        .footer-logo span {
            color: var(--color-primary);
        }

        .footer-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-copyright {
            color: var(--gray-600);
            font-size: 0.85rem;
        }

        /* Scroll Progress Indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-primary-hover));
            z-index: 9999;
            transform-origin: left;
            transform: scaleX(0);
        }

        /* Custom Cursor Glow (Desktop Only) */
        .cursor-glow {
            position: fixed;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(230, 25, 25, 0.06) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s ease;
            display: none;
        }

        @media (min-width: 1024px) {
            .cursor-glow {
                display: block;
            }
        }
    
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
    .process-grid { padding-bottom: 4rem !important; }
    .process-card { text-align: center !important; display: flex; flex-direction: column; align-items: center; }
    .process-card ul { display: inline-block; text-align: left; margin: 0 auto; }
    .process-step-number { left: 50% !important; transform: translateX(-50%) !important; text-align: center; }
}
