:root {
            /* DARK THEME */
            --bg: #030303;
            --accent: #00f2ff;
            --text: #ffffff;
            --text-muted: #888888;
            --dim-border: rgba(255, 255, 255, 0.1);
            --glass: rgba(10, 10, 10, 0.85);
            --card-bg: rgba(255,255,255,0.03);
            --card-hover: rgba(255,255,255,0.06);
            --section-pad: 100px 5%;
            --map-filter: grayscale(100%) invert(90%) contrast(1.2);
        }

        [data-theme="light"] {
            /* LIGHT THEME */
            --bg: #f4f4f4;
            --accent: #fcc119;
            --text: #111111;
            --text-muted: #666666;
            --dim-border: rgba(0, 0, 0, 0.1);
            --glass: rgba(255, 255, 255, 0.9);
            --card-bg: #ffffff;
            --card-hover: #ffffff;
            --section-pad: 100px 5%;
            --map-filter: grayscale(100%);
        }

        body, html { 
            margin: 0; padding: 0; background: var(--bg); color: var(--text); 
            font-family: 'Inter', sans-serif; overflow-x: hidden; scroll-behavior: smooth;
            transition: background 0.5s, color 0.5s;
            cursor: default;
        }

        /* --- GLOBAL BACKGROUND TRACKER --- */
        #bg-tracker {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0.4;
        }

        /* --- SYSTEM STATUS BAR (NEW) --- */
        #system-bar {
            position: fixed;
            top: 0; left: 0; width: 100%;
            height: 30px;
            background: var(--glass);
            border-bottom: 1px solid var(--dim-border);
            z-index: 1100; /* Above Header */
            display: flex; align-items: center;
            overflow: hidden;
            font-family: 'Courier New', monospace;
            font-size: 0.7rem;
            color: var(--accent);
            backdrop-filter: blur(5px);
        }

        .sys-track {
            display: flex;
            white-space: nowrap;
            animation: sysScroll 30s linear infinite;
        }

        .sys-track span {
            margin-right: 50px;
            opacity: 0.8;
            font-weight: 600;
        }

        @keyframes sysScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* --- HEADER (Adjusted for System Bar) --- */
        #site-header { 
            position: fixed; 
            top: 30px; /* Pushed down by System Bar */
            left: 0; 
            width: 100%; 
            padding: 20px 40px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            z-index: 1000; 
            transition: 0.4s ease; 
            box-sizing: border-box; 
        }
        #site-header.scrolled { background: var(--glass); backdrop-filter: blur(15px); border-bottom: 1px solid var(--dim-border); padding: 15px 40px; }
        
        /* Mobile Header Styles */
        @media (max-width: 768px) {
            #site-header { 
                background: #000 !important; 
                backdrop-filter: none !important; 
                padding: 8px 15px !important; 
                min-height: 50px !important;
                box-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
            }
            #site-header.scrolled { 
                background: #000 !important; 
                padding: 8px 15px !important; 
            }
            .header-logo { 
                font-size: 1.2rem !important; 
                flex-shrink: 1 !important;
                min-width: 0 !important;
            }
            .header-logo img {
                height: 35px !important;
                max-width: 120px !important;
            }
            .header-controls { 
                gap: 15px !important; 
                align-items: center !important;
                flex-shrink: 0 !important;
            }
            .theme-toggle { 
                width: 20px !important; 
                height: 20px !important; 
            }
            .hamburger {
                width: 25px !important;
                height: 18px !important;
                flex-direction: column !important;
                justify-content: space-between !important;
            }
            .hamburger span {
                width: 100% !important;
                height: 2px !important;
                background: var(--text) !important;
                transition: 0.3s !important;
            }
        }
        
        @media (max-width: 480px) {
            #site-header { 
                padding: 6px 10px !important; 
                min-height: 45px !important;
            }
            .header-logo { 
                font-size: 1.1rem !important; 
            }
            .header-logo img {
                height: 30px !important;
                max-width: 100px !important;
            }
            .header-controls { 
                gap: 12px !important; 
            }
            .theme-toggle { 
                width: 18px !important; 
                height: 18px !important; 
            }
            .hamburger {
                width: 22px !important;
                height: 16px !important;
            }
            .hamburger span {
                height: 1.5px !important;
            }
        }
        .header-logo { font-size: 1.5rem; font-weight: 900; letter-spacing: -1px; color: var(--text); text-decoration: none; z-index: 1001; }
        .header-controls { display: flex; align-items: center; gap: 30px; z-index: 1001; }
        .theme-toggle { cursor: pointer; width: 24px; height: 24px; fill: var(--text); transition: 0.3s; }
        .theme-toggle:hover { fill: var(--accent); transform: rotate(15deg); }
        .hamburger { width: 30px; height: 20px; position: relative; cursor: pointer; }
        .hamburger.hidden { opacity: 0; pointer-events: none; }
        .hamburger span { display: block; position: absolute; height: 2px; width: 100%; background: var(--text); border-radius: 2px; transition: 0.3s; }
        .hamburger span:nth-child(1) { top: 0; }
        .hamburger span:nth-child(2) { top: 9px; }
        .hamburger span:nth-child(3) { top: 18px; }

        /* --- NAV OVERLAY --- */
        .nav-overlay { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: var(--bg); z-index: 1000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1); border-left: 1px solid var(--dim-border); }
        .nav-overlay.open { right: 0; }
        .close-menu-btn { position: absolute; top: 20px; right: 40px; font-size: 4rem; color: var(--text); cursor: pointer; line-height: 1; transition: 0.3s; opacity: 0; transform: scale(0.5); pointer-events: none; }
        .close-menu-btn:hover { color: var(--accent); transform: rotate(90deg); }
        .nav-overlay.open .close-menu-btn { opacity: 1; transform: scale(1); pointer-events: all; transition-delay: 0.2s; }
        .nav-links { list-style: none; text-align: center; padding: 0; }
        .nav-links li { margin: 20px 0; opacity: 0; transform: translateY(20px); transition: 0.5s; }
        .nav-overlay.open .nav-links li { opacity: 1; transform: translateY(0); }
        .nav-overlay.open .nav-links li:nth-child(1) { transition-delay: 0.1s; }
        .nav-overlay.open .nav-links li:nth-child(2) { transition-delay: 0.2s; }
        .nav-overlay.open .nav-links li:nth-child(3) { transition-delay: 0.3s; }
        .nav-overlay.open .nav-links li:nth-child(4) { transition-delay: 0.4s; }
        .nav-links a { font-size: 3rem; font-weight: 900; color: var(--text); text-decoration: none; text-transform: uppercase; letter-spacing: -1px; transition: 0.3s; }
        .nav-links a:hover { color: var(--accent); -webkit-text-stroke: 1px var(--accent); }

        /* --- MASTER TYPOGRAPHY & RESPONSIVE FONT SIZING --- */
        
        /* Base Typography */
        body, html { 
            margin: 0; padding: 0; background: var(--bg); color: var(--text); 
            font-size: 16px; /* Base font size for rem calculations */
            line-height: 1.6;
        }
        
        /* Responsive Typography System */
        @media (max-width: 1200px) {
            body, html { font-size: 15px; }
        }
        
        @media (max-width: 768px) {
            body, html { font-size: 14px; }
        }
        
        @media (max-width: 480px) {
            body, html { font-size: 13px; }
        }
        
        /* Headings - Responsive Scaling */
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; }
        h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.2; }
        h3 { font-size: clamp(1.3rem, 3vw, 2rem); line-height: 1.3; }
        h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); line-height: 1.4; }
        p { font-size: clamp(0.9rem, 2vw, 1.1rem); line-height: 1.6; }
        
        /* Section Titles - Optimized */
        h2.section-title { 
            font-size: clamp(1.8rem, 4vw, 3rem); 
            margin-bottom: clamp(1.5rem, 3vw, 2.5rem); 
            text-transform: uppercase; 
            letter-spacing: clamp(-1px, -0.5vw, -2px); 
            color: var(--text); 
            text-align: center; 
            width: 100%; 
        }
        
        /* Mobile Typography Overrides */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem !important; }
            h2 { font-size: 2rem !important; }
            h3 { font-size: 1.5rem !important; }
            h4 { font-size: 1.3rem !important; }
            p { font-size: 1rem !important; }
            
            h2.section-title {
                font-size: 2rem !important;
                margin-bottom: 1.5rem !important;
                letter-spacing: -1px !important;
            }
            
            /* Component-specific fonts */
            .header-logo { font-size: 1.2rem !important; }
            .tab-text h3 { font-size: 1.3rem !important; }
            .tab-text p { font-size: 1rem !important; }
            .metric-title { font-size: 0.85rem !important; }
            .metric-value-large { font-size: 2rem !important; }
            .metric-sub { font-size: 0.8rem !important; }
            .tech-card h3 { font-size: 1.2rem !important; }
            .tech-card p { font-size: 0.9rem !important; }
            .stat-label { font-size: 0.8rem !important; }
            .footer-brand h2 { font-size: 1.5rem !important; }
            .footer-col h4 { font-size: 0.9rem !important; }
            .footer-col a { font-size: 0.85rem !important; }
        }
        
        @media (max-width: 480px) {
            h1 { font-size: 2rem !important; }
            h2 { font-size: 1.8rem !important; }
            h3 { font-size: 1.3rem !important; }
            h4 { font-size: 1.1rem !important; }
            p { font-size: 0.95rem !important; }
            
            h2.section-title {
                font-size: 1.8rem !important;
                margin-bottom: 1.2rem !important;
                letter-spacing: -0.5px !important;
            }
            
            /* Component-specific fonts - smaller screens */
            .header-logo { font-size: 1.1rem !important; }
            .tab-text h3 { font-size: 1.2rem !important; }
            .tab-text p { font-size: 0.95rem !important; }
            .metric-title { font-size: 0.8rem !important; }
            .metric-value-large { font-size: 1.8rem !important; }
            .metric-sub { font-size: 0.75rem !important; }
            .tech-card h3 { font-size: 1.1rem !important; }
            .tech-card p { font-size: 0.85rem !important; }
            .stat-label { font-size: 0.75rem !important; }
            .footer-brand h2 { font-size: 1.2rem !important; }
            .footer-col h4 { font-size: 0.8rem !important; }
            .footer-col a { font-size: 0.8rem !important; }
            
            /* Form elements */
            .form-input { font-size: 1rem !important; }
            .form-label { font-size: 0.7rem !important; }
            .submit-btn { font-size: 0.8rem !important; }
            
            /* Tab buttons */
            .tab-btn, .metric-tab-btn { font-size: 0.9rem !important; }
            
            /* Cookie banner */
            #cookie-banner p { font-size: 0.75rem !important; }
            #cookie-banner button { font-size: 0.75rem !important; }
        }
        
        @media (max-width: 320px) {
            h1 { font-size: 1.8rem !important; }
            h2 { font-size: 1.6rem !important; }
            h3 { font-size: 1.2rem !important; }
            h4 { font-size: 1rem !important; }
            p { font-size: 0.9rem !important; }
            
            h2.section-title {
                font-size: 1.6rem !important;
                margin-bottom: 1rem !important;
            }
            
            /* Ultra-small screen adjustments */
            .header-logo { font-size: 1rem !important; }
            .tab-text h3 { font-size: 1.1rem !important; }
            .tab-text p { font-size: 0.9rem !important; }
            .metric-value-large { font-size: 1.5rem !important; }
            .footer-brand h2 { font-size: 1rem !important; }
        }

        /* --- HERO --- */
        .hero { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: radial-gradient(circle at 30% 40%, rgba(0,242,252,0.1) 0%, transparent 50%), url('https://images.unsplash.com/photo-1555947255-521b3f3a635?w=1920&q=80') center/cover; background-blend-mode: screen; }
        .hero-text-overlay { position: absolute; top: 65%; left: 50%; transform: translate(-50%, -50%); text-align: center; z-index: 10; }
        .logo-container {
            position: relative;
            z-index: 10;
            margin-bottom: 20px;
        }
        .logo-container img {
            display: block;
            width: 500px;
            height: auto;
        }
        
        /* Mobile Hero Logo */
        @media (max-width: 768px) {
            .logo-container {
                margin-bottom: 15px !important;
            }
            .logo-container img {
                width: 300px !important;
                max-width: 80vw !important;
            }
        }
        
        @media (max-width: 480px) {
            .logo-container {
                margin-bottom: 12px !important;
            }
            .logo-container img {
                width: 200px !important;
                max-width: 70vw !important;
            }
        }
        
        @media (max-width: 320px) {
            .logo-container img {
                width: 150px !important;
                max-width: 60vw !important;
            }
        }
        @keyframes logoButtonPress {
            0% { transform: scale(1); }
            50% { transform: scale(0.95); }
            100% { transform: scale(1); }
        }
        
        /* Header logo animation */
        #site-header img {
            transition: transform 0.3s ease-out;
        }
        .logo-hero { font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; color: var(--text); line-height: 1; font-family: 'Courier New', monospace; margin-bottom: 20px; }
        .sub-heading { font-size: clamp(1rem, 3vw, 1.5rem); color: var(--text-muted); opacity: 0; animation: fadeInUp 1s ease-out 0.5s forwards; }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        
        /* Logo Hero Container - Responsive */
        .logo-hero-container {
            position: relative;
            z-index: 10;
            margin-bottom: 20px;
        }
        
        .logo-hero-image {
            display: block;
            max-width: 90vw;
            max-height: 30vh;
            width: auto;
            height: 167px;
            object-fit: contain;
        }
        
        /* Responsive Logo Sizes */
        @media (max-width: 1200px) {
            .logo-hero-image {
                height: 140px;
                max-width: 80vw;
            }
        }
        
        @media (max-width: 768px) {
            .logo-hero-image {
                height: 120px;
                max-width: 70vw;
            }
        }
        
        @media (max-width: 480px) {
            .logo-hero-image {
                height: 100px;
                max-width: 60vw;
            }
        }
        
        @media (max-width: 320px) {
            .logo-hero-image {
                height: 80px;
                max-width: 50vw;
            }
        }

        .sub-heading { font-size: clamp(0.7rem, 1vw, 1rem); text-transform: uppercase; letter-spacing: 3px; color: var(--accent); font-weight: 600; background: var(--glass); display: inline-block; padding: 8px 20px; border-radius: 50px; backdrop-filter: blur(4px); min-width: 300px; font-family: 'Courier New', monospace; border: 1px solid var(--dim-border); }
        #field-container { position: absolute; inset: 0; z-index: 5; background: radial-gradient(circle at 50% 50%, var(--bg) 0%, var(--bg) 80%); width: 100%; height: 100%; }
        
        .sensor-hub { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 20px; height: 20px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 80px var(--accent); z-index: 60; transition: 0.5s; }
        
        /* MOUSE TRACKER */
        #mouse-tracker { position: absolute; width: 40px; height: 40px; border: 1px dashed var(--accent); border-radius: 50%; pointer-events: none; z-index: 100; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s; mix-blend-mode: difference; }
        #mouse-tracker::after { content: ''; position: absolute; top: 50%; left: 50%; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; transform: translate(-50%, -50%); }
        .hero:hover #mouse-tracker { animation: trackerPulse 2s infinite; }
        @keyframes trackerPulse { 0% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.4); transform: translate(-50%, -50%) scale(1); } 50% { box-shadow: 0 0 0 20px rgba(0, 242, 255, 0); transform: translate(-50%, -50%) scale(1.1); } 100% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0); transform: translate(-50%, -50%) scale(1); } }

        /* VISITOR */
        .visitor { position: absolute; width: 28px; height: 28px; z-index: 55; transition: transform 0.1s linear; will-change: transform; }
        .visitor svg { width: 100%; height: 100%; fill: var(--text); opacity: 0.3; transition: fill 0.5s, filter 0.5s, opacity 0.5s; }
        .visitor.pinging svg { fill: var(--text); filter: drop-shadow(0 0 20px var(--accent)); opacity: 1; }
        
        /* HEATMAP OVERRIDES */
        .hero.heatmap-mode .sensor-hub { background: #ff3300; box-shadow: 0 0 100px #ff3300; }
        .hero.heatmap-mode #connections { opacity: 0; } 
        .hero.heatmap-mode .visitor svg { opacity: 0; }
        .hero.heatmap-mode .visitor::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 300px; height: 300px; background: radial-gradient(circle, rgba(255, 50, 0, 0.6) 0%, rgba(255, 165, 0, 0.3) 40%, transparent 70%); border-radius: 50%; mix-blend-mode: screen; animation: heatPulse 4s infinite alternate; }
        @keyframes heatPulse { from { transform: translate(-50%, -50%) scale(1); opacity: 0.5; } to { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; } }

        .hero svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: visible; }
        #connections { z-index: 10; pointer-events: none; transition: opacity 0.5s; }
        .signal-pulse { fill: none; stroke: var(--accent); stroke-width: 3px; opacity: 1; transform-origin: center; animation: expandFade 2s ease-out forwards; }
        @keyframes expandFade { 0% { r: 0; opacity: 1; stroke-width: 4px; } 50% { opacity: 0.8; } 100% { r: 300px; opacity: 0; stroke-width: 0px; } }
        
        /* INTELLIGENCE MATRIX (RIGHT SIDEBAR) */
        .data-panel { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); width: 280px; z-index: 90; background: var(--glass); border: 1px solid var(--dim-border); padding: 25px; backdrop-filter: blur(15px); border-radius: 4px; transition: 0.3s; }
        .data-panel h3 { font-size: 0.7rem; color: var(--accent); text-transform: uppercase; margin-bottom: 15px; letter-spacing: 2px; }
        .data-item { margin-bottom: 20px; border-bottom: 1px solid var(--dim-border); padding-bottom: 10px; }
        .data-label { font-size: 0.8rem; opacity: 0.6; display: block; color: var(--text); }
        .data-value { font-size: 1.1rem; font-weight: 600; display: block; margin-top: 4px; color: var(--text); transition: color 0.3s; }
        
        .nav-ui { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 15px; z-index: 110; background: var(--glass); padding: 8px; border-radius: 50px; border: 1px solid var(--dim-border); backdrop-filter: blur(10px); }
        .nav-ui button { background: transparent; border: none; color: var(--text-muted); padding: 12px 25px; cursor: pointer; border-radius: 25px; text-transform: uppercase; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; transition: 0.3s; }
        .nav-ui button.active { background: var(--accent); color: #000; box-shadow: 0 0 20px rgba(0, 242, 255, 0.4); }
        [data-theme="light"] .nav-ui button.active { color: #fff; box-shadow: 0 0 20px rgba(252, 193, 25, 0.4); }
        .hero.heatmap-mode .nav-ui button.active { background: #ff3300; box-shadow: 0 0 20px rgba(255, 51, 0, 0.6); color: white; }

        /* --- CONTACT PULSE BUTTON --- */
        .contact-float {
            position: fixed; bottom: 30px; left: 30px; width: 60px; height: 60px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 1000; box-shadow: 0 5px 20px rgba(0,0,0,0.3); cursor: pointer; transition: 0.3s;
            animation: contactPing 10s infinite;
        }
        .contact-float svg { width: 24px; height: 24px; fill: #000; }
        [data-theme="light"] .contact-float svg { fill: #fff; }
        .contact-float:hover { transform: scale(1.1); }
        @keyframes contactPing { 0% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.7); } 5% { box-shadow: 0 0 0 30px rgba(0, 242, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0); } }
        [data-theme="light"] .contact-float { animation-name: contactPingLight; }
        @keyframes contactPingLight { 0% { box-shadow: 0 0 0 0 rgba(252, 193, 25, 0.7); } 5% { box-shadow: 0 0 0 30px rgba(252, 193, 25, 0); } 100% { box-shadow: 0 0 0 0 rgba(252, 193, 25, 0); } }

        /* --- GLOBAL SECTIONS --- */
        section { padding: var(--section-pad); border-bottom: 1px solid var(--dim-border); min-height: 80vh; position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; }
        h2.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem; text-transform: uppercase; letter-spacing: -2px; color: var(--text); text-align: center; width: 100%; }

        /* --- PLATFORM OVERVIEW (UPDATED) --- */
        #platform-intro { padding: 100px 5%; background: var(--bg); text-align: center; border-bottom: 1px solid var(--dim-border); min-height: auto; }
        .intro-max-width { max-width: 800px; margin: 0 auto; }
        .intro-lead { font-size: 1.5rem; line-height: 1.5; margin-bottom: 30px; color: var(--text); font-weight: 300; }
        .intro-sub { font-size: 1.1rem; line-height: 1.6; color: var(--text-muted); margin-bottom: 20px; }
        
        /* Mobile Platform Intro */
        @media (max-width: 768px) {
            #platform-intro {
                padding: 60px 3% !important;
                text-align: center !important;
            }
            .intro-max-width {
                max-width: 100% !important;
                margin: 0 auto !important;
                padding: 0 2% !important;
            }
            .intro-lead {
                font-size: 1.2rem !important;
                line-height: 1.4 !important;
                margin-bottom: 25px !important;
                text-align: center !important;
            }
            .intro-sub {
                font-size: 1rem !important;
                line-height: 1.5 !important;
                margin-bottom: 25px !important;
                text-align: center !important;
            }
            .problems-grid {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
                margin: 0 auto !important;
                max-width: 100% !important;
                padding: 0 2% !important;
            }
            .problem-card {
                padding: 25px !important;
                text-align: center !important;
                margin: 0 auto !important;
            }
        }
        
        @media (max-width: 480px) {
            #platform-intro {
                padding: 40px 2% !important;
            }
            .intro-max-width {
                padding: 0 3% !important;
            }
            .intro-lead {
                font-size: 1.1rem !important;
                margin-bottom: 20px !important;
            }
            .intro-sub {
                font-size: 0.95rem !important;
                margin-bottom: 20px !important;
            }
            .problems-grid {
                gap: 15px !important;
                padding: 0 3% !important;
            }
            .problem-card {
                padding: 20px !important;
            }
        }
        .intro-highlight { color: var(--accent); font-weight: 600; font-size: 1.2rem; margin-top: 40px; display: block; }

        /* --- INSTALLATION STEPS --- */
        #installation { padding: 80px 5%; background: var(--bg); border-bottom: 1px solid var(--dim-border); min-height: auto; text-align: center; }
        #installation h2.section-title { margin-bottom: 3rem; }
        .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
        .step-card { text-align: center; padding: 20px; transition: transform 0.3s; position: relative; }
        .step-card:hover { transform: translateY(-5px); }
        .step-icon { width: 80px; height: 80px; margin: 0 auto 20px; position: relative; }
        .step-card h3 { font-size: 1.2rem; color: var(--accent); margin-bottom: 10px; }
        .step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
        @media (max-width: 1024px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 600px) { .steps-grid { grid-template-columns: 1fr; } }
        .step-svg { width: 100%; height: 100%; overflow: visible; }
        .step-path { fill: none; stroke: var(--text); stroke-width: 2; }
        .step-fill { fill: var(--text); }
        .step-accent { fill: var(--accent); stroke: var(--accent); }
        .step-usb-move { animation: stepPlug 2s infinite alternate ease-in-out; }
        @keyframes stepPlug { 0% { transform: translateX(-20px); } 100% { transform: translateX(0); } }
        .step-signal { opacity: 0; animation: stepEmit 1.5s infinite; }
        .step-signal:nth-child(2) { animation-delay: 0.5s; }
        .step-signal:nth-child(3) { animation-delay: 1s; }
        @keyframes stepEmit { 0% { opacity: 0; transform: translateX(0); } 50% { opacity: 1; } 100% { opacity: 0; transform: translateX(20px); } }
        .step-graph-line { stroke-dasharray: 100; stroke-dashoffset: 100; animation: stepDraw 3s infinite linear; }
        @keyframes stepDraw { to { stroke-dashoffset: 0; } }
        .step-bar { transform-origin: bottom; animation: stepGrow 2s infinite alternate; }
        .step-arrow { animation: stepRise 2s infinite alternate; }
        @keyframes stepGrow { from { transform: scaleY(0.2); } to { transform: scaleY(1); } }
        @keyframes stepRise { from { transform: translate(0, 10px); } to { transform: translate(10px, -10px); } }

        /* --- PROBLEMS GRID HOVER EFFECTS --- */
        .problem-card:hover { transform: translateY(-5px); border-color: var(--accent); }
        @media (max-width: 768px) { .problems-grid { grid-template-columns: 1fr; } }

        /* --- ANALYTICS HUB --- */
        #analytics-hub { padding: 80px 5%; background: var(--card-bg); border-bottom: 1px solid var(--dim-border); text-align: center; }
        #analytics-hub h2.section-title { margin-bottom: 3rem; }
        .analytics-container { display: flex; flex-direction: column; gap: 30px; max-width: 1200px; margin: 0 auto; align-items: center; }
        .metric-tabs { display: flex; gap: 20px; border-bottom: 1px solid var(--dim-border); padding-bottom: 10px; margin-bottom: 30px; }
        .metric-tab-btn { background: transparent; border: none; color: var(--text-muted); font-size: 1.1rem; text-transform: uppercase; font-weight: 700; cursor: pointer; transition: 0.3s; padding: 10px 20px; }
        .metric-tab-btn.active { color: var(--accent); border-bottom: 2px solid var(--accent); }
        .metric-view { display: none; grid-template-columns: repeat(3, 1fr); gap: 30px; animation: fadeIn 0.5s ease; }
        .metric-view.active { display: grid; }
        @media (max-width: 900px) { .metric-view { grid-template-columns: 1fr; } }
        .metric-card { background: var(--glass); border: 1px solid var(--dim-border); padding: 30px; border-radius: 4px; position: relative; overflow: hidden; transition: transform 0.3s; }
        .metric-card:hover { transform: translateY(-5px); border-color: var(--accent); }
        .metric-title { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 10px; }
        .metric-value-large { font-size: 3rem; font-weight: 900; color: var(--text); font-family: 'Courier New', monospace; }
        .metric-sub { font-size: 0.8rem; color: var(--accent); margin-top: 5px; }
        .metric-bar { height: 6px; background: var(--dim-border); margin-top: 15px; border-radius: 3px; overflow: hidden; }
        .metric-fill { height: 100%; background: var(--accent); width: 0%; transition: width 1.5s ease-out; }
        .metric-donut { width: 80px; height: 80px; border-radius: 50%; background: conic-gradient(var(--accent) 0%, var(--dim-border) 0%); position: absolute; right: 20px; top: 20px; transition: background 1s; opacity: 0.5; }
        .metric-donut::after { content: ''; position: absolute; inset: 10px; background: var(--card-bg); border-radius: 50%; }

        /* --- TECHNOLOGY GRID (UPDATED: Holographic) --- */
        #technology { text-align: center; }
        #technology h2.section-title { margin-bottom: 3rem; }
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; max-width: 1200px; margin: 0 auto; }
        @media (max-width: 1024px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) { .grid-3 { grid-template-columns: 1fr; } }
        
        .tech-card { 
            background: var(--card-bg); 
            border: 1px solid transparent; 
            padding: 2rem; 
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); 
            cursor: pointer; 
            overflow: hidden; 
            position: relative; 
            min-height: 250px; 
            display: flex; flex-direction: column;
            border-radius: 4px; 
        }

        /* HOLOGRAPHIC BORDER LOGIC */
        .tech-card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 4px; 
            padding: 1px; 
            background: linear-gradient(45deg, var(--dim-border), rgba(255,255,255,0.1)); 
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude; 
            pointer-events: none;
        }

        .tech-card::after {
            content: "";
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: conic-gradient(from 0deg, transparent 0deg, var(--accent) 30deg, transparent 60deg);
            animation: rotateBorder 4s linear infinite;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            z-index: 0;
        }

        .tech-card h4, .tech-card p, .tech-anim-box { position: relative; z-index: 1; }
        .tech-card:hover::after { opacity: 1; }
        .tech-card:hover { transform: translateY(-5px); box-shadow: 0 0 30px rgba(0, 242, 255, 0.15); }
        [data-theme="light"] .tech-card:hover { box-shadow: 0 0 30px rgba(252, 193, 25, 0.15); }

        @keyframes rotateBorder {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .tech-card h4 { color: var(--accent); margin-bottom: 1rem; text-transform: uppercase; font-size: 1.1rem; }
        .tech-card p { opacity: 0.7; line-height: 1.6; margin-bottom: 0; transition: 0.3s; color: var(--text); }
        .tech-anim-box { flex-grow: 1; max-height: 0; opacity: 0; transition: all 0.5s ease; margin-top: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
        .tech-card:hover .tech-anim-box { max-height: 200px; opacity: 1; margin-top: 20px; }

        /* ANIMATIONS SVG */
        .usb-svg, .nodes-svg, .chart-svg, .shield-svg { width: 100%; height: 120px; display: block; overflow: visible; }
        .usb-port { fill: var(--text); opacity: 0.2; }
        .usb-device-group { transform: translateX(-100px); }
        .tech-card:hover .usb-device-group { animation: plugInSlow 3s ease-in-out infinite alternate; }
        @keyframes plugInSlow { 0%, 40% { transform: translateX(-100px); } 100% { transform: translateX(0); } }
        .usb-body { fill: var(--text); stroke: var(--accent); stroke-width: 2px; }
        .radar-container { width: 150px; height: 150px; border: 1px solid var(--dim-border); border-radius: 50%; position: relative; background: radial-gradient(circle, rgba(0,242,255,0.05) 0%, transparent 70%); overflow: hidden; }
        .radar-line { width: 100%; height: 100%; border-radius: 50%; border: 1px solid var(--accent); position: absolute; animation: pingScale 2s infinite; opacity: 0; }
        @keyframes pingScale { 0% { transform: scale(0); opacity: 1; } 100% { transform: scale(1); opacity: 0; } }
        .radar-blip { position: absolute; width: 3px; height: 3px; background: var(--text); border-radius: 50%; opacity: 0; animation: blipAnim 2s infinite; }
        @keyframes blipAnim { 0%, 100% { opacity: 0; transform: scale(0.5); } 50% { opacity: 1; transform: scale(1.5); box-shadow: 0 0 5px var(--accent); } }
        .dash-grid { display: grid; grid-template-columns: 1fr; width: 100%; gap: 15px; }
        .dash-row { display: flex; justify-content: space-between; border-bottom: 1px solid var(--dim-border); padding: 5px 0; font-family: 'Courier New', monospace; font-size: 0.9rem; color: var(--text); }
        .dash-val { color: var(--accent); font-weight: bold; }
        .node-dot { fill: var(--accent); animation: pulseNode 2s infinite; }
        .node-line { stroke: var(--dim-border); stroke-width: 1; stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset 1s; }
        .tech-card:hover .node-line { animation: drawLine 2s forwards; }
        @keyframes drawLine { to { stroke-dashoffset: 0; } }
        @keyframes pulseNode { 0%, 100% { r: 3; } 50% { r: 5; } }
        .chart-bar { fill: var(--text-muted); transition: height 0.5s; }
        .tech-card:hover .chart-bar { fill: var(--accent); animation: growBar 1s ease forwards; }
        @keyframes growBar { from { height: 0; } }
        .tech-card:hover .shield-svg { stroke: var(--accent); transition: 0.5s; }
        .shield-check { stroke: var(--accent); stroke-width: 3; stroke-dasharray: 50; stroke-dashoffset: 50; }
        .tech-card:hover .shield-check { animation: drawCheck 0.5s 0.5s forwards; }
        @keyframes drawCheck { to { stroke-dashoffset: 0; } }

        /* --- SECTORS TABS --- */
        #sectors { padding-top: 100px; text-align: center; }
        #sectors h2.section-title { margin-bottom: 3rem; }
        .tabs-wrapper { display: flex; flex-direction: column; gap: 40px; max-width: 1200px; margin: 0 auto; align-items: center; }
        .tabs-nav { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 10px; border-bottom: 1px solid var(--dim-border); }
        .tab-btn { background: transparent; border: none; color: var(--text-muted); font-size: 1.2rem; text-transform: uppercase; font-weight: 800; padding: 10px 20px; cursor: pointer; transition: 0.3s; white-space: nowrap; }
        .tab-btn.active { color: var(--accent); border-bottom: 2px solid var(--accent); }
        .tab-btn:hover { color: var(--text); }
        .tab-content { position: relative; min-height: 500px; }
        .tab-pane { display: none; animation: fadeIn 0.8s ease forwards; grid-template-columns: 1.5fr 1fr; gap: 40px; }
        .tab-pane.active { display: grid; }
        @media (max-width: 900px) { .tab-pane { grid-template-columns: 1fr; } }
        
        /* Mobile Tab Content */
        @media (max-width: 768px) {
            .tab-content {
                min-height: auto !important;
                padding: 20px 3% !important;
            }
            .tab-pane {
                display: none !important;
                animation: fadeIn 0.8s ease forwards !important;
                grid-template-columns: 1fr !important;
                gap: 30px !important;
                padding: 20px 0 !important;
            }
            .tab-pane.active {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
            }
            .tab-image {
                width: 100% !important;
                height: 200px !important;
                margin-bottom: 20px !important;
                border-radius: 8px !important;
                object-fit: cover !important;
            }
            .tab-text {
                padding: 0 !important;
                text-align: center !important;
                width: 100% !important;
            }
            .tab-text h3 {
                font-size: 1.3rem !important;
                margin-bottom: 15px !important;
                text-align: center !important;
                line-height: 1.3 !important;
            }
            .tab-text p {
                font-size: 1rem !important;
                line-height: 1.6 !important;
                text-align: center !important;
                margin: 0 !important;
            }
            .tab-text strong {
                display: block !important;
                margin: 10px 0 5px 0 !important;
                font-size: 0.95rem !important;
                color: var(--accent) !important;
            }
            .tab-text br {
                display: none !important;
            }
        }
        
        @media (max-width: 480px) {
            .tab-content {
                padding: 15px 2% !important;
            }
            .tab-pane {
                gap: 20px !important;
                padding: 15px 0 !important;
            }
            .tab-image {
                height: 160px !important;
                margin-bottom: 15px !important;
            }
            .tab-text h3 {
                font-size: 1.2rem !important;
                margin-bottom: 12px !important;
            }
            .tab-text p {
                font-size: 0.95rem !important;
                line-height: 1.5 !important;
            }
            .tab-text strong {
                font-size: 0.9rem !important;
                margin: 8px 0 4px 0 !important;
            }
        }
        .tab-image { width: 100%; height: 400px; object-fit: cover; border-radius: 4px; filter: grayscale(80%) contrast(1.2); transition: 0.5s; }
        .tab-pane:hover .tab-image { filter: grayscale(0%); }
        .tab-text { padding: 20px 0; }
        .tab-text h3 { font-size: 2.5rem; margin-bottom: 1rem; line-height: 1.1; color: var(--text);margin-top:0rem; }
        .tab-text p { font-size: 1.1rem; line-height: 1.6; opacity: 0.8; color: var(--text); }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* --- ACHIEVEMENTS & SCALE --- */
        #achievements { padding: 80px 5%; background: var(--bg); border-bottom: 1px solid var(--dim-border); min-height: auto; text-align: center; }
        #achievements h2.section-title { margin-bottom: 3rem; }
        @media (max-width: 768px) { 
            .awards-section .logo-grid, .members-section .logo-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 480px) { 
            .awards-section .logo-grid, .members-section .logo-grid { grid-template-columns: 1fr; }
        }
        .logo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 20px; }
        .logo-box { background: var(--card-bg); height: 80px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--dim-border); color: var(--text-muted); font-weight: 700; text-transform: uppercase; transition: 0.3s; font-size: 0.8rem; }
        .logo-box:hover { border-color: var(--accent); color: var(--accent); }

        .stats-counter-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; border-top: 1px solid var(--dim-border); padding-top: 60px; max-width: 1000px; margin: 0 auto; }
        @media (max-width: 900px) { .stats-counter-bar { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
        @media (max-width: 500px) { .stats-counter-bar { grid-template-columns: 1fr; } }
        .stat-item { display: flex; flex-direction: column; align-items: center; }
        .stat-number { font-size: clamp(2rem, 4vw, 4rem); font-weight: 900; color: var(--text); line-height: 1; font-family: 'Courier New', monospace; margin-bottom: 10px; }
        .stat-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); max-width: 200px; line-height: 1.4; }

        /* --- ACCORDION --- */
        #case-studies { padding: 0; height: 90vh; display: flex; flex-direction: column; }
        #case-studies h2 { padding: 50px 5% 20px; margin: 0; font-size: 3rem; text-transform: uppercase; }
        .accordion-container { flex: 1; display: flex; width: 100%; overflow: hidden; border-top: 1px solid var(--dim-border); border-bottom: 1px solid var(--dim-border); }
        .acc-item { position: relative; flex: 1; border-right: 1px solid var(--dim-border); transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1); cursor: pointer; overflow: hidden; }
        .acc-item:hover { flex: 3; }
        .acc-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; filter: grayscale(100%) brightness(0.6); transition: 0.5s; }
        .acc-item:hover .acc-bg { filter: grayscale(0%) brightness(0.8); }
        .acc-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); transform: translateY(20px); transition: 0.5s; }
        .acc-item:hover .acc-content { transform: translateY(0); }
        .acc-brand { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; color: #fff; margin-bottom: 10px; display: block; }
        .acc-desc { font-size: 1rem; color: #ccc; max-height: 0; overflow: hidden; opacity: 0; transition: 0.5s; }
        .acc-item:hover .acc-desc { max-height: 200px; opacity: 1; margin-top: 10px; }
        .acc-logo { position: absolute; top: 30px; left: 30px; width: 50px; height: 50px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; font-weight: bold; font-size: 0.8rem; z-index: 2; }
        @media (max-width: 768px) { .accordion-container { flex-direction: column; } .acc-item { border-right: none; border-bottom: 1px solid var(--dim-border); } .acc-desc { max-height: 100px; opacity: 1; } }

        /* --- TRUSTED BY --- */
        #trusted-by { padding: 40px 0 20px; background: var(--bg); border-bottom: 1px solid var(--dim-border); overflow: hidden; min-height: auto; text-align: center; }
        .marquee-header { text-align: center; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); font-size: clamp(0.8rem, 2vw, 1rem); margin-bottom: 30px; }
        .marquee-track { display: flex; width: max-content; animation: scrollMarquee 30s linear infinite; }
        .marquee-track img { 
            height: clamp(30px, 5vw, 50px);
            margin: 0 clamp(20px, 3vw, 40px);
            object-fit: contain;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        .marquee-track img:hover { opacity: 1; }
        @keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        
        /* Responsive Marquee */
        @media (max-width: 768px) {
            .marquee-track {
                animation-duration: 20s;
            }
        }
        
        @media (max-width: 480px) {
            .marquee-header {
                font-size: 0.8rem;
            }
            .marquee-track img {
                height: clamp(25px, 4vw, 40px);
                margin: 0 clamp(15px, 2vw, 30px);
            }
        }
        @keyframes scrollMembers { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        @keyframes scrollAwards { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* --- CONTACT --- */
        #contact { padding: 0; min-height: auto; display: grid; grid-template-columns: 1fr 1fr; }
        @media (max-width: 768px) { #contact { grid-template-columns: 1fr; } }
        .contact-form-container { padding: 60px 10%; background: var(--bg); display: flex; flex-direction: column; justify-content: center; border-top: 1px solid var(--dim-border); }
        @media (max-width: 768px) { 
            .contact-form-container { 
                padding: 40px 5%; 
                flex-direction: column; 
                align-items: center; 
                text-align: center; 
            } 
            /* Regional contacts stack on mobile */
            .contact-form-container > div:last-child > div {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 20px !important;
            }
            .contact-form-container > div:last-child > div > div {
                text-align: center !important;
                padding: 15px !important;
            }
        }
        @media (max-width: 480px) { 
            .contact-form-container { 
                padding: 30px 3%; 
            } 
            /* Regional contacts stack on mobile */
            .contact-form-container > div:last-child > div {
                grid-template-columns: 1fr !important;
                gap: 15px !important;
            }
            .contact-form-container > div:last-child > div > div {
                text-align: center !important;
                padding: 12px !important;
            }
        }
        .form-group { margin-bottom: 30px; position: relative; }
        .form-input { width: 100%; background: transparent; border: none; border-bottom: 1px solid #333; padding: 15px 0; color: var(--text); font-size: 1.2rem; outline: none; transition: 0.3s; font-family: 'Inter', sans-serif; }
        .form-input:focus { border-bottom-color: var(--accent); }
        .form-label { position: absolute; top: 15px; left: 0; color: var(--text-muted); pointer-events: none; transition: 0.3s; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
        .form-input:focus ~ .form-label, .form-input:valid ~ .form-label { top: -10px; font-size: 0.7rem; color: var(--accent); }
        .submit-btn { margin-top: 20px; padding: 15px 40px; background: var(--accent); color: #000; border: none; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.3s; }
        [data-theme="light"] .submit-btn { color: #fff; }
        .submit-btn:hover { background: var(--text); color: var(--bg); box-shadow: 0 0 20px rgba(255,255,255,0.3); }
        .map-container { position: relative; width: 100%; height: 100%; min-height: 350px; }
        .map-iframe { width: 100%; height: 100%; border: none; filter: var(--map-filter); }

        /* --- MASTER MOBILE RESPONSIVE FIXES --- */
        
        /* Global Mobile Base Styles */
        @media (max-width: 768px) {
            /* Ensure all sections have equal padding */
            section {
                padding: 60px 3% !important;
                text-align: center !important;
            }
            
            /* Center all content */
            .intro-max-width, .tabs-wrapper, .steps-grid, .grid-3, .metric-view, .logo-grid, .stats-counter-bar, .accordion-container, .marquee-track {
                max-width: 100% !important;
                margin: 0 auto !important;
                text-align: center !important;
            }
            
            /* Fix analytics hub */
            #analytics-hub {
                padding: 60px 3% !important;
                text-align: center !important;
            }
            .metric-tabs {
                flex-direction: column !important;
                gap: 10px !important;
                text-align: center !important;
            }
            .metric-tab-btn {
                text-align: center !important;
                padding: 15px 20px !important;
            }
            
            /* Fix sectors tabs - same as analytics hub */
            #sectors {
                padding: 60px 3% !important;
                text-align: center !important;
            }
            .tabs-wrapper {
                max-width: 100% !important;
                margin: 0 auto !important;
                text-align: center !important;
            }
            .tabs-nav {
                flex-direction: column !important;
                gap: 10px !important;
                text-align: center !important;
                border-bottom: 1px solid var(--dim-border) !important;
                padding-bottom: 10px !important;
                margin-bottom: 30px !important;
            }
            .tab-btn {
                text-align: center !important;
                padding: 15px 20px !important;
                width: 100% !important;
                max-width: 300px !important;
            }
            
            /* Fix technology section */
            .grid-3 {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
                padding: 0 2% !important;
            }
            .tech-card {
                text-align: center !important;
                padding: 25px !important;
            }
            
            /* Fix stats counter */
            .stats-counter-bar {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
                padding: 40px 3% !important;
                max-width: 100% !important;
            }
            .stat-label {
                max-width: 100% !important;
            }
            
            /* Fix accordion */
            .accordion-container {
                flex-direction: column !important;
                gap: 20px !important;
                padding: 0 2% !important;
            }
            .acc-item {
                border-right: none !important;
                border-bottom: 1px solid var(--dim-border) !important;
                text-align: center !important;
                padding: 20px !important;
            }
            
            /* Fix trusted by */
            #trusted-by {
                padding: 30px 3% !important;
                text-align: center !important;
            }
            .marquee-header {
                font-size: 0.8rem !important;
                text-align: center !important;
            }
            
            /* Fix achievements */
            #achievements {
                padding: 60px 3% !important;
                text-align: center !important;
            }
            .logo-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 20px !important;
                padding: 0 2% !important;
            }
            
            /* Fix case studies */
            #case-studies {
                padding: 60px 3% !important;
                text-align: center !important;
            }
        }
        
        /* Small Mobile Fixes */
        @media (max-width: 480px) {
            /* Tighter padding for small screens */
            section {
                padding: 40px 2% !important;
            }
            
            /* Even tighter gaps */
            .steps-grid, .grid-3, .metric-view, .logo-grid {
                gap: 20px !important;
                padding: 0 3% !important;
            }
            
            /* Smaller text */
            h2.section-title {
                font-size: 1.8rem !important;
                margin-bottom: 1.5rem !important;
            }
            
            /* Fix logo grid */
            .logo-grid {
                grid-template-columns: 1fr !important;
                gap: 15px !important;
            }
            
            /* Fix accordion */
            .acc-item {
                padding: 15px !important;
            }
            
            /* Fix trusted by */
            #trusted-by {
                padding: 20px 2% !important;
            }
            
            /* Fix achievements */
            #achievements {
                padding: 40px 2% !important;
            }
            
            /* Fix analytics */
            #analytics-hub {
                padding: 40px 2% !important;
            }
            .metric-tab-btn {
                padding: 12px 15px !important;
                font-size: 0.9rem !important;
            }
            .metric-card {
                padding: 20px !important;
            }
            
            /* Fix sectors tabs - small mobile */
            #sectors {
                padding: 40px 2% !important;
            }
            .tabs-nav {
                gap: 8px !important;
                padding-bottom: 8px !important;
                margin-bottom: 20px !important;
            }
            .tab-btn {
                padding: 12px 15px !important;
                font-size: 0.9rem !important;
                max-width: 250px !important;
            }
        }

        /* --- FOOTER --- */
        .site-footer { background: var(--bg); padding: 80px 5% 40px; border-top: 1px solid var(--dim-border); font-size: 0.9rem; color: var(--text); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
        @media (max-width: 768px) { 
            .footer-grid { 
                grid-template-columns: repeat(2, 1fr); 
                gap: 30px; 
                padding: 60px 3% 30px; 
            } 
        }
        @media (max-width: 480px) { 
            .footer-grid { 
                grid-template-columns: 1fr; 
                gap: 20px; 
                padding: 40px 3% 20px; 
            } 
        }
        .footer-brand h2 { font-size: 2rem; margin-bottom: 15px; font-weight: 900; }
        @media (max-width: 768px) { .footer-brand h2 { font-size: 1.5rem; } }
        @media (max-width: 480px) { .footer-brand h2 { font-size: 1.2rem; } }
        .footer-brand p { opacity: 0.5; line-height: 1.6; max-width: 300px; }
        @media (max-width: 768px) { .footer-brand p { max-width: 100%; } }
        .footer-col h4 { color: var(--text); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; }
        @media (max-width: 768px) { .footer-col h4 { font-size: 0.9rem; margin-bottom: 15px; } }
        @media (max-width: 480px) { .footer-col h4 { font-size: 0.8rem; margin-bottom: 10px; } }
        .footer-col ul { list-style: none; padding: 0; }
        .footer-col li { margin-bottom: 10px; }
        @media (max-width: 768px) { .footer-col li { margin-bottom: 8px; } }
        @media (max-width: 480px) { .footer-col li { margin-bottom: 6px; } }
        .footer-col a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
        .footer-col a:hover { color: var(--accent); }
        .footer-bottom { border-top: 1px solid var(--dim-border); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
        @media (max-width: 768px) { .footer-bottom { flex-direction: column; gap: 15px; text-align: center; } }
        @media (max-width: 480px) { .footer-bottom { gap: 10px; } }
        .social-links a { margin-left: 20px; display: inline-block; vertical-align: middle; }
        @media (max-width: 768px) { .social-links a { margin-left: 15px; } }
        @media (max-width: 480px) { .social-links a { margin-left: 10px; margin-bottom: 10px; } }
        .social-icon { width: 24px; height: 24px; fill: var(--text-muted); transition: 0.3s; }
        .social-links a:hover .social-icon { fill: var(--accent); }

        @media (max-width: 768px) {
            .hero {
                height: auto !important;
                min-height: 70vh !important;
                padding: 120px 20px 60px !important; /* Account for system bar and header */
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                justify-content: flex-start !important;
            }
            .logo-container {
                margin-bottom: 25px !important;
                z-index: 20 !important;
            }
            .hero-text-overlay {
                position: relative !important;
                top: auto !important;
                left: auto !important;
                transform: none !important;
                margin-bottom: 40px !important;
                width: 100% !important;
                z-index: 20 !important;
            }
            .data-panel { 
                display: grid !important; 
                grid-template-columns: 1fr 1fr !important;
                position: relative !important;
                top: auto !important;
                right: auto !important;
                transform: none !important;
                width: 95% !important;
                max-width: 450px !important;
                margin: 0 auto 40px !important;
                padding: 20px !important;
                background: var(--glass) !important;
                backdrop-filter: blur(10px) !important;
                border: 1px solid var(--dim-border) !important;
                gap: 10px !important;
                z-index: 20 !important;
            }
            .data-panel h3 {
                grid-column: 1 / -1 !important;
                text-align: center !important;
                margin-bottom: 15px !important;
                font-size: 0.8rem !important;
            }
            .data-panel .data-item {
                margin-bottom: 0 !important;
                padding: 10px !important;
                border-bottom: 1px solid var(--dim-border) !important;
                background: rgba(255,255,255,0.02) !important;
                border-radius: 4px !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
                gap: 8px !important;
            }
            .data-panel .data-item .data-value {
                font-size: 0.9rem !important;
            }
            .data-panel .data-item:nth-last-child(-n+2) {
                border-bottom: none !important;
            }
            .nav-ui {
                position: relative !important;
                bottom: auto !important;
                left: auto !important;
                transform: none !important;
                margin: 0 auto !important;
                width: 100% !important;
                max-width: 320px !important;
            }
            .logo-hero { font-size: 3.5rem; }
            #site-header { padding: 15px 20px; }
            .close-menu-btn { right: 20px; }
            .tabs-nav { gap: 10px; }
            .tab-btn { padding: 10px 15px; font-size: 0.9rem; }
        }
    

            @media (max-width: 768px) {
                #cookie-banner {
                    padding: 15px 5% !important;
                    flex-direction: column !important;
                    align-items: stretch !important;
                    gap: 15px !important;
                }
                #cookie-banner > div {
                    flex-direction: column !important;
                    gap: 15px !important;
                    align-items: center !important;
                    text-align: center !important;
                }
                #cookie-banner p {
                    font-size: 0.8rem !important;
                    line-height: 1.4 !important;
                }
                #cookie-banner button {
                    width: 100% !important;
                    max-width: 200px !important;
                    padding: 12px 16px !important;
                    font-size: 0.8rem !important;
                }
            }
            @media (max-width: 480px) {
                #cookie-banner {
                    padding: 12px 3% !important;
                    gap: 12px !important;
                }
                #cookie-banner p {
                    font-size: 0.75rem !important;
                }
                #cookie-banner button {
                    padding: 10px 14px !important;
                    font-size: 0.75rem !important;
                }
            }
