:root {
    --navy: #1C2B40;
    --navy-2: #24344C;
    --navy-3: #2C3D56;
    --ink: #1b2533;
    --body: #616161;
    --muted: #8a93a1;
    --cream: #f5f4f0;
    --paper: #ffffff;
    --card: #eef1f4;
    --line: #e3e6ea;
    --line-dark: rgba(255, 255, 255, .12);
    --gold: #c9a24b;
    --serif: 'Gilda Display', Georgia, 'Times New Roman', serif;
    --sans: 'Libre Franklin', 'Segoe UI', Arial, Helvetica, sans-serif;
    --mono: 'Geist Mono', 'SFMono-Regular', Consolas, monospace;
    --tag: #747880;
    --title: #0E182E;
    --para: #616161;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    font-size: 15px;
    line-height: 1.6
}

.mb-2 {
    margin-bottom: 15px !important;
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px
}

h1,
h2,
h3.serif {
    font-family: var(--serif);
    font-weight: 400
}

/* ---------- eyebrow ---------- */
.eyebrow {
    font-family: var(--mono);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--tag);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px
}

.eyebrow::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 1px;
    background: var(--tag)
}

.eyebrow.center {
    justify-content: center
}

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 22px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: .25s;
    brder-radius: 4px;
}

.btn-light {
    background: #f5f4f0;
    color: var(--navy)
}

.btn-light:hover {
    background: #fff
}

.hero .btn-light {
    background: #215D98;
    color: #fff;
    border-color: #215D98
}

.hero .btn-light:hover {
    background: #fff;
    color: #1C2B40;
    border-color: #fff
}

.btn-outline {
    background: transparent;
    color: #F5F4F0;
    font-size: 14px;
    border-color: rgba(255, 255, 255, .35)
}

.btn-outline:hover {
    border-color: #fff
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    border-radius: 4px;
}

.btn-navy:hover {
    background: #fff;
}

.btn .arr {
    font-size: 12px;
    display: inline-flex;
    transform: translateY(-1px) rotate(45deg)
}

/* ---------- image placeholders (replace with real <img>) ---------- */
.ph {
    background: linear-gradient(135deg, #26354c 0%, #3a4d6a 50%, #566c8c 100%);
    position: relative;
    overflow: hidden
}

.ph::after {
    content: attr(data-label);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-align: center;
    padding: 10px
}

.ph.lt {
    background: linear-gradient(135deg, #cfd6de 0%, #aeb9c6 60%, #8e9cae 100%)
}

.ph.lt::after {
    color: rgba(20, 35, 55, .55)
}

/* ====================================================== HEADER */
header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line-dark)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px
}

.logo {
    display: flex;
    align-items: center
}

/* width MUST stay auto. It was 100%, which stretched the logo to the width
   of the anchor and threw away its aspect ratio — that non-uniform scale is
   what made the header logo look soft next to the footer one. object-fit is
   a belt-and-braces guard: even if something forces a width again, the
   artwork keeps its proportions instead of smearing. */
.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block
}

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin-left: auto;
    margin-right: 24px
}

.nav-links a {
    color: #C5C7C9;
    font-size: 13px;
    transition: .2s
}

.nav-links a:hover {
    color: #fff
}

/* ===== Nav dropdowns (desktop) ===== */
.nav-links .has-dropdown {
    position: relative
}

.nav-links .dd-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer
}

.nav-links .dd-caret {
    display: inline-block;
    width: 6px;
    height: 6px;
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    margin-bottom: 2px;
    transform: rotate(45deg);
    transition: transform .3s ease
}

.nav-links .has-dropdown:hover .dd-caret {
    transform: rotate(-135deg)
}

.nav-links .dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 230px;
    background: var(--navy-2);
    border: 1px solid var(--line-dark);
    border-radius: 10px;
    padding: 8px;
    list-style: none;
    box-shadow: 0 24px 48px rgba(0, 0, 0, .4);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
    z-index: 80
}

.nav-links .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.nav-links .dropdown::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 0;
    right: 0;
    height: 18px
}

