        /* --- CSS Custom Properties (Kinetic Typography) --- */
        :root {
            --bg: #09090B;
            --fg: #FAFAFA;
            --muted: #27272A;
            --muted-fg: #A1A1AA;
            --accent: #CC0000;
            --accent-fg: #FFFFFF;
            --border: #3F3F46;
            --client-marquee-bg: #000000;

            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 2rem;
            --space-lg: 4rem;
            --space-xl: 8rem;

            --fs-nav: 0.875rem;
            --fs-body: 1rem;
            --fs-card-title: 1.1rem;
            --fs-section: clamp(2rem, 6vw, 4.5rem);
            --fs-hero-top: clamp(1.5rem, 4vw, 3.5rem);
            --fs-hero-bottom: clamp(4rem, 12vw, 10rem);
            --fs-decorative: clamp(4rem, 10vw, 10rem);
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            font-size: 17px;
        }

        body {
            font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-weight: 400;
            line-height: 1.6;
            background: var(--bg);
            color: var(--fg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        main { display: flex; flex-direction: column; }

        section {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: var(--space-xl) 2rem;
            min-height: auto;
        }

        /* Noise Texture Overlay */
        .noise-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 9999;
            pointer-events: none;
            opacity: 0.03;
            mix-blend-mode: overlay;
        }

        .kinetic-border { border: 2px solid var(--border); }
        .kinetic-border-accent { border: 2px solid var(--accent); }

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            height: 3px;
            background: transparent;
            z-index: 1001;
        }

        .scroll-progress-bar {
            height: 100%;
            width: 0%;
            background: var(--accent);
            transition: width 0.07s ease-out;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            background: rgba(9, 9, 11, 0.97);
            backdrop-filter: blur(12px);
            border-bottom: 2px solid var(--border);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0.75rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-brand { display: flex; align-items: center; gap: 0.75rem; }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-image { height: 36px; width: auto; }

        .nav-list {
            display: flex;
            list-style: none;
            margin: 0; padding: 0;
            gap: 2.5rem;
        }

        .nav-link {
            color: var(--fg);
            text-decoration: none;
            font-weight: 500;
            font-size: var(--fs-nav);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.1s ease;
        }

        .nav-link:hover { color: var(--accent); }

        .nav-item.dropdown { position: relative; }

        .dropdown-toggle::after {
            content: '▾';
            font-size: 0.7rem;
            margin-left: 0.35rem;
            transition: transform 0.1s ease;
        }

        .nav-item.dropdown:hover .dropdown-toggle::after { transform: rotate(180deg); }

        .nav-item.dropdown .dropdown-menu {
            position: absolute;
            top: calc(100% + 0.5rem);
            left: 0;
            background: rgba(9, 9, 11, 0.98);
            backdrop-filter: blur(12px);
            border: 2px solid var(--border);
            min-width: 300px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.14s ease;
            z-index: 1100;
            list-style: none;
            margin: 0; padding: 0.5rem 0;
        }

        .nav-item.dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-link {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--fg);
            text-decoration: none;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            transition: all 0.1s ease;
        }

        .dropdown-link:hover {
            background: var(--accent);
            color: var(--accent-fg);
        }

        .btn-primary {
            background: var(--accent);
            color: var(--accent-fg);
            padding: 0.65rem 1.5rem;
            text-decoration: none;
            font-weight: 700;
            font-size: var(--fs-nav);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 2px solid var(--accent);
            transition: all 0.14s ease;
            cursor: pointer;
            font-family: 'Space Grotesk', sans-serif;
        }

        .btn-primary:hover { transform: scale(1.05); }
        .btn-primary:active { transform: scale(0.95); }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            width: 28px;
            height: 20px;
            justify-content: space-between;
            z-index: 1001;
            background: none;
            border: none;
        }

        .hamburger span {
            width: 100%;
            height: 2px;
            background: var(--fg);
            transition: all 0.14s ease;
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        .mobile-nav {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100vh;
            background: rgba(9, 9, 11, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.14s ease;
        }

        .mobile-nav.active { opacity: 1; visibility: visible; }

        .mobile-nav-list { list-style: none; padding: 0; margin: 0; text-align: center; }
        .mobile-nav-item { margin: 1.25rem 0; }

        .mobile-nav-link {
            text-decoration: none;
            color: var(--fg);
            font-size: 1.5rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.1s ease;
            display: block;
            padding: 0.75rem 2rem;
        }

        .mobile-nav-link:hover { color: var(--accent); }
        .mobile-nav-cta { margin-top: 2rem; }
        .mobile-nav-cta .btn-primary { font-size: 1rem; padding: 0.75rem 2rem; }

        .dropdown-mobile .dropdown-toggle-mobile::after {
            content: '▾';
            font-size: 0.8rem;
            margin-left: 0.5rem;
            transition: transform 0.1s ease;
        }

        .dropdown-mobile.active .dropdown-toggle-mobile::after { transform: rotate(180deg); }

        .mobile-dropdown-menu {
            list-style: none;
            margin: 0; padding: 0;
            background: rgba(20, 20, 20, 0.9);
            margin-top: 0.75rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.2s ease;
        }

        .dropdown-mobile.active .mobile-dropdown-menu { max-height: 500px; }

        .mobile-dropdown-link {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--muted-fg);
            text-decoration: none;
            font-size: 1rem;
            text-transform: uppercase;
            transition: all 0.1s ease;
            border-left: 3px solid transparent;
        }

        .mobile-dropdown-link:hover { color: var(--accent); border-left-color: var(--accent); }

        /* Video Hero Section */
        .video-hero-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            overflow: hidden;
            background: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .hero-video {
            position: absolute;
            top: 50%; left: 50%;
            min-width: 100%; min-height: 100%;
            width: auto; height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: 1;
        }

        .video-overlay {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1400px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding: 2rem;
        }

        .hero-text {
            font-family: 'Space Grotesk', 'Inter', sans-serif;
            font-size: var(--fs-hero-top);
            font-weight: 700;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            color: var(--fg);
            width: 100%;
            opacity: 0;
            transform: scale(0.8);
            animation: fadeZoomIn 1.05s ease-out 0.5s forwards;
        }

        .hero-text-top { text-align: center; white-space: nowrap; overflow: visible; }

        .hero-text-bottom {
            text-align: center;
            font-size: var(--fs-hero-bottom);
            font-weight: 900;
            letter-spacing: -1px;
            color: var(--accent);
            -webkit-text-stroke: 1px #fff;
            text-stroke: 1px #fff;
            paint-order: stroke fill;
            margin-top: 45vh;
            margin-bottom: 0;
            opacity: 0 !important;
            animation: none;
            transform: scale(0.8);
        }

        .hero-text-bottom.revealed {
            opacity: 1 !important;
            transform: scale(1);
            transition: opacity 1.5s ease-out, transform 1.5s ease-out;
        }

        @keyframes fadeZoomIn {
            0% { opacity: 0; transform: scale(0.8); }
            100% { opacity: 1; transform: scale(1); }
        }

        .video-hero-section::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 40px; height: 40px;
            border: 3px solid rgba(204, 0, 0, 0.2);
            border-top-color: var(--accent);
            animation: spin 0.8s linear infinite;
            z-index: 0;
        }

        .video-hero-section.video-loaded::before { display: none; }

        @keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

        .hero-cta {
            margin-top: 2rem;
            display: inline-block;
            background: var(--accent);
            color: var(--accent-fg);
            padding: 0.85rem 2.5rem;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            border: 2px solid var(--accent);
            transition: all 0.14s ease;
        }

        .hero-cta:hover { transform: scale(1.05); }
        .hero-cta:active { transform: scale(0.95); }

        .hero-arrow {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            color: var(--accent);
            font-size: 2.5rem;
            line-height: 1;
            font-weight: 300;
            pointer-events: none;
            animation: bounceArrow 2s ease-in-out infinite, fadeInArrow 0.7s ease-out 1.5s forwards;
        }

        @keyframes bounceArrow {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }

        @keyframes fadeInArrow {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        /* Stats Marquee */
        .stats-marquee-section {
            padding: var(--space-md) 0;
            min-height: auto;
            background: var(--bg);
            overflow: hidden;
            border-top: 2px solid var(--border);
            border-bottom: 2px solid var(--border);
        }

        .stats-marquee-track {
            display: flex;
            gap: 3rem;
            animation: marqueeScroll 40s linear infinite;
            width: max-content;
        }

        .stats-marquee-track > * { flex-shrink: 0; }

        .stats-marquee-item {
            display: flex;
            align-items: baseline;
            gap: 0.3rem;
            white-space: nowrap;
        }

        .stats-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--fg);
            line-height: 1;
        }

        .stats-label {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--muted-fg);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .stats-separator { color: var(--accent); font-size: 1rem; display: flex; align-items: center; }

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

        /* Value Propositions */
        .why-gravitas { padding: var(--space-xl) 2rem; min-height: auto; background: var(--bg); }

        .section-heading {
            position: sticky;
            top: 60px;
            z-index: 10;
            background: var(--bg);
            padding: 0 0 1.5rem 0;
            margin-bottom: 0;
            transition: padding 0.3s ease, top 0.3s ease;
        }

        .section-heading-decorative {
            font-family: 'Space Grotesk', sans-serif;
            font-size: var(--fs-decorative);
            font-weight: 900;
            color: var(--muted);
            line-height: 0.7;
            user-select: none;
            pointer-events: none;
            transition: font-size 0.3s ease;
        }

        .section-heading-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: var(--fs-section);
            font-weight: 700;
            color: var(--fg);
            text-transform: uppercase;
            letter-spacing: -0.5px;
            line-height: 0.9;
            margin-bottom: 0.75rem;
            transition: font-size 0.3s ease;
        }

        .section-heading-sub {
            font-size: var(--fs-body);
            color: var(--muted-fg);
            max-width: 600px;
            transition: font-size 0.3s ease;
        }

        .header-shrunk .section-heading { top: 38px; padding: 0 0 0.75rem 0; }
        .header-shrunk .section-heading-decorative { font-size: clamp(2.4rem, 6vw, 6rem); }
        .header-shrunk .section-heading-text { font-size: clamp(1.4rem, 4vw, 3rem); }
        .header-shrunk .section-heading-sub { font-size: 0.9rem; }

        .value-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2px;
            background: var(--border);
            border: 2px solid var(--border);
        }

        .value-card {
            background: var(--bg);
            padding: 2rem;
            border: none;
            transition: background 0.14s ease;
        }

        .value-card:hover { background: var(--accent); }

        .value-card-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--muted);
            line-height: 1;
            margin-bottom: 0.5rem;
            transition: color 0.1s ease;
        }

        .value-card:hover .value-card-number { color: rgba(0,0,0,0.25); }

        .value-card-title {
            font-size: var(--fs-card-title);
            font-weight: 700;
            color: var(--fg);
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            transition: color 0.1s ease;
        }

        .value-card:hover .value-card-title { color: #000; }

        .value-card-desc {
            font-size: 0.9rem;
            color: var(--muted-fg);
            line-height: 1.5;
            transition: color 0.1s ease;
        }

        .value-card:hover .value-card-desc { color: rgba(0,0,0,0.7); }

        /* Services Grid */
        .services-section { padding: var(--space-xl) 2rem; min-height: auto; background: var(--bg); }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
            background: var(--border);
            border: 2px solid var(--border);
        }

        .service-card {
            background: var(--bg);
            padding: 1.75rem;
            text-decoration: none;
            display: flex;
            align-items: baseline;
            gap: 1rem;
            transition: background 0.14s ease;
        }

        .service-card:hover { background: var(--accent); }

        .service-card-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            color: var(--muted);
            line-height: 1;
            flex-shrink: 0;
            transition: color 0.1s ease;
        }

        .service-card:hover .service-card-number { color: rgba(0,0,0,0.25); }

        .service-card-content { flex: 1; }

        .service-card-title {
            font-size: var(--fs-card-title);
            font-weight: 700;
            color: var(--fg);
            text-transform: uppercase;
            margin-bottom: 0.35rem;
            transition: color 0.1s ease;
        }

        .service-card:hover .service-card-title { color: var(--fg); }

        .service-card-desc {
            font-size: 0.85rem;
            color: var(--muted-fg);
            line-height: 1.4;
            transition: color 0.1s ease;
        }


        /* Portfolio Section */
        .portfolio-section { padding: var(--space-xl) 2rem; min-height: auto; background: var(--bg); }

        .portfolio-filters {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: var(--space-md);
            padding-bottom: var(--space-md);
            border-bottom: 2px solid var(--border);
        }

        .filter-btn {
            background: transparent;
            border: 2px solid var(--border);
            color: var(--muted-fg);
            padding: 0.5rem 1.25rem;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.14s ease;
        }

        .filter-btn:hover { border-color: var(--accent); color: var(--fg); }

        .filter-btn.active {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--accent-fg);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 2px;
            background: var(--border);
            border: 2px solid var(--border);
            margin-bottom: var(--space-md);
        }

        .portfolio-item {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
            cursor: pointer;
            background: var(--bg);
            border: none;
            transition: all 0.14s ease;
        }

        .portfolio-item:hover { background: var(--accent); }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.2s ease;
        }

        .portfolio-item:hover img { }

        .portfolio-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 1.25rem;
            background: var(--bg);
            border-top: 2px solid var(--border);
            transform: translateY(100%);
            transition: transform 0.2s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
            background: var(--accent);
            border-top-color: var(--accent);
        }

        .portfolio-overlay h3 {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--fg);
            text-transform: uppercase;
            margin-bottom: 0.25rem;
        }

        .portfolio-item:hover .portfolio-overlay h3 { color: #000; }

        .portfolio-overlay p {
            font-size: 0.7rem;
            color: var(--muted-fg);
            line-height: 1.3;
        }

        .portfolio-item:hover .portfolio-overlay p { color: rgba(0,0,0,0.7); }

        .portfolio-load-more { text-align: center; margin-top: var(--space-md); }

        .btn-load-more {
            display: inline-block;
            background: transparent;
            border: 2px solid var(--border);
            color: var(--fg);
            padding: 0.85rem 2.5rem;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.14s ease;
        }

        .btn-load-more:hover { border-color: var(--accent); color: var(--accent); }

        /* Client Marquee — AMOLED Black */
        .client-marquee-section {
            padding: var(--space-md) 0;
            min-height: auto;
            background: var(--client-marquee-bg);
            overflow: hidden;
            border-top: 2px solid var(--border);
            border-bottom: 2px solid var(--border);
        }

        .client-marquee-track {
            display: flex;
            gap: 2.5rem;
            align-items: center;
            animation: marqueeScroll 35s linear infinite;
            width: max-content;
        }

        .client-logo-slide {
            flex-shrink: 0;
            height: 60px;
            display: flex;
            align-items: center;
        }

        .client-logo-slide img {
            max-height: 100%;
            max-width: 140px;
            object-fit: contain;
            filter: grayscale(0.2) brightness(1.5);
            transition: filter 0.14s ease;
        }

        .client-marquee-separator { color: var(--accent); font-size: 0.8rem; flex-shrink: 0; }

        /* About */
        .about-section { padding: var(--space-xl) 2rem; min-height: auto; background: var(--bg); }

        .about-stories {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2px;
            background: var(--border);
            border: 2px solid var(--border);
            margin-top: var(--space-lg);
        }

        .about-story {
            background: var(--bg);
            padding: 2rem;
            transition: background 0.14s ease;
        }

        .about-story:hover {
            border-left: 2px solid var(--accent);
            background: var(--muted);
        }

        .about-story-year {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .about-story-title {
            font-size: var(--fs-card-title);
            font-weight: 700;
            color: var(--fg);
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }

        .about-story-text {
            font-size: 0.9rem;
            color: var(--muted-fg);
            line-height: 1.6;
        }

        /* Resources */
        .resources-section { padding: var(--space-xl) 2rem; min-height: auto; background: var(--bg); }

        .resources-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
            background: var(--border);
            border: 2px solid var(--border);
            margin-top: var(--space-lg);
        }

        .resource-card {
            background: var(--bg);
            padding: 2rem;
            text-decoration: none;
            transition: background 0.14s ease;
        }

        .resource-card:hover { background: var(--accent); }

        .resource-card-title {
            font-size: var(--fs-card-title);
            font-weight: 700;
            color: var(--fg);
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            transition: color 0.1s ease;
        }

        .resource-card:hover .resource-card-title { color: #000; }

        .resource-card-desc {
            font-size: 0.85rem;
            color: var(--muted-fg);
            transition: color 0.1s ease;
        }

        .resource-card:hover .resource-card-desc { color: rgba(0,0,0,0.7); }

        .resource-card-label {
            display: inline-block;
            margin-top: 0.75rem;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.1s ease;
        }

        .resource-card:hover .resource-card-label { color: #000; }

        /* Contact */
        .contact-section { padding: var(--space-xl) 2rem; min-height: auto; background: var(--bg); }

        .contact-form-container { max-width: 800px; margin: var(--space-lg) auto 0; }

        .form-group { margin-bottom: var(--space-md); }

        .form-input {
            width: 100%;
            padding: 1.25rem 0;
            background: transparent;
            border: none;
            border-bottom: 2px solid var(--border);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--fg);
            text-transform: uppercase;
            letter-spacing: -0.5px;
            outline: none;
            transition: border-color 0.14s ease;
        }

        .form-input::placeholder { color: var(--muted); text-transform: uppercase; }
        .form-input:focus { border-bottom-color: var(--accent); }

        textarea.form-input { min-height: 120px; resize: vertical; }

        .btn-submit {
            display: inline-block;
            background: var(--accent);
            color: var(--accent-fg);
            border: 2px solid var(--accent);
            padding: 1rem 2.5rem;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.14s ease;
        }

        .btn-submit:hover { transform: scale(1.05); }
        .btn-submit:active { transform: scale(0.95); }
        .btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

        .btn-spinner {
            display: none; width: 1rem; height: 1rem; border: 2px solid transparent;
            border-top-color: var(--accent-fg); border-radius: 50%;
            animation: spin 0.6s linear infinite; vertical-align: middle;
        }
        .btn-submit.loading .btn-spinner { display: inline-block; }
        .btn-submit.loading .btn-text {  }
        @keyframes spin { to { transform: rotate(360deg); } }

        .form-toast {
            display: none; padding: 1rem 1.25rem; border-radius: 6px;
            font-family: 'Inter', sans-serif; font-size: 0.9rem; line-height: 1.5;
        }
        .form-toast.success {
            display: block; background: rgba(46, 204, 113, 0.1);
            border: 2px solid #2ECC71; color: #2ECC71;
        }
        .form-toast.error {
            display: block; background: rgba(204, 0, 0, 0.1);
            border: 2px solid var(--accent); color: var(--accent);
        }

        /* Footer */
        .footer {
            background: var(--bg);
            padding: var(--space-xl) 2rem var(--space-md);
            border-top: 2px solid var(--border);
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-brand { display: flex; gap: 1rem; align-items: flex-start; }

        .footer-logo {
            width: auto;
            height: 36px;
            flex-shrink: 0;
        }

        .footer-brand-text { flex: 1; }

        .footer-company {
            font-size: calc(0.85rem + 5px);
            font-weight: 700;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .footer-address {
            font-size: calc(0.75rem + 5px);
            color: var(--muted-fg);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .footer-address strong {
            color: var(--fg);
            display: block;
        }

        .flag-emoji { font-size: 1.4em; line-height: 1; }

        .footer-address .email-link {
            color: var(--accent);
            text-decoration: none;
        }

        .footer-address .email-link:hover {
            text-decoration: underline;
        }

        .footer-heading {
            font-size: calc(0.7rem + 5px);
            font-weight: 700;
            text-transform: uppercase;
            color: var(--fg);
            margin-bottom: 0.75rem;
            letter-spacing: 0.5px;
        }

        .footer-links { list-style: none; }

        .footer-links li { margin-bottom: 0.4rem; }

        .footer-links a {
            color: var(--muted-fg);
            text-decoration: none;
            font-size: calc(0.75rem + 5px);
            transition: color 0.1s ease;
        }

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

        .footer-bottom {
            max-width: 1200px;
            margin: var(--space-md) auto 0;
            padding-top: var(--space-md);
            border-top: 2px solid var(--muted);
            text-align: center;
            font-size: calc(0.7rem + 5px);
            color: var(--muted-fg);
        }

        /* Modal — Kinetic */
        .modal { background: rgba(0, 0, 0, 0.95) !important; }

        .modal-content {
            background: var(--bg) !important;
            border: 2px solid var(--border) !important;
            border-radius: 0 !important;
        }

        .modal-close { color: var(--fg) !important; font-size: 2rem !important; }
        .modal-close:hover { color: var(--accent) !important; }

        .modal-prev, .modal-next {
            background: var(--accent) !important;
            border: none !important;
            color: var(--accent-fg) !important;
            width: 48px !important;
            height: 48px !important;
            font-size: 1.5rem !important;
            cursor: pointer !important;
        }

        .modal-info h3 { color: var(--accent) !important; margin-bottom: 0.5rem !important; }
        .modal-info p { color: var(--muted-fg) !important; }

        /* Focus Indicators */
        :focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

        .filter-btn:focus-visible,
        .btn-primary:focus-visible,
        .btn-load-more:focus-visible,
        .btn-submit:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .portfolio-grid { grid-template-columns: 1fr 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .section-heading {
                position: static;
                padding: 0;
                margin-bottom: var(--space-lg);
            }

            .nav-list { display: none; }
            .nav-actions .btn-primary { display: none; }
            .hamburger { display: flex; }
            .video-hero-section { min-height: 90vh; }
            .video-overlay { padding: 1.5rem; padding-top: 5rem; }
            .hero-text-top { white-space: normal; }
            .value-grid { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: 1fr; }
            .portfolio-grid { grid-template-columns: 1fr 1fr; }
            .about-stories { grid-template-columns: 1fr; }
            .resources-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }

            .footer-brand { flex-direction: column; }
        }

        @media (max-width: 480px) {
            .video-hero-section { min-height: 85vh; }
            .video-overlay { padding: 1rem; padding-top: 5rem; }
            .hero-text-top { white-space: normal; }
            .portfolio-grid { grid-template-columns: 1fr; }
            .service-card { padding: 1.25rem; }
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* Testimonials */
        .testimonials-section {
            padding: var(--space-xl) 2rem;
            min-height: auto;
            background: var(--bg);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
            background: var(--border);
            border: 2px solid var(--border);
            margin-top: var(--space-lg);
        }

        .testimonial-card {
            background: var(--bg);
            padding: 2rem;
            border: none;
            transition: background 0.14s ease;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .testimonial-card:hover {
            background: var(--muted);
        }

        .testimonial-stars {
            color: var(--accent);
            font-size: 1rem;
            letter-spacing: 2px;
            flex-shrink: 0;
        }

        .star-half {
            background: linear-gradient(90deg, var(--accent) 50%, transparent 50%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .testimonial-quote {
            font-size: 0.9rem;
            color: var(--fg);
            line-height: 1.7;
            flex: 1;
            position: relative;
            padding-left: 1.5rem;
            border-left: 2px solid var(--accent);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding-top: 0.75rem;
            border-top: 1px solid var(--border);
        }

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--accent);
            color: var(--accent-fg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .testimonial-info {
            flex: 1;
        }

        .testimonial-name {
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--fg);
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .testimonial-role {
            font-size: 0.75rem;
            color: var(--muted-fg);
            line-height: 1.3;
        }

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

        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            .hero-text { animation: none; opacity: 1; transform: scale(1); }
            .hero-text-bottom { animation: none; opacity: 1 !important; transform: scale(1); }
            .video-hero-section::before { animation: none; }
            .stats-marquee-track,
            .client-marquee-track { animation: none; }

            .value-card, .service-card, .portfolio-item, .about-story, .resource-card {
                min-height: auto;
            }
        }
