/* ===== Hero video slider — pure crossfade ===== */
#hero-video-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #000;
    z-index: 0;
}
.hero-vslide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 1.8s ease-in-out;
    will-change: opacity;
}
.hero-vslide.active {
    opacity: 1;
    z-index: 2;
}
.hero-vslide.is-prev {
    opacity: 0;
    z-index: 1;
}
.hero-vslide__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Keep gradient ABOVE videos, BELOW content */
#hero > .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        to right,
        rgba(0,0,0,.9) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.25) 100%
    );
}
#hero > .relative.z-10 {
    z-index: 4;
}

/* ===== Sectors modern stage slider ===== */
.sector-stage {
    min-height: 100vh;
    padding: 7.5rem 1.25rem 3rem;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(41,134,204,.08), transparent 55%),
        #f4f4f4;
}
@media (min-width: 1024px) {
    .sector-stage { padding: 8.5rem 2.5rem 3.5rem; }
}
.sector-stage__head {
    max-width: 90rem;
    margin: 0 auto 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}
.sector-stage__frame {
    position: relative;
    max-width: 90rem;
    margin: 0 auto;
    height: min(72vh, 760px);
    min-height: 480px;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #0a0a0a;
    box-shadow:
        0 40px 100px rgba(0,0,0,.18),
        0 0 0 1px rgba(0,0,0,.06);
}
@media (min-width: 1024px) {
    .sector-stage__frame {
        height: min(74vh, 820px);
        border-radius: 1.5rem;
    }
}
.sector-fs-slider,
.sector-fs-track {
    position: relative;
    width: 100%;
    height: 100%;
}
.sector-fs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .85s cubic-bezier(.22,1,.36,1), visibility .85s ease, transform .85s cubic-bezier(.22,1,.36,1);
    transform: scale(1.03);
    display: flex;
    align-items: stretch;
}
.sector-fs-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transform: scale(1);
}
.sector-fs-slide__media { position: absolute; inset: 0; }
.sector-fs-slide__video,
.sector-fs-slide__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sector-fs-slide__img { background-size: cover; background-position: center; }
.sector-fs-slide__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.55) 42%, rgba(0,0,0,.2) 72%, rgba(0,0,0,.35) 100%),
        linear-gradient(0deg, rgba(0,0,0,.55) 0%, transparent 45%);
    z-index: 1;
}
.sector-fs-slide__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 40rem;
    margin: auto 0 auto 0;
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}
@media (min-width: 768px) {
    .sector-fs-slide__content { padding: 3.5rem 3.5rem 3.5rem 4rem; max-width: 44rem; }
}
@media (min-width: 1280px) {
    .sector-fs-slide__content { padding: 4rem 4rem 4rem 5rem; max-width: 48rem; }
}
.sector-fs-slide__num {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.55);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .22em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}
.sector-fs-slide__num::after {
    content: '';
    width: 2rem;
    height: 1px;
    background: rgba(255,255,255,.35);
}
.sector-stage__nav {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 .85rem;
}
@media (min-width: 1024px) {
    .sector-stage__nav { padding: 0 1.25rem; }
}
.sector-fs-arrow {
    pointer-events: auto;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.sector-fs-arrow:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: scale(1.06);
}
@media (min-width: 1024px) {
    .sector-fs-arrow { width: 64px; height: 64px; font-size: 1.05rem; }
}
.sector-stage__footer {
    max-width: 90rem;
    margin: 1.25rem auto 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.sector-fs-dots {
    display: flex;
    gap: .45rem;
    align-items: center;
}
.sector-fs-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: rgba(0,0,0,.18);
    cursor: pointer;
    padding: 0;
    transition: all .3s ease;
}
.sector-fs-dot.is-active {
    background: #2986cc;
    width: 26px;
}
.sector-stage__counter {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    color: rgba(0,0,0,.4);
}