.nav-links .dropdown a {
    display: block;
    padding: 10px 14px;
    border-radius: 7px;
    color: #d7dde6;
    font-size: 13px;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease
}

.nav-links .dropdown a:hover {
    background: rgba(255, 255, 255, .07);
    color: #fff
}

.nav-links .mega {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    width: 450px;
    max-width: calc(100vw - 48px);
    background: var(--navy-2);
    border: 1px solid var(--line-dark);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
    z-index: 80;
}

.nav-links .has-dropdown:hover .mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.nav-links .mega::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 0;
    right: 0;
    height: 18px
}

.mega-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0
}

.mega-links a {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 11px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s ease
}

.mega-links a:hover {
    background: rgba(255, 255, 255, .06)
}

.mega-links .mt {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap
}

.mega-links .mt.mt-wrap {
    white-space: normal
}

.mega-links .md {
    color: #9aa6b6;
    font-size: 12px;
    line-height: 1.3
}

.mega-img {
    border-radius: 10px;
    min-height: 210px;
    background: #1C2B40 center/cover no-repeat;
    transition: background-image .2s ease
}

/* ===== Nav dropdowns (mobile accordion) ===== */
.m-has-dropdown .m-dd-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: #d7dde6;
    font-size: 16px;
    font-family: inherit;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    cursor: pointer;
    text-align: left
}

.m-has-dropdown .m-dd-caret {
    display: inline-block;
    width: 7px;
    height: 7px;
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    margin-bottom: 3px;
    transform: rotate(45deg);
    transition: transform .3s ease
}

.m-has-dropdown.open .m-dd-toggle {
    color: var(--gold)
}

.m-has-dropdown.open .m-dd-caret {
    transform: rotate(-135deg)
}

.m-dropdown {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    padding-left: 12px
}

.m-has-dropdown.open .m-dropdown {
    max-height: 320px
}

.m-dropdown a {
    display: block;
    color: #9aa6b6;
    font-size: 14px;
    padding: 11px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    transition: color .2s ease, padding-left .2s ease
}

.m-dropdown a:hover {
    color: #fff;
    padding-left: 10px
}

.nav .btn {
    padding: 9px 18px;
    border-radius: 4px;
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    padding: 0;
    z-index: 110;
    transition: opacity .25s ease
}

.burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: top .3s ease, transform .3s ease, opacity .2s ease
}

.burger span:nth-child(1) {
    top: 2px
}

.burger span:nth-child(2) {
    top: 10px
}

.burger span:nth-child(3) {
    top: 18px
}

.burger.open span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg)
}

.burger.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-12px)
}

.burger.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg)
}

/* ===== Mobile slide-in nav drawer ===== */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 15, 28, .5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 90
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    height: 100dvh;
    width: min(82%, 360px);
    background: var(--navy);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .45);
    padding: 24px 26px 36px;
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform .45s cubic-bezier(.5, .05, .2, 1);
    z-index: 100;
    visibility: hidden;
    overflow-y: auto
}

.mobile-nav.open {
    transform: translateX(0);
    visibility: visible
}

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-dark)
}

.mobile-nav-title {
    color: #fff;
    font-family: var(--serif);
    font-size: 20px;
    letter-spacing: .5px
}

.mobile-nav-logo {
    height: 75px;
    width: auto;
    display: block
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, .1);
    transform: rotate(90deg)
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 24px
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .4s ease, transform .4s ease
}

.mobile-nav.open .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0)
}

.mobile-nav.open .mobile-nav-links li:nth-child(1) {
    transition-delay: .12s
}

.mobile-nav.open .mobile-nav-links li:nth-child(2) {
    transition-delay: .18s
}

.mobile-nav.open .mobile-nav-links li:nth-child(3) {
    transition-delay: .24s
}

.mobile-nav.open .mobile-nav-links li:nth-child(4) {
    transition-delay: .30s
}

.mobile-nav.open .mobile-nav-links li:nth-child(5) {
    transition-delay: .36s
}

.mobile-nav.open .mobile-nav-links li:nth-child(6) {
    transition-delay: .42s
}

