        /* ============ TOKENS ============ */
        :root {
            --navy: #15181B;
            --navy-2: #1F2327;
            --navy-3: #2B2F34;
            --teal: #52B29A;
            --teal-2: #5FBFA6;
            --sky: #61B2E0;
            --yellow: #61B2E0;
            --asphalt: #2B3136;
            --gray-100: #F6F8F9;
            --gray-200: #EDF1F2;
            --gray-300: #D7DEE1;
            --gray-500: #8B98A1;
            --gray-600: #5B6670;
            --white: #FFFFFF;
            --grad-brand: linear-gradient(115deg, var(--teal) 0%, var(--sky) 100%);
            --grad-dark: linear-gradient(180deg, #0C0D0F 0%, #15181B 100%);
            --shadow-soft: 0 20px 60px -20px rgba(15, 18, 22, .25);
            --shadow-card: 0 12px 32px -12px rgba(15, 18, 22, .18);
            --ease: cubic-bezier(.22, 1, .36, 1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--navy);
            background: var(--white);
            overflow-x: hidden;
            line-height: 1.5;
        }
        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            letter-spacing: -.02em;
            line-height: 1.12;
            color: var(--navy);
        }
        .mono {
            font-family: 'IBM Plex Mono', monospace;
            letter-spacing: .02em;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            display: block;
            height: auto;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
        }
        .eyebrow {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 12.5px;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--teal);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .eyebrow::before {
            content: '';
            width: 22px;
            height: 2px;
            background: var(--teal);
            border-radius: 2px;
            flex-shrink: 0;
        }
        ::selection {
            background: var(--yellow);
            color: var(--navy);
        }
        @media (prefers-reduced-motion:reduce) {
            * {
                animation-duration: .001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .001ms !important;
                scroll-behavior: auto !important;
            }
        }
        a:focus-visible, button:focus-visible {
            outline: 2px solid var(--sky);
            outline-offset: 3px;
            border-radius: 4px;
        }

        /* ============ NAVIGATION ============ */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            padding: 12px 0;
            transition: all .45s var(--ease);
        }
        header::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, .72);
            border-bottom: 1px solid rgba(15, 18, 22, .07);
            -webkit-backdrop-filter: blur(16px) saturate(150%);
            backdrop-filter: blur(16px) saturate(150%);
            pointer-events: none;
            transition: opacity .45s var(--ease);
        }
        header.scrolled::before {
            opacity: 0;
        }
        header .navbar {
            position: relative;
            z-index: 1;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }
        header.scrolled {
            padding: 8px 0;
            background: rgba(255, 255, 255, .85);
            backdrop-filter: blur(18px) saturate(160%);
            -webkit-backdrop-filter: blur(18px) saturate(160%);
            box-shadow: 0 8px 30px -14px rgba(15, 18, 22, .16);
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 0;
            flex-shrink: 0;
        }
        .brand img {
            height: 80px;
            width: auto;
            transition: all .4s var(--ease);
        }
        header.scrolled .brand img {
            height: 52px;
        }

        /* main nav */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
            margin: 0 auto 0 44px;
            padding: 0;
        }
        .nav-links>li {
            position: static;
        }
        .nav-links>li>a {
            position: relative;
            font-family: 'Poppins', sans-serif;
            font-size: .96rem;
            font-weight: 500;
            color: #425668;
            padding: 6px 0;
            display: inline-block;
            white-space: nowrap;
            transition: color .25s var(--ease);
            cursor: pointer;
        }
        .nav-links>li>a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0%;
            height: 2px;
            background: var(--teal);
            transition: width .3s var(--ease);
            border-radius: 2px;
        }
        .nav-links>li>a:hover {
            color: #12232f;
        }
        .nav-links>li>a:hover::after {
            width: 100%;
        }
        .nav-links>li>a .chevron {
            display: inline-block;
            margin-left: 4px;
            font-size: 10px;
            transition: transform .3s var(--ease);
        }
        .nav-links>li:hover>a .chevron {
            transform: rotate(180deg);
        }

        /* Mega Menu — panel contained to the header content area (logo → CTA) */
        .mega-menu {
            position: absolute;
            /* navbar height + header's bottom padding (12px) + a 10px breathing
               gap, so the open panel never touches the header bar. */
            top: calc(100% + 22px);
            left: 40px;
            right: 40px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            background: rgba(255, 255, 255, .97);
            -webkit-backdrop-filter: blur(20px) saturate(150%);
            backdrop-filter: blur(20px) saturate(150%);
            border: 1px solid rgba(15, 18, 22, .07);
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 40px 70px -28px rgba(15, 18, 22, .35);
            transform: translateY(10px);
            transition: opacity .32s var(--ease), transform .32s var(--ease), visibility .32s;
            z-index: 40;
        }
        /* Header shrinks on scroll (8px padding instead of 12px) — keep the
           same 10px gap under it. */
        header.scrolled .mega-menu {
            top: calc(100% + 18px);
        }
        .nav-links>li.open .mega-menu,
        .nav-links>li:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }
        .mega-menu .mm-inner {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 50px;
            padding: 34px 0 38px;
            align-items: stretch;
        }
        .mega-menu .mm-cols {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4px 36px;
            align-content: start;
        }
        .mega-menu .mm-group .mm-label {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .12em;
            color: var(--teal);
            font-weight: 600;
            margin: 4px 0 10px 12px;
        }
        .skip-link {
            position: absolute;
            left: 12px;
            top: -60px;
            z-index: 2000;
            background: var(--teal, #0f766e);
            color: #fff;
            padding: 10px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: top .2s ease;
        }
        .skip-link:focus {
            top: 12px;
            outline: 3px solid #fff;
            outline-offset: 2px;
        }
        .mega-menu .mm-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 10px 12px;
            border-radius: 13px;
            transition: background .2s var(--ease);
        }
        .mega-menu .mm-item:hover {
            background: rgba(82, 178, 154, .09);
        }
        .mega-menu .mm-ico {
            flex: 0 0 42px;
            height: 42px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            background: rgba(82, 178, 154, .12);
            color: var(--teal);
            transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
        }
        .mega-menu .mm-ico svg {
            width: 21px;
            height: 21px;
        }
        .mega-menu .mm-item:hover .mm-ico {
            background: linear-gradient(135deg, #5FC0A6, #45A08A);
            color: #fff;
            transform: translateY(-1px);
        }
        .mega-menu .mm-txt {
            display: flex;
            flex-direction: column;
            line-height: 1.25;
        }
        .mega-menu .mm-txt strong {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 14.5px;
            color: var(--navy);
        }
        .mega-menu .mm-txt .mm-desc {
            font-size: 12.5px;
            color: var(--gray-600);
            margin-top: 2px;
        }
        .mega-menu .mm-side {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .mega-menu .mm-visual {
            position: relative;
            display: block;
            border-radius: 16px;
            overflow: hidden;
            flex: 1;
            min-height: 190px;
        }
        .mega-menu .mm-visual img {
            width: 100%;
            height: 100%;
            min-height: 190px;
            object-fit: cover;
            display: block;
            transition: transform .5s var(--ease);
        }
        .mega-menu .mm-visual:hover img {
            transform: scale(1.06);
        }
        .mega-menu .mm-visual-cap {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 34px 18px 16px;
            background: linear-gradient(0deg, rgba(6, 18, 26, .92) 0%, rgba(6, 18, 26, .25) 65%, transparent 100%);
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 16px;
            line-height: 1.15;
        }
        .mega-menu .mm-visual-cap em {
            display: block;
            font-family: 'IBM Plex Mono', monospace;
            font-style: normal;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--teal-2);
            margin-bottom: 5px;
        }
        .mega-menu .mm-featured {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            padding-top: 2px;
        }
        .mega-menu .mm-featured a {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--teal);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap .3s var(--ease);
        }
        .mega-menu .mm-featured a:hover {
            gap: 11px;
        }

        /* nav CTA - desktop only */
        .nav-cta {
            padding: 10px 22px;
            border-radius: 100px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: -.01em;
            color: #fff;
            background: linear-gradient(135deg, #5FC0A6, #45A08A);
            box-shadow: 0 10px 22px -10px rgba(82, 178, 154, .55), inset 0 1px 0 rgba(255, 255, 255, .28);
            transition: transform .35s var(--ease), box-shadow .35s var(--ease);
            flex-shrink: 0;
        }
        .nav-cta span {
            position: relative;
            z-index: 2;
        }
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 30px -10px rgba(82, 178, 154, .6), inset 0 1px 0 rgba(255, 255, 255, .28);
        }

        /* header phone - desktop only */
        .nav-phone {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-right: 20px;
            font-family: 'Poppins', sans-serif;
            font-size: 14.5px;
            font-weight: 600;
            letter-spacing: -.01em;
            color: var(--navy);
            white-space: nowrap;
            flex-shrink: 0;
            transition: color .25s var(--ease);
        }
        .nav-phone .np-ico {
            flex: 0 0 32px;
            height: 32px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: rgba(82, 178, 154, .12);
            color: var(--teal);
            transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
        }
        .nav-phone .np-ico svg {
            width: 15px;
            height: 15px;
        }
        .nav-phone:hover {
            color: var(--teal);
        }
        .nav-phone:hover .np-ico {
            background: linear-gradient(135deg, #5FC0A6, #45A08A);
            color: #fff;
            transform: scale(1.06);
        }

        /* Burger */
        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 70;
            padding: 4px;
        }
        .burger span {
            width: 26px;
            height: 2px;
            background: var(--navy);
            border-radius: 2px;
            transition: .3s var(--ease);
        }
        .burger.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .burger.open span:nth-child(2) {
            opacity: 0;
        }
        .burger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            inset: 0;
            background: var(--navy);
            z-index: 65;
            display: flex;
            flex-direction: column;
            padding: 24px 28px 40px;
            transform: translateY(-100%);
            transition: transform .5s var(--ease);
            overflow-y: auto;
            gap: 6px;
        }
        .mobile-menu.open {
            transform: translateY(0);
        }
        .mobile-menu .mm-close {
            align-self: flex-end;
            background: none;
            border: none;
            color: var(--white);
            font-size: 32px;
            cursor: pointer;
            padding: 8px 4px 12px;
            line-height: 1;
            opacity: .7;
            transition: opacity .3s;
            font-family: 'Inter', sans-serif;
        }
        .mobile-menu .mm-close:hover {
            opacity: 1;
        }
        .mobile-menu a {
            font-family: 'Poppins', sans-serif;
            font-size: 26px;
            font-weight: 800;
            color: var(--white);
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            transition: color .3s;
        }
        .mobile-menu a:hover {
            color: var(--teal-2);
        }
        .mobile-menu .mm-mobile-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4px 16px;
            margin: 2px 0 6px;
            padding-left: 4px;
        }
        .mobile-menu .mm-mobile-grid a {
            font-size: 15px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            border-bottom: none;
            color: rgba(255, 255, 255, .7);
            padding: 4px 0;
        }
        .mobile-menu .mm-mobile-grid a:hover {
            color: var(--white);
        }
        /* Collapsible Ports/Services accordions in the mobile menu */
        .mobile-menu .mm-acc {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            background: none;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            font-family: 'Poppins', sans-serif;
            font-size: 26px;
            font-weight: 800;
            color: var(--white);
            padding: 8px 0;
            cursor: pointer;
            text-align: left;
            transition: color .3s;
        }
        .mobile-menu .mm-acc:hover { color: var(--teal-2); }
        .mobile-menu .mm-chev {
            font-size: 18px;
            opacity: .7;
            transition: transform .3s var(--ease);
        }
        .mobile-menu .mm-acc[aria-expanded="true"] .mm-chev { transform: rotate(180deg); }
        .mobile-menu .mm-panel { display: none; }
        .mobile-menu .mm-panel.open { display: grid; }

        /* ============ HERO ============ */
        .hero {
            position: relative;
            padding: 200px 0 140px;
            background: #15181B url('/hero-poster.webp') center center / cover no-repeat;
            overflow: hidden;
            min-height: 100vh;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: transparent;
            z-index: 1;
        }
        .hero-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-video { display: none; }
        }
        .hero-blur {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: .16;
            pointer-events: none;
            z-index: 1;
        }
        .hero-blur.b1 {
            width: 520px;
            height: 520px;
            background: var(--teal);
            top: -180px;
            left: -160px;
        }
        .hero-blur.b2 {
            width: 460px;
            height: 460px;
            background: var(--navy-3);
            bottom: -160px;
            right: -100px;
        }
        .hero-inner {
            position: relative;
            z-index: 2;
        }
        .hero-left {
            text-align: left;
            max-width: 620px;
            background: rgba(255, 255, 255, 0.74);
            backdrop-filter: blur(20px) saturate(130%);
            -webkit-backdrop-filter: blur(20px) saturate(130%);
            border: 1px solid rgba(255, 255, 255, 0.7);
            border-radius: 24px;
            padding: clamp(30px, 3.4vw, 48px);
            box-shadow: 0 34px 80px -34px rgba(6, 18, 26, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.75);
        }
        .hero-left .eyebrow {
            color: var(--teal);
            margin-bottom: 24px;
        }
        .hero-left .eyebrow::before {
            background: var(--teal);
        }
        .hero-left h1 {
            font-size: clamp(32px, 4vw, 56px);
            line-height: 1.16;
            color: var(--navy);
            margin-bottom: 26px;
            opacity: 0;
            transform: translateY(26px);
            animation: riseIn .9s var(--ease) .1s forwards;
        }
        .hero-left h1 em {
            font-style: normal;
            color: var(--teal);
        }
        .hero-left p.lead {
            font-size: 18px;
            color: var(--gray-600);
            max-width: 480px;
            margin-bottom: 36px;
            opacity: 0;
            transform: translateY(20px);
            animation: riseIn .9s var(--ease) .25s forwards;
        }
        @keyframes riseIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .hero-cta-row {
            display: flex;
            gap: 16px;
            margin-bottom: 0;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(20px);
            animation: riseIn .9s var(--ease) .4s forwards;
        }
        .hero-cta-row .btn-ghost {
            color: var(--navy);
            background: rgba(255, 255, 255, .5);
            border-color: rgba(15, 18, 22, 0.16);
        }
        .hero-cta-row .btn-ghost:hover {
            transform: translateY(-2px);
            border-color: var(--teal);
            background: #fff;
            box-shadow: 0 10px 26px -12px rgba(15, 18, 22, .2);
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: .5em;
            padding: 14px 28px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: -.01em;
            transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
            cursor: pointer;
            border: 1.5px solid transparent;
            font-family: 'Poppins', sans-serif;
            white-space: nowrap;
        }
        .btn-primary {
            color: #fff;
            background: linear-gradient(135deg, #5FC0A6, #45A08A);
            box-shadow: 0 12px 26px -10px rgba(82, 178, 154, .55), inset 0 1px 0 rgba(255, 255, 255, .28);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            color: #fff;
            box-shadow: 0 18px 36px -10px rgba(82, 178, 154, .6), inset 0 1px 0 rgba(255, 255, 255, .28);
        }
        .btn-primary svg {
            transition: transform .3s var(--ease);
        }
        .btn-primary:hover svg {
            transform: translateX(4px);
        }
        .btn-ghost {
            color: var(--navy);
            background: rgba(255, 255, 255, .72);
            border-color: var(--line);
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
        }
        .btn-ghost:hover {
            transform: translateY(-2px);
            border-color: var(--teal);
            background: #fff;
            box-shadow: 0 10px 26px -12px rgba(15, 18, 22, .2);
        }

        /* ============ TRUST MARQUEE ============ */
        .trust {
            padding: 56px 0;
            background: var(--gray-100);
            border-top: 1px solid var(--gray-300);
            border-bottom: 1px solid var(--gray-300);
        }
        .trust p {
            text-align: center;
            font-size: 12.5px;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--gray-600);
            margin-bottom: 28px;
        }
        .marquee {
            overflow: hidden;
            position: relative;
            mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
        }
        .marquee-track {
            display: flex;
            gap: 70px;
            width: max-content;
            animation: scrollX 26s linear infinite;
        }
        @keyframes scrollX {
            to {
                transform: translateX(-50%);
            }
        }
        .marquee-item {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 19px;
            color: var(--gray-500);
            white-space: nowrap;
            filter: grayscale(1);
            opacity: .7;
            transition: .3s;
        }
        .marquee-item:hover {
            opacity: 1;
            color: var(--navy);
        }

        /* ============ SECTIONS ============ */
        section {
            position: relative;
        }
        .section-pad {
            padding: 130px 0;
        }
        .reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity .8s var(--ease), transform .8s var(--ease);
        }
        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }
        .section-head {
            max-width: 640px;
            margin-bottom: 64px;
        }
        .section-head h2 {
            font-size: clamp(30px, 3.4vw, 44px);
            margin-top: 18px;
            line-height: 1.1;
        }
        .section-head p {
            font-size: 16.5px;
            color: var(--gray-600);
            margin-top: 16px;
            max-width: 520px;
        }

        /* ============ WHY CHOOSE US ============ */
        .why {
            background:
                radial-gradient(620px 520px at 10% 8%, rgba(82, 178, 154, .20), transparent 62%),
                radial-gradient(560px 520px at 90% 92%, rgba(97, 178, 224, .18), transparent 60%),
                linear-gradient(160deg, #edf3f2 0%, #eef2f6 55%, #e7eef4 100%);
        }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }
        .why-card {
            background: rgba(255, 255, 255, .48);
            -webkit-backdrop-filter: blur(16px) saturate(155%);
            backdrop-filter: blur(16px) saturate(155%);
            border: 1px solid rgba(255, 255, 255, .65);
            border-radius: 18px;
            padding: 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 22px 50px -26px rgba(15, 18, 22, .28);
            transition: transform .4s var(--ease), box-shadow .4s var(--ease);
        }
        .why-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 32px 62px -26px rgba(15, 18, 22, .36);
            z-index: 2;
        }
        .why-photo {
            height: 172px;
            overflow: hidden;
        }
        .why-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .6s var(--ease);
        }
        .why-card:hover .why-photo img {
            transform: scale(1.06);
        }
        .why-body {
            padding: 26px 30px 30px;
        }
        .why-card h3 {
            font-size: 21px;
            margin-bottom: 10px;
        }
        .why-card p {
            font-size: 14.5px;
            color: var(--gray-600);
            margin-bottom: 20px;
        }
        .why-arrow {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid var(--gray-300);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .35s var(--ease);
        }
        .why-card:hover .why-arrow {
            background: var(--teal);
            border-color: transparent;
            transform: rotate(45deg);
        }
        .why-arrow svg {
            stroke: var(--navy);
            transition: .3s;
        }
        .why-card:hover .why-arrow svg {
            stroke: var(--white);
        }

        /* ============ ABOUT ============ */
        .about {
            background: linear-gradient(170deg, #f7f5ef 0%, #eef4f2 60%, #e9f1f0 100%);
        }
        .about-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }
        .about-visual {
            position: relative;
        }
        .about-visual img {
            width: 100%;
            height: 560px;
            object-fit: cover;
            border-radius: 18px;
            box-shadow: var(--shadow-card);
            display: block;
        }
        .exp-badge {
            position: absolute;
            bottom: -24px;
            left: -24px;
            z-index: 4;
            background: rgba(15, 18, 22, .42);
            -webkit-backdrop-filter: blur(16px) saturate(150%);
            backdrop-filter: blur(16px) saturate(150%);
            color: var(--white);
            padding: 20px 24px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, .18);
            box-shadow: var(--shadow-soft);
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .exp-badge .num {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 26px;
            font-weight: 600;
            color: var(--teal-2);
        }
        .exp-badge .lbl {
            font-size: 12px;
            color: rgba(255, 255, 255, .7);
        }
        .about-copy p {
            font-size: 16px;
            color: var(--gray-600);
            margin: 22px 0 30px;
            line-height: 1.7;
        }
        .about-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 14.5px;
            color: var(--navy);
            border-bottom: 2px solid var(--teal);
            padding-bottom: 4px;
        }
        .about-link svg {
            transition: transform .3s var(--ease);
        }
        .about-link:hover svg {
            transform: translateX(5px);
        }

        /* ============ SERVICES ============ */
        .services {
            background:
                radial-gradient(700px 500px at 88% 6%, rgba(97, 178, 224, .10), transparent 60%),
                linear-gradient(180deg, #ffffff 0%, #eef4f6 100%);
        }
        .service-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            grid-auto-rows: 190px;
            gap: 18px;
        }
        @media (min-width: 769px) {
            .service-grid {
                grid-auto-rows: 244px;
            }
        }
        .svc {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            color: var(--white);
            cursor: pointer;
            transition: transform .5s var(--ease);
        }
        .svc::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, transparent 44%, rgba(15, 18, 22, 0.12) 62%, rgba(15, 18, 22, 0.82) 100%);
            z-index: 1;
        }
        .svc-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform .7s var(--ease);
            z-index: 0;
        }
        .svc:hover .svc-bg {
            transform: scale(1.08);
        }
        .svc:hover {
            transform: translateY(-5px);
        }
        .svc-content {
            position: relative;
            z-index: 2;
        }
        .svc-num {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 12px;
            color: var(--yellow);
            margin-bottom: 8px;
            display: block;
        }
        .svc h3 {
            color: var(--white);
            font-size: 19px;
            margin-bottom: 6px;
        }
        .svc p {
            font-size: 14px;
            color: rgba(255, 255, 255, .8);
            margin-top: 6px;
            line-height: 1.5;
            font-weight: 400;
        }
        .svc-arrow {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 2;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .14);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .3s var(--ease);
        }
        .svc:hover .svc-arrow {
            background: var(--yellow);
            transform: rotate(45deg);
        }
        .svc:hover .svc-arrow svg {
            stroke: var(--navy);
        }
        .s1 {
            grid-column: span 3;
            grid-row: span 2;
        }
        .s2 {
            grid-column: span 3;
            grid-row: span 1;
        }
        .s3 {
            grid-column: span 3;
            grid-row: span 1;
        }
        .s4 {
            grid-column: span 2;
            grid-row: span 2;
        }
        .s5 {
            grid-column: span 2;
            grid-row: span 2;
        }
        .s6 {
            grid-column: span 2;
            grid-row: span 2;
        }
        .s7 {
            grid-column: span 2;
            grid-row: span 1;
        }
        .s8 {
            grid-column: span 2;
            grid-row: span 1;
        }
        .s9 {
            grid-column: span 2;
            grid-row: span 1;
        }

        /* ============ MAP / TERMINALS ============ */
        .map-section {
            position: relative;
            color: var(--navy);
            overflow: hidden;
            padding: 150px 0 100px;
            isolation: isolate;
            background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
        }
        .map-bg {
            display: none;
        }
        .map-overlay {
            display: none;
        }
        .map-inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            max-width: 1240px;
            margin: 0 auto;
        }
        .map-copy {
            text-align: left;
        }
        .map-copy .eyebrow {
            justify-content: flex-start;
            color: var(--teal);
        }
        .map-copy .eyebrow::before {
            background: var(--teal);
        }
        .map-copy h2 {
            color: var(--navy);
            font-size: clamp(32px, 3.4vw, 46px);
            margin-top: 20px;
            letter-spacing: -.025em;
            line-height: 1.12;
        }
        .map-copy p {
            color: var(--gray-600);
            margin: 20px 0 0;
            font-size: 16px;
            max-width: 420px;
            line-height: 1.7;
        }

        .terminal-stack {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        .terminal-card {
            display: grid;
            grid-template-columns: 1fr;
            min-height: auto;
            border-radius: 28px;
            overflow: hidden;
            background: var(--white);
            border: 1px solid var(--gray-300);
            box-shadow: 0 30px 70px -30px rgba(15, 18, 22, .16);
            transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
        }
        .terminal-card:hover {
            transform: translateY(-6px);
            border-color: var(--teal);
            box-shadow: 0 40px 90px -28px rgba(15, 18, 22, .22), 0 0 44px -14px rgba(82, 178, 154, .35);
        }

        .terminal-card-image {
            position: relative;
            overflow: hidden;
            min-height: 220px;
            background: var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .terminal-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .8s var(--ease);
        }
        .terminal-card-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 60%);
            pointer-events: none;
            z-index: 1;
        }
        .terminal-card:hover .terminal-card-image img {
            transform: scale(1.03);
        }

        .terminal-card-image .terminal-tag {
            position: absolute;
            bottom: 24px;
            left: 24px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(0, 0, 0, .55);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            padding: 8px 16px 8px 12px;
            border-radius: 999px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .04em;
            text-transform: uppercase;
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, .12);
            z-index: 2;
            pointer-events: none;
        }
        .terminal-card-image .terminal-tag svg {
            stroke: var(--teal-2);
            flex-shrink: 0;
        }

        .terminal-card-content {
            padding: 34px 38px 34px 34px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .terminal-card-content h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 28px;
            color: var(--navy);
            margin-bottom: 12px;
            letter-spacing: -.02em;
        }
        .terminal-card-content .terminal-location-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .05em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 16px;
        }
        .terminal-card-content .terminal-location-badge svg {
            stroke: var(--teal);
            flex-shrink: 0;
        }
        .terminal-card-content .terminal-divider {
            width: 100%;
            height: 1px;
            background: rgba(15, 18, 22, .1);
            margin-bottom: 20px;
        }
        .terminal-card-content p {
            font-size: 16px;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 24px;
        }
        .terminal-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        .terminal-card-footer span {
            font-size: 14px;
            color: var(--gray-500);
        }
        .terminal-card-arrow {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: transparent;
            border: 1px solid rgba(82, 178, 154, .5);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: .35s var(--ease);
        }
        .terminal-card-arrow svg {
            stroke: var(--teal-2);
            transition: stroke .3s var(--ease);
        }
        .terminal-card:hover .terminal-card-arrow {
            background: var(--teal);
            border-color: transparent;
            transform: rotate(45deg);
        }
        .terminal-card:hover .terminal-card-arrow svg {
            stroke: var(--white);
        }

        .map-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1240px;
            margin: 88px auto 0;
            padding-top: 40px;
            border-top: 1px solid var(--gray-300);
        }
        .map-stat {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 12px 16px;
            border-radius: 16px;
            transition: background .3s var(--ease), transform .3s var(--ease);
        }
        .map-stat:hover {
            background: rgba(15, 18, 22, .04);
            transform: translateY(-3px);
        }
        .map-stat-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: 1px solid rgba(82, 178, 154, .4);
            background: rgba(82, 178, 154, .1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .map-stat-icon svg {
            stroke: var(--teal-2);
        }
        .map-stat .map-stat-title {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 16px;
            color: var(--navy);
            margin-bottom: 2px;
        }
        .map-stat span {
            font-size: 14px;
            color: var(--gray-600);
        }

        /* ============ PROCESS ============ */
        .process {
            background:
                radial-gradient(680px 460px at 12% 12%, rgba(82, 178, 154, .12), transparent 62%),
                linear-gradient(180deg, #eaf2f6 0%, #f3f7f7 100%);
        }
        .timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
            margin-top: 20px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            top: 27px;
            left: 6%;
            right: 6%;
            height: 2px;
            background: repeating-linear-gradient(90deg, var(--gray-300) 0 10px, transparent 10px 18px);
        }
        .timeline-fill {
            position: absolute;
            top: 27px;
            left: 6%;
            height: 2px;
            width: 0%;
            background: var(--teal);
            transition: width 1.4s var(--ease);
        }
        .step {
            padding-right: 20px;
            position: relative;
        }
        .step-num {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--gray-300);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'IBM Plex Mono', monospace;
            font-weight: 600;
            margin-bottom: 26px;
            position: relative;
            z-index: 2;
            transition: .4s var(--ease);
            color: var(--gray-500);
        }
        .step.in .step-num {
            border-color: var(--teal);
            color: var(--teal);
            background: var(--white);
            box-shadow: 0 0 0 6px rgba(82, 178, 154, .1);
        }
        .step h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        .step p {
            font-size: 14px;
            color: var(--gray-600);
        }

        /* ============ STATS SECTION ============ */
        .stats-section {
            background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
            padding: 100px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stat-card {
            background: var(--white);
            border: 1px solid var(--gray-300);
            border-radius: 20px;
            padding: 0;
            overflow: hidden;
            box-shadow: 0 16px 40px -20px rgba(15, 18, 22, 0.14);
            transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
        }
        .stat-card:hover {
            transform: translateY(-8px);
            border-color: var(--teal);
            box-shadow: 0 24px 50px -22px rgba(15, 18, 22, 0.22);
        }
        .stat-photo {
            height: 140px;
            overflow: hidden;
        }
        .stat-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .6s var(--ease);
        }
        .stat-card:hover .stat-photo img {
            transform: scale(1.06);
        }
        .stat-body {
            padding: 26px 26px 30px;
        }
        .stat-value {
            color: var(--teal);
            font-size: clamp(28px, 2.8vw, 36px);
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            margin-bottom: 2px;
            line-height: 1.1;
        }
        .stat-title {
            color: var(--navy);
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            margin-bottom: 24px;
        }
        .stat-divider {
            width: 32px;
            height: 2px;
            background: var(--teal-2);
            margin-bottom: 20px;
            border-radius: 2px;
        }
        .stat-desc {
            color: var(--gray-600);
            font-size: 11.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            line-height: 1.8;
        }

        /* ============ DRIVER SECTION ============ */
        .driver-section {
            background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
            padding: 112px 0;
        }
        .driver-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .driver-image-wrapper {
            position: relative;
            height: 640px;
            overflow: hidden;
            border-radius: 1.5rem;
            background: var(--navy-3);
        }
        .driver-image-wrapper img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s var(--ease);
        }
        .driver-image-wrapper:hover img {
            transform: scale(1.05);
        }
        .driver-image-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.25);
        }
        .driver-badge {
            position: absolute;
            bottom: 32px;
            left: 32px;
            backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1rem;
            padding: 24px 28px;
            width: 320px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        }
        .driver-badge .badge-eyebrow {
            color: var(--teal-2);
            font-size: 11px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            font-weight: 700;
            font-family: 'IBM Plex Mono', monospace;
        }
        .driver-badge h3 {
            color: var(--white);
            font-size: 24px;
            font-weight: 800;
            margin-top: 8px;
        }
        .driver-badge p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            margin-top: 4px;
        }

        .driver-content .eyebrow {
            color: var(--teal);
            margin-bottom: 24px;
        }
        .driver-content .eyebrow::before {
            background: var(--teal);
        }
        .driver-content h2 {
            color: var(--navy);
            font-size: 44px;
            line-height: 1.1;
            margin-bottom: 24px;
        }
        .driver-content .lead-text {
            color: var(--gray-600);
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 48px;
            max-width: 480px;
        }
        .driver-benefits {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .driver-benefit {
            background: var(--white);
            border: 1px solid var(--gray-300);
            border-radius: 1rem;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.35s var(--ease);
            cursor: default;
        }
        .driver-benefit:hover {
            border-color: var(--teal);
            background: var(--gray-100);
            transform: translateX(4px);
        }
        .driver-benefit-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .driver-benefit-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(82, 178, 154, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .driver-benefit-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--teal-2);
            stroke-width: 1.8;
        }
        .driver-benefit h3 {
            color: var(--navy);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 2px;
        }
        .driver-benefit p {
            color: var(--gray-600);
            font-size: 14px;
        }
        .driver-benefit-arrow {
            color: var(--gray-500);
            transition: all 0.35s var(--ease);
            flex-shrink: 0;
        }
        .driver-benefit:hover .driver-benefit-arrow {
            color: var(--teal-2);
            transform: translateX(4px);
        }
        .driver-benefit-arrow svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            stroke-width: 2;
        }

        .driver-cta-box {
            margin-top: 40px;
            background: var(--gray-100);
            border: 1px solid var(--gray-300);
            border-radius: 1rem;
            padding: 24px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        .driver-cta-box h3 {
            color: var(--navy);
            font-size: 20px;
            font-weight: 700;
        }
        .driver-cta-box p {
            color: var(--gray-600);
            font-size: 14px;
            margin-top: 2px;
        }
        .btn-apply {
            background: linear-gradient(135deg, #5FC0A6, #45A08A);
            color: #fff;
            font-weight: 600;
            letter-spacing: -.01em;
            padding: 14px 30px;
            border-radius: 100px;
            border: 1.5px solid transparent;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            box-shadow: 0 12px 26px -10px rgba(82, 178, 154, .55), inset 0 1px 0 rgba(255, 255, 255, .28);
            transition: transform .35s var(--ease), box-shadow .35s var(--ease);
            cursor: pointer;
            flex-shrink: 0;
        }
        .btn-apply:hover {
            background: #429683;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(82, 178, 154, 0.25);
        }

        /* ============ TESTIMONIALS (REVERTED) ============ */
        .testi {
            background:
                radial-gradient(640px 480px at 90% 90%, rgba(82, 178, 154, .13), transparent 60%),
                linear-gradient(180deg, #eef5f3 0%, #f6f9f8 100%);
        }
        .testi-track {
            display: flex;
            gap: 24px;
            overflow: hidden;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }
        .testi-card {
            min-width: calc(33.333% - 16px);
            flex-shrink: 0;
            scroll-snap-align: start;
            background: rgba(255, 255, 255, .6);
            backdrop-filter: blur(6px);
            border: 1px solid var(--gray-300);
            border-radius: 20px;
            padding: 34px;
            transition: transform .5s var(--ease);
        }
        .testi-quote {
            font-family: 'Poppins', sans-serif;
            font-size: 44px;
            color: var(--teal);
            line-height: 0;
            margin-bottom: 12px;
            display: block;
        }
        .testi-card p {
            font-size: 15px;
            color: var(--navy);
            line-height: 1.7;
            margin-bottom: 22px;
        }
        .testi-foot {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testi-foot .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            flex-shrink: 0;
        }
        .testi-foot b {
            display: block;
            font-size: 14px;
        }
        .testi-foot span {
            font-size: 12.5px;
            color: var(--gray-600);
        }
        .stars {
            color: var(--yellow);
            letter-spacing: 2px;
            font-size: 13px;
            margin-top: 2px;
        }
        .testi-dots {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-top: 36px;
        }
        .testi-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gray-300);
            cursor: pointer;
            transition: .3s;
        }
        .testi-dots span.active {
            background: var(--teal);
            width: 22px;
            border-radius: 5px;
        }
        .testi-google-link {
            text-align: center;
            margin-top: 28px;
        }
        .testi-google-link a {
            font-weight: 600;
            color: var(--teal);
            border-bottom: 2px solid var(--teal);
            padding-bottom: 3px;
            transition: color .3s, border-color .3s;
        }
        .testi-google-link a:hover {
            color: var(--navy);
            border-color: var(--navy);
        }

        /* ============ ENHANCED CTA ============ */
        .cta-banner {
            padding: 110px 0;
        }
        .cta-box {
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            background: linear-gradient(120deg, #52B29A 0%, #61B2E0 100%);
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            align-items: center;
            gap: 34px;
            padding: 56px 34px 56px 60px;
        }
        .cta-content {
            text-align: left;
        }
        .cta-box .label {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 12px;
            letter-spacing: 0.2em;
            color: rgba(255, 255, 255, .85);
            text-transform: uppercase;
            display: block;
            margin-bottom: 10px;
        }
        .cta-box h2 {
            color: var(--white);
            font-size: clamp(28px, 4vw, 46px);
            margin-bottom: 16px;
            line-height: 1.05;
        }
        .cta-box p {
            color: rgba(255, 255, 255, .9);
            max-width: 440px;
            margin: 0 0 30px;
            font-size: 16.5px;
        }
        .cta-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-white {
            background: var(--white);
            color: var(--navy);
        }
        .btn-white:hover {
            background: var(--navy);
            color: var(--white);
            transform: translateY(-2px);
        }
        .btn-outline-white {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255, 255, 255, .7);
        }
        .btn-outline-white:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, .15);
        }
        .cta-trust {
            margin-top: 30px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.22);
            display: flex;
            gap: 12px 26px;
            flex-wrap: wrap;
            color: rgba(255, 255, 255, .9);
            font-size: 13px;
            font-weight: 500;
        }
        .cta-trust span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .cta-trust .dot {
            color: rgba(255, 255, 255, .6);
            font-size: 6px;
        }
        .cta-visual {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 34px 70px -26px rgba(15, 18, 22, .55);
            aspect-ratio: 16 / 11;
        }
        .cta-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        @media (max-width: 820px) {
            .cta-box {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .cta-content { text-align: center; }
            .cta-box p { margin-left: auto; margin-right: auto; }
            .cta-btns, .cta-trust { justify-content: center; }
            .cta-visual { order: -1; max-width: 360px; margin: 0 auto; }
        }

        /* ============ FOOTER ============ */
        footer {
            background: var(--navy);
            color: rgba(255, 255, 255, .6);
            padding: 90px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 50px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
        }
        .footer-brand img {
            height: 60px;
            width: auto;
        }
        .footer-col .footer-col-title {
            color: var(--white);
            font-size: 13.5px;
            letter-spacing: .06em;
            text-transform: uppercase;
            font-weight: 600;
            margin: 0 0 20px;
        }
        .footer-col a {
            display: block;
            font-size: 14.5px;
            margin-bottom: 13px;
            color: rgba(255, 255, 255, .6);
            transition: .3s;
        }
        .footer-col a:hover {
            color: var(--white);
            padding-left: 4px;
        }
        .footer-col .fc-line {
            display: block;
            font-size: 14.5px;
            line-height: 1.7;
            margin-bottom: 13px;
            color: rgba(255, 255, 255, .6);
        }
        .footer-authority {
            margin-top: 40px;
            padding-top: 22px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            font-size: 12px;
            color: rgba(255, 255, 255, .38);
            letter-spacing: .01em;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 18px;
            font-size: 13px;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom .dev-credit {
            color: rgba(255, 255, 255, .4);
            font-size: 12px;
        }
        .footer-bottom .dev-credit a {
            color: rgba(255, 255, 255, .5);
            text-decoration: underline;
            transition: color .3s;
        }
        .footer-bottom .dev-credit a:hover {
            color: var(--white);
        }
        .socials {
            display: flex;
            gap: 14px;
        }
        .socials a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .15);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .3s;
        }
        .socials a:hover {
            background: var(--teal);
            border-color: transparent;
        }

        /* ============ RESPONSIVE ============ */
        /* Header gets tight once the nav carries 6 items — shed the phone
           number (icon stays) and tighten spacing before anything wraps. */
        @media (max-width:1180px) {
            .nav-links {
                gap: 22px;
                margin-left: 30px;
            }
            .nav-phone {
                gap: 0;
                margin-right: 12px;
            }
            .nav-phone .np-txt {
                display: none;
            }
        }

        @media (max-width:1024px) {
            .container {
                padding: 0 24px;
            }
            .section-pad {
                padding: 100px 0;
            }
            .why-grid {
                grid-template-columns: 1fr 1fr;
            }
            .about-inner,
            .map-inner {
                grid-template-columns: 1fr;
            }
            .about-visual img {
                height: 380px;
            }
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 160px;
            }
            .s1, .s2, .s3, .s4, .s5, .s6, .s7, .s8, .s9 {
                grid-column: span 2;
                grid-row: span 1;
            }
            .testi-card {
                min-width: calc(50% - 12px);
            }
            .timeline {
                grid-template-columns: 1fr 1fr;
                row-gap: 50px;
            }
            .timeline::before,
            .timeline-fill {
                display: none;
            }
            .mega-menu {
                display: none !important;
            }
            .nav-links>li:hover .mega-menu {
                display: none !important;
            }
            /* icon-only phone from tablet down */
            .nav-phone {
                margin-right: 12px;
                gap: 0;
            }
            .nav-phone .np-txt {
                display: none;
            }
            .terminal-card {
                grid-template-columns: 1fr;
                min-height: auto;
            }
            .terminal-card-image {
                min-height: 240px;
            }
            .terminal-card-content {
                padding: 28px 24px;
            }
            .terminal-card-content h3 {
                font-size: 24px;
            }
            .map-stats {
                grid-template-columns: repeat(2, 1fr);
                row-gap: 32px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .stats-section {
                padding: 80px 0;
            }
            .driver-section {
                padding: 80px 0;
            }
            .driver-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            .driver-image-wrapper {
                height: 480px;
            }
            .driver-content h2 {
                font-size: 38px;
            }
            .driver-content .lead-text {
                max-width: 100%;
            }
            .cta-box {
                padding: 50px 40px;
            }
            .cta-trust {
                gap: 24px;
            }
        }

        @media (max-width:768px) {
            .nav-links {
                display: none;
            }
            .nav-cta {
                display: none !important;
            }
            /* nav-links is hidden here, so its auto margin is gone — the phone
               takes over pushing itself + the burger to the right edge. */
            header .navbar {
                padding-left: 20px;
                padding-right: 20px;
            }
            .nav-phone {
                margin-left: auto;
                margin-right: 26px;
            }
            .nav-phone .np-txt { display: none; }
            .mobile-menu .mm-acc { font-size: 24px; }
            .nav-phone .np-ico {
                flex-basis: 36px;
                height: 36px;
            }
            .burger { padding: 4px 0; }
            .nav-phone .np-ico svg {
                width: 17px;
                height: 17px;
            }
            .burger {
                display: flex;
            }
            .brand img {
                height: 60px;
            }
            header.scrolled .brand img {
                height: 48px;
            }

            .hero {
                padding: 160px 0 100px;
                background-position: 65% center;
                min-height: auto;
            }
            .hero-left h1 {
                font-size: clamp(30px, 7vw, 42px);
            }
            .hero-left p.lead {
                font-size: 16px;
            }
            .hero-cta-row {
                gap: 12px;
                margin-bottom: 0;
            }
            .btn {
                padding: 12px 22px;
                font-size: 13px;
            }
            .why-grid {
                grid-template-columns: 1fr;
            }
            .service-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 250px;
            }
            .s1, .s2, .s3, .s4, .s5, .s6, .s7, .s8, .s9 {
                grid-column: span 1;
            }
            .testi-card {
                min-width: calc(100% - 8px);
                padding: 24px;
            }
            .timeline {
                grid-template-columns: 1fr;
                row-gap: 30px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .about-visual img {
                height: 280px;
            }
            .exp-badge {
                bottom: -16px;
                left: -12px;
                padding: 14px 18px;
            }
            .exp-badge .num {
                font-size: 20px;
            }
            .mobile-menu a {
                font-size: 24px;
            }
            .mobile-menu .mm-mobile-grid a {
                font-size: 15px;
            }
            .mobile-menu .mm-close {
                font-size: 28px;
            }
            .map-section {
                padding: 100px 0 70px;
            }
            .map-copy {
                text-align: center;
            }
            .map-copy .eyebrow {
                justify-content: center;
            }
            .map-copy p {
                margin: 20px auto 0;
            }
            .terminal-stack {
                grid-template-columns: 1fr;
            }
            .map-stats {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .terminal-card-image {
                min-height: 200px;
            }
            .terminal-card-content h3 {
                font-size: 22px;
            }
            .terminal-card-content p {
                font-size: 15px;
            }
            .map-stat {
                padding: 8px 12px;
                gap: 14px;
            }
            .map-stat-icon {
                width: 44px;
                height: 44px;
            }
            .map-stat .map-stat-title {
                font-size: 15px;
            }
            .map-stat span {
                font-size: 13px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .stats-section {
                padding: 60px 0;
            }
            .stat-card {
                padding: 28px 20px;
            }
            .stat-value {
                font-size: clamp(26px, 6vw, 32px);
            }
            .stat-title {
                font-size: 15px;
                margin-bottom: 18px;
            }
            .driver-section {
                padding: 60px 0;
            }
            .driver-image-wrapper {
                height: 400px;
            }
            .driver-badge {
                width: 280px;
                padding: 20px 24px;
                bottom: 24px;
                left: 24px;
            }
            .driver-badge h3 {
                font-size: 20px;
            }
            .driver-content h2 {
                font-size: 32px;
            }
            .driver-content .lead-text {
                font-size: 16px;
                margin-bottom: 32px;
            }
            .driver-benefit {
                padding: 16px 18px;
            }
            .driver-benefit-icon {
                width: 48px;
                height: 48px;
            }
            .driver-benefit-icon svg {
                width: 20px;
                height: 20px;
            }
            .driver-benefit h3 {
                font-size: 15px;
            }
            .driver-benefit p {
                font-size: 13px;
            }
            .driver-cta-box {
                flex-direction: column;
                align-items: flex-start;
                padding: 20px 24px;
            }
            .btn-apply {
                width: 100%;
                text-align: center;
                padding: 16px;
            }
            .cta-box {
                padding: 40px 24px;
            }
            .cta-trust {
                flex-direction: column;
                align-items: center;
                gap: 8px;
            }
        }

        @media (max-width:480px) {
            .container {
                padding: 0 16px;
            }
            .hero {
                padding: 140px 0 90px;
                background-position: 65% center;
            }
            .hero-left h1 {
                font-size: clamp(26px, 8vw, 34px);
            }
            .section-pad {
                padding: 70px 0;
            }
            .section-head {
                margin-bottom: 40px;
            }
            .section-head h2 {
                font-size: clamp(24px, 6vw, 32px);
            }
            .service-grid {
                grid-auto-rows: 230px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .testi-card {
                padding: 20px;
            }
            .testi-quote {
                font-size: 32px;
            }
            .brand img {
                height: 48px;
            }
            header.scrolled .brand img {
                height: 40px;
            }
            .footer-brand img {
                height: 48px;
            }
            .terminal-card-image {
                min-height: 160px;
            }
            .terminal-card-content {
                padding: 20px 18px;
            }
            .terminal-card-content h3 {
                font-size: 20px;
            }
            .terminal-card-content p {
                font-size: 14px;
                margin-bottom: 18px;
            }
            .terminal-card-content .terminal-location-badge {
                font-size: 11px;
            }
            .terminal-card-footer span {
                font-size: 12px;
            }
            .map-stats {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .map-stat {
                padding: 8px 12px;
            }
            .map-stat-icon {
                width: 40px;
                height: 40px;
            }
            .map-stat .map-stat-title {
                font-size: 14px;
            }
            .map-stat span {
                font-size: 12px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .stats-section {
                padding: 50px 0;
            }
            .stat-card {
                padding: 24px 18px;
            }
            .stat-value {
                font-size: clamp(24px, 7vw, 30px);
            }
            .stat-title {
                font-size: 14px;
                margin-bottom: 16px;
            }
            .stat-icon {
                width: 48px;
                height: 48px;
                margin-bottom: 20px;
            }
            .stat-icon svg {
                width: 24px;
                height: 24px;
            }
            .driver-image-wrapper {
                height: 320px;
            }
            .driver-badge {
                width: 220px;
                padding: 16px 18px;
                bottom: 16px;
                left: 16px;
            }
            .driver-badge h3 {
                font-size: 18px;
            }
            .driver-badge p {
                font-size: 12px;
            }
            .driver-content h2 {
                font-size: 28px;
            }
            .driver-content .lead-text {
                font-size: 15px;
            }
            .driver-benefit {
                flex-wrap: wrap;
                padding: 16px;
            }
            .driver-benefit-left {
                gap: 14px;
            }
            .driver-benefit-icon {
                width: 44px;
                height: 44px;
            }
            .driver-benefit-icon svg {
                width: 18px;
                height: 18px;
            }
            .driver-benefit h3 {
                font-size: 14px;
            }
            .driver-cta-box {
                padding: 18px 20px;
            }
            .driver-cta-box h3 {
                font-size: 18px;
            }
            .btn-apply {
                font-size: 14px;
                padding: 14px;
            }
            .cta-box {
                padding: 30px 20px;
            }
            .cta-trust {
                gap: 6px;
                font-size: 12px;
            }
        }

        /* ============================================================
           INNER PAGE COMPONENTS (services, ports, about, resources,
           forms) — additive, reuses existing tokens & aesthetic.
           ============================================================ */

        /* Compact hero band for inner pages */
        .page-hero {
            position: relative;
            padding: 160px 0 76px;
            background: linear-gradient(170deg, #f7f5ef 0%, #eef4f2 55%, #e6f0ee 100%);
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(55% 80% at 88% 6%, rgba(97, 178, 224, .16), transparent 60%),
                radial-gradient(48% 70% at 6% 96%, rgba(82, 178, 154, .14), transparent 60%);
            pointer-events: none;
        }
        .page-hero .container { position: relative; z-index: 1; }
        .page-hero h1 {
            font-size: clamp(32px, 4.1vw, 52px);
            line-height: 1.1;
            margin: 16px 0 18px;
            max-width: 20ch;
        }
        .page-hero-sub {
            font-size: clamp(16px, 1.35vw, 19px);
            color: var(--gray-600);
            max-width: 62ch;
            line-height: 1.68;
        }
        .page-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
        .page-hero.dark { background: var(--grad-dark); }
        .page-hero.dark h1 { color: #fff; }
        .page-hero.dark .page-hero-sub { color: rgba(255, 255, 255, .8); }

        /* Photo-backed hero for the main nav pages (bg set inline via --hero-bg) */
        .page-hero.has-hero {
            background: #14181d var(--hero-bg) center 40% / cover no-repeat;
        }
        .page-hero.has-hero::before {
            background: linear-gradient(168deg, rgba(15, 20, 26, .88) 0%, rgba(16, 24, 31, .66) 52%, rgba(18, 30, 38, .74) 100%);
        }
        .page-hero.has-hero h1 { color: #fff; }
        .page-hero.has-hero .page-hero-sub { color: rgba(255, 255, 255, .85); }
        .page-hero.has-hero .eyebrow { color: var(--teal-2); }
        .page-hero.has-hero .eyebrow::before { background: var(--teal-2); }
        .page-hero.has-hero .breadcrumb { color: rgba(255, 255, 255, .55); }
        .page-hero.has-hero .breadcrumb a { color: rgba(255, 255, 255, .78); }
        .page-hero.has-hero .breadcrumb a:hover { color: #fff; }
        .page-hero.has-hero .breadcrumb [aria-current] { color: #fff; }
        .page-hero.has-hero .btn-ghost {
            color: #fff;
            background: rgba(255, 255, 255, .10);
            border-color: rgba(255, 255, 255, .55);
        }
        .page-hero.has-hero .btn-ghost:hover {
            background: rgba(255, 255, 255, .18);
            border-color: #fff;
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 12.5px;
            letter-spacing: .02em;
            color: var(--gray-500);
        }
        .breadcrumb a { color: var(--gray-600); transition: color .2s; }
        .breadcrumb a:hover { color: var(--teal); }
        .breadcrumb .sep { opacity: .45; }
        .breadcrumb [aria-current] { color: var(--navy); }

        /* Long-form prose (guides + content sections) */
        .prose { max-width: 768px; color: var(--gray-600); font-size: 17px; line-height: 1.78; }
        .prose > * + * { margin-top: 1.15em; }
        .prose h2 { font-size: clamp(23px, 2.3vw, 31px); color: var(--navy); margin-top: 1.6em; }
        .prose h3 { font-size: 20px; color: var(--navy); margin-top: 1.4em; }
        .prose ul, .prose ol { padding-left: 1.35em; }
        .prose li { margin-top: .5em; }
        .prose li::marker { color: var(--teal); }
        .prose a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
        .prose strong { color: var(--navy); font-weight: 600; }
        .prose blockquote {
            border-left: 3px solid var(--teal);
            padding: 4px 0 4px 22px;
            color: var(--navy);
            font-size: 18px;
        }

        /* Two-column split (text + media) */
        .split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
        .split.rev .split-media { order: -1; }
        .split-media img { border-radius: 20px; box-shadow: var(--shadow-soft); width: 100%; }

        /* Feature / info cards */
        .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
        .info-card {
            background: #fff;
            border: 1px solid var(--gray-200);
            border-radius: 18px;
            padding: 28px;
            box-shadow: var(--shadow-card);
            transition: transform .3s var(--ease), box-shadow .3s var(--ease);
        }
        .info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
        .info-card .ic-num { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--teal); font-weight: 600; }
        .info-card h3 { font-size: 18px; margin: 10px 0 9px; color: var(--navy); }
        .info-card p { color: var(--gray-600); font-size: 15px; line-height: 1.65; }

        /* Equipment / capability chips */
        .chips { display: flex; flex-wrap: wrap; gap: 10px; }
        .chip {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 12.5px;
            letter-spacing: .02em;
            padding: 8px 14px;
            border-radius: 100px;
            background: var(--gray-100);
            border: 1px solid var(--gray-200);
            color: var(--gray-600);
        }

        /* FAQ (open list — verbatim visible for FAQPage schema) */
        .faq { max-width: 840px; margin: 0 auto; }
        .faq-item { border-bottom: 1px solid var(--gray-300); padding: 24px 0; }
        .faq-item:first-child { border-top: 1px solid var(--gray-300); }
        .faq-item h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
        .faq-item p { color: var(--gray-600); line-height: 1.72; font-size: 15.5px; }
        .faq-item p + p { margin-top: 10px; }

        /* Resource / article cards */
        .res-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
        .res-card {
            display: flex;
            flex-direction: column;
            background: #fff;
            border: 1px solid var(--gray-200);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: transform .3s var(--ease), box-shadow .3s var(--ease);
        }
        .res-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
        .res-card .res-thumb { aspect-ratio: 16 / 9; background: var(--gray-200) center/cover no-repeat; }
        .res-card-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
        .res-cat { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: var(--teal); text-transform: uppercase; letter-spacing: .07em; }
        .res-card h3 { font-size: 18.5px; color: var(--navy); line-height: 1.28; }
        .res-card p { font-size: 14.5px; color: var(--gray-600); line-height: 1.62; }
        .res-card .res-more { margin-top: auto; padding-top: 12px; font-size: 14px; font-weight: 600; color: var(--teal); font-family: 'Poppins', sans-serif; }

        /* Forms (quote / contact) — Resend-ready */
        .form-wrap {
            background: #fff;
            border: 1px solid var(--gray-200);
            border-radius: 22px;
            padding: 34px;
            box-shadow: var(--shadow-soft);
        }
        .form { display: grid; gap: 18px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
        .form-row.three { grid-template-columns: 1fr 1fr 1fr; }
        .field { display: flex; flex-direction: column; gap: 7px; }
        .field label { font-size: 13px; font-weight: 600; color: var(--navy); font-family: 'Poppins', sans-serif; }
        .field input, .field select, .field textarea {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            color: var(--navy);
            padding: 13px 15px;
            border: 1.5px solid var(--gray-300);
            border-radius: 12px;
            background: #fff;
            width: 100%;
            transition: border-color .2s, box-shadow .2s;
        }
        .field input::placeholder, .field textarea::placeholder { color: var(--gray-500); }
        .field input:focus, .field select:focus, .field textarea:focus {
            outline: none;
            border-color: var(--teal);
            box-shadow: 0 0 0 3px rgba(82, 178, 154, .15);
        }
        .field textarea { resize: vertical; min-height: 120px; }
        .field.req label::after { content: ' *'; color: var(--teal); }
        .form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
        .form-note { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
        .form-status { font-size: 14.5px; padding: 14px 16px; border-radius: 12px; display: none; }
        .form-status.show { display: block; }
        .form-status.ok { display: block; background: rgba(82, 178, 154, .12); border: 1px solid rgba(82, 178, 154, .35); color: #1f6b58; }
        .form-status.err { display: block; background: rgba(224, 97, 97, .1); border: 1px solid rgba(224, 97, 97, .35); color: #a23a3a; }

        /* Contact detail rows */
        .contact-rows { display: grid; gap: 22px; }
        .contact-row { display: flex; gap: 16px; align-items: flex-start; }
        .contact-row .cr-ico {
            flex: 0 0 44px;
            height: 44px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            background: var(--grad-brand);
            color: #fff;
        }
        .contact-row h3 { font-size: 15px; color: var(--navy); margin-bottom: 3px; }
        .contact-row a, .contact-row p { color: var(--gray-600); font-size: 15px; line-height: 1.6; }
        .contact-row a:hover { color: var(--teal); }

        /* Generic light section backgrounds */
        .bg-soft { background: linear-gradient(180deg, #ffffff 0%, var(--gray-100) 100%); }
        .bg-mint { background: radial-gradient(60% 90% at 85% 0%, rgba(82, 178, 154, .07), transparent 60%), linear-gradient(180deg, #eef5f3 0%, #f6f9f8 100%); }
        .bg-sky { background: radial-gradient(60% 90% at 12% 0%, rgba(97, 178, 224, .09), transparent 60%), linear-gradient(180deg, #eef4f6 0%, #ffffff 100%); }

        /* Simple two-up port / location cards row */
        .duo { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

        @media (max-width: 900px) {
            .split { grid-template-columns: 1fr; gap: 34px; }
            .split.rev .split-media { order: 0; }
            .form-row, .form-row.three { grid-template-columns: 1fr; }
            .duo { grid-template-columns: 1fr; }
            .page-hero { padding: 132px 0 60px; }
            .form-wrap { padding: 24px; }
        }

        /* Teal inline "→" link used on cards / cross-links */
        .tlink { display: inline-flex; align-items: center; gap: 6px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14.5px; color: var(--teal); transition: gap .25s var(--ease); margin-top: 4px; }
        .tlink:hover { gap: 10px; }
        .card-link { display: flex; flex-direction: column; }
        .card-link:hover h3 { color: var(--teal); }

        /* ============================================================
           ABOUT US (logo left / copy right)
           The logo video's background is baked to --gray-100 (#F6F8F9) so
           the square blends invisibly into the section; the badge's white
           interior reads as a clean circle against it.
           ============================================================ */
        .aboutus {
            background: var(--gray-100);
        }
        .aboutus-grid {
            display: grid;
            grid-template-columns: .82fr 1.18fr;
            gap: 64px;
            align-items: center;
        }
        .aboutus-logo {
            display: flex;
            justify-content: center;
            width: 100%;
        }
        .aboutus-logo-frame {
            position: relative;
            width: 100%;
            max-width: 420px;
            aspect-ratio: 1 / 1;
            border-radius: 24px;
            overflow: hidden;
            background: url('/MiamiPort.webp') center center / cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 22px 55px -26px rgba(21, 24, 27, .5);
        }
        /* dark overlay so the white/teal logo stands out over the port photo
           (the OnTrak mark is light-based, so a white overlay would wash it out) */
        .aboutus-logo-frame::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(19, 26, 34, .56);
        }
        .aboutus-logo-frame picture {
            position: relative;
            z-index: 1;
            display: block;
            width: 68%;
        }
        .aboutus-logo-frame img {
            width: 100%;
            height: auto;
            display: block;
            background: transparent;
        }
        .aboutus-copy h2 {
            font-size: clamp(28px, 3.1vw, 42px);
            margin: 16px 0 18px;
        }
        .aboutus-copy p {
            color: var(--gray-600);
            font-size: 17px;
            line-height: 1.78;
        }
        .aboutus-copy p + p {
            margin-top: 14px;
        }
        .aboutus-marks {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 24px 0 28px;
        }
        @media (max-width: 900px) {
            .aboutus-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            .aboutus-marks { justify-content: center; }
            .aboutus-copy .eyebrow { justify-content: center; }
        }