/* ===== Projects full-screen vertical slider ===== */
/* ===== Projects: full-viewport snap + alternating split ===== */
html.projects-snap {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}
.projects-page {
    background: #fff;
}
.project-snap {
    position: relative;
}
.project-panel {
    min-height: 100svh;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: #fff;
}
@media (min-width: 1024px) {
    .project-panel {
        grid-template-columns: 1fr 1fr;
        height: 100vh;
        height: 100svh;
        max-height: 100svh;
        overflow: hidden;
    }
    .project-panel--flip .project-panel__media { order: 2; }
    .project-panel--flip .project-panel__body { order: 1; }
}
.project-panel__media {
    position: relative;
    min-height: 42vh;
    background-size: cover;
    background-position: center;
}
@media (min-width: 1024px) {
    .project-panel__media {
        min-height: 100%;
        height: 100%;
    }
}
.project-panel__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.35) 100%),
        linear-gradient(90deg, rgba(0,0,0,.2) 0%, transparent 50%);
    pointer-events: none;
}
.project-panel__num {
    position: absolute;
    bottom: 1rem;
    right: 1.25rem;
    font-size: clamp(4.5rem, 14vw, 9rem);
    font-weight: 900;
    line-height: .85;
    letter-spacing: -.05em;
    color: rgba(255,255,255,.14);
    z-index: 1;
    pointer-events: none;
}
.project-panel__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1.75rem 3rem;
    background: #fff;
}
@media (min-width: 1024px) {
    .project-panel__body {
        padding: 6.5rem 4rem 3.5rem;
        overflow-y: auto;
    }
}
@media (min-width: 1280px) {
    .project-panel__body {
        padding: 7rem 5rem 4rem;
    }
}
.project-panel__type {
    color: #2986cc;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: .85rem;
}
.project-panel__title {
    font-size: clamp(1.65rem, 3.2vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.12;
    color: rgba(0,0,0,.9);
    margin-bottom: 1.75rem;
    max-width: 22ch;
}
.project-panel__title-sub {
    display: block;
    font-size: 0.72em;
    font-weight: 700;
    letter-spacing: -.01em;
    color: rgba(0,0,0,.55);
    margin-top: .2em;
}
.project-panel__blocks {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    max-width: 36rem;
}
.project-panel__block {
    padding-left: 1.1rem;
    border-left: 2px solid rgba(41,134,204,.55);
}
.project-panel__block--muted {
    border-left-color: rgba(0,0,0,.12);
}
.project-panel__block > span,
.project-panel__heading {
    display: block;
    font-size: .75rem;
    font-weight: 700 !important;
    font-family: 'LiberGrotesque', sans-serif;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #111 !important;
    margin-bottom: .55rem;
}
.project-panel__block p {
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(0,0,0,.58);
}
@media (min-width: 1280px) {
    .project-panel__block p { font-size: .95rem; }
}

/* Side progress rail */
.project-rail {
    position: fixed;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 45;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: .55rem;
    padding: .85rem .55rem;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 999px;
    box-shadow: 0 12px 36px rgba(0,0,0,.1);
}
@media (min-width: 1024px) {
    .project-rail { display: flex; right: 1.25rem; }
}
@media (min-width: 1400px) {
    .project-rail { right: 1.75rem; }
}
.project-rail__btn {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(0,0,0,.18);
    cursor: pointer;
    transition: all .25s ease;
}
.project-rail__btn.is-active {
    height: 22px;
    background: #2986cc;
}
.project-rail__btn:hover { background: rgba(0,0,0,.4); }
.project-rail__btn.is-active:hover { background: #2986cc; }
.project-rail__label {
    margin-top: .35rem;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .14em;
    color: rgba(0,0,0,.4);
    writing-mode: horizontal-tb;
}
.projects-page footer {
    scroll-snap-align: start;
}

/* ===== Services bento / magazine layout ===== */
.svc-bento {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .svc-bento { grid-template-columns: repeat(2, 1fr); gap: 1.15rem; }
}
@media (min-width: 1280px) {
    .svc-bento { grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }
}
.svc-card {
    position: relative;
    overflow: hidden;
    background: #0b0b0b;
    color: #fff;
    min-height: 320px;
    border-radius: .35rem;
    isolation: isolate;
    transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
}
.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(0,0,0,.2);
}
@media (min-width: 1280px) {
    .svc-card--lg { grid-column: span 7; min-height: 440px; }
    .svc-card--md { grid-column: span 5; min-height: 440px; }
    .svc-card--sm { grid-column: span 4; min-height: 380px; }
    .svc-card--half { grid-column: span 6; min-height: 380px; }
    .svc-card--wide { grid-column: span 8; min-height: 380px; }
}
.svc-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform .9s cubic-bezier(.22,1,.36,1);
    filter: grayscale(.15) brightness(.75);
}
.svc-card:hover .svc-card__bg {
    transform: scale(1.12);
    filter: grayscale(0) brightness(.9);
}
.svc-card__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.82) 100%),
        linear-gradient(90deg, rgba(0,0,0,.45) 0%, transparent 60%);
}
.svc-card__body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
}
@media (min-width: 1024px) {
    .svc-card__body { padding: 2.25rem; }
}
.svc-card__num {
    position: absolute;
    top: 1.25rem;
    right: 1.35rem;
    font-size: 2.75rem;
    font-weight: 900;
    color: rgba(255,255,255,.12);
    line-height: 1;
    letter-spacing: -.04em;
}
.svc-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2986cc;
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(8px);
    margin-bottom: 1.1rem;
}
.svc-card__title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 18ch;
    color: #fff;
}
@media (min-width: 1024px) {
    .svc-card--lg .svc-card__title,
    .svc-card--wide .svc-card__title { font-size: 1.75rem; max-width: 22ch; }
}
.svc-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .45rem;
}
.svc-card__list li {
    display: flex;
    gap: .55rem;
    align-items: flex-start;
    font-size: .8rem;
    font-weight: 300;
    color: rgba(255,255,255,.78);
    line-height: 1.45;
}
.svc-card__list li i {
    color: #2986cc;
    margin-top: .2rem;
    font-size: .65rem;
}
.svc-card__line {
    width: 2rem;
    height: 2px;
    background: #2986cc;
    margin-bottom: .85rem;
    transition: width .4s ease;
}
.svc-card:hover .svc-card__line { width: 3.25rem; }