.mobile-nav-links a {
    display: block;
    color: #d7dde6;
    font-size: 16px;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: color .2s ease, padding-left .2s ease
}

.mobile-nav-links a:hover {
    color: var(--gold);
    padding-left: 12px
}

.mobile-nav-cta {
    display: flex;
    justify-content: center;
    margin-top: auto;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .4s ease .42s, transform .4s ease .42s
}

.mobile-nav.open .mobile-nav-cta {
    opacity: 1;
    transform: translateY(0)
}

body.nav-open {
    overflow: hidden
}

body.nav-open .burger {
    opacity: 0;
    pointer-events: none
}

/* ====================================================== HERO */
.hero {
    background: var(--navy);
    color: #fff;
    padding: 70px 0 60px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center
}

.hero h1 {
    font-size: 50px;
    color: #F5F4F0;
    line-height: 1.18;
    margin-bottom: 22px
}

.hero p {
    color: #C5C7C9;
    font-size: 16px;
    max-width: 430px;
    margin-bottom: 30px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero-img {
    aspect-ratio: 4/4.6;
    /* border-radius: 4px; */
    width: 100%;
    object-fit: cover
}

/* trusted strip */
.trusted {
    background: var(--navy);
    padding: 10px 0 46px
}

.trusted .tag {
    font-family: var(--mono);
    font-weight: 400;
    text-align: center;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 1px;
    color: #C5C7C9;
    text-transform: uppercase;
    margin-bottom: 37px
}

.marquee {
    overflow: hidden;
    position: relative;
    max-width: 1050px;
    margin: auto;
}

.marquee-track img {
    /* height: 28px; */
    width: auto;
    display: block;
    object-fit: contain;
    filter: grayscale(1) brightness(0) invert(0.70);
    /* ~#bfbfbf */
}


.marquee-track {
    display: flex;
    gap: 37px;
    width: max-content;
    animation: slide 28s linear infinite
}

.marquee-track span {
    color: #9aa6b6;
    font-family: var(--serif);
    font-size: 20px;
    letter-spacing: .1em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px
}

.marquee-track span svg {
    height: 28px;
    width: auto;
    display: block;
    opacity: .75;
    transition: opacity .3s ease
}

.marquee-track span:hover svg {
    opacity: 1
}

@keyframes slide {
    to {
        transform: translateX(-50%)
    }
}

/* ====================================================== WHO WE ARE */
.who {
    background: var(--paper);
    padding: 90px 0
}

.who-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 10px;
    align-items: center;
}

.who h2 {
    font-size: 50px;
    color: #0E182E;
    line-height: 1.25;
    margin-bottom: 22px
}

.who p {
    color: var(--body);
    font-size: 16px;
    margin-bottom: 16px;
    max-width: 570px
}

.who .btn {
    margin-top: 10px
}

.who-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 210px 253px;
    gap: 14px
}

.who-imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7.24px
}

.who-imgs .wide {
    grid-column: 1/3;
    border-radius: 20px
}

/* stats */
.stats {
    /* padding: 0 0 90px */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px
}

.stat {
    background: #F5FBFF;
    border-radius: 4px;
    padding: 26px 22px
}

.stat .num {
    font-family: var(--serif);
    font-size: 56px;
    color: #215D98
}

.stat .lbl {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #1C2B40;
    max-width: 110px;
}

/* ====================================================== SERVICES */
.services {
    background: #fff;
    padding: 90px 0
}

.sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 46px;
    flex-wrap: wrap
}

