        /* === CORE CSS & VARIABLES === */
        :root {
            --navy: #0B0F25;
            --cyan-neon: #00F2FE;
            --magenta-neon: #FF007F;
            --text-muted: #5A6482;
            --bg-secondary: #F8FAFC;
            --border-light: #E2E8F0;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 10px 30px -5px rgba(11, 15, 37, 0.08);
            --shadow-hover: 0 20px 40px -5px rgba(11, 15, 37, 0.12);
            --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; scroll-behavior: smooth; }
        body { overflow-x: hidden; color: var(--navy); background-color: #ffffff; }

        [id] { scroll-margin-top: 110px; }

        a:focus-visible, button:focus-visible, summary:focus-visible {
            outline: 2px solid var(--cyan-neon); outline-offset: 3px; border-radius: 4px;
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-delay: 0s !important;
                animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; transition-delay: 0s !important;
            }
        }

        /* === SCROLL PROGRESS BAR === */
        #scroll-progress {
            position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 1100;
            background: linear-gradient(90deg, var(--cyan-neon), var(--magenta-neon));
            box-shadow: 0 0 10px rgba(0, 242, 254, 0.6); pointer-events: none;
        }

        /* === BACK TO TOP BUTTON === */
        #back-to-top {
            position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 900;
            width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(0, 242, 254, 0.3);
            background: var(--navy); color: var(--cyan-neon); font-size: 1.1rem; cursor: pointer;
            display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-hover);
            opacity: 0; visibility: hidden; transform: translateY(12px); transition: var(--transition-smooth);
        }
        #back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
        #back-to-top:hover { background: var(--cyan-neon); color: var(--navy); transform: translateY(-4px); }

        /* === WHATSAPP CHAT BUTTON ===
           Stacked directly above #back-to-top in the same corner, sharing its right
           offset for alignment. Unlike back-to-top, always visible (not scroll-gated) --
           a chat CTA should be reachable the moment someone lands on the page. */
        #whatsapp-chat {
            position: fixed; right: clamp(16px, 3vw, 28px); bottom: calc(clamp(16px, 3vw, 28px) + 62px); z-index: 900;
            width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(37, 211, 102, 0.4);
            background: #25D366; color: #fff; font-size: 1.4rem; cursor: pointer;
            display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-hover);
            text-decoration: none; transition: var(--transition-smooth);
        }
        #whatsapp-chat:hover { background: #1EBE5A; color: #fff; transform: translateY(-4px); }

        /* === SPLIT-TEXT REVEAL UTILITY (hero h1 / section h2 headings) === */
        .split-line { overflow: hidden; display: block; }
        .split-word { display: inline-block; will-change: transform, opacity; }

        .container { max-width: 1300px; margin: 0 auto; padding: 0 5%; width: 100%; }
        
        .eyebrow { color: var(--magenta-neon); font-weight: 700; letter-spacing: 2px; font-size: 0.85rem; text-transform: uppercase; display: inline-block; margin-bottom: 12px; }
        .section-header { text-align: center; margin-bottom: clamp(30px, 6vw, 60px); }
        .section-header.left { text-align: left; }

        /* === UPGRADED PREMIUM SOLID DARK HEADER (NO BLUR) === */
        /* The header is one single compact, collapsed-look bar at every scroll
           position now -- top of the page and after scrolling alike -- instead of
           a separate tall/expanded top-of-page look that had to be kept in sync
           with the scrolled state. The .scrolled class is still added/removed on
           scroll (see js/main.js) but nothing here reacts to it any more. */
        header {
            height: 75px; display: flex; align-items: center; position: fixed;
            width: 100%; top: 0; z-index: 1000; background: #050814;
            border-bottom: 1px solid rgba(0, 242, 254, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; height: 100%; position: relative; }
        
        .logo { display: flex; align-items: center; height: 100%; text-decoration: none; position: relative; z-index: 3; }
        .logo-img { height: clamp(50px, 6.5vw, 76px); width: auto; display: block; object-fit: contain; transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease; }
        .logo:hover .logo-img { transform: scale(1.05); }
        
        .nav-menu { display: flex; gap: 28px; list-style: none; align-items: center; margin: 0; padding: 0; }
        .nav-menu li a { 
            text-decoration: none; color: rgba(255,255,255,0.9); font-weight: 500; 
            font-size: 0.95rem; position: relative; padding: 5px 0; transition: color 0.3s ease;
        }
        .nav-menu li a::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
            background: var(--cyan-neon); transition: width 0.3s ease; border-radius: 2px;
            box-shadow: 0 0 8px rgba(0, 242, 254, 0.5);
        }
        .nav-menu li a:hover { color: #fff; }
        .nav-menu li a:hover::after { width: 100%; }

        /* === DROPDOWN MENU STYLING (SOLID BACKGROUND) === */
        .dropdown { position: relative; }
        .dropdown-menu {
            position: absolute; top: 100%; left: 0; background: #0B0F25;
            min-width: 250px; border-radius: 12px; border: 1px solid rgba(0, 242, 254, 0.2);
            box-shadow: 0 20px 40px rgba(0,0,0,0.6); padding: 10px 0; list-style: none;
            opacity: 0; visibility: hidden; transform: translateY(10px);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 1002;
        }
        /* :hover previews the submenu on pointer devices; .active is the click-driven
           trigger toggled by toggleDropdown() in js/main.js -- needed so a click (or a
           touch-enabled laptop where :hover may not fire before a tap) reliably opens
           the panel too, not just mouse hover. */
        .dropdown:hover .dropdown-menu,
        .dropdown.active .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-menu li { width: 100%; text-align: left; }
        .dropdown-menu li a {
            display: block; padding: 10px 20px; font-size: 0.9rem; color: rgba(255,255,255,0.8);
            transition: all 0.2s ease; border-bottom: none !important;
        }
        .dropdown-menu li a::after { display: none !important; }
        .dropdown-menu li a:hover { background: rgba(0, 242, 254, 0.1); color: var(--cyan-neon); transform: translateX(4px); }

        /* The explicit "All Services"/"All Industries" link at the top of a submenu --
           keeps the parent hub page reachable now that tapping the parent item itself
           opens the submenu (on mobile) rather than navigating there directly. */
        .dropdown-hub-link { color: var(--cyan-neon) !important; font-weight: 700 !important; border-bottom: 1px solid rgba(0, 242, 254, 0.15) !important; }
        .dropdown-menu-grid .dropdown-hub-link { grid-column: 1 / -1; }

        /* Two-column variant for longer dropdowns (e.g. Industries) so the panel stays wide, not tall.
           Anchored to the right edge (not left) since this item sits late in the nav row --
           growing left keeps it inside the container instead of overflowing the viewport. */
        .dropdown-menu.dropdown-menu-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 0 4px;
            min-width: 460px; padding: 10px; left: auto; right: 0;
        }
        .dropdown-menu.dropdown-menu-grid li a { border-radius: 8px; white-space: nowrap; }
        
        .header-cta {
            background: transparent; border: 2px solid var(--cyan-neon); color: var(--cyan-neon);
            padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: 0.85rem;
            text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease;
            text-decoration: none; box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
        }
        .header-cta:hover {
            background: var(--cyan-neon); color: var(--navy); box-shadow: 0 0 20px rgba(0, 242, 254, 0.4); transform: translateY(-2px);
        }

        /* The toggle is pinned to the header's right edge at all times -- nav and
           CTA are always hidden until it's clicked (see the collapsed-look rules
           below), so there's no longer a scenario where it needs to coexist
           inline with them and get squeezed in a narrow band. */
        .mobile-btn {
            display: flex; align-items: center; justify-content: center;
            width: 44px; height: 44px; font-size: 2rem; background: none; border: none;
            cursor: pointer; color: #fff; z-index: 1001; transition: transform 0.3s ease;
            position: absolute; right: 0; top: 50%; transform: translateY(-50%);
        }
        .mobile-btn:hover { color: var(--cyan-neon); transform: translateY(-50%) scale(1.1); }

        /* right:0 sits flush against the header's own edge -- fine at desktop
           widths, where the container's max-width leaves a wide outer margin
           before the actual viewport edge, but on phones/tablets (no such
           margin) it reads as jammed into the corner. Nudge it in a bit,
           scaling with viewport width like the rest of the site's spacing. */
        @media(max-width: 1200px) {
            .mobile-btn { right: clamp(14px, 4vw, 24px); }
        }

        /* === SCROLL-COLLAPSE HEADER: LOGO CENTERS, NAV HIDES BEHIND TOGGLE === */
        header nav { transition: opacity 0.3s ease; }
        .nav-cta { transition: opacity 0.3s ease; }

        /* === CARPET-ROLL NAV REVEAL: leading edge that "unrolls" the menu open === */
        .nav-roll-edge {
            position: absolute; top: 0; left: 0; width: 16px; height: 100%;
            background: linear-gradient(90deg,
                rgba(5, 8, 20, 0.9) 0%,
                rgba(0, 242, 254, 0.9) 30%,
                rgba(255, 255, 255, 0.6) 50%,
                rgba(255, 0, 127, 0.9) 70%,
                rgba(5, 8, 20, 0.9) 100%);
            border-radius: 999px;
            box-shadow: 0 0 18px rgba(0, 242, 254, 0.55), 0 0 30px rgba(255, 0, 127, 0.3), 6px 0 20px rgba(0, 0, 0, 0.45);
            opacity: 0; visibility: hidden; pointer-events: none; z-index: 25;
        }

        /* Idle collapsed look: logo centered, nav+CTA hidden, toggle pinned to the
           right. This is the ONE closed-state look for the header -- top of the
           page and after scrolling alike, there's no separate top-of-page variant
           to keep in sync any more. */
        header:not(.nav-open) .nav-wrapper { justify-content: center; }
        header:not(.nav-open) .logo-img { height: clamp(34px, 4.5vw, 46px); }
        header:not(.nav-open) nav,
        header:not(.nav-open) .nav-cta {
            opacity: 0; pointer-events: none; position: absolute; left: -9999px;
        }

        /* Menu OPEN: logo (grouped with the nav) centered, CTA stays hidden, and
           the toggle-driven panel reveals via the carpet-roll animation --
           unconditionally on .nav-open regardless of scroll position, so opening
           the menu looks and behaves identically at the top of the page and after
           scrolling. Tablet/mobile (<=1200px) get the stacked vertical list;
           desktop (>1200px) gets nothing here, so .nav-menu simply falls back to
           its normal horizontal row, opening right in the header's own line
           instead of as a panel dropped below it. */
        header.nav-open .nav-wrapper { justify-content: center; gap: clamp(20px, 4vw, 48px); }
        header.nav-open .nav-cta {
            opacity: 0; pointer-events: none; position: absolute; left: -9999px;
        }
        header.nav-open { height: 100px; background: #0B0F25; box-shadow: none; }

        @media(max-width: 1200px) {
            header.nav-open .nav-menu {
                position: absolute; top: 100%; left: 0; width: 100%;
                background: #0B0F25; flex-direction: column; gap: 0;
                border-bottom: 1px solid rgba(0, 242, 254, 0.2);
                box-shadow: 0 20px 40px rgba(0,0,0,0.5);
                padding: 10px 0; max-height: 80vh; overflow-y: auto;
            }
            header.nav-open .nav-menu li {
                width: 100%; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05);
            }
            header.nav-open .nav-menu li:last-child { border-bottom: none; }
            header.nav-open .nav-menu li a { display: block; padding: 15px; color: #fff; font-size: 1.05rem; }
            header.nav-open .nav-menu li a::after { display: none; }
            header.nav-open .dropdown-menu {
                position: relative; top: auto; left: auto; background: rgba(0,0,0,0.3);
                border: none; box-shadow: none; opacity: 1; visibility: visible; transform: none;
                max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0;
            }
            header.nav-open .dropdown.active .dropdown-menu { max-height: 60vh; overflow-y: auto; padding: 5px 0; }
            header.nav-open .dropdown-menu li a { padding: 12px 20px; text-align: center; }
            header.nav-open .dropdown-menu.dropdown-menu-grid { display: block; min-width: 0; right: auto; padding: 0; }
        }

        /* === BLOG POST BODY (blog-post.php, admin-authored HTML content) === */
        .blog-post-body { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; }
        .blog-post-body p { margin-bottom: 22px; }
        .blog-post-body h3 { color: var(--navy); font-size: 1.35rem; font-weight: 800; margin: 34px 0 14px; }
        .blog-post-body h3:first-child { margin-top: 0; }
        .blog-post-body ul, .blog-post-body ol { margin: 0 0 22px 22px; }
        .blog-post-body li { margin-bottom: 8px; }
        .blog-post-body a { color: var(--cyan-neon); font-weight: 600; }
        .blog-post-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 20px 0; }

        /* === BLOG POST LAYOUT (blog-post.php: article + "More From The Blog" sidebar) === */
        .blog-post-layout { max-width: 1140px; display: grid; grid-template-columns: 1fr 340px; gap: clamp(30px, 5vw, 60px); align-items: start; }
        .blog-post-main { min-width: 0; }
        .blog-post-sidebar { position: sticky; top: 100px; }
        .blog-sidebar-card {
            background: #fff; border: 1px solid var(--border-light); border-radius: 20px;
            padding: clamp(24px, 3vw, 30px); box-shadow: var(--shadow-md);
        }
        .blog-sidebar-card h4 {
            font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 20px;
            padding-bottom: 16px; border-bottom: 1px solid var(--border-light);
        }
        .blog-sidebar-list { display: flex; flex-direction: column; gap: 18px; }
        .blog-sidebar-item { display: flex; gap: 14px; align-items: flex-start; text-decoration: none; }
        .blog-sidebar-thumb { flex-shrink: 0; width: 68px; height: 68px; border-radius: 12px; overflow: hidden; }
        .blog-sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
        .blog-sidebar-item:hover .blog-sidebar-thumb img { transform: scale(1.08); }
        .blog-sidebar-item-text { min-width: 0; }
        .blog-sidebar-tag { display: block; color: var(--magenta-neon); font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
        .blog-sidebar-item-text h5 {
            font-size: 0.9rem; font-weight: 700; color: var(--navy); line-height: 1.4;
            transition: color 0.25s ease;
        }
        .blog-sidebar-item:hover .blog-sidebar-item-text h5 {
            background: linear-gradient(135deg, var(--cyan-neon), var(--magenta-neon));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .blog-sidebar-btn { display: flex; justify-content: center; margin-top: 24px; width: 100%; text-align: center; }
        @media(max-width: 900px) {
            .blog-post-layout { grid-template-columns: 1fr; }
            .blog-post-sidebar { position: static; }
        }

        /* === BUTTONS === */
        .btn-primary {
            background: linear-gradient(135deg, var(--cyan-neon), var(--magenta-neon));
            color: #fff; padding: 15px 32px; border-radius: 8px; text-decoration: none;
            font-weight: 600; transition: var(--transition-smooth); border: none; cursor: pointer; display: inline-block;
            box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25); text-align: center; font-size: 1rem;
            position: relative; overflow: hidden;
        }
        .btn-primary::after {
            content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
            transform: skewX(-20deg); transition: left 0.6s ease;
        }
        .btn-primary:hover::after { left: 130%; }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(255, 0, 127, 0.35); }
        .btn-secondary {
            border: 2px solid var(--cyan-neon); color: var(--navy);
            padding: 15px 32px; border-radius: 50px; text-decoration: none;
            font-weight: 600; transition: var(--transition-smooth); display: inline-block; background: transparent; text-align: center; font-size: 1rem;
        }
        .btn-secondary:hover {
            border-color: transparent; color: #fff; transform: translateY(-3px);
            background: linear-gradient(135deg, var(--cyan-neon), var(--magenta-neon));
            box-shadow: 0 10px 25px rgba(0, 242, 254, 0.3);
        }

        /* === SECTION 1: HERO === */
        .hero { background: rgba(255, 255, 255, 0.8); color: var(--navy); position: relative; z-index: 10; margin-top: 85px; padding: clamp(60px, 12vw, 120px) 0 clamp(40px, 8vw, 80px); overflow: hidden; }
        .hero-content { position: relative; z-index: 2; max-width: 950px; margin: 0 auto; text-align: center; }

        /* === 3D ANIMATED BACKGROUND (Three.js), FIXED BEHIND THE WHOLE PAGE === */
        #page-bg-canvas { position: fixed; inset: 0; width: 100vw; height: 100vh; height: 100dvh; z-index: -1; pointer-events: none; opacity: 0; transition: opacity 1.2s ease; }
        #page-bg-canvas.is-ready { opacity: 1; }
        @media(max-width: 768px) { #page-bg-canvas { opacity: 0.85; } #page-bg-canvas.is-ready { opacity: 0.85; } }
        .hero-content h1 { font-size: clamp(2rem, 5.5vw, 4.5rem); line-height: 1.1; margin: 15px 0 25px; color: var(--navy); font-weight: 800; letter-spacing: -1px; }
        .hero-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-muted); max-width: 700px; margin: 0 auto; line-height: 1.6; }
        .text-gradient { background: linear-gradient(135deg, var(--navy) 20%, var(--magenta-neon) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero-buttons { display: flex; gap: 20px; margin-top: 40px; justify-content: center; flex-wrap: wrap; }

        /* === MASTER CINEMATIC STAGE ===
           Uses dvh (with a vh fallback for older browsers) instead of plain vh. On
           real mobile browsers, 100vh is measured against the viewport with its
           collapsible address bar hidden -- taller than what's actually visible on
           first paint -- which throws off this section's height and the ScrollTrigger
           pin-spacer built from it (start/end positions, pinned duration) until the
           address bar collapses on scroll and a resize event lets things catch up.
           dvh tracks the real, currently-visible viewport from the first frame. */
        .cinematic-wrapper { background-color: #ffffff; width: 100%; height: calc(100vh - 85px); height: calc(100dvh - 85px); min-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
        .devices-stage { position: relative; width: 1000px; height: 650px; max-width: 100%; flex-shrink: 0; transform-origin: center center; display: flex; align-items: center; justify-content: center; }

        .stage-header { position: absolute; top: 35px; left: 0; width: 100%; text-align: center; opacity: 0; z-index: 15; padding: 0 15px; }
        .stage-header h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; margin-top: 8px; color: var(--navy); line-height: 1.1; }

        .scatter-item { position: absolute; top: 50%; left: 50%; background: #fff; padding: 12px 20px; border-radius: 12px; box-shadow: var(--shadow-md); border: 1px solid var(--border-light); font-weight: 700; z-index: 40; display: flex; flex-direction: column; gap: 4px; min-width: 150px; text-align: left; }
        .scatter-item span { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; }
        .val { display: flex; align-items: center; gap: 6px; }
        .fs-1 .val { color: var(--cyan-neon); font-size: 1.1rem; }
        .fs-2 .val { color: #00C48C; font-size: 1.1rem;}
        .fs-3 .val { color: var(--magenta-neon); font-size: 1.1rem;}
        .fs-4 .val { color: #FF9800; font-size: 1.1rem;}

        .laptop-container { position: absolute; bottom: 10px; left: 50%; width: 750px; max-width: 95%; display: flex; flex-direction: column; align-items: center; opacity: 0; z-index: 10; }
        .mac-screen-bezel { width: 100%; height: 350px; background: #1e222a; border-radius: 14px 14px 0 0; padding: 8px 8px 12px 8px; box-shadow: 0 20px 50px rgba(17,24,63,0.15); position: relative; }
        .mac-camera { position: absolute; top: 4px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; background: #333; border-radius: 50%; }
        
        .dashboard-ui { width: 100%; height: 100%; background: var(--bg-secondary); border-radius: 4px; overflow: hidden; display: flex; }
        .dash-sidebar { width: 45px; background: #fff; border-right: 1px solid var(--border-light); display: flex; flex-direction: column; align-items: center; padding-top: 15px; gap: 12px; }
        .dash-sidebar .icon { width: 18px; height: 18px; background: #eef2ff; border-radius: 5px; }
        .dash-main { flex: 1; padding: 15px; display: flex; flex-direction: column; }
        .dash-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .dash-title { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
        .dash-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 10px; }
        .dash-card { background: #fff; padding: 6px 8px; border-radius: 6px; border: 1px solid var(--border-light); }
        .dash-card-title { font-size: 0.55rem; color: var(--text-muted); text-transform: uppercase; font-weight: 700; margin-bottom: 2px; }
        .dash-card-value { font-size: 0.85rem; font-weight: 800; color: var(--navy); }
        
        .dash-chart-area { flex: 1; background: #fff; border-radius: 6px; border: 1px solid var(--border-light); padding: 10px; position: relative; overflow: hidden; display: flex; flex-direction: column; }
        .dash-chart-area::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 85%; background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 40" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,40 L10,25 L30,30 L50,15 L70,20 L90,5 L100,0" fill="none" stroke="%2300F2FE" stroke-width="2"/><path d="M0,40 L10,25 L30,30 L50,15 L70,20 L90,5 L100,40 Z" fill="rgba(0,242,254,0.1)"/></svg>') no-repeat bottom center / 100% 100%; }

        .mac-base { width: 108%; height: 18px; background: linear-gradient(to bottom, #d1d5db, #9ca3af); border-radius: 0 0 10px 10px; position: relative; box-shadow: 0 10px 20px rgba(0,0,0,0.2); display: flex; justify-content: center; }
        .mac-notch { width: 80px; height: 3px; background: #7c839a; border-radius: 0 0 3px 3px; }

        .mobile-container { position: absolute; top: 48%; left: 50%; width: 210px; height: 430px; background: #fff; border: 7px solid var(--navy); border-radius: 28px; box-shadow: 0 25px 50px rgba(0,0,0,0.2); z-index: 50; overflow: hidden; display: flex; flex-direction: column; will-change: left, top, transform; }
        .iphone-island { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 55px; height: 14px; background: var(--navy); border-radius: 8px; z-index: 60;}
        .phone-inner { width: 100%; height: 100%; position: relative; background: #fff; }
        
        .serp-screen-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; pointer-events: auto; z-index: 30; }
        .serp-screen { padding: 35px 10px 10px 10px; width: 100%; display: flex; flex-direction: column; gap: 8px; position: absolute; top: 0; left: 0; will-change: transform; pointer-events: auto; }

        .serp-item { border-bottom: 1px solid #eee; padding-bottom: 5px; }
        .serp-link { text-decoration: none; display: block; cursor: pointer !important; position: relative; z-index: 100; pointer-events: auto; }
        .serp-link:hover .serp-title { text-decoration: underline; color: #0056b3; }
        .serp-url { font-size: 0.5rem; color: #202124; display: flex; align-items: center; gap: 3px; margin-bottom: 2px; }
        .serp-url img { width: 8px; height: 8px; border-radius: 50%; }
        .serp-title { font-size: 0.7rem; color: #1a0dab; font-weight: 500; line-height: 1.2; margin-bottom: 2px; }
        .serp-desc { font-size: 0.58rem; color: #4d5156; line-height: 1.3; }

        .logo-screen { position: absolute; inset: 0; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; z-index: 25; pointer-events: none; }
        .logo-screen img { width: 90px; height: auto; object-fit: contain; filter: drop-shadow(0 10px 15px rgba(0,242,254,0.3)); }
        .logo-screen-sub { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; font-weight: 600; }

        /* === MOBILE PERFORMANCE OVERVIEW === */
        .mobile-perf-overview { display: none; padding: 20px 5% 60px 5%; background: #ffffff; }
        .dash-ui-mobile { background: #fff; border: 1px solid var(--border-light); border-radius: 16px; padding: 20px; box-shadow: var(--shadow-md); }
        .mobile-dash-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 15px;}
        .m-dash-card { background: var(--bg-secondary); padding: 15px 10px; border-radius: 8px; border: 1px solid var(--border-light); text-align: center; }
        .m-dash-card-title { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
        .m-dash-card-value { font-size: 1.2rem; font-weight: 800; color: var(--navy); }

        /* === PREMIUM ABOUT / AGENCY SECTION === */
        .agency-section {
            padding: clamp(60px, 8vw, 100px) 0;
            background:
                radial-gradient(650px circle at 8% 15%, rgba(0, 242, 254, 0.055), transparent 60%),
                radial-gradient(550px circle at 95% 85%, rgba(255, 0, 127, 0.045), transparent 60%),
                rgba(255, 255, 255, 0.8);
        }
        .agency-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
        .agency-text h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--navy); font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
        .agency-text p { color: var(--text-muted); font-size: clamp(0.95rem, 1.5vw, 1.05rem); line-height: 1.7; margin-bottom: 25px; }

        /* === CASE STUDY SUMMARY: allows HTML from the admin panel (bold, links,
           paragraphs, lists) -- styled the same as plain text when no tags are
           used, so existing plain-text summaries are unaffected. === */
        .agency-summary { color: var(--text-muted); font-size: clamp(0.95rem, 1.5vw, 1.05rem); line-height: 1.7; margin-bottom: 25px; }
        .agency-summary p { margin-bottom: 18px; }
        .agency-summary p:last-child { margin-bottom: 0; }
        .agency-summary h3 { color: var(--navy); font-size: 1.25rem; font-weight: 800; margin: 24px 0 12px; }
        .agency-summary h3:first-child { margin-top: 0; }
        .agency-summary ul, .agency-summary ol { margin: 0 0 18px 22px; }
        .agency-summary li { margin-bottom: 6px; }
        .agency-summary a { color: var(--cyan-neon); font-weight: 600; }
        .agency-summary strong { color: var(--navy); }
        .agency-list { list-style: none; margin-bottom: 30px; }
        .agency-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; font-size: clamp(0.9rem, 1.5vw, 1rem); color: var(--navy); font-weight: 600; }
        .agency-list li i { color: var(--cyan-neon); font-size: 1.2rem; }
        .agency-image-wrapper { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-hover); }
        .agency-image-wrapper img { width: 100%; height: auto; display: block; object-fit: cover; transition: transform 0.5s ease; }
        .agency-image-wrapper:hover img { transform: scale(1.03); }

        /* === CASE STUDY DETAIL PAGE: feature image full-width above the text,
           instead of the side-by-side layout every other .agency-grid page uses.
           Uploaded proof images vary wildly in aspect ratio (tall website
           screenshots, wide photos, square logos), so the wrapper is a fixed-
           height "frame" and the image uses object-fit: contain rather than
           cover -- the whole image is always visible, letterboxed on a light
           background instead of ever being cropped. === */
        .agency-grid.case-study-feature { grid-template-columns: 1fr; }
        .agency-grid.case-study-feature .agency-image-wrapper {
            display: flex; align-items: center; justify-content: center;
            height: clamp(260px, 42vw, 480px); background: var(--bg-secondary);
        }
        .agency-grid.case-study-feature .agency-image-wrapper img {
            width: 100%; height: 100%; object-fit: contain;
        }

        /* === TRUSTED STRIP === */
        .trusted-strip-wrapper { background: rgba(248, 250, 252, 0.8); padding: 40px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }

        /* Continuous logo marquee -- the track holds two identical copies of
           .partner-strip back to back and scrolls left by exactly one copy's
           width (50% of the track), so the loop point is seamless: the moment
           copy 1 has scrolled fully offscreen, copy 2 is sitting exactly where
           copy 1 started. Runs continuously until the pointer touches it (see
           the pause rules below), then picks back up from the exact same spot. */
        .partner-marquee {
            overflow: hidden; width: 100%;
            -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
        }
        .partner-marquee-track { display: flex; width: max-content; animation: partnerMarquee 30s linear infinite; }
        /* animation-play-state:paused freezes the track at its current frame rather
           than resetting it, so resuming continues from exactly where it stopped --
           no jump, no restart. Real mouse hover is scoped to fine-pointer devices so
           it can't get stuck "hovering" on touch; touch instead toggles .is-paused
           via touchstart/touchend in js/main.js, since touch devices have no hover. */
        @media (hover: hover) and (pointer: fine) {
            .partner-marquee:hover .partner-marquee-track { animation-play-state: paused; }
        }
        .partner-marquee.is-paused .partner-marquee-track { animation-play-state: paused; }
        .partner-strip { display: flex; align-items: center; flex-wrap: nowrap; gap: clamp(40px, 6vw, 90px); padding: 0 clamp(20px, 6vw, 90px); flex-shrink: 0; }
        .partner-strip div { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 800; color: #94A3B8; transition: var(--transition-smooth); cursor: default; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
        .partner-strip div i { font-size: 1.2em; }
        .partner-strip div:hover { color: var(--navy); transform: translateY(-2px); }
        .partner-strip span { font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
        @keyframes partnerMarquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }
        @media (prefers-reduced-motion: reduce) {
            .partner-marquee-track { animation: none; }
        }

        /* === PREMIUM DARK STATS SECTION WITH REAL IMAGE BACKGROUND === */
        .stats-section { background: linear-gradient(rgba(11, 15, 37, 0.9), rgba(11, 15, 37, 0.95)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1920&q=80') center/cover fixed; padding: clamp(60px, 8vw, 120px) 0; position: relative; color: #fff; }
        .stats-4-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 30px; position: relative; z-index: 2;}
        .stat-box {
            background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
            padding: clamp(28px, 4vw, 40px) 20px; border-radius: 20px; text-align: center;
            backdrop-filter: blur(15px); transition: var(--transition-smooth); position: relative; overflow: hidden;
        }
        .stat-box::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
            background: linear-gradient(90deg, var(--cyan-neon), var(--magenta-neon));
            transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
        }
        .stat-box:hover::before { transform: scaleX(1); }
        .stat-box:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.1); border-color: rgba(0, 242, 254, 0.4); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
        .stat-icon {
            width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 14px;
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.15), rgba(255, 0, 127, 0.15));
            border: 1px solid rgba(0, 242, 254, 0.25); display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; color: var(--cyan-neon); transition: var(--transition-smooth);
        }
        .stat-box:hover .stat-icon {
            transform: scale(1.1) rotate(-6deg);
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.28), rgba(255, 0, 127, 0.28));
        }
        .stat-box h3 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 10px; background: linear-gradient(135deg, var(--cyan-neon), var(--magenta-neon)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .stat-box p { font-size: clamp(0.85rem, 1.5vw, 1rem); color: rgba(255,255,255,0.8); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

        /* === UPGRADED SERVICES SECTION === */
        .services-section {
            padding: clamp(60px, 8vw, 100px) 0;
            background:
                radial-gradient(600px circle at 92% 10%, rgba(0, 242, 254, 0.06), transparent 55%),
                radial-gradient(600px circle at 5% 90%, rgba(255, 0, 127, 0.05), transparent 55%),
                rgba(248, 250, 252, 0.8);
        }
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 35px; margin-top: clamp(30px, 5vw, 50px);}

        /* Plain flat card -- still used as-is by About's "Core Values" grid, which
           reuses .service-card for a simpler, non-flip layout (see the inline
           style="display:block" override there). Scoped narrowly so it never conflicts
           with .service-card-flip below, which is a DIFFERENT, additional class only
           services.php's "WHAT WE DO" cards carry. */
        .service-card { background: #fff; border: 1px solid var(--border-light); border-radius: 20px; transition: var(--transition-smooth); box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column; }
        .service-card:not(.service-card-flip):hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--cyan-neon); }

        /* === services.php's "WHAT WE DO" 3D FLIP CARDS === (index.php's Our
           Expertise section was rebuilt into a scroll-driven pinned sequence --
           see below -- but services.php keeps this original flip-card version
           per request.) Front: icon + title only. Hovering (or, on touch
           devices where :hover can't really be "moved off" of, tapping -- see
           the .flipped class toggled by js/main.js) rotates the card 180° to
           reveal the back: a background photo with a dark overlay for text
           contrast, the full description, and the Learn More link. Both faces
           are absolutely positioned and stacked via a fixed card height, since
           a 3D flip needs both sides occupying the exact same box. */
        .service-card-flip { background: transparent; border: none; box-shadow: none; overflow: visible; perspective: 1800px; height: 400px; }
        .service-card-inner {
            position: relative; width: 100%; height: 100%;
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            transform-style: preserve-3d;
        }
        .service-card-flip:hover .service-card-inner,
        .service-card-flip.flipped .service-card-inner { transform: rotateY(180deg); }
        @media (prefers-reduced-motion: reduce) {
            .service-card-inner { transition: none; }
        }

        .service-card-front, .service-card-back {
            position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden;
            border-radius: 20px; overflow: hidden;
        }
        .service-card-front {
            background: #fff; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm);
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            text-align: center; gap: 20px; padding: 30px; transition: var(--transition-smooth);
        }
        .service-card-flip:hover .service-card-front,
        .service-card-flip.flipped .service-card-front { box-shadow: var(--shadow-hover); border-color: var(--cyan-neon); }
        /* Same color treatment as .industry-tile-icon: a soft cyan/magenta-tinted
           circle-ish badge with a gradient-clipped icon glyph, instead of the old
           flat solid-cyan fill, so the two icon styles match across the site. */
        .service-card-front .service-icon-badge {
            position: static; width: 64px; height: 64px;
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.12), rgba(255, 0, 127, 0.12));
            border-radius: 16px; display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem;
        }
        .service-card-front .service-icon-badge i {
            background: linear-gradient(135deg, var(--cyan-neon), var(--magenta-neon));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .service-card-front h3 { font-size: 1.25rem; color: var(--navy); font-weight: 700; }

        .service-card-back { transform: rotateY(180deg); display: flex; align-items: flex-end; box-shadow: var(--shadow-hover); }
        .service-card-back-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
        .service-card-back-overlay {
            position: absolute; inset: 0; z-index: 1;
            background: linear-gradient(180deg, rgba(11,15,37,0.35) 0%, rgba(11,15,37,0.85) 60%, rgba(11,15,37,0.95) 100%);
        }
        .service-card-back-content { position: relative; z-index: 2; width: 100%; padding: 28px 25px; }
        .service-card-back-content h3 { font-size: 1.15rem; color: #fff; font-weight: 700; margin-bottom: 10px; }
        .service-card-back-content p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.6; margin-bottom: 18px; }
        .service-card-back-content .service-link {
            display: inline-flex; align-items: center; gap: 7px; margin-top: 2px;
            padding: 10px 22px; border-radius: 50px; font-size: 0.85rem; font-weight: 700;
            background: linear-gradient(135deg, var(--cyan-neon), var(--magenta-neon));
            color: #fff; box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25);
        }
        .service-card-back-content .service-link:hover,
        .service-card-back-content .service-link:focus-visible {
            color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 0, 127, 0.35);
        }
        .service-card-back-content .service-link:hover i,
        .service-card-back-content .service-link:focus-visible i { transform: translateX(3px); }

        .service-link { font-weight: 700; color: var(--navy); text-decoration: none; font-size: 0.9rem; display: flex; align-items: center; gap: 5px; transition: var(--transition-smooth); }
        .service-link i { transition: transform 0.3s ease; }
        .case-card:hover .service-link { color: var(--cyan-neon); }
        .case-card:hover .service-link i { transform: translateX(4px); }

        /* === "OUR EXPERTISE": scroll-driven pinned storytelling ===
           Base state (below, unscoped) is a plain stacked list: every panel is
           always fully "expanded" -- image, overlay, number, title, description,
           Learn More button -- one after another in normal document flow, each
           revealed by the same per-item fade-up used by every other grid on the
           site (see gridSelectors in js/main.js). This is deliberately what
           mobile *and* a no-JS/reduced-motion visitor get: always fully
           readable, no pin, no jacked scroll.

           js/main.js only escalates to the interactive version -- one item's
           giant centered title (.expertise-hero) holding, then fading/sliding
           out as its row (.expertise-row) grows into an accumulating numbered
           list and its image panel (.expertise-panel) expands to fill the
           stage, then collapsing (row stays) as the next item's hero fades in
           -- once it has confirmed GSAP/ScrollTrigger are available, the
           viewport is >=900px, and the user hasn't asked for reduced motion.
           Only then does it add .expertise-js-ready, which is what actually
           swaps in the pinned/absolute layout below. */
        .expertise-scroll-wrap { position: relative; }
        .expertise-rows, .expertise-hero { display: none; }
        .expertise-pin { height: auto; }
        .expertise-rows { max-width: 1100px; margin: 0 auto clamp(10px, 2.5vh, 26px); width: 100%; padding: 0 5%; }
        .expertise-row { height: 0; opacity: 0; overflow: hidden; }
        .expertise-row-inner { display: flex; align-items: baseline; gap: 18px; padding: 13px 4px; border-bottom: 1px solid var(--border-light); }
        .expertise-row-num { font-size: 0.85rem; font-weight: 800; color: var(--cyan-neon); letter-spacing: 1px; flex-shrink: 0; }
        .expertise-row-title { font-size: 1rem; font-weight: 700; color: var(--navy); }

        .expertise-stage { position: static; max-width: 1100px; margin: 0 auto; width: 100%; padding: 0 5%; }
        .expertise-hero h3 { font-size: clamp(2rem, 5.5vw, 4.2rem); font-weight: 800; color: var(--navy); line-height: 1.05; letter-spacing: -0.02em; }

        .expertise-panel {
            position: static; opacity: 1; visibility: visible; margin-bottom: 22px;
            min-height: 460px; display: flex;
            border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-hover);
        }
        .expertise-panel:last-child { margin-bottom: 0; }
        .expertise-panel-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
        .expertise-panel-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(100deg, rgba(11,15,37,0.94) 0%, rgba(11,15,37,0.8) 42%, rgba(11,15,37,0.3) 100%);
        }
        .expertise-panel-content { position: relative; z-index: 2; max-width: 540px; padding: clamp(28px, 5vw, 56px); align-self: center; }
        .expertise-panel-num { font-size: 0.95rem; font-weight: 800; color: var(--cyan-neon); letter-spacing: 2px; margin-bottom: 12px; }
        .expertise-panel-content h3 { font-size: clamp(1.4rem, 2.8vw, 2.1rem); color: #fff; font-weight: 800; margin-bottom: 14px; }
        .expertise-panel-content p { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.7; margin-bottom: 26px; }
        .expertise-panel-btn {
            display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
            padding: 13px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
            background: linear-gradient(135deg, var(--cyan-neon), var(--magenta-neon)); color: #fff;
            text-decoration: none; box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25); transition: var(--transition-smooth);
        }
        .expertise-panel-btn:hover, .expertise-panel-btn:focus-visible { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 0, 127, 0.35); color: #fff; }
        .expertise-panel-btn i { transition: transform 0.3s ease; }
        .expertise-panel-btn:hover i, .expertise-panel-btn:focus-visible i { transform: translateX(3px); }

        /* Interactive pinned mode -- only engaged by JS, only >=900px. */
        .expertise-js-ready .expertise-rows,
        .expertise-js-ready .expertise-hero { display: block; }
        .expertise-js-ready .expertise-pin {
            position: relative; height: 100vh; max-height: 820px; min-height: 600px;
            display: flex; flex-direction: column; justify-content: center; overflow: hidden;
        }
        .expertise-js-ready .expertise-rows { flex-shrink: 0; }
        .expertise-js-ready .expertise-stage { position: relative; flex: 1; min-height: 0; }
        .expertise-js-ready .expertise-hero {
            position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
            text-align: center; opacity: 0; visibility: hidden; padding: 0 5%;
        }
        .expertise-js-ready .expertise-panel { position: absolute; inset: 0; opacity: 0; visibility: hidden; margin-bottom: 0; }
        .expertise-js-ready .expertise-panel-content { align-self: auto; height: 100%; display: flex; flex-direction: column; justify-content: center; }

        /* === PREMIUM METHODOLOGY === */
        .methodology-section {
            padding: clamp(60px, 8vw, 100px) 0;
            background:
                radial-gradient(600px circle at 10% 10%, rgba(255, 0, 127, 0.05), transparent 55%),
                radial-gradient(600px circle at 90% 90%, rgba(0, 242, 254, 0.06), transparent 55%),
                rgba(255, 255, 255, 0.8);
        }
        /* No image column any more -- .methodology-steps keeps its original
           vertical stacked-list look (same connector line, same horizontal
           icon+content card), centered in a comfortably narrow column
           instead of squeezed into the half the image used to occupy or
           stretched edge-to-edge across the full section width. */
        .methodology-steps { position: relative; display: flex; flex-direction: column; gap: 20px; max-width: 850px; margin: clamp(30px, 5vw, 50px) auto 0; }
        .methodology-steps::before {
            content: ''; position: absolute; top: 25px; bottom: 25px; left: clamp(43px, 4vw, 48px); width: 2px;
            background: linear-gradient(to bottom, var(--cyan-neon), var(--magenta-neon)); opacity: 0.25; z-index: 0;
        }
        .m-step { background: #fff; padding: clamp(20px, 3vw, 30px); border-radius: 16px; border: 1px solid var(--border-light); display: flex; gap: 20px; box-shadow: var(--shadow-sm); transition: var(--transition-smooth); position: relative; z-index: 1; }
        .m-step:hover { transform: translateX(10px); border-color: var(--cyan-neon); box-shadow: var(--shadow-hover); }
        .m-step-num {
            width: clamp(44px, 4vw, 50px); height: clamp(44px, 4vw, 50px); min-width: clamp(44px, 4vw, 50px);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 800; color: #fff; line-height: 1;
            background: linear-gradient(135deg, var(--cyan-neon), var(--magenta-neon));
            box-shadow: 0 6px 16px rgba(0, 242, 254, 0.3); transition: var(--transition-smooth);
        }
        .m-step:hover .m-step-num { transform: scale(1.08) rotate(-6deg); }
        .m-step-content h4 { font-size: clamp(1.1rem, 2vw, 1.2rem); color: var(--navy); margin-bottom: 8px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
        .m-step-content h4 i { color: var(--cyan-neon); font-size: 1.1rem;}
        .m-step-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

        /* === CASE STUDIES === */
        .case-studies-section {
            padding: clamp(60px, 8vw, 100px) 0;
            background:
                radial-gradient(600px circle at 95% 5%, rgba(255, 0, 127, 0.05), transparent 55%),
                radial-gradient(600px circle at 0% 95%, rgba(0, 242, 254, 0.06), transparent 55%),
                rgba(248, 250, 252, 0.8);
        }
        .case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 30px; margin-top: clamp(30px, 5vw, 50px); }
        .case-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition-smooth); border: 1px solid var(--border-light); display: flex; flex-direction: column; }
        .case-card:hover { transform: translateY(-10px); border-color: var(--cyan-neon); box-shadow: var(--shadow-hover); }
        .case-image { height: 240px; position: relative; overflow: hidden; }
        .case-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .case-card:hover .case-image img { transform: scale(1.05); }
        .case-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11, 15, 37, 0.9) 0%, transparent 100%); pointer-events: none; }
        .case-tag { position: absolute; top: 20px; left: 20px; background: var(--cyan-neon); color: var(--navy); padding: 6px 14px; border-radius: 30px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; z-index: 2; box-shadow: 0 4px 10px rgba(0, 242, 254, 0.3); }
        .case-image h3 { position: absolute; bottom: 20px; left: 20px; color: #fff; font-size: 1.5rem; font-weight: 800; z-index: 2; margin: 0; }
        .case-content { padding: clamp(25px, 4vw, 35px); flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
        .case-metrics { display: flex; gap: 15px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); flex-wrap: wrap;}
        .metric-box { flex: 1; min-width: 110px; background: var(--bg-secondary); padding: 12px; border-radius: 12px;}
        .metric { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 800; color: var(--magenta-neon); display: block; line-height: 1; margin-bottom: 5px; }
        .metric-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; }
        .case-content p {
            color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 0;
            display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
        }

        /* === TESTIMONIALS === */
        .testimonials-section {
            padding: clamp(60px, 8vw, 100px) 0;
            background:
                radial-gradient(600px circle at 8% 8%, rgba(0, 242, 254, 0.05), transparent 55%),
                radial-gradient(600px circle at 92% 92%, rgba(255, 0, 127, 0.05), transparent 55%),
                rgba(255, 255, 255, 0.8);
        }
        .testi-layout { display: grid; grid-template-columns: minmax(260px, 320px) 1fr; gap: clamp(24px, 4vw, 40px); align-items: stretch; margin-top: clamp(30px, 5vw, 50px); }
        .testi-layout .testimonials-grid { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
        .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 30px; margin-top: clamp(30px, 5vw, 50px); }

        /* Trust panel: rating callout + avatar stack alongside the grid */
        .testi-trust-panel {
            background: linear-gradient(160deg, var(--navy), #050814); border-radius: 24px; color: #fff;
            padding: clamp(28px, 4vw, 36px); position: relative; overflow: hidden;
            border: 1px solid rgba(0, 242, 254, 0.18); box-shadow: var(--shadow-hover);
            display: flex; flex-direction: column; justify-content: center;
        }
        .testi-trust-panel::before {
            content: ''; position: absolute; inset: -35%; pointer-events: none;
            background: radial-gradient(circle, rgba(0, 242, 254, 0.16), transparent 60%);
        }
        .testi-trust-panel > * { position: relative; z-index: 1; }
        .testi-trust-rating { font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 800; line-height: 1; margin-bottom: 10px; }
        .testi-trust-rating span { font-size: 1.3rem; font-weight: 600; color: rgba(255, 255, 255, 0.5); }
        .testi-trust-stars { font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 16px; }
        .testi-trust-stars i {
            background: linear-gradient(135deg, var(--cyan-neon), var(--magenta-neon));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .testi-trust-panel h5 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
        .testi-trust-panel p { color: rgba(255, 255, 255, 0.55); font-size: 0.9rem; line-height: 1.6; margin-bottom: 26px; }
        .testi-avatar-stack { display: flex; align-items: center; margin-bottom: 24px; }
        .testi-avatar-stack .stack-avatar {
            width: 40px; height: 40px; border-radius: 50%; border: 3px solid var(--navy); margin-left: -12px;
            overflow: hidden; background: linear-gradient(135deg, var(--cyan-neon), var(--magenta-neon));
        }
        .testi-avatar-stack .stack-avatar:first-child { margin-left: 0; }
        .testi-avatar-stack .stack-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .testi-avatar-stack .stack-count {
            width: 40px; height: 40px; border-radius: 50%; border: 3px solid var(--navy); margin-left: -12px;
            background: rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center;
            font-size: 0.68rem; font-weight: 800; color: #fff; flex-shrink: 0;
        }
        .testi-trust-badge {
            display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.14); padding: 10px 16px; border-radius: 12px;
            font-size: 0.85rem; font-weight: 700; width: fit-content;
        }
        @media(max-width: 900px) {
            .testi-layout, .testi-layout .testimonials-grid { grid-template-columns: 1fr; }
        }
        .testi-card { background: #fff; padding: clamp(25px, 5vw, 40px); border-radius: 20px; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: space-between; transition: var(--transition-smooth); position: relative; overflow: hidden; }
        .testi-card::before {
            content: '\201C'; position: absolute; top: -10px; right: 20px; font-size: 6rem; font-family: Georgia, serif;
            color: var(--cyan-neon); opacity: 0.08; line-height: 1; pointer-events: none;
        }
        .testi-card:hover { transform: translateY(-8px); border-color: var(--cyan-neon); box-shadow: var(--shadow-hover); }
        .testi-card:hover::before { opacity: 0.14; }
        .testi-stars { font-size: 1.2rem; margin-bottom: 20px; letter-spacing: 2px; }
        .testi-stars i {
            display: inline-block; transition: transform 0.25s ease;
            background: linear-gradient(135deg, var(--cyan-neon), var(--magenta-neon));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .testi-card:hover .testi-stars i:nth-child(1) { transition-delay: 0s; }
        .testi-card:hover .testi-stars i:nth-child(2) { transition-delay: 0.05s; }
        .testi-card:hover .testi-stars i:nth-child(3) { transition-delay: 0.1s; }
        .testi-card:hover .testi-stars i:nth-child(4) { transition-delay: 0.15s; }
        .testi-card:hover .testi-stars i:nth-child(5) { transition-delay: 0.2s; }
        .testi-card:hover .testi-stars i { transform: scale(1.25) rotate(8deg); }
        .testi-text { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--navy); line-height: 1.7; margin-bottom: 30px; font-weight: 400; font-style: italic; position: relative; z-index: 1; }
        .testi-author { display: flex; align-items: center; gap: 15px; border-top: 1px solid var(--border-light); padding-top: 20px; }
        .testi-avatar-wrap { position: relative; flex-shrink: 0; }
        .testi-avatar {
            width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; padding: 2.5px;
            background: linear-gradient(135deg, var(--cyan-neon), var(--magenta-neon));
        }
        .testi-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; border: 2px solid #fff; }
        .testi-verified {
            position: absolute; bottom: -2px; right: -2px; width: 18px; height: 18px; border-radius: 50%;
            background: var(--cyan-neon); border: 2px solid #fff; display: flex; align-items: center; justify-content: center;
            font-size: 0.55rem; color: var(--navy);
        }
        .testi-author-info h5 { font-size: 1.05rem; color: var(--navy); font-weight: 700; margin-bottom: 3px; }
        .testi-author-info span { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

        /* === TEAM GRID (index.php + about.php teasers and the dedicated
           our-team.php roster). auto-fit reflows the column count on its own
           at any width, matching the same responsive pattern already used by
           .services-grid, so no manual per-breakpoint column overrides are
           needed here.

           Cards use the same "photo + dark gradient overlay + white text"
           language already established by the Our Expertise panels: name +
           role sit permanently on the overlay for legibility at rest; on
           hover (or .tapped on touch, set by js/main.js) the photo zooms,
           the overlay deepens, and a one-line description + social links
           reveal underneath via a max-height transition. */
        .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: clamp(20px, 3vw, 28px); margin-top: clamp(30px, 5vw, 50px); }
        .team-card { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
        .team-card:hover, .team-card.tapped { transform: translateY(-6px) scale(1.03); box-shadow: var(--shadow-hover); }
        .team-photo { width: 100%; aspect-ratio: 4 / 5; position: relative; overflow: hidden; background: linear-gradient(160deg, rgba(0, 242, 254, 0.1), rgba(255, 0, 127, 0.08)); }
        .team-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
        .team-card:hover .team-photo img, .team-card.tapped .team-photo img { transform: scale(1.08); }
        .team-photo-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
        .team-photo-placeholder i { font-size: 2.8rem; color: rgba(11, 15, 37, 0.15); }

        .team-card-num {
            position: absolute; top: 16px; left: 18px; z-index: 3;
            font-size: 0.8rem; font-weight: 800; letter-spacing: 1px; color: rgba(255,255,255,0.55);
            transition: color 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .team-card:hover .team-card-num, .team-card.tapped .team-card-num { color: var(--cyan-neon); transform: translateY(-3px); }

        .team-card-overlay {
            position: absolute; inset: 0; z-index: 1;
            background: linear-gradient(180deg, rgba(11,15,37,0) 38%, rgba(11,15,37,0.8) 72%, rgba(11,15,37,0.95) 100%);
            transition: background 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .team-card:hover .team-card-overlay, .team-card.tapped .team-card-overlay {
            background: linear-gradient(180deg, rgba(11,15,37,0.1) 0%, rgba(11,15,37,0.88) 55%, rgba(11,15,37,0.97) 100%);
        }

        .team-card-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 18px 20px; }
        .team-card-info h5 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
        .team-role { display: block; font-size: 0.78rem; color: var(--cyan-neon); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
        .team-card-desc {
            max-height: 0; opacity: 0; overflow: hidden; margin-top: 0;
            font-size: 0.85rem; line-height: 1.55; color: rgba(255,255,255,0.85);
            transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, margin-top 0.5s ease;
        }
        .team-card:hover .team-card-desc, .team-card.tapped .team-card-desc { max-height: 140px; opacity: 1; margin-top: 10px; }
        .team-socials {
            display: flex; gap: 8px; max-height: 0; opacity: 0; overflow: hidden; margin-top: 0;
            transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, margin-top 0.4s ease;
        }
        .team-card:hover .team-socials, .team-card.tapped .team-socials { max-height: 50px; opacity: 1; margin-top: 12px; }
        .team-socials a { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.8rem; transition: var(--transition-smooth); text-decoration: none; }
        .team-socials a:hover { background: var(--cyan-neon); color: var(--navy); border-color: transparent; transform: translateY(-2px); }

        @media (prefers-reduced-motion: reduce) {
            .team-card, .team-photo img, .team-card-num, .team-card-overlay, .team-card-desc, .team-socials { transition: none; }
            .team-card-desc, .team-socials { max-height: none; opacity: 1; margin-top: 10px; overflow: visible; }
        }

        /* === INDUSTRIES: icon tiles, no photos, fixed 3-up grid (used on the
           homepage teaser and the dedicated Industries page) === */
        .industries-section {
            padding: clamp(60px, 8vw, 100px) 0;
            background:
                radial-gradient(600px circle at 90% 8%, rgba(0, 242, 254, 0.06), transparent 55%),
                radial-gradient(600px circle at 8% 92%, rgba(255, 0, 127, 0.05), transparent 55%),
                rgba(248, 250, 252, 0.8);
        }
        .industry-tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 30px); margin-top: clamp(30px, 5vw, 50px); }
        .industry-tile {
            position: relative; background: #fff; border: 1px solid var(--border-light); border-radius: 20px;
            padding: clamp(32px, 4vw, 42px) clamp(22px, 3vw, 32px); text-align: center; overflow: hidden;
            box-shadow: var(--shadow-sm); transition: var(--transition-smooth);
            display: flex; flex-direction: column; align-items: center;
        }
        .industry-tile::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
            background: linear-gradient(90deg, var(--cyan-neon), var(--magenta-neon));
            transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
        }
        .industry-tile:hover {
            transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--cyan-neon);
            background: linear-gradient(160deg, rgba(0, 242, 254, 0.07), rgba(255, 0, 127, 0.06) 70%);
        }
        .industry-tile:hover::before { transform: scaleX(1); }
        .industry-tile-icon {
            width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.12), rgba(255, 0, 127, 0.12));
            display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth);
        }
        .industry-tile:hover .industry-tile-icon { transform: scale(1.1) rotate(-6deg); background: linear-gradient(135deg, rgba(0, 242, 254, 0.22), rgba(255, 0, 127, 0.22)); }
        .industry-tile-icon i {
            font-size: 1.7rem; background: linear-gradient(135deg, var(--cyan-neon), var(--magenta-neon));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .industry-tile h5 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
        .industry-tile p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin: 0; }
        .industry-tile-btn {
            display: inline-flex; align-items: center; gap: 7px; margin-top: 20px;
            padding: 9px 22px; border-radius: 50px; font-size: 0.85rem; font-weight: 700;
            color: var(--navy); background: transparent; border: 1.5px solid var(--border-light);
            text-decoration: none; transition: var(--transition-smooth);
        }
        .industry-tile-btn i { font-size: 0.75rem; transition: transform 0.3s ease; }
        .industry-tile-btn:hover,
        .industry-tile-btn:focus-visible {
            background: linear-gradient(135deg, var(--cyan-neon), var(--magenta-neon));
            border-color: transparent; color: #fff;
        }
        .industry-tile-btn:hover i { transform: translateX(3px); }

        @media(max-width: 900px) { .industry-tile-grid { grid-template-columns: repeat(2, 1fr); } }
        @media(max-width: 560px) { .industry-tile-grid { grid-template-columns: 1fr; } }

        /* === SEO PROOF CARDS (seo.php "Real Client Results") === */
        .seo-proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 24px; margin-top: clamp(30px, 5vw, 50px); }
        .seo-proof-card {
            position: relative; background: #fff; border: 1px solid var(--border-light); border-radius: 18px;
            padding: 30px 28px 28px; box-shadow: var(--shadow-sm); transition: var(--transition-smooth); overflow: hidden;
        }
        /* Same gradient top-bar reveal used on .industry-tile, so this section reads
           as part of the same design system rather than a bolted-on component. */
        .seo-proof-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
            background: linear-gradient(90deg, var(--cyan-neon), var(--magenta-neon));
            transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
        }
        .seo-proof-card:hover {
            transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--cyan-neon);
            background: linear-gradient(160deg, rgba(0, 242, 254, 0.05), rgba(255, 0, 127, 0.04) 75%);
        }
        .seo-proof-card:hover::before { transform: scaleX(1); }
        .seo-proof-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
        .seo-proof-head h4 { font-size: 1.1rem; font-weight: 800; color: var(--navy); line-height: 1.3; }
        .seo-proof-period {
            flex-shrink: 0; font-size: 0.68rem; font-weight: 700; color: var(--navy);
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.14), rgba(255, 0, 127, 0.12));
            border-radius: 30px; padding: 5px 11px; white-space: nowrap;
        }
        .seo-proof-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.55; margin-bottom: 20px; min-height: 3.4em; }
        .seo-proof-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; border-top: 1px solid var(--border-light); padding-top: 18px; }
        .seo-proof-stats div { text-align: center; }
        .seo-proof-stats strong { display: block; font-size: 1.15rem; font-weight: 800; background: linear-gradient(135deg, var(--cyan-neon), var(--magenta-neon)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .seo-proof-stats span { display: block; font-size: 0.68rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; }

        /* === SEO GROWTH CHART (animated bars, "grow from start to end" on scroll) === */
        .seo-chart-card {
            position: relative; background: var(--navy); border-radius: 24px; overflow: hidden;
            padding: clamp(32px, 5vw, 50px) clamp(24px, 5vw, 50px); margin-top: clamp(40px, 6vw, 60px);
            box-shadow: var(--shadow-hover);
        }
        .seo-chart-card::before {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(circle at 15% 20%, rgba(0, 242, 254, 0.16), transparent 55%),
                        radial-gradient(circle at 85% 85%, rgba(255, 0, 127, 0.14), transparent 55%);
            pointer-events: none;
        }
        .seo-chart-head { position: relative; text-align: center; margin-bottom: clamp(30px, 4vw, 42px); }
        .seo-chart-head .eyebrow { color: var(--cyan-neon); }
        .seo-chart-head h3 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-top: 8px; }
        .seo-chart-head p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-top: 10px; max-width: 560px; margin-left: auto; margin-right: auto; }
        .seo-chart-rows { position: relative; display: flex; flex-direction: column; gap: clamp(16px, 2.4vw, 22px); }
        .seo-chart-row { display: grid; grid-template-columns: minmax(120px, 190px) 1fr 70px; align-items: center; gap: clamp(12px, 2vw, 20px); }
        .seo-chart-label { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 700; }
        .seo-chart-track { position: relative; height: 12px; background: rgba(255,255,255,0.08); border-radius: 30px; overflow: hidden; }
        .seo-chart-fill {
            position: absolute; inset: 0; width: var(--pct, 0%); border-radius: 30px;
            background: linear-gradient(90deg, var(--cyan-neon), var(--magenta-neon));
            transform: scaleX(0); transform-origin: left;
            box-shadow: 0 0 14px rgba(0, 242, 254, 0.5);
        }
        .seo-chart-value { color: #fff; font-size: 0.95rem; font-weight: 800; text-align: right; font-variant-numeric: tabular-nums; }
        @media (max-width: 640px) {
            .seo-chart-row { grid-template-columns: 1fr; row-gap: 8px; }
            .seo-chart-label { display: flex; justify-content: space-between; align-items: baseline; }
            .seo-chart-label::after { content: attr(data-value); color: var(--cyan-neon); font-weight: 800; }
            .seo-chart-value { display: none; }
        }

        /* === CTA SECTION === */
        .cta-section { padding: clamp(60px, 8vw, 120px) 0; background: rgba(255, 255, 255, 0.8); }
        .cta-box {
            background: var(--navy); border-radius: 30px; max-width: 1000px; width: 100%; margin: 0 auto;
            padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 50px); text-align: center; color: #fff;
            box-shadow: var(--shadow-hover); position: relative; overflow: hidden; border: 1px solid rgba(0, 242, 254, 0.2);
        }
        .cta-box::before {
            content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60%; height: 3px;
            background: linear-gradient(90deg, transparent, var(--cyan-neon), var(--magenta-neon), transparent);
        }
        .cta-box::after {
            content: ''; position: absolute; inset: -40%; z-index: 0; pointer-events: none;
            background: radial-gradient(circle, rgba(0, 242, 254, 0.15), transparent 60%);
            animation: ctaGlowDrift 10s ease-in-out infinite alternate;
        }
        .cta-box > * { position: relative; z-index: 1; }
        @keyframes ctaGlowDrift {
            0% { transform: translate(-8%, -6%) scale(1); }
            100% { transform: translate(8%, 6%) scale(1.15); }
        }
        .cta-badge {
            display: inline-flex; align-items: center; gap: 8px; background: rgba(0, 242, 254, 0.1); color: var(--cyan-neon);
            border: 1px solid rgba(0, 242, 254, 0.2); padding: 8px 18px; border-radius: 20px; font-size: 0.8rem;
            font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px;
        }
        .cta-badge i { animation: badgeBob 2.4s ease-in-out infinite; }
        @keyframes badgeBob { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-3px) rotate(8deg); } }
        .cta-box h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 20px; }
        .cta-box p { margin-bottom: 40px; font-size: clamp(0.95rem, 2vw, 1.15rem); color: rgba(255,255,255,0.7); max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }
        .cta-features { display: flex; justify-content: center; gap: clamp(10px, 2vw, 30px); margin-bottom: 40px; font-weight: 600; font-size: clamp(0.8rem, 1.5vw, 0.95rem); flex-wrap: wrap; }
        .cta-features span { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); padding: 8px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); }

        /* === TABLET & MOBILE OVERRIDES === */
        @media(max-width: 1200px) {
            .nav-menu {
                position: absolute; top: 100%; left: 0; width: 100%;
                background: #0B0F25; flex-direction: column; gap: 0;
                border-bottom: 1px solid rgba(0, 242, 254, 0.2);
                box-shadow: 0 20px 40px rgba(0,0,0,0.5);
                clip-path: inset(0 100% 0 0); pointer-events: none;
            }
            .nav-menu.active { padding: 10px 0; max-height: 80vh; overflow-y: auto; clip-path: inset(0 0% 0 0); pointer-events: auto; }
            .nav-menu li {
                width: 100%; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05);
                opacity: 0; transform: translateX(-12px); transition: opacity 0.35s ease, transform 0.35s ease;
            }
            .nav-menu li:last-child { border-bottom: none; }
            .nav-menu.active li { opacity: 1; transform: translateX(0); }
            .nav-menu.active li:nth-child(1) { transition-delay: 0.04s; }
            .nav-menu.active li:nth-child(2) { transition-delay: 0.08s; }
            .nav-menu.active li:nth-child(3) { transition-delay: 0.12s; }
            .nav-menu.active li:nth-child(4) { transition-delay: 0.16s; }
            .nav-menu.active li:nth-child(5) { transition-delay: 0.2s; }
            .nav-menu.active li:nth-child(6) { transition-delay: 0.24s; }
            .nav-menu.active li:nth-child(7) { transition-delay: 0.28s; }
            .nav-menu li a { display: block; padding: 15px; color: #fff; font-size: 1.05rem; }
            .nav-menu li a::after { display: none; } 
            .nav-menu li a:hover { background: rgba(0, 242, 254, 0.08); color: var(--cyan-neon); }
            
            /* Mobile Dropdown Fix */
            .dropdown-menu {
                position: relative; top: auto; left: auto; background: rgba(0,0,0,0.3);
                border: none; box-shadow: none; opacity: 1; visibility: visible; transform: none;
                max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0;
            }
            .dropdown.active .dropdown-menu { max-height: 60vh; overflow-y: auto; padding: 5px 0; }
            .dropdown-menu li a { padding: 12px 20px; text-align: center; }
            .dropdown-menu.dropdown-menu-grid { display: block; min-width: 0; right: auto; padding: 0; }
            .nav-cta { display: none; }
        }

        @media(max-width: 768px) {
            .cinematic-wrapper { height: 100vh; height: 100dvh; min-height: 550px; padding: 0; }
            .devices-stage { transform: none !important; width: 100%; height: auto; display: flex; flex-direction: column; justify-content: center; align-items: center; }
            .stage-header { position: relative !important; top: auto !important; left: auto !important; opacity: 1 !important; transform: none !important; display: block !important; padding: 0 5%; margin-bottom: 20px; }
            .laptop-container, .scatter-item { display: none !important; }
            .mobile-container { position: relative !important; top: auto !important; left: auto !important; transform: none !important; margin: 0 auto; width: 220px; height: 420px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
            .mobile-perf-overview { display: block; }
        }
        
        /* === RESPONSIVE FIXES FOR ABOUT SECTIONS === (.methodology-steps is a
           plain vertical flex list, so it doesn't need a breakpoint override here) */
        @media(max-width: 1024px) {
            .agency-grid {
                grid-template-columns: 1fr !important;
                gap: 40px !important;
            }
        }

        @media(max-width: 768px) {
            .agency-grid {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
            }
            .agency-text h2, .section-header h2 {
                font-size: 1.8rem !important;
            }
            .m-step {
                flex-direction: column !important;
                gap: 15px !important;
                align-items: flex-start !important;
                text-align: left !important;
            }
        }

        /* === SPLASH SCREEN === */
        /* Pure-CSS driven so it always resolves on its own even if the
           sessionStorage/JS skip logic below never runs. */
        #splash-screen {
            position: fixed; inset: 0; z-index: 9999;
            background: radial-gradient(circle at center, #10142c 0%, #050814 100%);
            display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
            animation: splashOut 0.6s ease 1.3s forwards;
        }
        .splash-logo {
            width: clamp(160px, 26vw, 240px); height: auto;
            filter: drop-shadow(0 0 30px rgba(0, 242, 254, 0.35));
            animation: splashLogoIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
        }
        .splash-bar { width: 130px; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.08); overflow: hidden; }
        .splash-bar::after {
            content: ''; display: block; width: 100%; height: 100%; transform-origin: left; transform: scaleX(0);
            background: linear-gradient(90deg, var(--cyan-neon), var(--magenta-neon));
            animation: splashBar 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
        }
        @keyframes splashLogoIn { from { opacity: 0; transform: scale(0.82); } to { opacity: 1; transform: scale(1); } }
        @keyframes splashBar { to { transform: scaleX(1); } }
        @keyframes splashOut { to { opacity: 0; visibility: hidden; pointer-events: none; } }
        @media (prefers-reduced-motion: reduce) {
            #splash-screen, .splash-logo, .splash-bar::after { animation: none !important; }
            #splash-screen { opacity: 0; visibility: hidden; pointer-events: none; }
        }


        /* === FOOTER (from footer.php) === */
        footer { 
            background: linear-gradient(to bottom, #0B0F25, #050814) !important; 
            color: #fff !important; padding: 100px 0 30px !important; border-top: 1px solid rgba(0, 242, 254, 0.2) !important; position: relative !important; overflow: hidden !important; width: 100% !important; display: block !important;
        }
        footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan-neon), transparent); }
        
        .footer-logo { height: auto !important; margin-bottom: 25px !important; display: inline-flex !important; }
        .footer-grid { display: grid !important; grid-template-columns: 2fr 1fr 1fr 1.5fr !important; gap: clamp(30px, 4vw, 50px) !important; width: 100% !important; }
        
        .footer-brand p { color: rgba(255,255,255,0.6) !important; line-height: 1.7 !important; max-width: 320px !important; font-size: 0.95rem !important; }
        .footer-heading { font-size: 1.1rem !important; font-weight: 700 !important; color: #fff !important; margin-bottom: 25px !important; text-transform: uppercase !important; letter-spacing: 1px !important; }
        
        .footer-links { list-style: none !important; padding: 0 !important; margin: 0 !important; }
        .footer-links li { margin-bottom: 16px !important; }
        .footer-links a { color: rgba(255,255,255,0.6) !important; text-decoration: none !important; transition: var(--transition-smooth) !important; display: inline-block !important; font-size: 0.95rem !important; }
        .footer-links a:hover { color: var(--cyan-neon) !important; transform: translateX(5px) !important; }
        
        .footer-contact { list-style: none !important; padding: 0 !important; margin: 0 !important; }
        .footer-contact li { display: flex !important; align-items: flex-start !important; gap: 15px !important; color: rgba(255,255,255,0.7) !important; margin-bottom: 18px !important; font-size: 0.95rem !important; line-height: 1.5 !important; word-break: break-word !important; }
        .footer-contact i { color: var(--cyan-neon) !important; font-size: 1.1rem !important; background: rgba(0, 242, 254, 0.05) !important; width: 35px !important; height: 35px !important; display: flex !important; align-items: center !important; justify-content: center !important; border-radius: 50% !important; flex-shrink: 0 !important; border: 1px solid rgba(0, 242, 254, 0.1) !important; }
        
        .social-links { display: flex !important; gap: 15px !important; margin-top: 25px !important; }
        .social-links a { width: 40px !important; height: 40px !important; border-radius: 50% !important; background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(255,255,255,0.1) !important; display: flex !important; align-items: center !important; justify-content: center !important; color: #fff !important; transition: var(--transition-smooth) !important; text-decoration: none !important; font-size: 1rem !important; }
        .social-links a:hover { background: var(--cyan-neon) !important; color: var(--navy) !important; transform: translateY(-3px) !important; box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3) !important; }

        /* Contact page's info card sits on a light background, unlike the dark
           footer .social-links reuses -- needs its own always-visible (navy
           circle, white icon) styling instead of the footer's near-transparent
           circle that only reads once hover turns it cyan. */
        .contact-social-links { display: flex; gap: 10px; }
        .contact-social-links a {
            width: 38px; height: 38px; border-radius: 50%; background: var(--navy);
            display: flex; align-items: center; justify-content: center; color: #fff;
            text-decoration: none; transition: var(--transition-smooth); font-size: 0.95rem;
        }
        .contact-social-links a:hover {
            background: var(--cyan-neon); color: var(--navy); transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
        }

        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1) !important; margin-top: 80px !important; padding-top: 30px !important; display: flex !important; justify-content: space-between !important; align-items: center !important; color: rgba(255,255,255,0.5) !important; font-size: 0.9rem !important; flex-wrap: wrap !important; gap: 20px !important;}

        @media(max-width: 1024px) {
            .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 50px !important; }
            .footer-brand p { max-width: 100% !important; } 
        }

        @media(max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr !important; text-align: center !important; gap: 40px !important; }
            .footer-logo { justify-content: center !important; margin: 0 auto 20px !important; display: flex !important; height: auto !important; }
            .footer-brand p { margin: 0 auto !important; text-align: center !important; max-width: 400px !important; }
            .social-links { justify-content: center !important; }
            .footer-contact li { flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 10px !important; }
            .footer-bottom { flex-direction: column !important; text-align: center !important; gap: 15px !important; }
            .footer-bottom div { justify-content: center !important; width: 100% !important; }
        }