/* ===== Insight cards + video modal ===== */
.insight-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.insight-card:hover {
    border-color: rgba(41,134,204,.35);
    box-shadow: 0 16px 40px rgba(0,0,0,.06);
}
.insight-card__media {
    position: relative;
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
}
.insight-card__tag {
    position: absolute;
    top: .85rem;
    left: .85rem;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .35rem .6rem;
    backdrop-filter: blur(8px);
}
.insight-card__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(0,0,0,.35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
}
.insight-card__play:hover {
    background: #2986cc;
    border-color: #2986cc;
}
.insight-card__body { padding: 1.35rem 1.35rem 1.5rem; }
.insight-card.is-more { display: none; }
.insight-card.is-more.is-shown { display: block; }
.insight-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}
.insight-more-btn {
    display: inline-flex !important;
    align-items: center;
    gap: .75rem;
    background: #000 !important;
    color: #fff !important;
    padding: .9rem 1.5rem !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .25s ease;
    cursor: pointer;
    border: 0 !important;
}
.insight-more-btn:hover { background: #2986cc !important; }

.faq-acc { display: flex; flex-direction: column; gap: 1rem; }
.faq-acc__item {
    overflow: hidden;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-acc__item.is-open {
    border-color: #2986cc;
    box-shadow: 0 14px 34px rgba(41,134,204,.1);
}
.faq-acc__q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-align: left;
    background: #fff !important;
    color: #000 !important;
    border: 0 !important;
    border-radius: 0;
    padding: 0.95rem 1.1rem;
    cursor: pointer;
    font-family: inherit;
    transition: border-color .2s ease;
}
.faq-acc__item.is-open .faq-acc__q {
    border-color: transparent !important;
    box-shadow: none;
}
.faq-acc__qmark {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-acc__qtext {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 800 !important;
    color: #000 !important;
    line-height: 1.35;
}
.faq-acc__icon {
    flex-shrink: 0;
    width: 1.25rem;
    text-align: center;
    color: #98a2b3;
    font-size: .85rem;
}
.faq-acc__icon .fa-times { display: none; }
.faq-acc__item.is-open .faq-acc__icon .fa-plus { display: none; }
.faq-acc__item.is-open .faq-acc__icon .fa-times { display: inline; }
.faq-acc__a {
    display: none;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.95rem 1.1rem 1.1rem;
    background: #fbfcfd;
    border-top: 1px solid rgba(0,0,0,.06);
}
.faq-acc__item.is-open .faq-acc__a { display: flex; }
.faq-acc__amark {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    background: #5ba3d9;
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-acc__atext {
    flex: 1;
    color: #667085;
    font-weight: 400;
    line-height: 1.65;
    font-size: .95rem;
    padding-top: .15rem;
}
.faq-acc__atext p { margin: 0 0 .6rem; }

.qa-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(0,0,0,.08); }
.qa-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.qa-item.is-more { display: none; }
.qa-item.is-more.is-shown { display: block; }
.qa-item__q {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    background: #fff !important;
    color: #000 !important;
    border: 0 !important;
    padding: 1.25rem 0;
    cursor: pointer;
    font-family: inherit;
    font-weight: 800;
}
.qa-item__qtext {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 800 !important;
    color: #000 !important;
    line-height: 1.35;
    letter-spacing: -0.01em;
}
.qa-item__icon { color: #2986cc; margin-top: .35rem; font-size: .75rem; }
.qa-item.is-open .qa-item__icon { transform: rotate(45deg); }
.qa-item__mark {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    background: #000;
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .1rem;
}
.qa-item__mark--a { background: #2986cc; }
.qa-item__a {
    display: none;
    align-items: flex-start;
    gap: 1rem;
    padding: 0 0 1.35rem 0;
}
.qa-item.is-open .qa-item__a { display: flex; }
.qa-item__atext {
    flex: 1;
    color: rgba(0,0,0,.55);
    font-weight: 300;
    line-height: 1.7;
    font-size: .95rem;
}
.qa-single__row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.qa-single__q { font-size: 1.35rem; font-weight: 800; line-height: 1.3; }

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .35s ease;
}
.video-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(6px);
}
.video-modal__panel {
    position: relative;
    z-index: 2;
    width: min(960px, calc(100vw - 2rem));
    background: #000;
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.video-modal__player {
    width: 100%;
    display: block;
    max-height: 80vh;
    background: #000;
}
.video-modal__frame {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: 0;
    background: #000;
}
.video-modal__player[hidden],
.video-modal__frame[hidden] { display: none; }
.video-modal__close {
    position: absolute;
    top: -3rem;
    right: 0;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.3);
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-modal__close:hover { background: #2986cc; border-color: #2986cc; }

.page-hero--short { min-height: clamp(320px, 48vh, 520px); }
.prose-vasu p { margin-bottom: 1rem; }

/* Who we are value tiles */
.value-tile {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    padding: 1.75rem;
    transition: border-color .3s ease;
}
.value-tile:hover { border-color: rgba(41,134,204,.4); }
.icon-box {
    width: 2.75rem;
    height: 2.75rem;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.value-tile:hover .icon-box { background: #2986cc; }

.stat-strip > div { padding: .5rem 0; }

/* ===== Who We Are capability grid ===== */
.who-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) {
    .who-grid { grid-template-columns: repeat(2, 1fr); gap: 1.15rem; }
}
@media (min-width: 1024px) {
    .who-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.who-card {
    position: relative;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 2.15rem 1.85rem 2rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease, background .35s ease;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .who-card {
        padding: 2.35rem 2rem 2.15rem;
        min-height: 220px;
        gap: 1.5rem;
    }
}
.who-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #2986cc;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}
.who-card:hover {
    background: #fff;
    border-color: rgba(41, 134, 204, 0.28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}
.who-card:hover::before { transform: scaleY(1); }
.who-card__icon {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2986cc;
    background: rgba(41, 134, 204, 0.08);
    border: 1px solid rgba(41, 134, 204, 0.14);
    transition: background .3s ease, color .3s ease, border-color .3s ease;
}
@media (min-width: 1024px) {
    .who-card__icon {
        width: 4rem;
        height: 4rem;
    }
}
.who-card__icon svg {
    width: 1.85rem;
    height: 1.85rem;
}
@media (min-width: 1024px) {
    .who-card__icon svg {
        width: 2.05rem;
        height: 2.05rem;
    }
}
.who-card:hover .who-card__icon {
    background: #2986cc;
    color: #fff;
    border-color: #2986cc;
}
.who-card__title {
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: rgba(0, 0, 0, 0.88);
    max-width: 24ch;
}
@media (min-width: 1024px) {
    .who-card__title {
        font-size: 1.14rem;
        max-width: 26ch;
    }
}

/* ===== Contact page ===== */
.contact-shell {
    padding: 3.5rem 0 5rem;
    background: linear-gradient(180deg, #f4f6f8 0%, #f8f8f8 100%);
}
@media (min-width: 1024px) {
    .contact-shell { padding: 4.5rem 0 6rem; }
}
.contact-offices {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 900px) {
    .contact-offices {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 1.75rem;
    }
}
.contact-office {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 16px 40px rgba(0,0,0,.04);
    padding: 2rem 1.75rem;
    min-height: 100%;
}
@media (min-width: 1024px) {
    .contact-office { padding: 2.5rem 2.25rem; }
}
.contact-office__title {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: rgba(0,0,0,.9);
    margin-bottom: 1.25rem;
}
.contact-office__body p {
    font-size: .95rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(0,0,0,.58);
    margin-bottom: 1.15rem;
}
.contact-office__email {
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #2986cc;
    margin-bottom: 1.25rem;
    transition: color .2s ease;
}
.contact-office__email:hover { color: #000; }
.contact-office__maplink {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(0,0,0,.45);
    transition: color .2s ease;
}
.contact-office__maplink i { font-size: .65rem; transition: transform .2s ease; }
.contact-office__maplink:hover { color: #2986cc; }
.contact-office__maplink:hover i { transform: translateX(3px); }
.contact-map-wide {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    background: #e8e8e8;
    height: clamp(280px, 42vh, 420px);
    box-shadow: 0 16px 40px rgba(0,0,0,.04);
}
.contact-map-wide iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.2) contrast(1.05);
}
.contact-layout {
    display: grid;
    gap: 1.75rem;
    align-items: stretch;
}
@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 2rem;
        align-items: stretch;
    }
}
.contact-aside {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    padding: 2rem 1.75rem;
    box-shadow: 0 18px 50px rgba(0,0,0,.04);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
@media (min-width: 1024px) {
    .contact-aside { padding: 2.5rem 2.25rem; }
}
.contact-aside__title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: rgba(0,0,0,.9);
    margin-bottom: .75rem;
}
.contact-aside__lead {
    font-size: .95rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(0,0,0,.5);
    margin-bottom: 1.75rem;
    max-width: 34ch;
}
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    margin-bottom: 1.5rem;
}
.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(0,0,0,.07);
    background: #fafafa;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
    text-decoration: none;
}
.contact-card:hover {
    border-color: rgba(41,134,204,.35);
    background: #fff;
    transform: translateY(-1px);
}
.contact-card__icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41,134,204,.1);
    color: #2986cc;
    flex-shrink: 0;
    font-size: .85rem;
}
.contact-card__label {
    display: block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(0,0,0,.35);
    margin-bottom: .3rem;
}
.contact-card p {
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(0,0,0,.72);
}
.contact-map {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    background: #e8e8e8;
    min-height: 220px;
    flex: 1 1 auto;
    margin-top: auto;
}
@media (min-width: 1024px) {
    .contact-map {
        min-height: 280px;
        aspect-ratio: auto;
    }
}
.contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.15) contrast(1.02);
}
.contact-form-wrap {
    min-width: 0;
    display: flex;
    height: 100%;
}
.contact-form-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 24px 60px rgba(0,0,0,.06);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 100%;
}
@media (min-width: 768px) {
    .contact-form-card { padding: 2.5rem 2.5rem 2.75rem; }
}
.contact-form-card__head {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.contact-form-card__head h3 {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: rgba(0,0,0,.9);
    margin-bottom: .4rem;
}
.contact-form-card__head p {
    font-size: .92rem;
    font-weight: 300;
    color: rgba(0,0,0,.48);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    flex: 1 1 auto;
}
.contact-form .contact-field:has(textarea) {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.contact-form .contact-field textarea {
    flex: 1 1 auto;
    min-height: 160px;
}
.contact-form__row {
    display: grid;
    gap: 1.1rem;
}
@media (min-width: 640px) {
    .contact-form__row { grid-template-columns: 1fr 1fr; }
}
.contact-field {
    display: block;
}
.contact-field span {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(0,0,0,.42);
    margin-bottom: .45rem;
}
.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid rgba(0,0,0,.1);
    background: #fafafa;
    padding: .85rem 1rem;
    font-size: .95rem;
    font-weight: 400;
    color: rgba(0,0,0,.85);
    outline: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
    font-family: inherit;
}
.contact-field textarea { resize: vertical; min-height: 130px; }
.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(0,0,0,.32);
    font-weight: 300;
}
.contact-field input:focus,
.contact-field textarea:focus {
    border-color: rgba(41,134,204,.55);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(41,134,204,.12);
}
.contact-submit {
    margin-top: .35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    align-self: flex-start;
    background: #000;
    color: #fff;
    border: 0;
    padding: .95rem 1.5rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s ease, transform .2s ease;
}
.contact-submit i { font-size: .7rem; transition: transform .25s ease; }
.contact-submit:hover {
    background: #2986cc;
}
.contact-submit:hover i { transform: translateX(3px); }
