/* roulang page: index */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Rajdhani:wght@400;500;600;700&display=swap');

        :root {
            --primary: #00e699;
            --primary-dark: #00b87a;
            --secondary: #1a6af0;
            --accent-gold: #f0c040;
            --accent-rose: #ff4d6a;
            --accent-cyan: #00e5ff;
            --accent-lime: #a0ff40;
            --bg-deep: #0a0a0f;
            --bg-card: #141420;
            --bg-surface: #1a1a2e;
            --text-primary: #f0f0f5;
            --text-secondary: #b0b0c0;
            --text-muted: #707088;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-glow: rgba(0, 230, 153, 0.3);
            --radius-sm: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.25rem;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
            --shadow-glow: 0 0 40px rgba(0, 230, 153, 0.25), 0 0 80px rgba(0, 230, 153, 0.1);
            --shadow-glow-blue: 0 0 40px rgba(26, 106, 240, 0.3), 0 0 80px rgba(26, 106, 240, 0.12);
            --transition-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 280ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background-color: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(ellipse at 20% 20%, rgba(0, 230, 153, 0.04) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 60%, rgba(26, 106, 240, 0.05) 0%, transparent 60%),
                radial-gradient(ellipse at 50% 80%, rgba(240, 192, 64, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            html {
                scroll-padding-top: 64px;
            }
        }

        /* Navigation */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 15, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
            transition: all var(--transition-base);
            height: 72px;
            display: flex;
            align-items: center;
        }

        .site-header.scrolled {
            background: rgba(10, 10, 15, 0.95);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
            border-bottom-color: var(--border-glow);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            text-decoration: none;
            color: var(--text-primary);
            font-family: 'Rajdhani', system-ui, sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: 0.03em;
            transition: all var(--transition-fast);
            position: relative;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 900;
            color: #0a0a0f;
            box-shadow: 0 0 20px rgba(0, 230, 153, 0.4);
            transition: all var(--transition-base);
        }

        .logo-link:hover .logo-icon {
            box-shadow: 0 0 32px rgba(0, 230, 153, 0.6);
            transform: scale(1.05);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .logo-text .brand-name {
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-text .brand-tagline {
            font-size: 0.6rem;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-family: 'Inter', system-ui, sans-serif;
            -webkit-text-fill-color: var(--text-muted);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            list-style: none;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
            position: relative;
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
            background: rgba(0, 230, 153, 0.08);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
        }

        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.55rem 1.4rem;
            background: linear-gradient(135deg, var(--primary) 0%, #00c885 100%);
            color: #0a0a0f !important;
            font-weight: 600;
            border-radius: 2rem;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all var(--transition-base);
            box-shadow: 0 4px 16px rgba(0, 230, 153, 0.3);
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }

        .nav-cta-btn:hover {
            box-shadow: 0 6px 24px rgba(0, 230, 153, 0.5);
            transform: translateY(-2px);
            color: #0a0a0f !important;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
        }

        .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        @media (max-width: 860px) {
            .nav-links {
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                background: rgba(10, 10, 15, 0.97);
                backdrop-filter: blur(24px);
                flex-direction: column;
                padding: 1rem;
                gap: 0.3rem;
                border-bottom: 1px solid var(--border-subtle);
                transform: translateY(-120%);
                opacity: 0;
                transition: all var(--transition-base);
                pointer-events: none;
                z-index: 999;
            }
            .nav-links.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }
            .nav-links a {
                width: 100%;
                padding: 0.75rem 1rem;
                font-size: 1rem;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .nav-cta-btn {
                width: 100%;
                justify-content: center;
                margin-top: 0.25rem;
            }
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 72px;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.35;
            filter: brightness(0.4) saturate(1.2);
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg,
                    rgba(10, 10, 15, 0.3) 0%,
                    rgba(10, 10, 15, 0.6) 30%,
                    rgba(10, 10, 15, 0.9) 70%,
                    rgba(10, 10, 15, 1) 100%),
                radial-gradient(ellipse at 50% 40%, rgba(0, 230, 153, 0.15) 0%, transparent 60%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1.2rem;
            background: rgba(0, 230, 153, 0.1);
            border: 1px solid rgba(0, 230, 153, 0.25);
            border-radius: 2rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 1.5rem;
            animation: float 6s ease-in-out infinite;
        }

        .hero-badge .live-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-rose);
            border-radius: 50%;
            animation: pulseNeon 1.5s ease-in-out infinite;
        }

        .hero-title {
            font-family: 'Rajdhani', system-ui, sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.25rem;
            letter-spacing: 0.02em;
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 50%, var(--accent-lime) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .hero-stats-row {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .hero-stat-item {
            text-align: center;
            min-width: 80px;
        }

        .hero-stat-value {
            font-family: 'Rajdhani', system-ui, sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 0.25rem;
        }

        .hero-cta-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, #00c885 100%);
            color: #0a0a0f;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 2.5rem;
            text-decoration: none;
            transition: all var(--transition-base);
            box-shadow: 0 4px 20px rgba(0, 230, 153, 0.3);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left var(--transition-slow);
        }

        .btn-primary:hover {
            box-shadow: 0 6px 28px rgba(0, 230, 153, 0.5);
            transform: translateY(-3px);
            color: #0a0a0f;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            background: transparent;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 1rem;
            border-radius: 2.5rem;
            text-decoration: none;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            transition: all var(--transition-base);
            cursor: pointer;
        }

        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(0, 230, 153, 0.05);
            box-shadow: 0 0 24px rgba(0, 230, 153, 0.15);
        }

        /* Section Styles */
        .section {
            padding: 5rem 0;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .section {
                padding: 3rem 0;
            }
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--primary);
            margin-bottom: 0.75rem;
        }

        .section-label::before {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
            box-shadow: 0 0 8px rgba(0, 230, 153, 0.6);
        }

        .section-title {
            font-family: 'Rajdhani', system-ui, sans-serif;
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: 0.02em;
            line-height: 1.2;
        }

        .section-desc {
            color: var(--text-secondary);
            font-size: 1.05rem;
            max-width: 600px;
            margin-bottom: 3rem;
            line-height: 1.7;
        }

        .text-center {
            text-align: center;
        }

        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        @media (max-width: 520px) {
            .cards-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 2rem 1.5rem;
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent-cyan), transparent);
            opacity: 0;
            transition: opacity var(--transition-base);
        }

        .feature-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow);
            transform: translateY(-4px);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card .card-icon {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-md);
            background: rgba(0, 230, 153, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 1.25rem;
            transition: all var(--transition-base);
        }

        .feature-card:hover .card-icon {
            background: rgba(0, 230, 153, 0.18);
            box-shadow: 0 0 20px rgba(0, 230, 153, 0.25);
        }

        .feature-card h3 {
            font-family: 'Rajdhani', system-ui, sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.6rem;
            letter-spacing: 0.02em;
        }

        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Service Cards with Images */
        .service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
        }

        @media (max-width: 520px) {
            .service-cards {
                grid-template-columns: 1fr;
            }
        }

        .service-card {
            background: var(--bg-card);
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-base);
        }

        .service-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .service-card .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
        }

        .service-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .service-card:hover .card-img-wrap img {
            transform: scale(1.06);
        }

        .service-card .card-img-wrap::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(transparent, var(--bg-card));
        }

        .service-card .card-body {
            padding: 1.5rem;
        }

        .service-card .card-tag {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: rgba(0, 230, 153, 0.1);
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 1rem;
            margin-bottom: 0.75rem;
            letter-spacing: 0.03em;
        }

        .service-card h3 {
            font-family: 'Rajdhani', system-ui, sans-serif;
            font-size: 1.35rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .service-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Process / Bracket */
        .process-track {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            align-items: flex-start;
        }

        .process-step {
            flex: 1;
            min-width: 180px;
            max-width: 220px;
            text-align: center;
            position: relative;
            padding: 1.5rem 1rem;
            background: var(--bg-card);
            border-radius: var(--radius-xl);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-base);
        }

        .process-step:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow);
        }

        .process-step .step-number {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
            color: #0a0a0f;
            font-weight: 700;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-family: 'Rajdhani', system-ui, sans-serif;
            box-shadow: 0 0 16px rgba(0, 230, 153, 0.35);
        }

        .process-step h4 {
            font-family: 'Rajdhani', system-ui, sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
        }

        .process-step p {
            color: var(--text-secondary);
            font-size: 0.82rem;
            line-height: 1.5;
        }

        .process-connector {
            display: flex;
            align-items: center;
            color: var(--primary);
            font-size: 1.5rem;
            padding-top: 2rem;
            opacity: 0.5;
        }

        @media (max-width: 860px) {
            .process-track {
                flex-direction: column;
                align-items: center;
            }
            .process-step {
                max-width: 100%;
                width: 100%;
            }
            .process-connector {
                transform: rotate(90deg);
                padding-top: 0.25rem;
                padding-bottom: 0.25rem;
            }
        }

        /* Data / Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.25rem;
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 1.75rem 1.25rem;
            text-align: center;
            transition: all var(--transition-base);
        }

        .stat-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow);
        }

        .stat-card .stat-value {
            font-family: 'Rajdhani', system-ui, sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-card .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* FAQ */
        .faq-list {
            max-width: 720px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item.active {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            text-align: left;
            gap: 1rem;
            transition: all var(--transition-fast);
            font-family: 'Inter', system-ui, sans-serif;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(0, 230, 153, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            transition: all var(--transition-base);
            color: var(--primary);
        }

        .faq-item.active .faq-icon {
            background: var(--primary);
            color: #0a0a0f;
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-base);
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer-inner {
            padding: 0 1.25rem 1.25rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            position: relative;
            overflow: hidden;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 3rem 2rem;
            text-align: center;
            margin: 2rem 0;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 230, 153, 0.06) 0%, transparent 60%);
            animation: scan 8s linear infinite;
            pointer-events: none;
        }

        .cta-section h2 {
            font-family: 'Rajdhani', system-ui, sans-serif;
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 700;
            margin-bottom: 0.75rem;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
            font-size: 1rem;
        }

        .cta-section .btn-primary {
            position: relative;
            z-index: 1;
            font-size: 1.05rem;
            padding: 0.9rem 2.5rem;
        }

        /* Footer */
        .site-footer {
            border-top: 1px solid var(--border-subtle);
            padding: 3rem 0 2rem;
            position: relative;
            z-index: 1;
            background: rgba(10, 10, 15, 0.6);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        .footer-brand .logo-link {
            margin-bottom: 0.75rem;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        .footer-col h4 {
            font-family: 'Rajdhani', system-ui, sans-serif;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 0.03em;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-col a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: all var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
        }

        .footer-col a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 1.5rem;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        /* Animations */
        @keyframes glow {
            0% {
                box-shadow: 0 0 20px rgba(0, 230, 153, 0.3);
            }
            100% {
                box-shadow: 0 0 40px rgba(0, 230, 153, 0.6);
            }
        }
        @keyframes float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }
        @keyframes pulseNeon {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 4px var(--accent-rose);
            }
            50% {
                opacity: 0.3;
                box-shadow: 0 0 16px var(--accent-rose);
            }
        }
        @keyframes scan {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Focus Styles */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
            border-radius: 4px;
        }

        /* Image alt fallback */
        img {
            display: block;
            max-width: 100%;
        }

        /* Additional responsive */
        @media (max-width: 768px) {
            .hero-stats-row {
                gap: 1rem;
            }
            .hero-stat-value {
                font-size: 1.5rem;
            }
            .cards-grid {
                gap: 1rem;
            }
            .cta-section {
                padding: 2rem 1.25rem;
                margin: 1rem 0;
            }
        }