.sec-head h2 {
    font-size: 56px;
    color: #0E182E;
    line-height: 1.25;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.svc-card {
    background: #F5FBFF;
    /* border: 1px solid #e4ebf2; */
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* width: 325px; */
    max-width: 100%
}

.svc-card img {
    width: 100%;
    height: 325px;
    object-fit: cover;
    display: block;
    flex: none
}

.svc-body {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.svc-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #0E182E
}

.svc-card p {
    color: #5F6269;
    font-size: 14px;
    margin-bottom: 14px;
    flex: 1
}

.link-more {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #0E182E;
    border-bottom: 1px solid #0E182E;
    padding-bottom: 0
}

.svc-card .link-more {
    color: #0E182E;
    font-size: 14px;
    border-bottom-color: #0E182E
}

/* ====================================================== WHY CHOOSE US */
.why {
    background: var(--navy) url('../img/pattern.webp') repeat;
    color: #fff;
    padding: 90px 0
}

.why h2 {
    font-size: 56px;
    line-height: 1;
    max-width: 514px;
}

/* Headings that decide their own line breaks. The 514px measure above is
   what forced the extra wrap (stranding "Co.?" or "apart" on a line of
   their own); lifting it hands control to the markup, where <br> sets the
   break and .nb keeps the firm name from ever splitting mid-name. */
.why h2.is-fitted {
    max-width: none;
}

.why h2 .nb {
    white-space: nowrap;
}

/* Below ~430px even 36px type cannot hold the name on one line, and an
   overflowing heading is worse than an awkward break. */
@media(max-width:430px) {
    .why h2 .nb {
        white-space: normal;
    }
}

.cr-culture h2 {
    font-size: 56px;
    line-height: 1.25;
    max-width: 640px;
    margin-bottom: 25px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.why-card {
    background: var(--navy-2);
    border: 1px solid var(--line-dark);
    /* border-radius: 6px; */
    padding: 28px 26px
}

.why-card .icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 50px;
    display: block
}

.why-card h3 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px
}

.why-card p {
    color: #a9b4c3;
    font-size: 13px
}

/* ====================================================== GLOBAL REACH */
.global {
    background: #F5F4F0;
    padding: 90px 0
}

.global .sec-head h2 {
    max-width: 725px
}

.global-card {
    background: transparent;
    border: 1px solid #DEDEE3;
    color: #1C2B40;
    display: grid;
    grid-template-columns: 485px 1fr;
    overflow: hidden;
}

.global-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block
}

.global-right {
    display: flex;
    flex-direction: column;
    background: rgba(14, 24, 46, 0.02);
}

.global-right .lead {
    font-size: 28px;
    font-family: var(--sans);
    font-weight: 400;
    line-height: 35px;
    letter-spacing: -0.56px;
    color: #0E182E;
    max-width: 632px;
    margin: 0;
    padding: 87px 46px 87px 20px;
    flex: 1;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #DEDEE3;
}

.global-stats>div {
    padding: 22px 28px 26px
}

.global-stats>div+div {
    border-left: 1px solid #DEDEE3;
}

.global-stats .num {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 22px;
    line-height: 27.5px;
    letter-spacing: -0.44px;
    color: #0E182E;
    margin-bottom: 4px
}

.global-stats .lbl {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 13px;
    line-height: 19.5px;
    letter-spacing: 0;
    color: #5F6269
}

/* ====================================================== INDUSTRIES */
.industries {
    background: var(--paper);
    padding: 90px 0 80px;
    text-align: center
}

.industries h2 {
    font-size: 56px;
    color: #0E182E;
    margin-bottom: 46px
}

.ind-marquee {
    overflow: hidden;
    margin-bottom: 18px
}

.ind-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: slide 36s linear infinite
}

.ind-track.rev {
    animation-direction: reverse
}

.ind-tile {
    width: 375.71429443359375px;
    height: 250.4761962890625px;
    position: relative;
    flex: none;
    overflow: hidden
}

.ind-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ind-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 15, 28, .55)
}

.ind-tile .name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    text-align: center;
    max-width: 200px;
    width: max-content
}

/* ====================================================== TESTIMONIALS */
/* .testi {
    padding: 90px 0
} */

.testi .sec-head h2 {
    font-size: 56px
}

.testi-nav {
    display: flex;
    gap: 10px
}

.testi-nav button {
    width: 57px;
    height: 44px;
    border: 1px solid #1C2B40;
    background: #1C2B40;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px
}

.testi-viewport {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 28px;
}

.testi-track {
    display: flex;
    gap: 18px;
    transition: transform .45s ease
}

