
        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;
            }
        }

        /* Product page specific styles */
        .product-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 999px;
            border: 1px solid rgba(255, 215, 0, 0.14);
            color: #ffd86a;
            font-weight: 700;
            margin: 0 auto 18px;
            font-size: 14px;
            letter-spacing: 0.06em;
            background: linear-gradient(180deg, rgba(255,215,0,0.03), transparent);
        }
        
        /* Products Grid Styles */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            align-items: stretch;
        }

        .product-card {
            position: relative;
            overflow: hidden;
            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);
            border-radius: 1rem;
            padding: 2.5rem 2rem;
            transition: all 0.3s ease;
            flex: 1;
            min-height: 380px;
            opacity: 1 !important;
        }

        .product-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);
        }

        .product-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            background: rgba(255,255,255,0.02);
            color: #00c2ff;
            margin-bottom: 1.5rem;
        }

        .product-shine {
            position: absolute;
            left: -40%;
            top: -30%;
            width: 120%;
            height: 80%;
            background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.18), rgba(255,255,255,0.06));
            transform: skewX(-20deg) translateX(-120%);
            transition: transform .7s cubic-bezier(.2,.9,.2,1);
            z-index: 1;
        }

        .product-card:hover .product-shine {
            transform: skewX(-20deg) translateX(10%);
        }

        .product-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
            opacity: 0;
            transition: opacity .45s;
            z-index: 1;
        }

        .product-card:hover::after {
            opacity: 1;
        }

        .product-card > *:not(.product-shine):not(::after) {
            position: relative;
            z-index: 2;
        }

        .product-feature-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }

        .product-feature-list li {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            padding-left: 0.5rem;
        }

        .product-feature-list li:before {
            content: "✓";
            color: #00c2ff;
            font-weight: bold;
            margin-right: 12px;
        }

        .application-card {
            padding: 2.5rem 2rem;
            border-radius: 1rem;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .application-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            background: rgba(255, 215, 0, 0.1);
            color: #ffd86a;
            margin-bottom: 1.5rem;
        }

        .product-examples {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            padding: 1.5rem 1.25rem;
            margin: 1.5rem 0;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .product-examples h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #ffd86a;
            padding-left: 0.5rem;
        }

        .examples-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.75rem;
        }

        .example-item {
            display: flex;
            align-items: center;
            padding: 0.5rem 0.75rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 6px;
            font-size: 0.875rem;
        }

        .example-item:before {
            content: "•";
            color: #00c2ff;
            margin-right: 10px;
            font-weight: bold;
        }

        .custom-order-cta {
            background: linear-gradient(135deg, rgba(255,215,0,0.05), rgba(0,194,255,0.05));
            border: 1px solid rgba(255, 215, 0, 0.2);
            padding: 1.5rem 1.25rem;
            border-radius: 12px;
            margin-top: auto;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 2rem;
        }

        .spec-item {
            background: rgba(255, 255, 255, 0.02);
            padding: 1.75rem 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .spec-item h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: #ffd86a;
        }

        .spec-item p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .cta-wrap {
            text-align: center;
            padding: 3rem 2rem;
            border-radius: 12px;
            background: linear-gradient(180deg, rgba(255,215,0,0.02), transparent);
            border: 1px solid rgba(255,255,255,0.02);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Force visibility for application section */
        #applications,
        .application-card,
        .application-title,
        .application-subtitle {
            opacity: 1 !important;
            visibility: visible !important;
        }
        
        /* Responsive adjustments */
        @media (max-width: 980px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .examples-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem !important;
                line-height: 1.2 !important;
            }
            
            .hero-subtitle {
                font-size: 1.125rem !important;
                margin-top: 1.5rem !important;
            }
            
            .hero-cta {
                margin-top: 2rem !important;
            }
            
            .contact-cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .application-card {
                padding: 2rem 1.5rem;
            }

            .product-card {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 640px) {
            .hero-title {
                font-size: 2rem !important;
            }
            
            .hero-subtitle {
                font-size: 1rem !important;
            }
            
            .cta-link {
                padding: 0.5rem 1rem;
                font-size: 0.875rem;
            }

            .product-card {
                padding: 1.5rem;
            }

            .application-card {
                padding: 1.5rem;
            }
        }
