        :root {
            /* Brand Colors */
            --teal: #00A5A5;
            --teal-light: #00C4C4;
            --teal-dark: #008080;
            --teal-deep: #006666;
            --orange: #E65C2A;
            --orange-light: #FF7043;
            --orange-dark: #C4451A;

            /* Neutrals */
            --charcoal: #1C1C1E;
            --slate: #2C2C2E;
            --graphite: #3A3A3C;
            --stone: #636366;
            --silver: #8E8E93;
            --pearl: #C7C7CC;
            --cloud: #E5E5EA;
            --snow: #F2F2F7;
            --white: #FFFFFF;

            /* Typography */
            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'Source Sans 3', -apple-system, sans-serif;

            /* Spacing */
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;
            --space-2xl: 6rem;
            --space-3xl: 10rem;
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            font-size: 1.0625rem;
            line-height: 1.7;
            color: var(--charcoal);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* ═══════════════════════════════════════════════════════════
           NAVIGATION
        ═══════════════════════════════════════════════════════════ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.25rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
            padding: 1rem 0;
        }

        .nav-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo img {
            height: 57px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .nav-logo:hover img {
            transform: scale(1.02);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: var(--space-lg);
        }

        .nav-link {
            font-family: var(--font-body);
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 0.02em;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

        .nav.scrolled .nav-link {
            color: var(--charcoal);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--teal);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-cta {
            font-family: var(--font-body);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--white);
            background: var(--orange);
            padding: 0.75rem 1.75rem;
            border-radius: 100px;
            text-decoration: none;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(230, 92, 42, 0.3);
        }

        .nav-cta:hover {
            background: var(--orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(230, 92, 42, 0.4);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            margin: 6px 0;
            transition: all 0.3s ease;
        }

        .nav.scrolled .mobile-toggle span {
            background: var(--charcoal);
        }

        @media (max-width: 900px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: var(--space-lg);
                gap: var(--space-md);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu .nav-link {
                color: var(--charcoal);
                font-size: 1.125rem;
            }

            .mobile-toggle {
                display: block;
            }
        }

        /* ═══════════════════════════════════════════════════════════
           HERO - CINEMATIC FULL-SCREEN
        ═══════════════════════════════════════════════════════════ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: -1;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 40%;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(0, 0, 0, 0.65) 0%,
                rgba(0, 0, 0, 0.35) 50%,
                rgba(0, 0, 0, 0.2) 100%
            );
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: calc(120px + var(--space-xl)) var(--space-lg) var(--space-xl);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-xl);
            align-items: center;
        }

        @media (max-width: 1000px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        .hero-eyebrow {
            font-family: var(--font-body);
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--teal-light);
            margin-bottom: var(--space-md);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s 0.2s ease forwards;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2.75rem, 6vw, 4.5rem);
            font-weight: 500;
            line-height: 1.1;
            color: var(--white);
            margin-bottom: var(--space-lg);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s 0.4s ease forwards;
        }

        .hero-title em {
            font-style: italic;
            color: var(--teal-light);
        }

        .hero-subtitle {
            font-family: var(--font-body);
            font-size: 1.25rem;
            font-weight: 300;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            max-width: 540px;
            margin-bottom: var(--space-xl);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s 0.6s ease forwards;
        }

        @media (max-width: 1000px) {
            .hero-subtitle {
                margin: 0 auto var(--space-xl);
            }
        }

        .hero-actions {
            display: flex;
            gap: var(--space-md);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s 0.8s ease forwards;
        }

        @media (max-width: 1000px) {
            .hero-actions {
                justify-content: center;
            }
        }

        @media (max-width: 500px) {
            .hero-actions {
                flex-direction: column;
                align-items: center;
            }
        }

        .btn {
            font-family: var(--font-body);
            font-size: 0.9375rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            padding: 1rem 2.25rem;
            border-radius: 100px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-primary {
            background: var(--orange);
            color: var(--white);
            box-shadow: 0 4px 24px rgba(230, 92, 42, 0.4);
        }

        .btn-primary:hover {
            background: var(--orange-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(230, 92, 42, 0.5);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.4);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.6);
        }

        .btn svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .btn:hover svg {
            transform: translateX(4px);
        }

        /* Hero scroll indicator */
        .hero-scroll {
            position: absolute;
            bottom: var(--space-lg);
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            opacity: 0;
            animation: fadeIn 1s 1.2s ease forwards;
        }

        .hero-scroll-line {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, var(--teal), transparent);
            animation: scrollPulse 2s infinite;
        }

        @keyframes scrollPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* ═══════════════════════════════════════════════════════════
           SECTIONS - GENERAL STYLES
        ═══════════════════════════════════════════════════════════ */
        .section {
            padding: var(--space-3xl) 0;
        }

        .section-sm {
            padding: var(--space-2xl) 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }

        .container-narrow {
            max-width: 900px;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--space-2xl);
        }

        .section-eyebrow {
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: var(--space-sm);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 500;
            line-height: 1.2;
            color: var(--charcoal);
            margin-bottom: var(--space-md);
        }

        .section-title em {
            font-style: italic;
            color: var(--teal-dark);
        }

        .section-desc {
            font-size: 1.125rem;
            color: var(--stone);
            max-width: 600px;
            margin: 0 auto;
        }

        /* ═══════════════════════════════════════════════════════════
           ABOUT SECTION - ASYMMETRIC EDITORIAL
        ═══════════════════════════════════════════════════════════ */
        .about {
            background: var(--snow);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
            opacity: 0.03;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: var(--space-2xl);
            align-items: center;
        }

        @media (max-width: 900px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: var(--space-xl);
            }
        }

        .about-visual {
            position: relative;
        }

        .about-image-wrapper {
            position: relative;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .about-image-wrapper::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100px;
            height: 100px;
            background: var(--teal);
            opacity: 0.2;
            z-index: -1;
        }

        .about-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-accent {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 200px;
            height: 200px;
            border: 3px solid var(--orange);
            opacity: 0.3;
        }

        .about-content {
            padding: var(--space-lg) 0;
        }

        .about-eyebrow {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            margin-bottom: var(--space-md);
        }

        .about-eyebrow span {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--teal);
        }

        .about-eyebrow::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--pearl);
            max-width: 80px;
        }

        .about-title {
            font-family: var(--font-display);
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 500;
            line-height: 1.25;
            color: var(--charcoal);
            margin-bottom: var(--space-lg);
        }

        .about-text {
            font-size: 1.0625rem;
            color: var(--graphite);
            margin-bottom: var(--space-md);
        }

        .about-highlight {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-style: italic;
            color: var(--teal-dark);
            padding-left: var(--space-md);
            border-left: 3px solid var(--teal);
            margin: var(--space-lg) 0;
        }

        /* ═══════════════════════════════════════════════════════════
           SERVICES - ELEGANT GRID
        ═══════════════════════════════════════════════════════════ */
        .services {
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-sm);
        }

        @media (max-width: 1100px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

        .service-card {
            background: var(--snow);
            padding: var(--space-lg);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: default;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--teal), var(--orange));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            background: var(--white);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            transform: translateY(-8px);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-number {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 400;
            color: var(--cloud);
            line-height: 1;
            margin-bottom: var(--space-md);
            transition: color 0.4s ease;
        }

        .service-card:hover .service-number {
            color: var(--teal);
        }

        .service-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: var(--space-sm);
            line-height: 1.3;
        }

        .service-desc {
            font-size: 0.9375rem;
            color: var(--stone);
            line-height: 1.65;
        }

        /* ═══════════════════════════════════════════════════════════
           SERVICES TABS
        ═══════════════════════════════════════════════════════════ */
        .services-tabs {
            display: flex;
            justify-content: center;
            gap: var(--space-sm);
            margin-bottom: var(--space-xl);
        }

        .services-tab {
            font-family: var(--font-body);
            font-size: 0.9375rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            padding: 1rem 2rem;
            background: transparent;
            border: 2px solid var(--pearl);
            color: var(--stone);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 100px;
        }

        .services-tab:hover {
            border-color: var(--teal);
            color: var(--teal);
        }

        .services-tab.active {
            background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
            border-color: var(--teal);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(0, 165, 165, 0.3);
        }

        .services-tab-content {
            display: none;
        }

        .services-tab-content.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }

        .services-tab-desc {
            text-align: center;
            font-size: 1.0625rem;
            color: var(--stone);
            max-width: 700px;
            margin: 0 auto var(--space-xl);
        }

        @media (max-width: 600px) {
            .services-tabs {
                flex-direction: column;
                align-items: center;
            }

            .services-tab {
                width: 100%;
                max-width: 320px;
                text-align: center;
            }
        }

        /* ═══════════════════════════════════════════════════════════
           PLATFORM SPOTLIGHT - REGIONAL MOBILITY DATA PLATFORM
        ═══════════════════════════════════════════════════════════ */
        .platform {
            background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-deep) 100%);
            position: relative;
            overflow: hidden;
        }

        .platform::before {
            content: '';
            position: absolute;
            top: -40%;
            left: -15%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        }

        .platform-inner {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .platform-eyebrow {
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--teal-light);
            margin-bottom: var(--space-sm);
        }

        .platform-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 500;
            line-height: 1.2;
            color: var(--white);
            margin-bottom: var(--space-md);
        }

        .platform-title em {
            font-style: italic;
            color: var(--teal-light);
        }

        .platform-lead {
            font-size: 1.1875rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            max-width: 760px;
            margin: 0 auto var(--space-2xl);
        }

        .platform-pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
            text-align: left;
            margin-bottom: var(--space-2xl);
        }

        .platform-pillar {
            padding: var(--space-lg);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .platform-pillar:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-4px);
        }

        .platform-pillar h3 {
            font-family: var(--font-display);
            font-size: 1.375rem;
            font-weight: 500;
            color: var(--white);
            margin-bottom: var(--space-sm);
        }

        .platform-pillar p {
            font-size: 0.9875rem;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.8);
        }

        .platform-cta {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--space-md);
        }

        .platform-cta-text {
            font-family: var(--font-display);
            font-style: italic;
            font-size: 1.375rem;
            color: rgba(255, 255, 255, 0.95);
            max-width: 620px;
        }

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

        /* ═══════════════════════════════════════════════════════════
           METRICS - BOLD STATEMENT
        ═══════════════════════════════════════════════════════════ */
        .metrics {
            background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-deep) 100%);
            position: relative;
            overflow: hidden;
        }

        .metrics::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        }

        .metrics-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-xl);
            align-items: center;
        }

        @media (max-width: 800px) {
            .metrics-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        .metrics-content {
            color: var(--white);
        }

        .metrics-eyebrow {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: var(--space-sm);
        }

        .metrics-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: var(--space-md);
        }

        .metrics-text {
            font-size: 1.0625rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 400px;
        }

        @media (max-width: 800px) {
            .metrics-text {
                margin: 0 auto;
            }
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-md);
        }

        .metric-item {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            padding: var(--space-lg);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .metric-item:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-4px);
        }

        .metric-value {
            font-family: var(--font-display);
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 400;
            color: var(--white);
            line-height: 1;
            margin-bottom: var(--space-xs);
        }

        .metric-value span {
            color: var(--orange-light);
        }

        .metric-label {
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        /* ═══════════════════════════════════════════════════════════
           TEAM - PORTRAIT CARDS
        ═══════════════════════════════════════════════════════════ */
        .team {
            background: var(--snow);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (max-width: 1000px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 700px) {
            .team-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
            }
        }

        .team-card {
            background: var(--white);
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
        }

        .team-image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/3;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .team-card:hover .team-image img {
            transform: scale(1.05);
        }

        .team-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .team-card:hover .team-image::after {
            opacity: 1;
        }

        .team-info {
            padding: var(--space-lg);
        }

        .team-name {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: 0.25rem;
        }

        .team-role {
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: var(--space-md);
        }

        .team-bio {
            font-size: 0.9375rem;
            color: var(--stone);
            line-height: 1.7;
            margin-bottom: var(--space-sm);
        }

        .team-highlight {
            color: var(--teal-dark);
            font-weight: 600;
        }

        .team-credentials {
            font-size: 0.8125rem;
            color: var(--silver);
            padding-top: var(--space-sm);
            border-top: 1px solid var(--cloud);
        }

        /* ═══════════════════════════════════════════════════════════
           CLIENTS - LOGO STRIP
        ═══════════════════════════════════════════════════════════ */
        .clients {
            background: var(--white);
            border-top: 1px solid var(--cloud);
            border-bottom: 1px solid var(--cloud);
        }

        .clients-header {
            text-align: center;
            margin-bottom: var(--space-xl);
        }

        .clients-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--charcoal);
        }

        .clients-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2.5rem 3.25rem;
        }

        .client-link {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .client-logo {
            height: 36px;
            width: auto;
            opacity: 0.5;
            filter: grayscale(100%);
            transition: all 0.3s ease;
        }

        .client-link:hover .client-logo,
        .client-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        /* ═══════════════════════════════════════════════════════════
           CONTACT - SPLIT LAYOUT
        ═══════════════════════════════════════════════════════════ */
        .contact {
            background: var(--snow);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: var(--space-2xl);
            align-items: start;
        }

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

        .contact-info {
            padding: var(--space-md) 0;
        }

        .contact-eyebrow {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: var(--space-sm);
        }

        .contact-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: var(--space-md);
            line-height: 1.2;
        }

        .contact-text {
            color: var(--stone);
            margin-bottom: var(--space-xl);
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: var(--space-lg);
        }

        .contact-item {
            display: flex;
            gap: var(--space-md);
            align-items: flex-start;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        .contact-icon svg {
            width: 20px;
            height: 20px;
            color: var(--teal);
        }

        .contact-label {
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--silver);
            margin-bottom: 0.25rem;
        }

        .contact-value {
            font-size: 1rem;
            color: var(--charcoal);
        }

        .contact-value a {
            color: var(--teal-dark);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .contact-value a:hover {
            color: var(--teal);
        }

        .contact-note {
            font-size: 0.875rem;
            color: var(--silver);
            font-style: italic;
        }

        /* Form */
        .contact-form-wrapper {
            background: var(--white);
            padding: var(--space-xl);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .form-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: var(--space-lg);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-md);
        }

        @media (max-width: 500px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

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

        .form-label {
            display: block;
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--graphite);
            margin-bottom: 0.5rem;
        }

        .form-input {
            width: 100%;
            padding: 1rem 1.25rem;
            font-family: var(--font-body);
            font-size: 1rem;
            color: var(--charcoal);
            background: var(--snow);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            background: var(--white);
            border-color: var(--teal);
        }

        .form-input::placeholder {
            color: var(--silver);
        }

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

        .form-submit {
            width: 100%;
            padding: 1.125rem 2rem;
            font-family: var(--font-body);
            font-size: 0.9375rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--white);
            background: var(--orange);
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-submit:hover {
            background: var(--orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(230, 92, 42, 0.3);
        }

        /* ═══════════════════════════════════════════════════════════
           FOOTER
        ═══════════════════════════════════════════════════════════ */
        .footer {
            background: var(--charcoal);
            color: var(--white);
            padding: var(--space-xl) 0 var(--space-lg);
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: var(--space-md);
        }

        .footer-logo img {
            height: 36px;
            filter: brightness(0) invert(1);
        }

        .footer-links {
            display: flex;
            gap: var(--space-lg);
        }

        .footer-link {
            font-size: 0.9375rem;
            color: var(--silver);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: var(--teal-light);
        }

        .footer-copy {
            font-size: 0.875rem;
            color: var(--stone);
        }

        @media (max-width: 700px) {
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }

        /* ═══════════════════════════════════════════════════════════
           ANIMATIONS
        ═══════════════════════════════════════════════════════════ */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Scroll animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

/* ═══════════════════════════════════════════════════════════
   GALLERY - REAL INSTALLATIONS
═══════════════════════════════════════════════════════════ */
.gallery {
    background: var(--snow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

@media (max-width: 1000px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.gallery-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--charcoal);
}

.gallery-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-media img {
    transform: scale(1.04);
}

.gallery-tag {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 100px;
    color: var(--white);
    background: rgba(0, 128, 128, 0.92);
    backdrop-filter: blur(6px);
}

.gallery-tag.is-concept {
    background: rgba(58, 58, 60, 0.85);
}

.gallery-caption {
    padding: var(--space-md);
}

.gallery-place {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.2rem;
}

.gallery-desc {
    font-size: 0.875rem;
    color: var(--stone);
    line-height: 1.5;
}

/* Placeholder avatar for pending team members */
.team-image.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cloud) 0%, var(--pearl) 100%);
}

