        /* ====================================================
           👆 3D MOTION UPGRADE — Full CSS by High-end Animator
           ==================================================== */

        /* 👆 Enhanced color palette with neon depth */
        :root {
            --bg1: #060b18;
            --bg2: #080f20;
            --accent1: #7c3aed;
            --accent1h: #9d5cff;
            --accent2: #06b6d4;
            --accent2h: #22d3ee;
            --accent3: #f97316;
            --accent4: #f43f5e;
            --accent5: #10b981;
            --glass: rgba(255, 255, 255, 0.04);
            --glass-border: rgba(255, 255, 255, 0.08);
            --card: #0a1020;
            --bg-card: var(--card);
            --input-bg: rgba(255, 255, 255, 0.08);
            --input-border: rgba(255, 255, 255, 0.15);
            --button-ghost-bg: rgba(255, 255, 255, 0.1);
            --button-ghost-hover: rgba(255, 255, 255, 0.2);
            --gradient-main: linear-gradient(135deg, var(--accent1), var(--accent2));
            --glow-color: rgba(124, 58, 237, 0.4);
            --muted: #7a8899;
            --neon1: rgba(124, 58, 237, 0.6);
            --neon2: rgba(6, 182, 212, 0.6);
            /* 👇 Text-tone variables so light mode can flip them cleanly */
            --text-strong: #e0e8f4;
            --text-soft: #c8d6e5;
            --text-muted: #8ea3be;
            --body-bg: #060b18;
            --body-color: #f0f4ff;
            /* --header-height: 70px; */
            color-scheme: dark;
        }

        /* ================================================
        👆 LIGHT THEME — Professional Modern (Government Portal Style)
        ================================================ */
        :root[data-theme="light"] {
            /* Clean professional background */
            --bg-primary: #f8fafc;
            --bg-secondary: #f1f5f9;
            --bg-glass: rgba(255, 255, 255, 0.7);
            --bg-card: #ffffff;
            --input-bg: rgba(255, 255, 255, 0.9);
            --input-border: rgba(15, 23, 42, 0.15);
            --button-ghost-bg: rgba(15, 23, 42, 0.08);
            --button-ghost-hover: rgba(15, 23, 42, 0.15);

            /* Professional dark text */
            --text-primary: #0f172a;
            --text-secondary: #1e293b;
            --text-muted: #64748b;
            --text-body: #0f172a;

            /* Clean borders */
            --border-glass: rgba(15, 23, 42, 0.08);
            --border-light: rgba(15, 23, 42, 0.06);

            /* Professional blue accents (trustworthy, government feel) */
            --accent-1: #2563eb;
            --accent-1h: #3b82f6;
            --accent-2: #0ea5e9;
            --accent-2h: #38bdf8;
            --accent-3: #f59e0b;
            --accent-4: #ef4444;
            --accent-5: #10b981;

            --shadow-color: rgba(15, 23, 42, 0.08);
            --glow-color: rgba(37, 99, 235, 0.15);

            --badge-bg: rgba(37, 99, 235, 0.08);
            --badge-border: rgba(37, 99, 235, 0.15);
            --badge-text: #2563eb;

            --gradient-main: linear-gradient(135deg, #2563eb, #0ea5e9);
            --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #2563eb 100%);
            --gradient-stats: linear-gradient(90deg, #2563eb, #0ea5e9);

            --body-bg: var(--bg-primary);
            --body-color: var(--text-body);
            --glass: var(--bg-glass);
            --glass-border: var(--border-glass);
            --card: var(--bg-card);
            --muted: var(--text-muted);


            --text-strong: var(--text-primary);
            --text-soft: var(--text-secondary);

            --accent1: var(--accent-1);
            --accent1h: var(--accent-1h);
            --accent2: var(--accent-2);
            --accent2h: var(--accent-2h);
            --accent3: var(--accent-3);
            --accent4: var(--accent-4);
            --accent5: var(--accent-5);

            /* --header-height: 70px; */
            color-scheme: light;
        }

        /* 👆 LIGHT THEME — Clean background */
        [data-theme="light"] body {
            background:
                linear-gradient(rgba(37, 99, 235, 0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(37, 99, 235, 0.025) 1px, transparent 1px),
                radial-gradient(ellipse at 50% 0%, #ffffff 0%, var(--bg-secondary) 100%);
            background-size: 40px 40px, 40px 40px, 100% 100%;
            background-attachment: fixed, fixed, fixed;
        }


        /* 👆 LIGHT THEME — Header with glassmorphism */
        [data-theme="light"] header {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px) saturate(1.4);
            border-bottom: 1px solid var(--border-glass);
        }

        [data-theme="light"] header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 24px var(--shadow-color);
        }

        /* 👆 LIGHT THEME — Orbs (subtle blue glow) */
        [data-theme="light"] .orb-1 {
            background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 10%);
        }

        [data-theme="light"] .orb-2 {
            background: radial-gradient(circle, rgba(14, 165, 233, 0.04) 0%, transparent 10%);
        }

        [data-theme="light"] .orb-3 {
            background: radial-gradient(circle, rgba(245, 158, 11, 0.03) 0%, transparent 10%);
        }

        /* 👆 LIGHT THEME — Theme toggle */
        [data-theme="light"] .theme-toggle {
            background: rgba(15, 23, 42, 0.08);
        }

        [data-theme="light"] .theme-toggle .knob {
            background: var(--gradient-main);
            transform: translateX(20px);
        }

        /* 👆 LIGHT THEME — All cards, panels, and glass elements (clean white) */
        [data-theme="light"] .contact-modal,
        [data-theme="light"] .documents-modal,
        [data-theme="light"] .nav-dropdown-menu {
            background: rgba(255, 255, 255, 0.98);
            border-color: var(--border-glass);
            box-shadow: 0 20px 60px var(--shadow-color);
        }

        [data-theme="light"] .card-hero,
        [data-theme="light"] .panel,
        [data-theme="light"] .feature,
        [data-theme="light"] .glass-card,
        [data-theme="light"] .stat,
        [data-theme="light"] .testimonial,
        [data-theme="light"] .faq-item,
        [data-theme="light"] .install-step,
        [data-theme="light"] .video-card,
        [data-theme="light"] .contact-item,
        [data-theme="light"] .document-link,
        [data-theme="light"] .social-btn,
        [data-theme="light"] .pill {
            background: rgba(255, 255, 255, 0.7);
            border-color: var(--border-light);
            backdrop-filter: blur(8px);
        }

        [data-theme="light"] .page-hero {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(14, 165, 233, 0.02));
            border-color: var(--border-glass);
        }

        /* 👆 LIGHT THEME — Card hover states (smooth elevation) */
        [data-theme="light"] .feature:hover,
        [data-theme="light"] .panel:hover,
        [data-theme="light"] .card-hero:hover,
        [data-theme="light"] .stat:hover,
        [data-theme="light"] .testimonial:hover,
        [data-theme="light"] .video-card:hover,
        [data-theme="light"] .ext-hub-card:hover {
            border-color: rgba(37, 99, 235, 0.15);
            box-shadow: 0 12px 40px var(--shadow-color);
            transform: translateY(-4px);
        }

        [data-theme="light"] .faq-item:hover,
        [data-theme="light"] .install-step:hover,
        [data-theme="light"] .contact-item:hover,
        [data-theme="light"] .document-link:hover {
            border-color: rgba(37, 99, 235, 0.15);
            background: rgba(37, 99, 235, 0.02);
        }

        /* 👆 LIGHT THEME — Navigation */
        [data-theme="light"] .nav-btn {
            border-color: var(--border-light);
            color: var(--text-secondary);
        }

        [data-theme="light"] .nav-btn:hover {
            background: rgba(37, 99, 235, 0.06);
            border-color: rgba(37, 99, 235, 0.2);
            color: var(--text-primary);
        }

        [data-theme="light"] .nav-btn::before {
            background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.06), transparent);
        }

        [data-theme="light"] .nav-btn.primary {
            background: var(--gradient-main);
            color: white;
            box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
        }

        [data-theme="light"] .nav-btn.primary:hover {
            box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35);
        }

        /* 👆 LIGHT THEME — Buttons & CTAs */
        [data-theme="light"] .cta.primary {
            background: var(--gradient-main);
            box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
            color: white;
        }

        [data-theme="light"] .cta.primary:hover {
            box-shadow: 0 10px 35px rgba(37, 99, 235, 0.35);
            transform: translateY(-3px) scale(1.02);
        }

        [data-theme="light"] .cta.secondary {
            background: rgba(255, 255, 255, 0.7);
            border-color: var(--border-glass);
            color: var(--text-secondary);
        }

        [data-theme="light"] .cta.secondary:hover {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(37, 99, 235, 0.2);
            color: var(--text-primary);
        }

        /* 👆 LIGHT THEME — Text and typography */
        [data-theme="light"] .hero h2 {
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        [data-theme="light"] .page-hero h2 {
            background: var(--gradient-stats);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        [data-theme="light"] .stat-number {
            background: var(--gradient-stats);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        [data-theme="light"] .badge {
            background: var(--badge-bg);
            border-color: var(--badge-border);
            color: var(--badge-text);
        }

        [data-theme="light"] .badge::before {
            background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
        }

        [data-theme="light"] .lead {
            color: var(--text-muted);
        }

        /* 👆 LIGHT THEME — Footer */
        [data-theme="light"] footer,
        [data-theme="light"] .site-footer {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-color: var(--border-glass);
        }

        [data-theme="light"] footer::before {
            background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15), rgba(14, 165, 233, 0.15), transparent);
        }

        [data-theme="light"] .footer-social a {
            background: rgba(255, 255, 255, 0.6);
            border-color: var(--border-light);
        }

        [data-theme="light"] .footer-social a:hover {
            background: var(--gradient-main);
            color: white;
        }

        [data-theme="light"] .footer-col ul li a {
            color: var(--text-muted);
        }

        [data-theme="light"] .footer-col ul li a:hover {
            color: var(--accent-1);
        }

        /* 👆 LIGHT THEME — Professional accent elements */
        [data-theme="light"] .download {
            background: linear-gradient(90deg, rgba(37, 99, 235, 0.04), rgba(14, 165, 233, 0.02));
            border-color: rgba(37, 99, 235, 0.08);
        }

        [data-theme="light"] .download:hover {
            box-shadow: 0 12px 40px rgba(37, 99, 235, 0.08);
            border-color: rgba(37, 99, 235, 0.15);
        }

        [data-theme="light"] .testimonial {
            border-left: 3px solid var(--accent-1);
        }

        [data-theme="light"] .testimonial:hover {
            border-left-color: var(--accent-2);
        }

        [data-theme="light"] .testimonial-author {
            color: var(--accent-1);
        }

        [data-theme="light"] .install-step::before {
            background: var(--gradient-main);
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
        }

        [data-theme="light"] .dot.active {
            background: var(--gradient-main);
            box-shadow: 0 0 12px rgba(37, 99, 235, 0.3);
        }

        [data-theme="light"] .section-divider {
            background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.12), rgba(14, 165, 233, 0.12), transparent);
        }

        [data-theme="light"] .floating-social-btn::after {
            background: rgba(15, 23, 42, 0.95);
        }

        [data-theme="light"] #scrollTopBtn,
        [data-theme="light"] .back-to-top {
            background: var(--gradient-main);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
        }

        [data-theme="light"] .crumb-bar a {
            color: var(--accent-1);
        }

        [data-theme="light"] .modal-backdrop {
            background: rgba(15, 23, 42, 0.4);
        }

        [data-theme="light"] .glow-text {
            text-shadow: 0 0 20px rgba(37, 99, 235, 0.1), 0 0 40px rgba(37, 99, 235, 0.05);
        }

        [data-theme="light"] .grad-border::before {
            background: linear-gradient(135deg, #2563eb, #0ea5e9, #f59e0b, #2563eb);
        }

        /* 👆 LIGHT THEME — Accordion */
        [data-theme="light"] .accordion .item {
            border-top: 1px solid var(--border-light);
        }

        [data-theme="light"] .item button {
            color: var(--text-primary);
        }

        [data-theme="light"] .item button i {
            color: var(--accent-1);
        }

        /* 👆 LIGHT THEME — FAQ */
        [data-theme="light"] .faq-question {
            color: var(--text-primary);
        }

        [data-theme="light"] .faq-question i {
            color: var(--accent-1);
        }

        [data-theme="light"] .faq-answer {
            color: var(--text-muted);
        }

        /* 👆 LIGHT THEME — Video */
        [data-theme="light"] .video-container {
            border-color: var(--border-glass);
        }

        [data-theme="light"] .video-list-container::-webkit-scrollbar-track {
            background: var(--border-light);
        }

        [data-theme="light"] .video-list-container::-webkit-scrollbar-thumb {
            background: rgba(37, 99, 235, 0.2);
            border-radius: 4px;
        }

        /* 👆 LIGHT THEME — Page tabs */
        [data-theme="light"] .page-tab {
            background: rgba(255, 255, 255, 0.5);
            border-color: var(--border-light);
            color: var(--text-secondary);
        }

        [data-theme="light"] .page-tab:hover,
        [data-theme="light"] .page-tab.active {
            background: linear-gradient(90deg, rgba(37, 99, 235, 0.06), rgba(14, 165, 233, 0.03));
            border-color: rgba(37, 99, 235, 0.2);
            color: var(--text-primary);
        }

        /* 👆 LIGHT THEME — Extension hub */
        [data-theme="light"] .ext-hub-card.current {
            border-color: rgba(37, 99, 235, 0.3);
            box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
        }

        /* 👆 LIGHT THEME — Nav dropdown */
        [data-theme="light"] .nav-dropdown-menu a {
            color: var(--text-secondary);
        }

        [data-theme="light"] .nav-dropdown-menu a:hover {
            background: rgba(37, 99, 235, 0.06);
            color: var(--text-primary);
        }

        /* 👆 LIGHT THEME — Comparison */
        [data-theme="light"] .before {
            background: rgba(239, 68, 68, 0.04);
            border-color: rgba(239, 68, 68, 0.08);
        }

        [data-theme="light"] .after {
            background: rgba(16, 185, 129, 0.04);
            border-color: rgba(16, 185, 129, 0.08);
        }

        /* 👆 LIGHT THEME — Weather info */
        [data-theme="light"] #weather-info {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-color: var(--border-glass);
        }

        /* 👆 LIGHT THEME — Selection */
        [data-theme="light"] ::selection {
            background: rgba(37, 99, 235, 0.15);
        }



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

        html,
        body {
            height: 100%;
        }


        /* 👆 Smooth scroll globally */
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Roboto, system-ui, "Segoe UI", "Inter", Arial, sans-serif;
            background: var(--body-bg);
            color: var(--body-color);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            position: relative;
            /* padding-top: var(--header-height); */
            padding-top: 0;
            transition: background 0.3s ease, color 0.3s ease;
        }



        h1,
        h2,
        h3,
        h4,
        .hero h2,
        .page-hero h2,
        .brand h1 {
            font-family: "system-ui", "Inter", system-ui, sans-serif;
        }

        /* 👆 3D WebGL canvas background — behind everything */
        #threejs-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        [data-theme="light"] #threejs-canvas {
            opacity: 1.0;
        }

        /* 👆 Custom cursor dot */
        #cursor-dot {
            position: fixed;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent2);
            pointer-events: none;
            z-index: 99999;
            transition: transform 0.1s ease, background 0.3s ease;
            transform: translate(-50%, -50%);
        }

        #cursor-ring {
            position: fixed;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1.5px solid rgba(6, 182, 212, 0.6);
            pointer-events: none;
            z-index: 99998;
            transform: translate(-50%, -50%);
            transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
        }

        body:hover #cursor-dot {
            opacity: 1;
        }

        a:hover~#cursor-dot,
        button:hover~#cursor-dot {
            transform: translate(-50%, -50%) scale(2.5);
        }

        /* 👆 Grain noise overlay for texture */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            opacity: 0.025;
            pointer-events: none;
            z-index: 1;
            animation: grainShift 8s steps(10) infinite;
        }

        @keyframes grainShift {

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

            10% {
                transform: translate(-2%, -3%);
            }

            30% {
                transform: translate(3%, 2%);
            }

            50% {
                transform: translate(-1%, 4%);
            }

            70% {
                transform: translate(4%, -1%);
            }

            90% {
                transform: translate(-3%, 1%);
            }
        }

        /* 👆 Ambient glow orbs */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
            z-index: 0;
            animation: orbFloat 12s ease-in-out infinite;
        }

        .orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 30%);
            top: -200px;
            left: -200px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 30%);
            bottom: -100px;
            right: -100px;
            animation-delay: -6s;
        }

        .orb-3 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 30%);
            top: 50%;
            left: 40%;
            animation-delay: -3s;
        }

        [data-theme="light"] .orb-1 {
            background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 10%);
        }

        [data-theme="light"] .orb-2 {
            background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 10%);
        }

        [data-theme="light"] .orb-3 {
            background: radial-gradient(circle, rgba(249, 115, 22, 0.035) 0%, transparent 10%);
        }

        @keyframes orbFloat {

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

            33% {
                transform: translate(40px, -30px) scale(1.05);
            }

            66% {
                transform: translate(-20px, 40px) scale(0.95);
            }
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 36px 12px;
            /* was: padding: 36px; */
            position: relative;
            z-index: 2;
        }

        /* ================================================
           👆 SCROLL ANIMATIONS — Enhanced
           ================================================ */
        .fadeInUp {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }


        .fadeInLeft {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .fadeInRight {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .visible,
        .fadeInUp.animate,
        .fadeInLeft.animate,
        .fadeInRight.animate {
            opacity: 1;
            transform: none;
        }

        .fadeInUp.animate {
            transition-delay: var(--reveal-delay, 0s);
        }

        .fadeInUp:nth-child(1) {
            transition-delay: 0.05s;
        }

        .fadeInUp:nth-child(2) {
            transition-delay: 0.15s;
        }

        .fadeInUp:nth-child(3) {
            transition-delay: 0.25s;
        }

        .fadeInUp:nth-child(4) {
            transition-delay: 0.35s;
        }

        .fadeInUp:nth-child(5) {
            transition-delay: 0.45s;
        }

        .fadeInUp:nth-child(6) {
            transition-delay: 0.55s;
        }

        /* ================================================
           👆 STICKY HEADER — Glassmorphism
           ================================================ */
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(6, 11, 24, 0.7);
            backdrop-filter: blur(20px) saturate(1.8);
            -webkit-backdrop-filter: blur(20px) saturate(1.8);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 8px 36px;
            gap: 4px 16px;
            transition: all 0.4s ease;
        }

        header.scrolled {
            background: rgba(6, 11, 24, 0.92);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(124, 58, 237, 0.1);
        }

        /*====================================*/
        /* Brand and nav stay in the first row */
        header .brand,
        header nav {
            order: 1;
        }

        /* Ticker row – full width, second row */
        header .ticker-bar {
            order: 2;
            flex-basis: 100%;
            width: 100%;
            margin-left: calc(-50vw + 50%);
            background: rgba(124, 58, 237, 0.08);
            border-radius: 8px;
            padding: 4px 14px;
            margin: 4px 0 0 0;
            overflow: hidden;
            border-top: 1px solid rgba(124, 58, 237, 0.08);
            border-bottom: 1px solid rgba(124, 58, 237, 0.08);
            box-sizing: border-box;
        }

        [data-theme="light"] header .ticker-bar {
            background: rgba(37, 99, 235, 0.06);
            border-color: rgba(37, 99, 235, 0.1);
        }

        header .ticker-wrap {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

        header .ticker-track {
            display: inline-block;
            animation: tickerScroll 35s linear infinite;
            padding-left: 100%;
        }

        header .ticker-item {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            color: var(--text-soft);
            padding: 0 40px 0 0;
            letter-spacing: 0.2px;
        }

        header .ticker-item:first-child {
            color: var(--accent2);
        }

        header .ticker-bar:hover .ticker-track {
            animation-play-state: paused;
        }

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

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

        /* 👆 Responsive inside header */
        @media (max-width: 900px) {
            header {
                padding: 6px 16px;
                gap: 2px 12px;
            }

            header .ticker-bar {
                padding: 3px 16px;
                margin: 4px 0 0 0;
                border-radius: 6px;
            }

            header .ticker-item {
                font-size: 10px;
                padding: 0 30px 0 0;
            }
        }

        @media (max-width: 600px) {
            header {
                padding: 4px 12px;
                gap: 2px 8px;
            }

            header .ticker-bar {
                padding: 2px 12px;
                margin: 3px 0 0 0;
                border-radius: 4px;
            }

            header .ticker-item {
                font-size: 9px;
                padding: 0 20px 0 0;
            }
        }

        /* ================================================*/


        /* 👆 Header scroll progress bar */
        #scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent1), var(--accent2), var(--accent3));
            z-index: 10001;
            transition: width 0.1s linear;
            width: 0%;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .logo:hover {
            transform: translateY(-3px) rotateY(15deg) rotateX(5deg);
        }

        .logo img {
            position: relative;
            z-index: 1;
            border-radius: 8px;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .brand h1 {
            font-size: 18px;
            margin: 0;
        }

        .brand p {
            margin: 0;
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ================================================
           👆 NAV BUTTONS — Magnetic + Shimmer
           ================================================ */
        nav {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.07);
            padding: 9px 14px;
            border-radius: 10px;
            color: var(--text-soft);
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .nav-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
            transition: left 0.6s ease;
        }

        .nav-btn:hover::before {
            left: 100%;
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(124, 58, 237, 0.3);
            transform: translateY(-2px);
            color: #fff;
        }

        .nav-btn.primary {
            background: linear-gradient(135deg, var(--accent1), var(--accent2));
            color: white;
            border: 0;
            box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .nav-btn.primary:hover {
            transform: translateY(-3px) scale(1.04);
            box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5), 0 0 0 1px rgba(124, 58, 237, 0.4);
        }

        /* ================================================
           👆 CONTACT MODAL
           ================================================ */
        .contact-modal {
            display: none;
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: rgba(10, 16, 32, 0.95);
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
            z-index: 100;
            width: 320px;
            backdrop-filter: blur(20px);
        }

        .contact-modal.active {
            display: block;
            animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-12px) scale(0.96);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .contact-modal h3 {
            margin: 0 0 15px;
            color: var(--accent2);
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            padding: 10px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(124, 58, 237, 0.08);
            border-color: rgba(124, 58, 237, 0.2);
            transform: translateX(4px);
        }

        .contact-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent1), var(--accent2));
            color: white;
            font-size: 15px;
        }

        .contact-details {
            flex: 1;
        }

        .contact-details .label {
            font-size: 11px;
            color: var(--muted);
            margin-bottom: 2px;
        }

        .contact-details .value {
            font-weight: 600;
            font-size: 13px;
        }

        .contact-actions {
            display: flex;
            gap: 8px;
            margin-top: 14px;
            flex-wrap: wrap;
        }

        .contact-btn {
            flex: 1;
            padding: 8px 10px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            min-width: 80px;
        }

        .contact-btn:hover {
            transform: translateY(-2px);
        }

        .contact-btn.email {
            background: linear-gradient(135deg, #7c3aed, #06b6d4);
            border: none;
        }

        .contact-btn.whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            border: none;
        }

        /* Remove underline from social links */
        a.social-btn,
        a.social-link-footer,
        a.floating-social-btn {
            text-decoration: none !important;
        }

        .social-divider {
            margin: 16px 0 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .social-divider h4 {
            margin: 0 0 10px;
            font-size: 13px;
            color: var(--accent2);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .social-links-modal {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        /* ================================================
           👆 DOCUMENTS MODAL
           ================================================ */
        .documents-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(10, 16, 32, 0.98);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(124, 58, 237, 0.2);
            z-index: 1001;
            width: 90%;
            max-width: 500px;
            backdrop-filter: blur(20px);
        }

        .documents-modal.active {
            display: block;
            animation: modalFadeIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translate(-50%, -48%) scale(0.96);
            }

            to {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
        }

        .documents-modal h3 {
            margin: 0 0 20px;
            color: var(--accent3);
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .documents-modal .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .documents-modal .close-btn:hover {
            background: rgba(244, 63, 94, 0.2);
            border-color: var(--accent4);
            transform: rotate(90deg);
        }

        .document-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .document-item {
            margin-bottom: 10px;
        }

        .document-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all 0.3s ease;
        }

        .document-link:hover {
            background: rgba(249, 115, 22, 0.08);
            transform: translateX(6px);
            border-color: var(--accent3);
        }

        .document-link i:first-child {
            color: var(--accent3);
            font-size: 18px;
        }

        .document-link span {
            flex: 1;
            font-weight: 500;
        }

        .modal-backdrop {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.75);
            z-index: 1000;
            backdrop-filter: blur(4px);
        }

        .modal-backdrop.active {
            display: block;
        }

        /* ================================================
           👆 SOCIAL BUTTONS
           ================================================ */
        .social-btn {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 15px;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-btn:hover {
            transform: translateY(-4px) scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .social-btn.facebook {
            background: linear-gradient(135deg, #1877F2, #0C63D4);
        }

        .social-btn.instagram {
            background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
        }

        .social-btn.twitter {
            background: linear-gradient(135deg, #000, #333);
        }

        .social-btn.youtube {
            background: linear-gradient(135deg, #FF0000, #CC0000);
        }

        .social-btn.whatsapp-group {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }

        .social-btn.whatsapp-channel {
            background: linear-gradient(135deg, #00A884, #008069);
        }

        /* ================================================
           👆 FOOTER SOCIAL
           ================================================ */
        .footer-social {
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-social h3 {
            margin: 0 0 15px;
            font-size: 20px;
            background: linear-gradient(90deg, var(--accent1), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .social-links-footer {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .social-link-footer {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            overflow: hidden;
        }

        .social-link-footer::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .social-link-footer:hover::before {
            transform: translateY(0);
        }

        .social-link-footer:hover {
            transform: translateY(-10px) scale(1.12) rotateX(8deg);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .social-link-footer i {
            position: relative;
            z-index: 1;
        }

        .social-link-footer.facebook {
            background: linear-gradient(135deg, #1877F2, #0C63D4);
        }

        .social-link-footer.instagram {
            background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
        }

        .social-link-footer.twitter {
            background: linear-gradient(135deg, #000, #333);
        }

        .social-link-footer.youtube {
            background: linear-gradient(135deg, #FF0000, #CC0000);
        }

        .social-link-footer.whatsapp-group {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }

        .social-link-footer.whatsapp-channel {
            background: linear-gradient(135deg, #00A884, #008069);
        }

        /* ================================================
           👆 FLOATING SOCIAL SIDEBAR
           ================================================ */
        .floating-social {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .floating-social-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.08);
            position: relative;
        }

        .floating-social-btn::after {
            content: attr(title);
            position: absolute;
            right: calc(100% + 10px);
            background: rgba(10, 16, 32, 0.95);
            color: white;
            font-size: 12px;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 6px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease;
            transform: translateX(8px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .floating-social-btn:hover::after {
            opacity: 1;
            transform: translateX(0);
        }

        .floating-social-btn:hover {
            transform: scale(1.2) translateX(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }

        .floating-social-btn.facebook {
            background: linear-gradient(135deg, #1877F2, #0C63D4);
        }

        .floating-social-btn.instagram {
            background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
        }

        .floating-social-btn.twitter {
            background: linear-gradient(135deg, #000, #333);
        }

        .floating-social-btn.youtube {
            background: linear-gradient(135deg, #FF0000, #CC0000);
        }

        .floating-social-btn.whatsapp-group {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }

        .floating-social-btn.whatsapp-channel {
            background: linear-gradient(135deg, #00A884, #008069);
        }





        /* ================================================
           👆 WEATHER EFFECTS CONTAINER
           ================================================ */
        #weather-effects {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 3;
            overflow: hidden;
        }

        #weather-info {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: rgba(10, 16, 32, 0.8);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 8px 14px;
            border-radius: 20px;
            font-size: 12px;
            color: var(--muted);
            z-index: 999;
            display: none;
            gap: 8px;
            align-items: center;
        }

        .raindrop {
            position: fixed;
            width: 1.5px;
            background: linear-gradient(to bottom, transparent, rgba(150, 200, 255, 0.6));
            border-radius: 2px;
            pointer-events: none;
            z-index: 9999;
        }

        /* ================================================
           👆 HERO SECTION
           ================================================ */
        .hero {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 30px;
            align-items: center;
            margin-top: 0px;
            padding: 0px 0 40px;
            min-height: auto;
        }

        .hero-left {
            padding-right: 20px;
        }

        /* 👆 Animated badge */
        .badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 600;
            background: rgba(124, 58, 237, 0.12);
            border: 1px solid rgba(124, 58, 237, 0.3);
            color: #c4b5fd;
            margin-bottom: 6px;
            position: relative;
            overflow: hidden;
        }

        .badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
            animation: shimmerBadge 3s ease infinite;
        }

        @keyframes shimmerBadge {
            0% {
                left: -100%;
            }

            100% {
                left: 200%;
            }
        }

        .hero h2 {
            font-size: clamp(24px, 3.5vw, 38px);
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #fff 0%, #c8d6e5 50%, #a5b4fc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .lead {
            font-size: 15px;
            line-height: 1.3;
            color: var(--text-muted);
            margin-bottom: 25px;
        }

        /* 👆 Hero CTAs with magnetic hover */
        .ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 20px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border: none;
        }

        .cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0);
            transition: background 0.3s ease;
        }

        .cta:hover::before {
            background: rgba(255, 255, 255, 0.05);
        }

        .cta.primary {
            background: linear-gradient(135deg, var(--accent1), var(--accent2));
            color: white;
            box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .cta.primary:hover {
            transform: translateY(-3px) scale(1.04);
            box-shadow: 0 10px 35px rgba(124, 58, 237, 0.5), 0 0 0 1px rgba(124, 58, 237, 0.3);
        }

        .cta.secondary {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-soft);
        }

        .cta.secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(124, 58, 237, 0.3);
            transform: translateY(-2px);
        }

        /* 👆 Hero card (aside) */
        .card-hero {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 20px;
            padding: 24px;
            backdrop-filter: blur(12px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .card-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), transparent);
        }

        .card-hero:hover {
            border-color: rgba(124, 58, 237, 0.25);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(124, 58, 237, 0.08);
            transform: translateY(-4px);
        }

        section {
            margin-top: 20px;
            /* 👈 FIX: Consistent section spacing */
            padding: 10px 0;
        }

        /* ================================================
   CHROME STORE BUTTON WRAPPER — fixes alignment
   ================================================ */
        .chrome-wrapper {
            display: inline-flex;
            /* keep it inline so it doesn't take full width */
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
            flex: 0 0 auto;
            /* prevent stretching in flex parent */
        }

        .chrome-wrapper .chrome-store-btn {
            flex-shrink: 0;
        }

        .chrome-wrapper .chrome-message {
            display: none;
            line-height: 1.4;
            padding: 4px 0 2px 0;
            max-width: 300px;
            /* limit width so it doesn't push layout */
            word-wrap: break-word;
        }

        .chrome-wrapper .chrome-message.active {
            display: block;
        }

        .chrome-wrapper .chrome-message a {
            white-space: nowrap;
        }

        /* ================================================
           👆 STATS SECTION
           ================================================ */
        .stats {
            display: flex;
            justify-content: space-between;
            margin: 10px 0;
            flex-wrap: wrap;
            gap: 20px;
        }

        .stat {
            text-align: center;
            flex: 1;
            min-width: 120px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .stat::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent1), var(--accent2));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .stat:hover {
            transform: translateY(-6px);
            border-color: rgba(124, 58, 237, 0.2);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .stat:hover::after {
            transform: scaleX(1);
        }

        .stat-number {
            font-size: 2.6rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--accent1), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 6px;
            display: block;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--muted);
        }

        /* ================================================
           👆 GRID SYSTEM
           ================================================ */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 16px;
        }

        /* ================================================
           👆 FEATURE CARDS — 3D tilt on hover
           ================================================ */
        .feature {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 22px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            cursor: default;
        }

        .feature::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.4), transparent);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature:hover::before {
            opacity: 1;
        }

        .feature:hover::after {
            transform: scaleX(1);
        }

        .feature:hover {
            border-color: rgba(124, 58, 237, 0.25);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 0 20px rgba(124, 58, 237, 0.08);
            transform: translateY(-8px) rotateX(4deg);
        }

        .feature i {
            font-size: 24px;
            margin-bottom: 10px;
            display: block;
        }

        .feature h4 {
            font-size: 14px;
            margin: 8px 0 6px;
        }

        .feature p {
            margin: 0;
            color: var(--text-muted);
            font-size: 13px;
        }

        .tools-grid {
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        }

        .tool {
            text-align: center;
            padding: 20px 15px;
        }

        .tool i {
            font-size: 26px;
            margin-bottom: 10px;
            display: block;
        }

        /* ================================================
           👆 SECTION HEADERS
           ================================================ */
        section h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        section h3::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent1), var(--accent2));
            border-radius: 2px;
            transition: width 0.4s ease;
        }

        section:hover h3::after {
            width: 100%;
        }

        /* ================================================
           👆 TWO-COL LAYOUT
           ================================================ */
        .two-col {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 28px;
            align-items: start;
        }

        /* ================================================
           👆 PANELS — Glassmorphism + glow
           ================================================ */
        .panel {
            background: rgba(255, 255, 255, 0.025);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 22px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
        }

        .panel:hover {
            border-color: rgba(124, 58, 237, 0.2);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(124, 58, 237, 0.06);
        }

        /* ================================================
           👆 ACCORDION
           ================================================ */
        .accordion .item {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .item button {
            width: 100%;
            background: none;
            border: 0;
            padding: 14px 0;
            color: var(--text-strong);
            text-align: left;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .item button:hover {
            color: var(--accent2);
            padding-left: 6px;
        }

        .item button i {
            transition: transform 0.3s ease;
            color: var(--accent1);
        }

        .item.active button i {
            transform: rotate(180deg);
        }

        .item p {
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), margin 0.4s ease;
        }

        .item.active p {
            max-height: 600px;
            margin: 6px 0 12px;
        }

        /* ================================================
           👆 CAROUSEL — 3D perspective
           ================================================ */
        .carousel {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .slides {
            display: flex;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide {
            min-width: 100%;
            padding: 30px;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.04));
            border-radius: 16px;
            position: relative;
            box-sizing: border-box;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent1), var(--accent2));
        }

        .dots {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-top: 14px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.2);
        }

        .dot.active {
            background: linear-gradient(90deg, var(--accent1), var(--accent2));
            transform: scale(1.4);
            width: 24px;
            box-shadow: 0 0 12px rgba(124, 58, 237, 0.6);
        }

        /* ================================================
           👆 DOWNLOAD BOX
           ================================================ */
        .download {
            display: flex;
            gap: 8px;
            align-items: center;
            justify-content: space-between;
            padding: 18px;
            border-radius: 14px;
            background: linear-gradient(90deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.06));
            border: 1px solid rgba(124, 58, 237, 0.15);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .download::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
            animation: rotateSlow 12s linear infinite;
        }

        @keyframes rotateSlow {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .download>* {
            position: relative;
            z-index: 1;
        }

        .download:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
            border-color: rgba(124, 58, 237, 0.35);
        }

        .download .left {
            flex: 1;
        }

        .download .right {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .small {
            font-size: 13px;
            color: var(--text-muted);
        }

        .pill {
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.04);
            font-weight: 700;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 13px;
        }

        .pill:hover {
            background: rgba(255, 255, 255, 0.07);
            transform: translateY(-2px);
        }

        /* ================================================
           👆 TESTIMONIALS — Glowing cards
           ================================================ */
        .testimonial {
            background: rgba(255, 255, 255, 0.025);
            padding: 24px;
            border-radius: 16px;
            margin: 20px 0;
            border-left: 3px solid var(--accent1);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-left: 3px solid var(--accent1);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: -10px;
            right: 20px;
            font-size: 80px;
            color: rgba(124, 58, 237, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial:hover {
            transform: translateY(-4px);
            border-left-color: var(--accent2);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), -3px 0 20px rgba(124, 58, 237, 0.15);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 14px;
            color: var(--text-soft);
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--accent2);
            font-size: 14px;
        }

        /* ================================================
           👆 FAQ SECTION
           ================================================ */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 14px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(124, 58, 237, 0.2);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: 0;
            padding: 18px 20px;
            text-align: left;
            font-weight: 600;
            font-size: 14px;
            color: var(--text-strong);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--accent2);
            background: rgba(255, 255, 255, 0.02);
        }

        .faq-question i {
            transition: transform 0.3s ease;
            color: var(--accent1);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
            padding: 0 20px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 600px;
            padding: 0 20px 18px;
        }

        /* ================================================
           👆 INSTALL STEPS
           ================================================ */
        .install-steps {
            counter-reset: step-counter;
        }

        .install-step {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 14px;
            padding: 20px 20px 20px 70px;
            margin-bottom: 16px;
            position: relative;
            transition: all 0.4s ease;
        }

        .install-step::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--accent1), var(--accent2));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 15px;
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
        }

        .install-step:hover {
            transform: translateX(6px);
            border-color: rgba(124, 58, 237, 0.3);
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.12);
        }

        .install-step h4 {
            margin: 0 0 6px;
            color: var(--accent2);
        }

        .install-step p {
            margin: 0;
            color: var(--text-muted);
            font-size: 13px;
        }

        /* ================================================
           👆 VIDEO LIST
           ================================================ */
        .video-list-container {
            display: block;
            max-height: 350px;
            overflow-y: auto;
            overflow-x: hidden;
            padding-right: 8px;
        }

        .video-list-container>* {
            margin-bottom: 12px;
        }

        .video-list-container::-webkit-scrollbar {
            width: 4px;
        }

        .video-list-container::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 2px;
        }

        .video-list-container::-webkit-scrollbar-thumb {
            background: rgba(124, 58, 237, 0.4);
            border-radius: 2px;
        }

        /* ================================================
           👆 VIDEO CARD
           ================================================ */
        .video-card {
            background: rgba(255, 255, 255, 0.025);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            padding: 14px;
            cursor: pointer;
            transition: all 0.35s ease;
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .video-card:hover {
            background: rgba(124, 58, 237, 0.08);
            border-color: rgba(124, 58, 237, 0.3);
            transform: translateX(4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        /* ================================================
        FIX: Video container 16:9 aspect ratio (reliable)
        ================================================ */
        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: #000;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 16px;
        }

        .video-container::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), transparent);
            pointer-events: none;
            z-index: 1;
        }

        /* ================================================
           👆 COMPARISON SECTION
           ================================================ */
        .comparison {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .comparison-item {
            flex: 1;
            padding: 24px;
            border-radius: 14px;
        }

        .before {
            background: rgba(239, 68, 68, 0.04);
            border: 1px solid rgba(239, 68, 68, 0.1);
        }

        .after {
            background: rgba(16, 185, 129, 0.04);
            border: 1px solid rgba(16, 185, 129, 0.1);
        }

        .comparison-title {
            font-size: 1.1rem;
            margin: 0 0 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .comparison-title::before {
            content: '';
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .before .comparison-title::before {
            background: #ef4444;
        }

        .after .comparison-title::before {
            background: #10b981;
        }

        .comparison-list {
            padding-left: 20px;
        }

        .comparison-list li {
            margin-bottom: 8px;
            line-height: 1.5;
            font-size: 14px;
        }

        /* ================================================
           👆 FOOTER
           ================================================ */
        footer {
            margin-top: 40px;
            padding: 40px 36px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(6, 11, 24, 0.8);
            backdrop-filter: blur(20px);
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.4), rgba(6, 182, 212, 0.4), transparent);
        }

        /* ================================================
           👆 PULSE ANIMATION for logo
           ================================================ */
        .pulse {
            animation: logoPulse 3s ease-in-out infinite;
        }

        @keyframes logoPulse {

            0%,
            100% {
                filter: drop-shadow(0 0 0px rgba(124, 58, 237, 0));
            }

            50% {
                filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.5));
            }
        }

        /* ================================================
           👆 NEON GLOW TEXT UTILITY
           ================================================ */
        .glow-text {
            text-shadow: 0 0 20px rgba(124, 58, 237, 0.5), 0 0 40px rgba(124, 58, 237, 0.2);
        }

        /* ================================================
           👆 PARTICLE TRAIL
           ================================================ */
        .particle {
            position: fixed;
            pointer-events: none;
            border-radius: 50%;
            z-index: 9997;
            animation: particleFade 0.8s ease-out forwards;
        }

        @keyframes particleFade {
            0% {
                opacity: 0.8;
                transform: scale(1) translate(0, 0);
            }

            100% {
                opacity: 0;
                transform: scale(0) translate(var(--tx), var(--ty));
            }
        }

        /* ================================================
           👆 SCROLL-TO-TOP BUTTON
           ================================================ */
        #scrollTopBtn,
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 80px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent1), var(--accent2));
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
            z-index: 998;
            box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transform: translateY(20px) scale(0.8);
        }

        #scrollTopBtn.visible,
        .back-to-top.visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0) scale(1);
        }

        #scrollTopBtn:hover,
        .back-to-top:hover {
            transform: translateY(-4px) scale(1.1);
            box-shadow: 0 12px 30px rgba(124, 58, 237, 0.6);
        }

        /* ================================================
           👆 SECTION DIVIDERS — animated line
           ================================================ */
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.3), transparent);
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }

        .section-divider::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: dividerSweep 4s ease-in-out infinite;
        }

        @keyframes dividerSweep {
            0% {
                left: -100%;
            }

            100% {
                left: 200%;
            }
        }

        /* ================================================
           👆 TYPING CURSOR ANIMATION
           ================================================ */
        .typing-cursor::after {
            content: '|';
            animation: blink 1s step-end infinite;
            color: var(--accent2);
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }
        }

        /* ================================================
           👆 GLASSMORPHISM CARD
           ================================================ */
        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 28px;
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        }

        /* ================================================
           👆 ANIMATED GRADIENT BORDER
           ================================================ */
        .grad-border {
            position: relative;
            border-radius: 16px;
        }

        .grad-border::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 17px;
            background: linear-gradient(135deg, var(--accent1), var(--accent2), var(--accent3), var(--accent1));
            background-size: 300% 300%;
            animation: gradBorderAnim 4s ease infinite;
            z-index: -1;
        }

        @keyframes gradBorderAnim {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        /* ================================================
           👆 RESPONSIVE
           ================================================ */
        @media (max-width: 900px) {
            .hero {
                grid-template-columns: 1fr;
            }

            .two-col {
                grid-template-columns: 1fr;
            }

            .wrap {
                padding: 20px 20px 10px;
                /* was: padding: 20px; */
            }

            .grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            }

            .floating-social {
                display: none;
            }

            header {
                padding: 8px 16px;
                --header-height: 60px;
            }

            body {
                padding-top: 60px;
            }

            nav {
                gap: 6px;
            }

            .nav-btn {
                padding: 7px 10px;
                font-size: 11px;
            }

            .comparison {
                flex-direction: column;
            }

            .download {
                flex-direction: column;
            }

            .grid[style*="grid-template-columns: 1fr 1fr"] {
                grid-template-columns: 1fr !important;
            }
        }

        @media (max-width: 600px) {
            .hero h2 {
                font-size: 26px;
            }

            .ctas {
                gap: 8px;
            }

            .cta {
                font-size: 13px;
                padding: 9px 14px;
            }

            .stat-number {
                font-size: 2rem;
            }
        }

        /* 👆 Reduce motion for accessibility */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* ================================================
   👆 NEW: THEME TOGGLE SWITCH
   ================================================ */
        .theme-toggle {
            width: 46px;
            height: 26px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--glass-border);
            position: relative;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            padding: 2px;
            flex-shrink: 0;
            transition: background 0.3s ease;
        }

        [data-theme="light"] .theme-toggle {
            background: rgba(15, 23, 42, 0.1);
        }

        .theme-toggle .knob {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent1), var(--accent2));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 11px;
            transform: translateX(0);
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
        }

        [data-theme="light"] .theme-toggle .knob {
            transform: translateX(20px);
        }

        /* ================================================
   👆 NEW: NAV DROPDOWN (Extensions menu)
   ================================================ */
        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-menu {
            display: none;
            position: absolute;
            top: calc(100% + 10px);
            left: 0;
            min-width: 240px;
            background: rgba(10, 16, 32, 0.97);
            border: 1px solid var(--glass-border);
            border-radius: 14px;
            padding: 8px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            z-index: 200;
            backdrop-filter: blur(20px);
        }

        [data-theme="light"] .nav-dropdown-menu {
            background: rgba(255, 255, 255, 0.98);
        }

        .nav-dropdown.open .nav-dropdown-menu {
            display: block;
            animation: modalSlideIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .nav-dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-soft);
            transition: all 0.2s ease;
        }

        .nav-dropdown-menu a:hover {
            background: rgba(124, 58, 237, 0.12);
            color: #fff;
            transform: translateX(4px);
        }

        [data-theme="light"] .nav-dropdown-menu a:hover {
            color: var(--text-strong);
        }

        /* ================================================
        👆 NEW: PAGE HERO (sub-page intro banner)
        ================================================ */
        .page-hero {
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.08));
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 30px 36px;
            margin-top: 20px;
            margin-bottom: 34px;
            text-align: center;
        }

        .page-hero h2 {
            font-size: clamp(24px, 3.4vw, 34px);
            font-weight: 900;
            margin: 0 0 10px;
            background: linear-gradient(90deg, var(--accent1), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .page-hero p {
            color: var(--text-muted);
            margin: 0 auto;
            font-size: 15px;
            max-width: 640px;
        }

        /* ================================================
        👆 NEW: PAGE TABS (in-page quick nav on tutorials)
        ================================================ */
        .page-tabs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 36px;
            justify-content: center;
        }

        .page-tab {
            padding: 10px 18px;
            border-radius: 10px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            color: var(--text-soft);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .page-tab:hover,
        .page-tab.active {
            background: linear-gradient(90deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.1));
            border-color: rgba(124, 58, 237, 0.4);
            color: var(--text-strong);
        }

        /* ================================================
        👆 NEW: BREADCRUMB / BACK LINK for sub-pages
        ================================================ */
        .crumb-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0px 0 26px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .crumb-bar a {
            color: var(--accent2);
            font-weight: 600;
        }

        .crumb-bar a:hover {
            text-decoration: underline;
        }

        /* ================================================
        👆 NEW: EXTENSION HUB CARDS (choose an extension)
        ================================================ */
        .ext-hub-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 18px;
            margin-bottom: 34px;
        }

        .ext-hub-card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 22px;
            text-align: center;
            transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .ext-hub-card:hover {
            transform: translateY(-6px);
            border-color: rgba(124, 58, 237, 0.3);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        }

        .ext-hub-card i {
            font-size: 30px;
            margin-bottom: 12px;
            display: block;
        }

        .ext-hub-card h4 {
            margin: 0 0 8px;
            font-size: 15px;
        }

        .ext-hub-card p {
            margin: 0 0 14px;
            font-size: 12.5px;
            color: var(--text-muted);
        }

        .ext-hub-card.current {
            border-color: rgba(124, 58, 237, 0.5);
            box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.3);
        }

        /* ================================================
        👆 NEW: PURCHASE PAGE — Pricing + Plan side by side
        ================================================ */
        .purchase-columns {
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 32px;
            align-items: start;
        }

        @media (max-width: 900px) {
            .purchase-columns {
                grid-template-columns: 1fr;
            }
        }

        /* ================================================
        👆 NEW: FOOTER QUICK LINKS (site map row)
        ================================================ */
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
            margin: 0 0 22px;
            padding-bottom: 18px;
            border-bottom: 1px solid var(--glass-border);
            font-size: 13px;
        }

        .footer-links a {
            color: var(--text-soft);
            font-weight: 600;
            transition: color 0.2s ease;
        }

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

        /* ================================================
        👆 LIGHT THEME — targeted surface fixes
        (base colours not covered by variable flips above)
        ================================================ */
        [data-theme="light"] header {
            background: rgba(255, 255, 255, 0.78);
        }

        [data-theme="light"] header.scrolled {
            background: rgba(255, 255, 255, 0.94);
            box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(124, 58, 237, 0.08);
        }

        [data-theme="light"] .contact-modal {
            background: rgba(255, 255, 255, 0.98);
        }

        [data-theme="light"] .documents-modal {
            background: rgba(255, 255, 255, 0.98);
        }

        [data-theme="light"] footer {
            background: rgba(255, 255, 255, 0.85);
        }

        [data-theme="light"] .hero h2 {
            background: linear-gradient(135deg, #0f172a 0%, #33415a 50%, #4c1d95 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        [data-theme="light"] .lead {
            color: var(--text-muted);
        }

        [data-theme="light"] .brand p {
            color: var(--text-muted);
        }

        [data-theme="light"] .contact-details .value,
        [data-theme="light"] .document-link {
            color: var(--text-strong);
        }

        [data-theme="light"] .floating-social-btn::after {
            background: rgba(20, 20, 30, 0.95);
        }

        [data-theme="light"] ::selection {
            background: rgba(124, 58, 237, 0.25);
        }

        @media (max-width: 640px) {
            .nav-dropdown-menu {
                left: auto;
                right: 0;
            }
        }


        /* ================================================
        👆 NEW: REDESIGNED SITE FOOTER
        ================================================ */
        .site-footer {
            margin-top: 30px;
            padding: 30px 20px 16px;
            border-top: 1px solid var(--glass-border);
            background: var(--glass);
        }

        .site-footer .container {
            max-width: 1180px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 10px;
            margin-bottom: 10px;
            align-items: start;
        }

        .footer-brand .brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: inherit;
            margin-bottom: 12px;
        }

        .footer-brand .brand-mark {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            overflow: hidden;
            background: transparent;
            border: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .footer-brand .brand-mark img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .footer-brand .brand-text strong {
            display: block;
            font-size: 15px;
            color: var(--text-strong);
            font-family: "Syne", system-ui, "Inter", sans-serif;
        }

        .footer-brand .brand-text span {
            font-size: 12px;
            color: var(--text-muted);
        }

        .footer-brand p {
            font-size: 13px;
            line-height: 1.7;
            color: var(--text-muted);
            margin: 0 0 10px;
            max-width: 360px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
            text-align: left;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-soft);
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: linear-gradient(135deg, var(--accent1), var(--accent2));
            color: #fff;
            transform: translateY(-3px);
            border-color: transparent;
        }

        .footer-col h5 {
            font-size: 12.5px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--text-strong);
            margin: 0 0 10px;
            font-family: "Syne", system-ui, "Inter", sans-serif;
            font-weight: 700;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col ul li a {
            font-size: 13.5px;
            color: var(--text-muted);
            transition: color 0.2s ease;
        }

        .footer-col ul li a:hover {
            color: var(--accent2);
        }

        .footer-disclaimer {
            font-size: 12px;
            line-height: 1.6;
            color: var(--text-muted);
            background: rgba(239, 68, 68, 0.05);
            border: 1px solid rgba(239, 68, 68, 0.15);
            border-radius: 10px;
            padding: 14px 16px;
            margin-bottom: 10px;
        }

        .footer-disclaimer strong {
            color: #ef4444;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
            padding-top: 20px;
            border-top: 1px solid var(--glass-border);
            font-size: 12.5px;
            color: var(--text-muted);
        }

        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 560px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
    header,
    .contact-modal,
    .documents-modal,
    .nav-dropdown-menu,
    .card-hero,
    .panel,
    .feature,
    .stat,
    .testimonial,
    .faq-item,
    .install-step,
    .video-card,
    .ext-hub-card,
    .page-tab,
    footer,
    .site-footer {
        backdrop-filter: none !important;
    }
}


        /* ================================================
   👆 NEW: Hide floating social dock while a modal is open
   ================================================ */
        .floating-social.is-hidden {
            opacity: 0;
            pointer-events: none;
            transform: translateX(30px);
        }

        .floating-social {
            transition: opacity 0.3s ease, transform 0.3s ease;
        }


        @keyframes floatBob {

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

            50% {
                transform: translateY(-14px);
            }
        }

        .float-anim {
            animation: floatBob 4.5s ease-in-out infinite;
        }

        .hero>* {
            opacity: 0;
            animation: heroRise 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .hero>*:nth-child(1) {
            animation-delay: 0.1s;
        }

        .hero>*:nth-child(2) {
            animation-delay: 0.2s;
        }

        .hero>*:nth-child(3) {
            animation-delay: 0.35s;
        }

        .hero>*:nth-child(4) {
            animation-delay: 0.6s;
        }

        .hero>*:nth-child(5) {
            animation-delay: 1.05s;
        }

        @keyframes heroRise {
            from {
                opacity: 0;
                transform: translateY(64px); 
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        @media (prefers-reduced-motion: reduce) {
    .hero > *,
    .float-anim,
    .marquee-track,
    .install-steps::after {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}