/* --- RESPONSIVE FIXES FOR HERO AND MENU --- */
@media (max-width: 768px) {
    .nav-ui {
        flex-direction: column;
        width: 90%;
        max-width: 320px;
        bottom: 20px;
        border-radius: 15px;
        padding: 10px;
    }
    .nav-ui button {
        width: 100%;
        border-radius: 10px;
        padding: 10px;
    }
    #site-header {
        padding: 15px 15px !important;
        box-sizing: border-box;
    }
    .logo-hero-image {
        max-width: 100%;
    }
}
@media (max-width: 5000px) {
    .logo-container img {
        width:500px;
    }
}
@media (max-width: 1300px) {
    .data-panel {
        position: absolute;
        right: 20px;
        width: 150px;
    }
    .logo-container img {
        width:400px;
    }
    .sub-heading {
        min-width:200px;
    }
}
@media (max-width: 900px) {
    .data-panel {
        position: absolute;
        right: 10px;
        width: 140px;
    }
    .logo-container img {
        width:320px;
    }
    .sub-heading {
        min-width:160px;
    }
}

/* --- REGIONAL CONTACTS GRID --- */
.regional-contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 600px) {
    .regional-contacts-grid {
        grid-template-columns: 1fr;
    }
}

/* --- KEY BENEFITS ICONS --- */
.benefit-icon {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2px;
    flex-shrink: 0;
    animation: iconPulse 3s infinite ease-in-out;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
        filter: drop-shadow(0 0 0px var(--accent));
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 8px var(--accent));
    }
}

/* --- FIX EXPLODING ICON WIDTH --- */
.hero .data-panel .benefit-icon {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 24px !important;
    height: 24px !important;
    opacity: 1 !important;
}

/* --- MEMBERS SCROLLER TEXT NAMES --- */
.member-name, .member-name a {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    white-space: nowrap;
    padding: 0 30px;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
    text-decoration: none;
}
.member-name:hover, .member-name a:hover {
    opacity: 1;
    color: var(--accent);
    text-decoration: none;
}
.member-sep {
    color: var(--accent);
    font-size: 1.4rem;
    opacity: 0.5;
    flex-shrink: 0;
}

/* --- PARTNER SCROLLER SUBTITLE --- */
.member-sub {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--accent);
    display: block;
    text-transform: uppercase;
    margin-top: 2px;
    opacity: 0.8;
}