.t-card {
    background: #f5f4f0;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    border: 1px solid #DEDEE3;
    gap: 45px;
    flex: 0 0 calc((100% - 54px) / 4);
}

.t-card .quote {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    color: #5F6269;
    flex: 1
}

.t-person {
    display: flex;
    align-items: center;
    gap: 12px
}

.t-person .av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex: none;
    object-fit: cover
}

.t-person .nm {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    color: #0E182E
}

.t-person .rl {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    color: #5F6269
}

.dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 34px
}

.dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cfd6df;
    cursor: pointer;
    border: none;
    transition: .2s
}

.dots span.on {
    width: 9px;
    height: 9px;
    background: #1C2B40;
    border: none;
    box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px #1C2B40
}

/* ====================================================== ARTICLES */
.articles {
    background: var(--paper);
    padding: 90px 0
}

.articles .sec-head h2 {
    font-size: 56px;
    max-width: 600px;
    line-height: 1.25;
}

.art-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.art-card {
    background: #f2f7fb;
    /* border: 1px solid #e4ebf2; */
    border-radius: 2px;
    overflow: hidden
}

.art-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block
}

.art-body {
    padding: 20px 22px 24px
}

.art-meta {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--tag);
    margin-bottom: 10px
}

.art-card h3 {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 18px;
    line-height: 25.2px;
    letter-spacing: -0.36px;
    color: #0E182E;
    margin-bottom: 14px
}

/* ====================================================== CTA */
.cta {
    background-color: #162841;
    background-image: url('../img/pattern-vv.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-top: 1px solid var(--line-dark);
    padding: 110px 0;
    text-align: center;
    color: #fff;
}

.cta .eyebrow {
    justify-content: center
}

.cta .eyebrow,
.why .eyebrow {
    color: #C5C7C9
}

.cta .eyebrow::before,
.why .eyebrow::before {
    background: #C5C7C9
}

.cta h2 {
    font-size: 46px;
    line-height: 1.3;
    max-width: 620px;
    margin: 0 auto 22px
}

.cta p {
    color: #aeb8c6;
    font-size: 14px;
    max-width: 420px;
    margin: 0 auto 34px
}

.btn-blue {
    background: #215D98;
    color: #fff;
    border: 1px solid #215D98;
    border-radius: 4px;
}

.btn-blue:hover {
    background: #fff;
    color: #1C2B40;
    border-color: #fff
}



/* ====================================================== RESPONSIVE */
@media(max-width:1024px) {
    .hero h1 {
        font-size: 38px
    }

    .why-grid,
    .art-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .svc-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr))
    }

    .svc-card {
        width: auto;
        max-width: none
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .t-card {
        flex-basis: calc((100% - 18px)/2)
    }

    .global-card {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1.6fr 1fr 1.5fr .9fr
    }

    .foot-col-left {
        padding: 40px 22px 40px 0
    }

    .foot {
        padding: 40px 0 40px 22px
    }

    .foot h4 {
        font-size: 10px;
        letter-spacing: .18em;
        margin-bottom: 14px
    }

    .foot ul {
        font-size: 13px;
        gap: 12px
    }

    .foot-contact {
        font-size: 11.5px
    }

    .svc-cols {
        gap: 0 16px
    }
}

