   /* Base styles */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
        }
        
        /* Custom glassmorphism effect */
        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        .glass-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.05);
        }
        
        /* Scrolled navbar */
        .header-inner.scrolled {
            background: #000;
            backdrop-filter: blur(0);
            -webkit-backdrop-filter: blur(0);
            border-color: rgba(255, 255, 255, 0.05);
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }

        /* CTA button */
        .cta-link {
            display: inline-block;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 9999px;
            padding: 0.5rem 1.5rem;
            transition: all 0.3s ease;
        }
        
        .cta-link:hover {
            background-color: #fff;
            color: #000;
        }
        
        /* Form inputs */
        .form-input {
            background-color: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            padding: 0.75rem 0.25rem;
            width: 100%;
            color: #fff;
            transition: border-color 0.3s ease;
        }
        
        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        
        .form-input:focus {
            outline: none;
            border-bottom-color: #fff;
        }

        /* Mobile Menu Custom Transition */
        #mobile-menu {
            opacity: 0;
            pointer-events: none;
            transform: translateY(-100%);
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        #mobile-menu.active {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        /* Enhanced mobile menu styling */
        #mobile-menu {
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(25px);
        }

        #mobile-menu a {
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            font-size: 1.5rem;
            padding: 0.75rem 1.5rem;
            width: 100%;
            text-align: center;
            max-width: 280px;
        }

        #mobile-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: -100%;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
            transition: left 0.5s ease;
        }

        #mobile-menu a:hover::after {
            left: 100%;
        }

        #mobile-menu a:hover {
            transform: translateX(10px);
            color: #fff;
        }

        /* Mobile menu layout improvements */
        #mobile-menu .menu-links {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            width: 100%;
            max-width: 300px;
        }

        #mobile-menu .cta-container {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
        }

        /* Floating animation */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        /* Gradient text */
        .gradient-text {
            background: linear-gradient(135deg, #fff 0%, #aaa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Enhanced cards */
        .enhanced-card {
            position: relative;
            overflow: hidden;
        }
        
        .enhanced-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
            transition: left 0.7s ease;
        }
        
        .enhanced-card:hover::before {
            left: 100%;
        }
        
        /* Pulse animation */
        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 5px rgba(255,255,255,0.2); }
            50% { box-shadow: 0 0 20px rgba(255,255,255,0.4); }
        }
        
        .pulse-glow {
            animation: pulse-glow 2s infinite;
        }
        
        /* Scroll progress */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #fff, #aaa);
            z-index: 100;
            transition: width 0.1s ease;
        }
        
        /* Dark overlay sections */
        .dark-overlay {
            background: rgba(0, 0, 0, 0.7);
        }
        
        /* Feature list styling */
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .feature-icon {
            width: 24px;
            height: 24px;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Section spacing */
        .section-padding {
            padding-top: 6rem;
            padding-bottom: 6rem;
        }
        
        @media (min-width: 768px) {
            .section-padding {
                padding-top: 8rem;
                padding-bottom: 8rem;
            }
        }