  /* FORCE HTML BACKGROUND */
        html.dark body { background-color: #000000 !important; }
        
        body {
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        
        /* Interactive Background Canvas */
        #bg-canvas {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 0; /* Behind content but accessible if needed */
            pointer-events: none;
        }

        /* 3D Tilt Effect */
        .tilt-card {
            transition: transform 0.1s ease;
            transform-style: preserve-3d;
        }
        .tilt-card:hover {
            transform: perspective(1000px) rotateX(2deg) rotateY(2deg) scale(1.02);
            z-index: 10;
        }

        /* Global Spotlight Effect */
        .spotlight-card {
            position: relative;
            overflow: hidden;
            /* Default border to keep layout stable */
        }
        
        .spotlight-card::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            border-radius: inherit;
            padding: 1px; /* Border width */
            background: radial-gradient(
                800px circle at var(--mouse-x) var(--mouse-y),
                rgba(0, 0, 0, 0.4),
                transparent 40%
            );
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            z-index: 3;
        }

        .dark .spotlight-card::before {
            background: radial-gradient(
                800px circle at var(--mouse-x) var(--mouse-y),
                rgba(255, 255, 255, 0.6),
                transparent 40%
            );
        }

        /* Hover Reveal for Spotlight */
        .spotlight-card:hover::before {
            opacity: 1;
        }

        /* Inner Glow on Hover */
        .spotlight-card::after {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(
                600px circle at var(--mouse-x) var(--mouse-y),
                rgba(0, 0, 0, 0.03),
                transparent 40%
            );
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            z-index: 1;
        }
        .dark .spotlight-card::after {
            background: radial-gradient(
                600px circle at var(--mouse-x) var(--mouse-y),
                rgba(255, 255, 255, 0.05),
                transparent 40%
            );
        }
        .spotlight-card:hover::after {
            opacity: 1;
        }

        /* Text Shimmer Effect */
        .text-shimmer {
            background: linear-gradient(to right, #000 20%, #555 40%, #555 60%, #000 80%);
            background-size: 200% auto;
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            animation: shimmer 5s linear infinite;
        }
        .dark .text-shimmer {
            background: linear-gradient(to right, #fff 20%, #888 40%, #888 60%, #fff 80%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
        }

        /* Section Separator */
        .section-separator {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
            margin: 0;
        }
        .dark .section-separator {
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .faq-content { max-height: 0; overflow: hidden; transition: all 0.3s ease-out; opacity: 0; }
        .faq-item.active .faq-content { max-height: 300px; opacity: 1; }
        .faq-icon { transition: transform 0.3s; }
        .faq-item.active .faq-icon { transform: rotate(180deg); }

        /* Slider */
        .slider-track { display: flex; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); height: 100%; }
        .slide { min-width: 100%; display: flex; align-items: center; justify-content: center; }
        .slide img { 
            width: 100%; height: auto; border-radius: 4px; 
            box-shadow: 0 10px 30px -5px rgba(0,0,0,0.2);
        }
        .dark .slide img {
            box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 20px 50px -20px rgba(0,0,0,1);
        }

        /* Pricing Card Specifics */
        .price-value {
            letter-spacing: -2px;
        }
      