@media(max-width:760px) {
    .nav-links {
        display: none
    }

    .nav>.btn-light {
        display: none
    }

    .burger {
        display: block
    }

    .testi-nav button {
        width: 45px;
        height: 41px;
        border: 1px solid #1C2B40;
        background: #1C2B40;
        color: #fff;
        border-radius: 3px;
        cursor: pointer;
        font-size: 26px;
    }

    .locations span {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px !important;
    }

    .hero-grid,
    .who-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .hero h1 {
        font-size: 32px
    }

    .sec-head h2,
    .who h2,
    .why h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .art-grid {
        grid-template-columns: 1fr
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .t-card {
        flex-basis: 100%
    }

    .global-img {
        width: 100%;
        height: 341px;
        object-fit: cover;
        display: block;
    }

    .industries h2 {
        font-size: 36px;
        color: #0E182E;
        max-width: 293px;
        margin: auto;
        margin-bottom: 30px;
    }

    .articles .sec-head h2 {
        font-size: 28px;
        max-width: 600px;
        line-height: 1.25;
    }

    .testi .sec-head h2 {
        font-size: 36px;
        max-width: 198px;
    }


    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .global-right .lead {
        font-size: 20px;
        padding: 30px 24px 28px
    }

    .global-stats>div {
        padding: 16px 18px 20px
    }

    .cta h2 {
        font-size: 30px
    }

    .ind-tile {
        width: 280px;
        height: 250px
    }

    .ind-tile .name {
        font-size: 10px;
        letter-spacing: .2em
    }
}

@media(prefers-reduced-motion:reduce) {

    .marquee-track,
    .ind-track {
        animation: none
    }
}

/* ================= IMPORTED FOOTER ================= */
/*======================
    FOOTER
======================*/
.footer {
    background: #162841;
    color: #cfd5df;
}

.footer-container {
    max-width: 1350px;
    margin: auto;
    width: 100%;
}

.footer .footer-container {
    max-width: none;
}

.cta-foot-wrap {
    background: #162841;
    padding: 60px 0 20px;
}

.cta-foot-wrap>.cta,
.cta-foot-wrap>.footer {
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, .1);
}

.footer-top {
    display: grid;
    grid-template-columns: 460fr 200fr 450fr 200fr;
    border: 1px solid rgba(255, 255, 255, .08);
}

.footer-col {
    padding: 40px 28px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.footer-col:last-child {
    border-right: none;
}

/*======================
    COMPANY
======================*/
.footer-logo {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 8px;
}

.footer-logo span {
    display: block;
}

.footer-subtitle {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    gap: 12px;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.phone-nums .phone-no {
    white-space: nowrap;
}

/* Clickable email / phone links — inherit surrounding text style */
a.contact-link {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

a.contact-link:hover,
a.contact-link:focus-visible {
    text-decoration: underline;
}

.footer a.contact-link:hover {
    color: #fff;
}

.contact-info i {
    width: 14px;
    color: #fff;
    margin-top: 7px;
    font-size: 12px;
}

.locations {
    display: flex;
    gap: 14px;
    /* flex-wrap: wrap; */
    margin-top: 28px;
}

.locations span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.locations i {
    color: #fff;
}

/*======================
    LINKS
======================*/
.footer-title {
    color: #C5C7C9;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: var(--mono);
}

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

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #C5C7C9;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.6;
    transition: 0.3s;
    font-family: var(--sans);

}

.footer-links a:hover {
    color: #fff;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 25px;
}

/*======================
    BOTTOM
======================*/
.footer-bottom {
    border-left: 1px solid rgba(255, 255, 255, .08);
    border-right: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 22px 28px;
}

.copyright {
    font-size: 13px;
}

.footer-policy {
    display: flex;
    gap: 25px;
}

.footer-policy a {
    color: #C5C7C9;
    text-decoration: none;
    font-size: 13px;
}

.footer-policy a:hover {
    color: #fff;
}

/*======================
    RESPONSIVE
======================*/
@media(max-width:991px) {

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-policy {
        flex-wrap: wrap;
        justify-content: center;
    }
      .stat {
    background: #F5FBFF;
    border-radius: 4px;
    padding: 15px 8px !important;
}
}

/* ===== SVG arrows in buttons ===== */
.svg-arrow {
    display: inline-block;
    width: 11px;
    height: 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    flex: none;
}

.svg-arrow.is-white {
    background-image: url(../img/arrow-up-white.svg);
}

.svg-arrow.is-blue {
    background-image: url(../img/arrow-up-blue.svg);
}

.btn-blue:hover .svg-arrow.is-white,
.hero .btn-light:hover .svg-arrow.is-white {
    background-image: url(../img/arrow-up-blue.svg);
}

.ab-member-arrow .svg-arrow {
    width: 11px;
    height: 12px;
}

.testi-nav button img {
    display: block;
    width: 18px;
    height: 18px;
    margin: 0 auto;
}