.team-image.is-placeholder img {
    width: 38%;
    height: auto;
    object-fit: contain;
    opacity: 0.55;
}

.team-card.is-placeholder {
    border: 1px dashed var(--pearl);
}

/* ═══════════════════════════════════════════════════════════
   HERO REFINEMENT - GRADIENT + FRAMED INSTALL
═══════════════════════════════════════════════════════════ */
.hero {
    background:
        radial-gradient(1100px 620px at 80% 12%, rgba(0, 196, 196, 0.30), transparent 62%),
        radial-gradient(900px 700px at 0% 100%, rgba(230, 92, 42, 0.12), transparent 60%),
        linear-gradient(140deg, var(--teal-deep) 0%, #173a3c 42%, var(--charcoal) 100%);
}

.hero-content {
    align-items: center;
}

.hero-visual {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s 0.7s ease forwards;
}

@media (max-width: 1000px) {
    .hero-visual { display: none; }
}

.hero-frame {
    position: relative;
    margin: 0;
    border-radius: 14px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
}

.hero-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.hero-frame-chip {
    position: absolute;
    bottom: 22px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--white);
    background: rgba(28, 28, 30, 0.78);
    backdrop-filter: blur(8px);
    padding: 0.5rem 0.9rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-light);
    box-shadow: 0 0 0 0 rgba(0, 196, 196, 0.6);
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 196, 196, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(0, 196, 196, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 196, 196, 0); }
}

/* Logo legibility: white over dark hero, colored once nav turns white */
.nav:not(.scrolled) .nav-logo img {
    filter: brightness(0) invert(1);
}
