@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL,GRAD,opsz@100..700,0..1,-50..200,20..48');

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Single scroll on html; scrollbar hidden (wheel/touch still works) */
html:not(.admin-app) {
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html:not(.admin-app)::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

body.site-page,
body.site-page.overflow-x-hidden {
    overflow: visible !important;
    max-width: 100%;
}

.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.dark .glass-card {
    background: rgba(30, 30, 30, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-gradient {
    background: linear-gradient(135deg, #000613 0%, #001f3f 100%);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Custom AOS configuration overrides if needed */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* Dropdown Animation */
.group:hover .group-hover\:block {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- ADVANCED HOME PAGE ANIMATIONS --- */

/* Infinite Marquee */
.animate-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

/* --- Site header: reference pill nav — glass pill, logo left, no full-width white bar --- */
body.site-page {
    --header-h: 4.75rem;
    --header-gap: 5rem;
    --content-offset: calc(var(--header-h) + var(--header-gap));
}

.site-header {
    --nav-accent: #005eb2;
    --nav-cta: #001f3f;
    --nav-bg: #f8fafc;
    --nav-pill-bg: rgba(255, 255, 255, 0.72);
    --nav-pill-bg-scroll: rgba(248, 250, 252, 0.9);
    --nav-pill-border: rgba(0, 31, 63, 0.1);
    --nav-pill-shadow: 0 4px 24px rgba(0, 31, 63, 0.08), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
    --nav-text: rgba(0, 31, 63, 0.7);
    --nav-text-strong: #001f3f;
    --nav-active-bg: rgba(0, 94, 178, 0.12);
    --nav-active-text: #005eb2;
}

.site-header__glow {
    display: none;
}

.site-header__bar {
    position: relative;
    height: var(--header-h);
    background: rgba(248, 250, 252, 0.78);
    backdrop-filter: blur(16px) saturate(1.15);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);
    border-bottom: 1px solid rgba(0, 31, 63, 0.06);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset, 0 4px 18px rgba(0, 31, 63, 0.04);
    transition:
        background 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.site-header__bar::after {
    display: none;
}

.site-header--scrolled .site-header__bar {
    background: rgba(248, 250, 252, 0.92);
    border-bottom-color: rgba(0, 31, 63, 0.09);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.75) inset,
        0 8px 24px rgba(0, 31, 63, 0.07);
}

.site-header--scrolled .site-header__pill {
    background: var(--nav-pill-bg-scroll);
    box-shadow: var(--nav-pill-shadow), 0 8px 32px rgba(0, 31, 63, 0.1);
}

.site-header__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    height: 100%;
    gap: 0.75rem 1rem;
}

@media (min-width: 1024px) {
    .site-header__inner {
        grid-template-columns: minmax(10rem, 14rem) minmax(0, 1fr) auto;
        align-items: center;
        gap: 1.25rem 1.5rem;
    }
}

.site-header__logo {
    flex-shrink: 0;
    z-index: 4;
    justify-self: start;
    display: flex;
    align-items: center;
    align-self: center;
    height: 100%;
    max-height: var(--header-h);
    overflow: visible;
}

.site-header__logo-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    line-height: 0;
    text-decoration: none;
    background: transparent !important;
    border: none;
    box-shadow: none;
    padding: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site-header__logo-link:hover {
    transform: scale(1.02);
}

.site-logo {
    display: block;
    height: auto;
    max-height: calc(var(--header-h) - 1.25rem);
    width: auto;
    max-width: 11.5rem;
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
    background: transparent !important;
    border: none;
    box-shadow: none;
    padding: 0;
    transition: opacity 0.25s ease;
}

/* Center zone: navigation pill only */
.site-header__nav-zone {
    justify-self: center;
    align-self: center;
    width: 100%;
    max-width: 52rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 100%;
}

.site-header__pill {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: var(--nav-pill-bg);
    border: 1px solid var(--nav-pill-border);
    box-shadow: var(--nav-pill-shadow);
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header__nav {
    position: static;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.22rem;
    padding: 0;
    margin: 0;
    z-index: 3;
    list-style: none;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.12rem;
    padding: 0.56rem 0.76rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.005em;
    color: var(--nav-text);
    text-decoration: none;
    border-radius: 999px;
    white-space: nowrap;
    transition: color 0.25s ease, background 0.25s ease;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: var(--nav-text-strong);
    background: rgba(0, 31, 63, 0.07);
}

.nav-link.is-active {
    color: var(--nav-active-text);
    font-weight: 600;
    background: var(--nav-active-bg);
}

.nav-link .nav-chevron {
    font-size: 1.125rem;
    color: rgba(0, 31, 63, 0.45);
    transition: transform 0.25s ease, color 0.25s ease;
}

.nav-link:hover .nav-chevron,
.nav-link.is-active .nav-chevron {
    color: var(--nav-accent);
}

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

/* Mega dropdown */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    width: min(680px, calc(100vw - 2rem));
    padding: 0.85rem;
    background: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(24px) saturate(1.15);
    border: 1px solid rgba(0, 94, 178, 0.1);
    border-radius: 1.25rem;
    box-shadow:
        0 4px 6px rgba(0, 31, 63, 0.03),
        0 24px 48px rgba(0, 31, 63, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.98);
    transform-origin: top center;
    transition:
        opacity 0.28s ease,
        visibility 0.28s ease,
        transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 60;
}

.nav-item--dropdown-services .nav-dropdown {
    left: 0;
}

.nav-item--dropdown-software .nav-dropdown {
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.98);
    transform-origin: top center;
}

.nav-item--dropdown-software:hover .nav-dropdown {
    transform: translateX(-50%) translateY(0) scale(1);
}

.nav-item--dropdown-resources .nav-dropdown {
    right: 0;
    left: auto;
}

.nav-item--dropdown-services .nav-dropdown--menu {
    width: min(260px, calc(100vw - 2rem));
}

.nav-dropdown--menu {
    width: min(240px, calc(100vw - 2rem));
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.65rem;
}

.nav-dropdown__link {
    display: block;
    padding: 0.55rem 0.85rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--nav-text-strong);
    text-decoration: none;
    border-radius: 0.65rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown__link:hover {
    background: rgba(0, 94, 178, 0.08);
    color: var(--nav-accent);
}

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

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 1.25rem 1.25rem 0 0;
    background: linear-gradient(90deg, #001f3f, var(--nav-accent), #14b8a6);
}

/* Services & Industries dropdown — compact type */
.nav-dropdown.grid {
    gap: 0.35rem;
}

.nav-dropdown > a {
    gap: 0.6rem !important;
    padding: 0.45rem 0.55rem !important;
    border-radius: 0.85rem !important;
}

.nav-dropdown h4,
.nav-dropdown .font-label-md {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.8125rem !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.nav-dropdown p,
.nav-dropdown .font-body-xs {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.6875rem !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    margin-top: 0.1rem !important;
}

.nav-dropdown > a > span[class*="w-10"] {
    width: 2rem !important;
    height: 2rem !important;
    min-width: 2rem;
    border-radius: 0.6rem !important;
}

.nav-dropdown .material-symbols-outlined {
    font-size: 1.05rem !important;
}

/* Legacy dropdown class support */
.site-header__nav .group:hover > div[class*="rounded-3xl"] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

.site-header__actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: flex-end;
    gap: 0.625rem;
    justify-self: end;
    height: 100%;
    z-index: 4;
}

.site-header__cta-group {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.site-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.site-header__cta:active {
    transform: scale(0.97);
}

.site-header__cta--primary {
    color: #fff;
    background: var(--nav-cta);
    padding: 0.7rem 1.35rem;
    border-radius: 0.875rem;
    box-shadow:
        0 2px 8px rgba(0, 31, 63, 0.18),
        0 8px 20px rgba(0, 31, 63, 0.14);
}

.site-header__cta--primary:hover {
    background: #003366;
    box-shadow:
        0 4px 12px rgba(0, 31, 63, 0.22),
        0 12px 28px rgba(0, 31, 63, 0.18);
    transform: translateY(-1px);
}

.site-header__cta--ghost {
    color: var(--nav-text-strong);
    background: transparent;
}

.site-header__cta--ghost:hover {
    color: var(--nav-accent);
    background: rgba(0, 94, 178, 0.06);
}

/* Legacy alias */
.site-header__cta--solid {
    color: #fff;
    background: var(--nav-cta);
    padding: 0.7rem 1.35rem;
    border-radius: 0.875rem;
    box-shadow: 0 2px 12px rgba(0, 31, 63, 0.2);
}

.site-header__cta--solid:hover {
    background: #003366;
    transform: translateY(-1px);
}

/* Legacy button classes (mobile / older markup) */
.site-header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.25rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.site-header__btn:active {
    transform: scale(0.96);
}

.site-header__btn--outline,
.site-header__btn--ghost {
    color: var(--nav-text-strong);
    background: transparent;
    border: none;
}

.site-header__btn--outline:hover,
.site-header__btn--ghost:hover {
    color: var(--nav-accent);
    background: rgba(0, 94, 178, 0.06);
}

.site-header__btn--primary {
    color: #fff;
    border: none;
    background: var(--nav-cta);
    box-shadow: 0 4px 16px rgba(0, 94, 178, 0.45);
}

.site-header__btn--primary:hover {
    background: #0070d4;
    box-shadow: 0 6px 22px rgba(0, 94, 178, 0.55);
    transform: translateY(-1px);
}

/* Mobile menu toggle */
.site-header__menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    margin-left: 0;
    border-radius: 999px;
    border: 1px solid var(--nav-pill-border);
    background: var(--nav-pill-bg);
    color: var(--nav-text-strong);
    cursor: pointer;
    box-shadow: var(--nav-pill-shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.site-header__menu-btn:hover {
    background: var(--nav-pill-bg-scroll);
    border-color: rgba(0, 94, 178, 0.2);
    color: var(--nav-accent);
}

.site-header__menu-btn.is-open {
    background: var(--nav-cta);
    color: #fff;
    border-color: var(--nav-cta);
}

.site-header__menu-btn .material-symbols-outlined {
    font-size: 1.5rem;
}

/* Mobile drawer */
.site-header__mobile {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 49;
    background: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-top: 1px solid rgba(0, 31, 63, 0.08);
    overflow: hidden;
    padding: 1.25rem 1.5rem 2rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.site-header__mobile:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.site-header__mobile:not(.hidden)::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.site-header__mobile.hidden {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
}

.site-header__mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.site-header__mobile-nav a {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--nav-text-strong);
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-header__mobile-nav a:hover {
    background: rgba(0, 94, 178, 0.06);
    color: var(--nav-accent);
}

.site-header__mobile-label {
    display: block;
    padding: 1rem 1rem 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 31, 63, 0.45);
}

.site-header__mobile-sublink {
    padding-left: 1.75rem !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
}

.site-header__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 31, 63, 0.08);
}

.site-header__cta--mobile {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.25rem;
    font-size: 0.9375rem;
    border-radius: 0.875rem;
}

.site-header__cta-group--mobile {
    width: 100%;
    flex-direction: column;
    padding: 0;
    border-radius: 0;
}

.site-header__cta-group--mobile .site-header__cta {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.25rem;
    font-size: 0.9375rem;
    border-radius: 0.875rem;
}

.site-header__mobile-actions .site-header__btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.25rem;
}

@media (max-width: 1023px) {
    .site-header__inner {
        grid-template-columns: 1fr auto;
    }
}

@media (min-width: 1400px) {
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .nav-link {
        padding: 0.56rem 0.78rem;
        font-size: 0.8125rem;
        font-weight: 600;
    }

    .site-header__pill {
        padding: 0.42rem 0.75rem;
    }

    .site-header__cta--primary {
        padding: 0.72rem 1.2rem;
        font-size: 0.8125rem;
    }

    .site-logo {
        height: 3.15rem;
        max-width: 11rem;
    }
}

@media (min-width: 1024px) {
    .nav-item--dropdown {
        display: inline-flex;
        align-items: center;
    }
}

@media (min-width: 1280px) {
    .site-logo {
        height: 3.65rem;
        max-width: 13rem;
    }
}

@media (min-width: 1400px) {
    .site-logo {
        height: 3.85rem;
        max-width: 14rem;
    }
}

@media (max-width: 767px) {
    body.site-page {
        --header-h: 4.25rem;
    }
    .site-logo {
        height: 2.85rem;
        max-width: 11rem;
    }
}

main.site-main-offset,
main.pt-24,
main.page-wrap {
    padding-top: var(--content-offset);
}

@media (min-width: 768px) {
    body.site-page {
        --header-gap: 6rem;
    }
}

@media (min-width: 1024px) {
    body.site-page {
        --header-h: 5.5rem;
        --header-gap: 6.5rem;
    }
}

/* --- Hero section --- */
.hero-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 55% at 8% 35%, rgba(0, 94, 178, 0.09), transparent 55%),
        radial-gradient(ellipse 55% 45% at 92% 65%, rgba(20, 184, 166, 0.07), transparent 50%),
        radial-gradient(ellipse 40% 30% at 50% 100%, rgba(245, 158, 11, 0.05), transparent 45%);
}

/* Hero copy block — typography & layout */
.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 34rem;
}

.hero-section__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 1rem 0 1rem;
}

/* Headline: two-tier hierarchy, balanced scale */
.hero-title {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    margin: 0 0 1.125rem;
    padding: 0;
    letter-spacing: -0.02em;
}

.hero-title__prefix {
    display: block;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-transform: none;
    margin-bottom: 0.35rem;
    background: linear-gradient(
        90deg,
        #c2410c 0%,
        #005eb2 35%,
        #0d9488 65%,
        #005eb2 90%,
        #c2410c 100%
    );
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroGradientFlow 7s linear 0.6s infinite;
}

.hero-title__main {
    display: block;
    font-size: clamp(1.65rem, 4.2vw, 2.35rem);
    font-weight: 800;
    line-height: 1.18;
    color: #0a1f33;
    letter-spacing: -0.03em;
}

.hero-title__highlight {
    display: inline;
    background: linear-gradient(
        90deg,
        #c2410c 0%,
        #005eb2 35%,
        #0d9488 65%,
        #005eb2 90%,
        #c2410c 100%
    );
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroGradientFlow 7s linear 1.2s infinite;
}

/* Subheadline — readable DM Sans, comfortable measure */
.hero-subtitle {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
    font-weight: 400;
    line-height: 1.75;
    color: #5c6f82;
    max-width: 30rem;
    margin: 0 0 1rem;
}

.hero-subtitle--lead {
    margin-bottom: 0.5rem;
}

.hero-subtitle--support {
    margin-bottom: 1.75rem;
}

.hero-subtitle__services {
    display: block;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #3d5a73;
}

.hero-subtitle__accent {
    color: #005eb2;
    font-weight: 600;
}

.hero-subtitle__growth {
    font-weight: 700;
    background: linear-gradient(135deg, #005eb2, #0d9488);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0;
}

.hero-trust {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.5;
    color: #7a8fa3;
    margin: 0;
}

.hero-trust .material-symbols-outlined {
    font-size: 1.125rem;
    color: #005eb2;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Staggered entrance */
.hero-title__anim {
    opacity: 0;
    transform: translateY(0.85rem);
    animation: heroTextReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title__main.hero-title__anim { animation-delay: 0.12s; }
.hero-subtitle--lead.hero-title__anim { animation-delay: 0.28s; }
.hero-subtitle--support.hero-title__anim { animation-delay: 0.4s; }
.hero-cta-row.hero-title__anim { animation-delay: 0.58s; }
.hero-section__pills.hero-title__anim,
.hero-value-list.hero-title__anim { animation-delay: 0.68s; }
.hero-trust.hero-title__anim { animation-delay: 0.78s; }

@media (min-width: 1024px) {
    .hero-section {
        overflow: visible !important;
    }
    .hero-copy {
        max-width: 32rem;
    }
    .hero-section__grid {
        align-items: center;
        gap: 2.75rem;
        padding-top: 2.75rem;
        padding-bottom: 3rem;
    }
    .hero-hub {
        margin-top: 0.25rem;
    }
    .hero-hub__stage,
    .hero-hub__orbit {
        overflow: visible;
    }
}

@media (min-width: 1280px) {
    .hero-copy {
        max-width: 34rem;
    }
    .hero-section__grid {
        gap: 2.5rem;
    }
}

@media (max-width: 639px) {
    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .hero-cta-row .hero-cta {
        width: 100%;
        justify-content: center;
    }
    .hero-cta--ghost {
        display: none;
    }
}

@keyframes heroTextReveal {
    from {
        opacity: 0;
        transform: translateY(1.35rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSubtitleReveal {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGradientFlow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 250% center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-title__anim,
    .hero-section__pills,
    .hero-value-list,
    .hero-title__prefix,
    .hero-title__highlight,
    .hero-hub__chip,
    .hero-hub__core {
        animation: none;
        opacity: 1;
    }
    .hero-hub__orbit--nodes .hero-hub__core {
        transform: translate(-50%, -50%);
    }
    .hero-hub__orbit--nodes .hero-hub__chip {
        transform: translate(-50%, -50%);
    }
    .hero-title__prefix,
    .hero-title__highlight {
        background-position: 50% center;
    }
}

/* Hero platform hub */
.hero-hub {
    width: 100%;
    max-width: 36rem;
    margin-left: auto;
    overflow: visible;
}

@media (min-width: 1024px) {
    .hero-hub--wide {
        max-width: none;
        width: 100%;
        margin-left: 0;
        padding-left: 0.5rem;
    }

    .hero-hub--wide .hero-hub__orbit--nodes {
        max-width: 26rem;
        width: 100%;
    }

    .hero-hub--wide .hero-hub__orbit--nodes .hero-hub__core {
        width: 58%;
        max-width: 14.5rem;
    }
}

@media (min-width: 1280px) {
    .hero-hub--wide .hero-hub__orbit--nodes {
        max-width: 28rem;
    }

    .hero-hub--wide .hero-hub__orbit--nodes .hero-hub__core {
        max-width: 15.5rem;
    }
}

.hero-hub__stage {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
    padding: 1.25rem 0 0;
    overflow: visible;
}

/* Circular orbit — chips locked to SVG anchor points */
.hero-hub__orbit--nodes {
    position: relative;
    width: min(100%, 24rem);
    max-width: 26rem;
    margin: 0 auto;
    overflow: visible;
}

.hero-hub__orbit-map {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.86;
    overflow: visible;
    /* Reserve space below orbit anchors so chips do not overlap the trust band */
    padding-bottom: 2.75rem;
    box-sizing: content-box;
}

.hero-hub__orbit--nodes .hero-hub__core {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 8;
    width: 58%;
    max-width: 13.5rem;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 1;
    pointer-events: none;
    animation: none;
}

.hero-hub__orbit--nodes .hero-hub__core .hero-hub__frame {
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.hero-hub__frame {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(0, 94, 178, 0.14);
    box-shadow: 0 12px 32px rgba(15, 35, 62, 0.1);
    overflow: hidden;
}

.hero-hub__orbit--nodes .hero-hub__frame {
    box-shadow: 0 14px 36px rgba(15, 35, 62, 0.1);
    border: 1px solid rgba(0, 94, 178, 0.1);
}

.hero-hub__frame--team {
    border-radius: 1.35rem;
}

.hero-hub__frame--team .hero-hub__screen--photo img {
    object-position: center 20%;
}

.hero-hub__core .hero-hub__frame-footer--team {
    display: none;
}

.hero-hub__orbit--nodes .hero-hub__core .hero-hub__screen--photo {
    aspect-ratio: 16 / 10;
    min-height: 8.25rem;
}

.hero-hub__orbit--nodes .hero-hub__frame--team {
    border-radius: 1.35rem;
    width: 100%;
}

.hero-hub__frame-footer--team {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), #f8fafc);
    flex-wrap: wrap;
    gap: 0.25rem;
    justify-content: center;
}

.hero-hub__frame-footer--team .hero-hub__live,
.hero-hub__frame-footer--team .hero-hub__badge,
.hero-hub__frame-footer--team .hero-hub__ai {
    font-size: 0.5625rem;
}

.hero-hub__chrome {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
    border-bottom: 1px solid #e2e8f0;
}

.hero-hub__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #cbd5e1;
}

.hero-hub__dot:first-child { background: #f87171; }
.hero-hub__dot:nth-child(2) { background: #fbbf24; }
.hero-hub__dot:nth-child(3) { background: #34d399; }

.hero-hub__url {
    margin-left: 0.35rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.02em;
}

.hero-hub__screen {
    line-height: 0;
    background: #0f172a;
}

.hero-hub__screen--photo {
    background: #f1f5f9;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.hero-hub__screen--photo img {
    object-fit: cover;
    object-position: center center;
    min-height: 100%;
}

.hero-hub__screen img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.hero-hub__frame-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0.75rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
}

.hero-hub__live {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #059669;
}

.hero-hub__live-dot {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #10b981;
    animation: heroHubPulseDot 2s ease infinite;
}

.hero-hub__badge,
.hero-hub__ai {
    color: #005eb2;
    background: rgba(0, 94, 178, 0.08);
    padding: 0.1rem 0.45rem;
    border-radius: 0.25rem;
}

.hero-hub__core-label {
    display: block;
    margin: 0.65rem auto 0.35rem;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #005eb2;
}

.hero-hub__chip {
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.6rem 0.45rem 0.45rem;
    background: #fff;
    border: 1px solid rgba(0, 94, 178, 0.1);
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(15, 35, 62, 0.07);
    text-decoration: none;
    max-width: 9.5rem;
    width: max-content;
    opacity: 1;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-hub__orbit--nodes .hero-hub__chip {
    position: absolute;
    left: var(--hub-x, 50%);
    top: var(--hub-y, 50%);
    transform: translate(-50%, -50%);
    z-index: 12;
    animation: none;
}

.hero-hub__orbit--nodes .hero-hub__chip:hover {
    transform: translate(-50%, -50%);
    border-color: rgba(0, 94, 178, 0.28);
    box-shadow: 0 8px 22px rgba(15, 35, 62, 0.1);
    background: #fafbfc;
    z-index: 25;
}

.hero-hub__chip-icon {
    flex-shrink: 0;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 0.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-hub__chip-icon .material-symbols-outlined {
    font-size: 1.1rem;
}

.hero-hub__chip-icon--blue { background: rgba(59, 130, 246, 0.14); color: #2563eb; }
.hero-hub__chip-icon--amber { background: rgba(245, 158, 11, 0.14); color: #d97706; }
.hero-hub__chip-icon--indigo { background: rgba(99, 102, 241, 0.14); color: #4f46e5; }
.hero-hub__chip-icon--purple { background: rgba(168, 85, 247, 0.14); color: #9333ea; }
.hero-hub__chip-icon--teal { background: rgba(20, 184, 166, 0.14); color: #0d9488; }
.hero-hub__chip-icon--emerald { background: rgba(16, 185, 129, 0.14); color: #059669; }

.hero-hub__chip-text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    min-width: 0;
}

.hero-hub__chip-text strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #0f2744;
    line-height: 1.2;
}

.hero-hub__chip-text em {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.575rem;
    font-style: normal;
    font-weight: 500;
    color: #64748b;
}

/* Hex layout — sides near core edge; top/bottom clear of center image */
.hero-hub__orbit--nodes .hero-hub__chip--recruitment {
    --hub-x: 50%;
    --hub-y: 9%;
}

.hero-hub__orbit--nodes .hero-hub__chip--exec {
    --hub-x: 20%;
    --hub-y: 34%;
}

.hero-hub__orbit--nodes .hero-hub__chip--staffing {
    --hub-x: 80%;
    --hub-y: 34%;
}

.hero-hub__orbit--nodes .hero-hub__chip--advisory {
    --hub-x: 80%;
    --hub-y: 66%;
}

.hero-hub__orbit--nodes .hero-hub__chip--payroll {
    --hub-x: 20%;
    --hub-y: 66%;
}

.hero-hub__orbit--nodes .hero-hub__chip--bgv {
    --hub-x: 50%;
    --hub-y: 88%;
}

.hero-hub__chip--staffing,
.hero-hub__chip--exec,
.hero-hub__chip--payroll,
.hero-hub__chip--bgv {
    max-width: 11.25rem;
}

.hero-hub__caption {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #5c6f82;
    text-align: center;
    margin: 0 0 0.85rem;
}

.hero-hub__caption span {
    color: #005eb2;
    font-weight: 600;
}

.hero-hub__stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-hub__stat {
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}

.hero-hub__stat strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: #005eb2;
    line-height: 1.2;
}

.hero-hub__stat span {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #7a8fa3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}



.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.75rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #3d5a73;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 94, 178, 0.1);
    border-radius: 9999px;
    backdrop-filter: blur(6px);
}

.hero-pill .material-symbols-outlined {
    font-size: 1.05rem;
    color: #005eb2;
}

/* Hero value points (benefits — not duplicate stats) */
.hero-value-list {
    list-style: none;
    margin: 0.15rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 26rem;
}

.hero-value-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.45;
    color: #3d5a73;
}

.hero-value-list .material-symbols-outlined {
    flex-shrink: 0;
    margin-top: 0.05rem;
    font-size: 1.125rem;
    color: #059669;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.hero-section--premium .hero-value-list {
    margin-top: 0;
    gap: 0.55rem;
}

.hero-section--premium .hero-value-list li {
    font-size: 0.84375rem;
}

.hero-value-list.hero-title__anim {
    animation-delay: 0.68s;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.35rem;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.hero-cta:active {
    transform: scale(0.98);
}

.hero-cta--primary {
    color: #fff;
    background: linear-gradient(135deg, #001f3f 0%, #005eb2 50%, #0d9488 100%);
    background-size: 200% auto;
    box-shadow: 0 8px 28px rgba(0, 94, 178, 0.35);
}

.hero-cta--primary:hover {
    background-position: 100% center;
    box-shadow: 0 12px 36px rgba(0, 94, 178, 0.4);
    transform: translateY(-2px);
}

.hero-cta--secondary {
    color: #001f3f;
    background: #fff;
    border: 1.5px solid rgba(0, 94, 178, 0.25);
    box-shadow: 0 4px 16px rgba(0, 31, 63, 0.06);
}

.hero-cta--secondary:hover {
    border-color: #005eb2;
    color: #005eb2;
    box-shadow: 0 6px 20px rgba(0, 94, 178, 0.12);
    transform: translateY(-1px);
}

.hero-cta--ghost {
    color: rgba(0, 31, 63, 0.75);
    background: transparent;
    border: 1.5px solid rgba(0, 31, 63, 0.12);
}

.hero-cta--ghost:hover {
    color: #005eb2;
    border-color: rgba(0, 94, 178, 0.35);
    background: rgba(0, 94, 178, 0.04);
}

/* --- Hero premium pass (homepage) --- */
.hero-section--premium .hero-title {
    margin-bottom: 1.35rem;
}

.hero-section--premium .hero-subtitle--lead {
    margin-bottom: 0.65rem;
}

.hero-section--premium .hero-subtitle--support {
    margin-bottom: 2rem;
}

.hero-section--premium .hero-cta-row {
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.hero-section--premium .hero-section__pills {
    margin-top: 0;
    gap: 0.55rem;
}

.hero-section--premium .hero-cta--primary {
    padding: 0.9rem 1.65rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 0.75rem;
    box-shadow:
        0 10px 32px rgba(0, 94, 178, 0.38),
        0 2px 8px rgba(0, 31, 63, 0.12);
}

.hero-section--premium .hero-cta--primary:hover {
    box-shadow:
        0 14px 40px rgba(0, 94, 178, 0.45),
        0 4px 12px rgba(0, 31, 63, 0.14);
    transform: translateY(-2px);
}

.hero-section--premium .hero-cta--secondary {
    padding: 0.9rem 1.35rem;
    color: #3d5a73;
    background: transparent;
    border: 1px solid rgba(0, 94, 178, 0.18);
    box-shadow: none;
}

.hero-section--premium .hero-cta--secondary:hover {
    color: #005eb2;
    background: rgba(0, 94, 178, 0.04);
    border-color: rgba(0, 94, 178, 0.28);
    box-shadow: none;
    transform: none;
}

.hero-section--premium .hero-pill {
    padding: 0.4rem 0.85rem;
    background: rgba(248, 250, 252, 0.9);
    border-color: rgba(0, 94, 178, 0.08);
    box-shadow: none;
}

@media (min-width: 1024px) {
    .hero-section--premium .hero-section__grid {
        gap: 2rem;
        padding-top: 3rem;
        padding-bottom: 3.25rem;
    }

    .hero-section--premium .hero-copy {
        max-width: 31rem;
    }
}

@media (min-width: 1280px) {
    .hero-section--premium .hero-section__grid {
        gap: 1.75rem;
    }
}

/* Homepage: comfortable min-height on small screens */
.page-home .hero-section--premium {
    min-height: 70vh;
}

/* Homepage fold: navbar + hero + stats + countries in one viewport */
@media (min-width: 1024px) {
    body.site-page:has(.page-home) {
        --header-gap: clamp(2.5rem, 4vh, 3.25rem);
        --home-trust-fold: clamp(11.5rem, 22vh, 13.5rem);
    }

    .page-home .hero-section--premium {
        align-items: center;
        min-height: calc(100svh - var(--header-h) - var(--header-gap) - var(--home-trust-fold));
        padding-top: 0;
        padding-bottom: clamp(0.5rem, 1.25vh, 1rem);
        overflow-x: clip;
        overflow-y: visible;
        border-bottom: none;
        position: relative;
        z-index: 1;
    }

    .page-home .hero-section--premium .hero-section__grid {
        align-items: center;
        gap: 1rem 1.5rem;
        padding-top: clamp(0.65rem, 1.5vh, 1.15rem);
        padding-bottom: clamp(0.75rem, 1.75vh, 1.25rem);
        min-height: 0;
    }

    .page-home .hero-hub--premium {
        align-self: center;
        flex-shrink: 0;
        overflow: visible;
    }

    .page-home .hero-hub--premium.hero-hub--wide {
        margin-top: 0;
        justify-content: center;
    }

    .page-home .hero-section--premium .hero-title {
        margin-bottom: 0.75rem;
    }

    .page-home .hero-section--premium .hero-subtitle--lead {
        margin-bottom: 0.5rem;
    }

    .page-home .hero-section--premium .hero-subtitle--support {
        margin-bottom: 0.85rem;
    }

    .page-home .hero-section--premium .hero-cta-row {
        margin-bottom: 0.75rem;
    }

    .page-home .hero-value-list {
        gap: 0.4rem;
    }

    .page-home .hero-value-list li {
        font-size: 0.78125rem;
    }

    .page-home .trust-band.trust-band--dark.page-section {
        padding-top: clamp(1rem, 2vh, 1.5rem);
        padding-bottom: clamp(1.15rem, 2.5vh, 1.75rem);
        margin-top: 0;
        position: relative;
        z-index: 5;
        isolation: isolate;
    }

    .page-home .trust-band--dark .trust-band__stats {
        gap: 0.85rem;
        margin-bottom: clamp(0.85rem, 1.75vh, 1.15rem);
    }

    .page-home .trust-band--dark .trust-band__presence {
        padding-top: 0.15rem;
        padding-bottom: clamp(0.35rem, 1vh, 0.65rem);
    }

    .page-home .trust-band--dark .trust-band__markets--static {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) and (max-height: 860px) {
    body.site-page:has(.page-home) {
        --header-gap: clamp(2rem, 3.5vh, 2.75rem);
        --home-trust-fold: clamp(11rem, 22vh, 13rem);
    }

    .page-home .hero-section--premium .hero-section__grid {
        gap: 0.85rem;
        padding-top: 0.65rem;
        padding-bottom: 0.35rem;
    }

    .page-home .hero-hub--premium.hero-hub--wide {
        margin-top: 0.35rem;
    }

    .page-home .trust-band.trust-band--dark.page-section {
        padding-top: 1rem;
        padding-bottom: 1.25rem;
    }
}

/* Hub scale + balance */
.hero-hub--premium {
    --hero-hub-scale: 1.09;
}

@media (min-width: 1024px) {
    .page-home .hero-hub--premium {
        --hero-hub-scale: 1;
    }
}

@media (min-width: 1280px) {
    .page-home .hero-hub--premium {
        --hero-hub-scale: 1.04;
    }
}

@media (min-width: 1536px) {
    .page-home .hero-hub--premium {
        --hero-hub-scale: 1.06;
    }
}

@media (min-width: 1024px) {
    .hero-hub--premium.hero-hub--wide {
        padding-left: 0;
        justify-content: center;
    }

    .hero-hub--premium .hero-hub__stage {
        display: flex;
        justify-content: center;
        padding-top: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .page-home .hero-hub--premium .hero-hub__stage {
        padding-top: 0;
        margin-bottom: 0;
        padding-bottom: 0.25rem;
    }

    .page-home .hero-hub--premium .hero-hub__caption {
        margin-top: 0;
        font-size: 0.6875rem;
        line-height: 1.35;
    }

    .hero-hub--premium.hero-hub--wide .hero-hub__orbit--nodes {
        max-width: 28.5rem;
        width: min(100%, 28.5rem);
        transform: scale(var(--hero-hub-scale));
        transform-origin: center center;
        /* Scaled transform does not expand layout — reserve overflow space (Chrome) */
        margin-bottom: calc(1rem + (var(--hero-hub-scale) - 1) * 3.5rem);
    }

    .page-home .hero-hub--premium.hero-hub--wide .hero-hub__orbit--nodes {
        max-width: min(100%, 33rem);
        width: min(100%, 33rem);
    }

    .hero-hub--premium.hero-hub--wide .hero-hub__orbit--nodes .hero-hub__core {
        width: 62%;
        max-width: 17.5rem;
    }
}

@media (min-width: 1280px) {
    .hero-hub--premium.hero-hub--wide .hero-hub__orbit--nodes {
        max-width: 30.5rem;
        width: min(100%, 30.5rem);
    }

    .hero-hub--premium.hero-hub--wide .hero-hub__orbit--nodes .hero-hub__core {
        max-width: 18.5rem;
    }

    .page-home .hero-hub--premium.hero-hub--wide .hero-hub__orbit--nodes {
        max-width: min(100%, 35rem);
        width: min(100%, 35rem);
    }
}

@media (min-width: 1536px) {
    .page-home .hero-hub--premium.hero-hub--wide .hero-hub__orbit--nodes {
        max-width: min(100%, 36.5rem);
        width: min(100%, 36.5rem);
    }
}

/* Orbit ring + connectors */
.hero-hub--premium .hero-hub__orbit-map::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 68%;
    height: 68%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 94, 178, 0.09);
    border-radius: 50%;
    pointer-events: none;
}

.hero-hub--premium .hero-hub__orbit-map::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 88%;
    height: 88%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(0, 94, 178, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.hero-hub__connectors {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.hero-hub__connector {
    stroke: rgba(0, 94, 178, 0.1);
    stroke-width: 1;
    stroke-linecap: round;
    transition: stroke 0.25s ease, stroke-width 0.25s ease;
}

.hero-hub__stage.is-hover-recruitment .hero-hub__connector[data-service="recruitment"],
.hero-hub__stage.is-hover-staffing .hero-hub__connector[data-service="staffing"],
.hero-hub__stage.is-hover-advisory .hero-hub__connector[data-service="advisory"],
.hero-hub__stage.is-hover-bgv .hero-hub__connector[data-service="bgv"],
.hero-hub__stage.is-hover-exec .hero-hub__connector[data-service="exec"],
.hero-hub__stage.is-hover-payroll .hero-hub__connector[data-service="payroll"] {
    stroke: rgba(0, 94, 178, 0.32);
    stroke-width: 1.5;
}

/* Center image — premium framing */
.hero-hub--premium .hero-hub__frame--team {
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 16px 40px rgba(15, 35, 62, 0.1),
        0 4px 12px rgba(0, 94, 178, 0.06);
}

.hero-hub--premium .hero-hub__orbit--nodes .hero-hub__frame {
    box-shadow:
        0 16px 40px rgba(15, 35, 62, 0.1),
        0 4px 12px rgba(0, 94, 178, 0.06);
}

.hero-hub--premium .hero-hub__orbit--nodes .hero-hub__core .hero-hub__screen--photo {
    aspect-ratio: auto;
    width: 100%;
    height: 15.75rem;
    max-height: 15.75rem;
    min-height: 0;
    border-radius: 1.35rem 1.35rem 0 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .page-home .hero-hub--premium .hero-hub__orbit--nodes .hero-hub__core .hero-hub__screen--photo {
        height: 15.5rem;
        max-height: 15.5rem;
    }

    .page-home .hero-hub--premium.hero-hub--wide .hero-hub__orbit--nodes .hero-hub__core {
        width: 63%;
        max-width: 19rem;
    }
}

@media (min-width: 1280px) {
    .hero-hub--premium .hero-hub__orbit--nodes .hero-hub__core .hero-hub__screen--photo {
        height: 16.75rem;
        max-height: 16.75rem;
    }

    .page-home .hero-hub--premium .hero-hub__orbit--nodes .hero-hub__core .hero-hub__screen--photo {
        height: 16.5rem;
        max-height: 16.5rem;
    }

    .page-home .hero-hub--premium.hero-hub--wide .hero-hub__orbit--nodes .hero-hub__core {
        max-width: 20.5rem;
    }
}

@media (min-width: 1536px) {
    .page-home .hero-hub--premium .hero-hub__orbit--nodes .hero-hub__core .hero-hub__screen--photo {
        height: 17.25rem;
        max-height: 17.25rem;
    }

    .page-home .hero-hub--premium.hero-hub--wide .hero-hub__orbit--nodes .hero-hub__core {
        max-width: 21.5rem;
    }
}

.hero-hub--premium .hero-hub__frame--team .hero-hub__screen--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
}

/* Service chips — calmer, flatter */
.hero-hub--premium .hero-hub__chip {
    padding: 0.5rem 0.7rem 0.5rem 0.5rem;
    gap: 0.5rem;
    border-radius: 0.65rem;
    border-color: rgba(0, 94, 178, 0.08);
    box-shadow: 0 2px 8px rgba(15, 35, 62, 0.04);
    max-width: 10.5rem;
}

.hero-hub--premium .hero-hub__chip:hover {
    box-shadow: 0 4px 14px rgba(15, 35, 62, 0.08);
    border-color: rgba(0, 94, 178, 0.2);
}

.hero-hub--premium .hero-hub__chip-text strong {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.hero-hub--premium .hero-hub__chip-text em {
    display: none;
}

.hero-hub--premium .hero-hub__chip-icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
}

/* Premium hub — side chips kiss core edge; top/bottom stay clear */
.hero-hub--premium .hero-hub__orbit-map {
    --hub-core-x: 50%;
    --hub-core-w: 62%;
    --hub-core-left: calc(var(--hub-core-x) - var(--hub-core-w) / 2);
    --hub-core-right: calc(var(--hub-core-x) + var(--hub-core-w) / 2);
    --hub-core-top: 18%;
    --hub-core-bottom: 82%;
    --hub-chip-gap: 0.35rem;
    --hub-vertical-gap: 0.85rem;
    --hub-orbit-pad-top: 0;
}

.page-home .hero-hub--premium .hero-hub__orbit-map {
    --hub-core-w: 63%;
    --hub-orbit-pad-top: 1.75rem;
    --hub-core-top: 24%;
    --hub-core-bottom: 79%;
    --hub-chip-gap: 0.5rem;
    --hub-vertical-gap: 0.95rem;
}

/* Homepage hero hub — larger stage, ambient glow, refined service cards */
@media (min-width: 1024px) {
    .page-home .hero-hub--premium .hero-hub__stage {
        position: relative;
        padding-top: 0;
        margin-bottom: 0;
        min-height: 0;
    }

    .page-home .hero-hub--premium .hero-hub__stage::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 52%;
        z-index: 0;
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%);
        background:
            radial-gradient(ellipse 55% 50% at 50% 45%, rgba(0, 94, 178, 0.14) 0%, transparent 68%),
            radial-gradient(ellipse 40% 35% at 72% 62%, rgba(13, 148, 136, 0.1) 0%, transparent 70%),
            radial-gradient(ellipse 35% 30% at 28% 58%, rgba(59, 130, 246, 0.08) 0%, transparent 65%);
        pointer-events: none;
    }

    .page-home .hero-hub--premium .hero-hub__orbit--nodes {
        position: relative;
        z-index: 1;
    }

    .page-home .hero-hub--premium .hero-hub__orbit-map::before {
        width: 72%;
        height: 72%;
        border: 1px solid rgba(0, 94, 178, 0.14);
        box-shadow: 0 0 0 6px rgba(0, 94, 178, 0.04);
    }

    .page-home .hero-hub--premium .hero-hub__orbit-map::after {
        width: 92%;
        height: 92%;
        border-color: rgba(0, 94, 178, 0.1);
    }

    .page-home .hero-hub--premium .hero-hub__connector {
        stroke: rgba(0, 94, 178, 0.14);
        stroke-width: 1.15;
    }

    .page-home .hero-hub--premium .hero-hub__frame--team {
        border-radius: 1.65rem;
        border: 1px solid rgba(255, 255, 255, 0.95);
        box-shadow:
            0 24px 56px rgba(0, 31, 63, 0.14),
            0 8px 24px rgba(0, 94, 178, 0.1),
            0 0 0 1px rgba(0, 94, 178, 0.06);
    }

    .page-home .hero-hub--premium .hero-hub__orbit--nodes .hero-hub__core .hero-hub__screen--photo {
        border-radius: 1.65rem 1.65rem 0 0;
    }

    .page-home .hero-hub--premium .hero-hub__chip {
        padding: 0.55rem 0.8rem 0.55rem 0.55rem;
        gap: 0.5rem;
        max-width: 11.25rem;
        border-radius: 0.75rem;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px) saturate(1.15);
        -webkit-backdrop-filter: blur(10px) saturate(1.15);
        box-shadow:
            0 6px 22px rgba(0, 31, 63, 0.09),
            0 2px 6px rgba(0, 94, 178, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
        transition:
            transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.28s ease,
            border-color 0.28s ease;
    }

    .page-home .hero-hub--premium .hero-hub__chip-icon {
        width: 1.95rem;
        height: 1.95rem;
        border-radius: 0.55rem;
        box-shadow: 0 2px 8px rgba(0, 31, 63, 0.06);
    }

    .page-home .hero-hub--premium .hero-hub__chip-icon .material-symbols-outlined {
        font-size: 1.1rem;
    }

    .page-home .hero-hub--premium .hero-hub__chip-text strong {
        font-size: 0.71875rem;
        font-weight: 700;
        color: #001f3f;
        letter-spacing: 0.01em;
    }

    .page-home .hero-hub--premium .hero-hub__orbit--nodes .hero-hub__chip:hover {
        border-color: rgba(0, 94, 178, 0.22);
        box-shadow:
            0 12px 32px rgba(0, 31, 63, 0.12),
            0 4px 12px rgba(0, 94, 178, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 1);
    }

    .page-home .hero-copy {
        max-width: 30rem;
    }
}

@media (min-width: 1024px) and (max-height: 860px) {
    body.site-page:has(.page-home) {
        --home-trust-fold: clamp(10.5rem, 20vh, 12rem);
    }

    .page-home .hero-hub--premium {
        --hero-hub-scale: 0.94;
    }

    .page-home .hero-hub--premium.hero-hub--wide .hero-hub__orbit--nodes {
        max-width: min(100%, 29rem);
        width: min(100%, 29rem);
    }

    .page-home .hero-hub--premium .hero-hub__orbit--nodes .hero-hub__core .hero-hub__screen--photo {
        height: 13.75rem;
        max-height: 13.75rem;
    }
}

@media (prefers-reduced-motion: no-preference) {
  @media (min-width: 1024px) {
    .page-home .hero-hub--premium .hero-hub__orbit--nodes .hero-hub__chip {
      animation: heroHubChipFloat 5s ease-in-out infinite;
    }
    .page-home .hero-hub--premium .hero-hub__chip--recruitment { animation-delay: 0s; }
    .page-home .hero-hub--premium .hero-hub__chip--staffing { animation-delay: 0.4s; }
    .page-home .hero-hub--premium .hero-hub__chip--advisory { animation-delay: 0.8s; }
    .page-home .hero-hub--premium .hero-hub__chip--bgv { animation-delay: 1.2s; }
    .page-home .hero-hub--premium .hero-hub__chip--exec { animation-delay: 1.6s; }
    .page-home .hero-hub--premium .hero-hub__chip--payroll { animation-delay: 2s; }
  }
}

@keyframes heroHubChipFloat {
    0%, 100% { filter: drop-shadow(0 4px 12px rgba(0, 31, 63, 0.06)); }
    50% { filter: drop-shadow(0 8px 18px rgba(0, 94, 178, 0.12)); }
}

.hero-hub--premium .hero-hub__orbit-map {
    padding-top: var(--hub-orbit-pad-top);
}

.hero-hub--premium .hero-hub__orbit--nodes .hero-hub__chip--recruitment {
    left: var(--hub-core-x);
    top: var(--hub-core-top);
    transform: translate(-50%, calc(-100% - var(--hub-vertical-gap) - var(--hub-orbit-pad-top, 0px)));
}

.hero-hub--premium .hero-hub__orbit--nodes .hero-hub__chip--bgv {
    left: var(--hub-core-x);
    top: var(--hub-core-bottom);
    transform: translate(-50%, var(--hub-vertical-gap));
}

.hero-hub--premium .hero-hub__orbit--nodes .hero-hub__chip--exec {
    left: var(--hub-core-left);
    top: 32%;
    transform: translate(calc(-100% - var(--hub-chip-gap)), -50%);
}

.hero-hub--premium .hero-hub__orbit--nodes .hero-hub__chip--payroll {
    left: var(--hub-core-left);
    top: 68%;
    transform: translate(calc(-100% - var(--hub-chip-gap)), -50%);
}

.hero-hub--premium .hero-hub__orbit--nodes .hero-hub__chip--staffing {
    left: var(--hub-core-right);
    top: 32%;
    transform: translate(var(--hub-chip-gap), -50%);
}

.hero-hub--premium .hero-hub__orbit--nodes .hero-hub__chip--advisory {
    left: var(--hub-core-right);
    top: 68%;
    transform: translate(var(--hub-chip-gap), -50%);
}

.hero-hub--premium .hero-hub__orbit--nodes .hero-hub__chip--recruitment:hover {
    transform: translate(-50%, calc(-100% - var(--hub-vertical-gap) - var(--hub-orbit-pad-top, 0px)));
}

.hero-hub--premium .hero-hub__orbit--nodes .hero-hub__chip--bgv:hover {
    transform: translate(-50%, var(--hub-vertical-gap));
}

.hero-hub--premium .hero-hub__orbit--nodes .hero-hub__chip--exec:hover,
.hero-hub--premium .hero-hub__orbit--nodes .hero-hub__chip--payroll:hover {
    transform: translate(calc(-100% - var(--hub-chip-gap)), -50%);
}

.hero-hub--premium .hero-hub__orbit--nodes .hero-hub__chip--staffing:hover,
.hero-hub--premium .hero-hub__orbit--nodes .hero-hub__chip--advisory:hover {
    transform: translate(var(--hub-chip-gap), -50%);
}

.hero-hub--premium .hero-hub__chip--staffing,
.hero-hub--premium .hero-hub__chip--exec,
.hero-hub--premium .hero-hub__chip--payroll,
.hero-hub--premium .hero-hub__chip--bgv {
    max-width: 11rem;
}

.hero-hub--premium .hero-hub__caption {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #7a8fa3;
}

@media (prefers-reduced-motion: reduce) {
    .hero-hub--premium.hero-hub--wide .hero-hub__orbit--nodes {
        transform: none;
    }
}

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

/* --- Trust band --- */
.trust-band {
    padding: 3.5rem 0 3.75rem;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 55%, #f1f5f9 100%);
    border-top: 1px solid rgba(0, 94, 178, 0.08);
    border-bottom: 1px solid rgba(0, 94, 178, 0.06);
    overflow: hidden;
}

.trust-band__eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #005eb2;
    margin-bottom: 0.5rem;
}

.trust-band__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.25;
    color: #001f3f;
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
}

.trust-band__title span {
    background: linear-gradient(90deg, #005eb2, #0d9488);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.trust-band__head {
    text-align: center;
    margin-bottom: 2rem;
}

.trust-band__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .trust-band__stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.trust-stat {
    position: relative;
    text-align: center;
    padding: 1.35rem 1rem 1.2rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(0, 94, 178, 0.1);
    box-shadow: 0 4px 20px rgba(0, 31, 63, 0.05);
    overflow: hidden;
}

.trust-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #001f3f, #005eb2, #0d9488);
    border-radius: 1rem 1rem 0 0;
}

.trust-stat__icon {
    display: block;
    margin: 0 auto 0.5rem;
    font-size: 1.35rem;
    color: #005eb2;
    opacity: 0.85;
}

.trust-stat strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 800;
    color: #001f3f;
    line-height: 1.1;
}

.trust-stat span {
    display: block;
    margin-top: 0.35rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(0, 31, 63, 0.55);
}

.trust-band__presence {
    text-align: center;
    padding: 1.5rem 1.25rem 1.35rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 94, 178, 0.1);
    border-radius: 1.15rem;
    box-shadow: 0 4px 24px rgba(0, 31, 63, 0.05);
}

.trust-band__presence-label {
    margin: 0 0 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #005eb2;
}

.trust-band__markets {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.65rem;
}

.trust-market {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #3d5a73;
    background: #fff;
    border: 1px solid rgba(0, 94, 178, 0.12);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 31, 63, 0.04);
}

.trust-market:not(:last-child)::after {
    content: none;
}

@media (min-width: 768px) {
    .trust-band__markets {
        gap: 0.55rem 0.75rem;
    }

    .trust-market {
        font-size: 0.875rem;
        padding: 0.55rem 1.15rem;
    }
}

.trust-band__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.65rem 1rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 7.5rem;
    padding: 0.65rem 1.1rem;
    background: #fff;
    border: 1px solid rgba(0, 31, 63, 0.08);
    border-radius: 0.75rem;
    box-shadow: 0 2px 12px rgba(0, 31, 63, 0.04);
}

.trust-logo span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(0, 31, 63, 0.45);
}

.trust-band__industries {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-band__built {
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #005eb2;
    display: none;
}

@media (min-width: 1024px) {
    .trust-band__built {
        display: block;
    }
}

.trust-band__marquee-wrap {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.trust-band__fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3rem;
    z-index: 2;
    pointer-events: none;
}

.trust-band__fade--left {
    left: 0;
    background: linear-gradient(90deg, #f8fafc, transparent);
}

.trust-band__fade--right {
    right: 0;
    background: linear-gradient(270deg, #f1f5f9, transparent);
}

.trust-band__marquee {
    display: flex;
    gap: 0.65rem;
    width: max-content;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid rgba(0, 94, 178, 0.12);
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(0, 31, 63, 0.75);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 31, 63, 0.04);
}

.trust-chip .material-symbols-outlined {
    font-size: 1.1rem;
    color: #005eb2;
}

/* --- Why teams switch --- */
.why-switch {
    padding: 4.5rem 0 5rem;
    background: #fff;
    border-bottom: 1px solid rgba(0, 94, 178, 0.08);
}

.why-switch__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-switch__grid {
        grid-template-columns: 5fr 7fr;
        gap: 3rem;
    }
}

.why-switch__visual {
    position: relative;
    order: 2;
}

@media (min-width: 1024px) {
    .why-switch__visual {
        order: 0;
    }
}

.why-switch__visual-bg {
    position: absolute;
    inset: -1rem -0.5rem;
    background: linear-gradient(135deg, rgba(0, 94, 178, 0.12), rgba(20, 184, 166, 0.1));
    border-radius: 2rem;
    filter: blur(28px);
    z-index: 0;
}

.why-switch__figure {
    position: relative;
    z-index: 1;
    margin: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(0, 94, 178, 0.12);
    box-shadow: 0 24px 56px rgba(0, 31, 63, 0.14);
}

.why-switch__figure img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 280px;
    object-fit: cover;
    object-position: center center;
}

@media (min-width: 768px) {
    .why-switch__figure img {
        min-height: 380px;
    }
}

.why-switch__float {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    max-width: 15.5rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    border: 1px solid rgba(0, 31, 63, 0.08);
    box-shadow: 0 12px 32px rgba(0, 31, 63, 0.1);
}

.why-switch__float .material-symbols-outlined {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-switch__float strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #001f3f;
}

.why-switch__float p {
    margin: 0.15rem 0 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    line-height: 1.35;
    color: rgba(0, 31, 63, 0.65);
}

.why-switch__float--warn {
    bottom: -0.75rem;
    right: 0.5rem;
}

.why-switch__float--warn .material-symbols-outlined {
    color: #e11d48;
}

.why-switch__float--win {
    top: 1.25rem;
    left: -0.5rem;
}

@media (min-width: 768px) {
    .why-switch__float--win {
        left: -1rem;
    }
}

.why-switch__float--win .material-symbols-outlined {
    color: #059669;
}

.why-switch__content {
    order: 1;
}

@media (min-width: 1024px) {
    .why-switch__content {
        order: 0;
        padding-left: 0.5rem;
    }
}

.why-switch__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.25rem;
    border-radius: 999px;
    background: rgba(225, 29, 72, 0.08);
    color: #be123c;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.why-switch__badge .material-symbols-outlined {
    font-size: 1.05rem;
}

.why-switch__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    color: #001f3f;
    margin-bottom: 1rem;
}

.why-switch__title span {
    color: #005eb2;
}

.why-switch__lead {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(0, 31, 63, 0.68);
    margin-bottom: 1.75rem;
    max-width: 38rem;
}

.why-switch__pains {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.why-pain {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.15rem;
    background: #f8fafc;
    border: 1px solid rgba(0, 94, 178, 0.1);
    border-radius: 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.why-pain:hover {
    border-color: rgba(0, 94, 178, 0.22);
    box-shadow: 0 8px 24px rgba(0, 94, 178, 0.08);
    transform: translateX(4px);
}

.why-pain__num {
    flex-shrink: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    color: #005eb2;
    background: rgba(0, 94, 178, 0.08);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.why-pain strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 0.2rem;
}

.why-pain p {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(0, 31, 63, 0.62);
}

.why-switch__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.why-switch__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.why-switch__cta--primary {
    padding: 0.75rem 1.35rem;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #001f3f, #005eb2);
    box-shadow: 0 6px 20px rgba(0, 94, 178, 0.35);
}

.why-switch__cta--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 94, 178, 0.42);
}

.why-switch__cta--primary .material-symbols-outlined {
    font-size: 1.125rem;
    transition: transform 0.2s ease;
}

.why-switch__cta--primary:hover .material-symbols-outlined {
    transform: translateY(3px);
}

.why-switch__cta--ghost {
    padding: 0.75rem 1.15rem;
    border-radius: 999px;
    color: #005eb2;
    border: 1.5px solid rgba(0, 94, 178, 0.25);
}

.why-switch__cta--ghost:hover {
    background: rgba(0, 94, 178, 0.06);
}

/* --- Platform superpowers --- */
.powers {
    padding: 5rem 0 4.5rem;
    background: linear-gradient(165deg, #f0f7ff 0%, #fff 42%, #f8fafc 100%);
    border-bottom: 1px solid rgba(0, 94, 178, 0.08);
}

.powers__eyebrow,
.services-suite__eyebrow {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #005eb2;
    margin-bottom: 0.6rem;
}

.powers__head {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .powers__head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 2rem;
    }
}

.powers__title,
.services-suite__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    color: #001f3f;
    margin-bottom: 0.75rem;
}

.powers__title span,
.services-suite__title span {
    background: linear-gradient(90deg, #005eb2, #0d9488, #005eb2);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 5s linear infinite;
}

.powers__subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(0, 31, 63, 0.65);
    max-width: 34rem;
}

.powers__head-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    flex-shrink: 0;
}

.powers__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.35rem;
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.powers__btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #001f3f, #005eb2);
    box-shadow: 0 6px 22px rgba(0, 94, 178, 0.35);
}

.powers__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 94, 178, 0.42);
}

.powers__btn--ghost {
    color: #005eb2;
    background: #fff;
    border: 1.5px solid rgba(0, 94, 178, 0.2);
}

.powers__btn--ghost:hover {
    background: rgba(0, 94, 178, 0.05);
}

.powers__bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .powers__bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .powers__bento {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: auto auto;
        gap: 1rem;
    }
}

.powers-feature {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #001f3f;
    border: 1px solid rgba(0, 94, 178, 0.2);
    box-shadow: 0 20px 50px rgba(0, 31, 63, 0.15);
}

@media (min-width: 1024px) {
    .powers-feature {
        grid-column: 1 / 6;
        grid-row: 1 / 3;
        min-height: 100%;
    }
}

.powers-feature__visual {
    position: relative;
    line-height: 0;
}

.powers-feature__visual img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (min-width: 1024px) {
    .powers-feature__visual img {
        min-height: 100%;
        height: 320px;
    }
}

.powers-feature__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 31, 63, 0.75) 100%);
    pointer-events: none;
}

.powers-feature__stats {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    z-index: 1;
}

.powers-mini-stat {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.65rem;
    font-family: 'DM Sans', sans-serif;
}

.powers-mini-stat strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.powers-mini-stat span {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.75);
}

.powers-mini-stat--ai {
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
}

.powers-mini-stat--ai .material-symbols-outlined {
    font-size: 1.1rem;
    color: #5eead4;
}

.power-tile {
    padding: 1.35rem 1.25rem;
    border-radius: 1.25rem;
    background: #fff;
    border: 1px solid rgba(0, 94, 178, 0.1);
    box-shadow: 0 4px 20px rgba(0, 31, 63, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.power-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 94, 178, 0.12);
    border-color: rgba(0, 94, 178, 0.22);
}

@media (min-width: 1024px) {
    .power-tile:nth-child(2) { grid-column: 6 / 9; }
    .power-tile:nth-child(3) { grid-column: 9 / 13; }
    .power-tile:nth-child(4) { grid-column: 6 / 9; }
    .power-tile:nth-child(5) { grid-column: 9 / 13; }
}

.power-tile__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.power-tile__icon .material-symbols-outlined {
    font-size: 1.35rem;
}

.power-tile--blue .power-tile__icon { background: rgba(59, 130, 246, 0.12); color: #2563eb; }
.power-tile--teal .power-tile__icon { background: rgba(20, 184, 166, 0.12); color: #0d9488; }
.power-tile--indigo .power-tile__icon { background: rgba(99, 102, 241, 0.12); color: #4f46e5; }
.power-tile--amber .power-tile__icon { background: rgba(245, 158, 11, 0.12); color: #d97706; }

.power-tile__metric {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #005eb2;
    margin-bottom: 0.35rem;
}

.power-tile__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 0.4rem;
}

.power-tile__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(0, 31, 63, 0.62);
    margin: 0;
}

.powers__flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(0, 94, 178, 0.1);
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px rgba(0, 31, 63, 0.05);
}

@media (min-width: 768px) {
    .powers__flow {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

.powers__flow-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0, 31, 63, 0.5);
    white-space: nowrap;
}

.powers__flow-steps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.powers__flow-steps li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    background: rgba(0, 94, 178, 0.06);
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #001f3f;
}

.powers__flow-steps .material-symbols-outlined {
    font-size: 1.05rem;
    color: #005eb2;
}

.powers__flow-arrow {
    background: none !important;
    padding: 0 !important;
    color: rgba(0, 94, 178, 0.35);
    font-weight: 700;
}

/* --- Full services suite --- */
.services-suite {
    padding: 3.5rem 0 4rem;
    background: #fff;
    border-bottom: 1px solid rgba(0, 94, 178, 0.08);
}

.services-suite__head {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .services-suite__head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.services-suite__lead {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(0, 31, 63, 0.65);
    max-width: 32rem;
}

.services-suite__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #005eb2;
    text-decoration: none;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    border: 1.5px solid rgba(0, 94, 178, 0.2);
    background: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
}

.services-suite__link:hover {
    background: rgba(0, 94, 178, 0.06);
    transform: translateX(2px);
}

.services-suite__link .material-symbols-outlined {
    font-size: 1.125rem;
    transition: transform 0.2s ease;
}

.services-suite__link:hover .material-symbols-outlined {
    transform: translateX(3px);
}

.services-suite__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

@media (min-width: 1024px) {
    .services-suite__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(0, 31, 63, 0.08);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 31, 63, 0.04);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(0, 94, 178, 0.14);
    border-color: rgba(0, 94, 178, 0.2);
}

.service-card--featured {
    border-color: rgba(0, 94, 178, 0.22);
    box-shadow: 0 8px 28px rgba(0, 94, 178, 0.1);
}

@media (min-width: 1024px) {
    .service-card--featured {
        grid-column: span 2;
        flex-direction: row;
    }
    .service-card--featured .service-card__top {
        width: 38%;
        min-height: 100%;
    }
    .service-card--featured .service-card__body {
        flex: 1;
        padding: 1.75rem 1.5rem 1.75rem 0.5rem;
    }
}

.service-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 2.5rem;
    min-height: 5.5rem;
}

.service-card__top--blue { background: linear-gradient(135deg, #dbeafe, #eff6ff); }
.service-card__top--emerald { background: linear-gradient(135deg, #d1fae5, #ecfdf5); }
.service-card__top--purple { background: linear-gradient(135deg, #ede9fe, #f5f3ff); }
.service-card__top--amber { background: linear-gradient(135deg, #fef3c7, #fffbeb); }
.service-card__top--indigo { background: linear-gradient(135deg, #e0e7ff, #eef2ff); }
.service-card__top--teal { background: linear-gradient(135deg, #ccfbf1, #f0fdfa); }

.service-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 31, 63, 0.08);
}

.service-card__top--blue .service-card__icon { color: #2563eb; }
.service-card__top--emerald .service-card__icon { color: #059669; }
.service-card__top--purple .service-card__icon { color: #7c3aed; }
.service-card__top--amber .service-card__icon { color: #d97706; }
.service-card__top--indigo .service-card__icon { color: #4f46e5; }
.service-card__top--teal .service-card__icon { color: #0d9488; }

.service-card__icon .material-symbols-outlined {
    font-size: 1.65rem;
}

.service-card__badge {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    background: #005eb2;
    color: #fff;
}

.service-card__body {
    padding: 0 1.25rem 1.35rem;
    flex: 1;
}

.service-card__body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 0.45rem;
}

.service-card__body p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(0, 31, 63, 0.62);
    margin-bottom: 0.75rem;
}

.service-card__stat {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #005eb2;
    background: rgba(0, 94, 178, 0.08);
    padding: 0.25rem 0.55rem;
    border-radius: 0.35rem;
}

.service-card__arrow {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    font-size: 1.25rem;
    color: rgba(0, 94, 178, 0.35);
    transition: transform 0.25s ease, color 0.25s ease;
}

.service-card:hover .service-card__arrow {
    transform: translate(3px, -3px);
    color: #005eb2;
}

.services-suite__banner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 2rem 1.75rem;
    border-radius: 1.5rem;
    background: linear-gradient(125deg, #001f3f 0%, #005eb2 55%, #0d9488 100%);
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 94, 178, 0.25);
}

@media (min-width: 768px) {
    .services-suite__banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 2.25rem 2.5rem;
    }
}

.services-suite__banner-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    margin-bottom: 0.65rem;
}

.services-suite__banner-copy h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.services-suite__banner-copy p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    max-width: 28rem;
    margin: 0;
}

.services-suite__banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    flex-shrink: 0;
}

.services-suite__banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.35rem;
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.services-suite__banner-btn--primary {
    background: #fff;
    color: #001f3f;
}

.services-suite__banner-btn--primary:hover {
    transform: translateY(-2px);
    background: #f0f9ff;
}

.services-suite__banner-btn--ghost {
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.services-suite__banner-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Bento Box Standard Card */
.bento-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Map Node Pulsing */
.map-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--color-secondary); /* Will use tailwind classes */
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.map-node::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background-color: inherit;
    opacity: 0.4;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Timeline specific styles */
.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(0,94,178,0.3) 10%, rgba(0,94,178,0.3) 90%, transparent);
}

@media (min-width: 768px) {
    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* 3D Floating Elements */
.float-3d-slow {
    animation: float3d 8s ease-in-out infinite;
}
.float-3d-fast {
    animation: float3d 5s ease-in-out infinite reverse;
}

@keyframes float3d {
    0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
    33% { transform: translateY(-15px) rotateX(5deg) rotateY(-5deg); }
    66% { transform: translateY(10px) rotateX(-5deg) rotateY(5deg); }
}

/* Video Pulse Play Button */
.video-pulse {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: videoPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes videoPulse {
    to {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }
}

/* Vanilla JS Tilt Card Perspactive */
.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.tilt-inner {
    transform: translateZ(40px);
}


/* Animated Gradient Text */
.animate-gradient-text {
    background-size: 200% auto;
    animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Custom Floating Animations for Mosaic Grid */
.float-3d-1 {
    animation: float3d-1 7s ease-in-out infinite;
}
.float-3d-2 {
    animation: float3d-2 9s ease-in-out infinite;
}
.float-3d-3 {
    animation: float3d-3 8s ease-in-out infinite;
}
.float-3d-4 {
    animation: float3d-4 10s ease-in-out infinite;
}
.float-3d-5 {
    animation: float3d-5 6s ease-in-out infinite;
}
.float-3d-6 {
    animation: float3d-6 11s ease-in-out infinite;
}

@keyframes float3d-1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}
@keyframes float3d-2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(12px) rotate(-1.5deg); }
}
@keyframes float3d-3 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-14px) translateX(5px); }
}
@keyframes float3d-4 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(8px) translateX(-6px); }
}
@keyframes float3d-5 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(-1deg); }
}
@keyframes float3d-6 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(10px) rotate(1.5deg); }
}

/* Homepage showcase cards */
.benefit-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}
.showcase-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.showcase-card:hover img {
    transform: scale(1.05);
}
.industry-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.faq-details summary {
    list-style: none;
    cursor: pointer;
}
.faq-details summary::-webkit-details-marker {
    display: none;
}
/* =============================================================================
   Site-wide typography & page layout (use on all pages via body.site-page)
   ============================================================================= */
body.site-page {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.625;
    color: rgba(0, 31, 63, 0.82);
    -webkit-font-smoothing: antialiased;
    /* Unified scale — matches homepage .hero-title / .hero-subtitle */
    --type-display: clamp(1.65rem, 4.2vw, 2.35rem);
    --type-h2: clamp(1.35rem, 2.5vw, 1.75rem);
    --type-h3: clamp(1.0625rem, 1.8vw, 1.2rem);
    --type-lead: clamp(0.9375rem, 1.6vw, 1.0625rem);
    --type-stat: clamp(1.5rem, 2.8vw, 2rem);
}

/* Semantic type scale (sitewide) */
.type-display {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--type-display);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: #0a1f33;
}

.type-h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--type-h2);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #001f3f;
}

.type-h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--type-h3);
    font-weight: 700;
    line-height: 1.3;
    color: #001f3f;
}

.type-h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.35;
    color: #001f3f;
}

.type-eyebrow {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #005eb2;
}

.type-lead {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--type-lead);
    line-height: 1.75;
    color: #5c6f82;
}

.type-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.625;
    color: rgba(0, 31, 63, 0.72);
}

.type-body-sm {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(0, 31, 63, 0.62);
}

.type-caption {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: rgba(0, 31, 63, 0.55);
}

.type-gradient {
    background: linear-gradient(90deg, #005eb2, #0d9488, #005eb2);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 5s linear infinite;
}

/* Sitewide heading hierarchy — same as homepage hero */
body.site-page h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--type-display);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

body.site-page h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--type-h2);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #001f3f;
}

body.site-page h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--type-h3);
    font-weight: 700;
    line-height: 1.3;
    color: #001f3f;
}

body.site-page h2.font-display-lg,
body.site-page h2.text-display-lg {
    font-size: var(--type-h2) !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
}

body.site-page .section-head .type-h2,
body.site-page .section-head h2 {
    margin-bottom: 0.75rem;
}

/* Bridge legacy Tailwind font utilities */
body.site-page .font-display-lg,
body.site-page .text-display-lg,
body.site-page .text-display-lg-mobile {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: var(--type-display) !important;
    font-weight: 800 !important;
    line-height: 1.18 !important;
    letter-spacing: -0.03em !important;
}

body.site-page .font-headline-lg {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: var(--type-h2) !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.02em !important;
    color: #001f3f;
}

body.site-page .font-headline-md,
body.site-page .font-display-md {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: var(--type-h3) !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

body.site-page .font-headline-sm {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
}

body.site-page .font-body-lg,
body.site-page p.text-lg {
    font-size: var(--type-lead) !important;
    line-height: 1.75 !important;
}

/* Stat / metric numbers — not page titles */
body.site-page div.font-display-lg,
body.site-page div.text-display-lg {
    font-size: var(--type-stat) !important;
    line-height: 1.15 !important;
}

@media (min-width: 768px) {
    body.site-page .md\:text-\[5rem\] {
        font-size: var(--type-display) !important;
        line-height: 1.18 !important;
    }
}

body.site-page .font-body-md,
body.site-page .font-body-sm {
    line-height: 1.625 !important;
}

body.site-page .font-label-md,
body.site-page .font-label-sm {
    font-family: 'DM Sans', sans-serif !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

/* Page layout */
.page-wrap {
    overflow: visible;
    max-width: 100%;
}

/* Sitewide: light page bg; dark only shows in main top padding under fixed nav */
body.site-page {
    background-color: #f8fafc;
}

/* About page — enterprise workforce consulting (see .abt-* at end of file) */
body.about-page {
    background: #f8fafc;
}

body.about-page .page-wrap {
    background: #f8fafc;
}

/* Hero images visible before scroll reveal runs */
.page-hero .img-reveal img {
    opacity: 1;
    transform: none;
}

.page-section {
    padding: 4.5rem 0;
}

.page-home .page-section {
    padding: clamp(4.5rem, 7vw, 6.25rem) 0;
}

.page-home .page-section:first-of-type {
    padding-top: 0;
}

@media (min-width: 1024px) {
    .page-home .trust-band--dark .trust-band__stats {
        gap: 0.75rem;
    }

    .page-home .trust-band--dark .trust-stat {
        padding: 0.8rem 0.65rem 0.72rem;
        border-radius: 0.75rem;
    }

    .page-home .trust-band--dark .trust-stat::before {
        height: 2px;
        background: linear-gradient(90deg, #001f3f, #005eb2);
    }

    .page-home .trust-band--dark .trust-stat__icon {
        margin-bottom: 0.3rem;
        font-size: 1.05rem;
        color: #005eb2;
    }

    .page-home .trust-band--dark .trust-stat strong {
        font-size: clamp(1.2rem, 1.8vw, 1.45rem);
        font-weight: 700;
        color: #001f3f;
    }

    .page-home .trust-band--dark .trust-stat span {
        margin-top: 0.2rem;
        font-size: 0.6rem;
        letter-spacing: 0.05em;
        color: #5c6f82;
    }

    .page-home .trust-band--dark .trust-band__markets,
    .page-home .trust-band--dark .trust-band__markets--static {
        gap: 0.45rem;
    }

    .page-home .trust-band--dark .trust-market {
        padding: 0.35rem 0.7rem;
        font-size: 0.6875rem;
        border-radius: 999px;
        color: #3d5a73;
        background: #fff;
        border-color: rgba(0, 94, 178, 0.12);
    }
}

.page-section--alt {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.page-section--surface {
    background: #fff;
}

.page-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .page-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .page-container {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.section-head {
    text-align: center;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.section-head--left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.section-head .type-eyebrow {
    margin-bottom: 0.5rem;
}

.section-head .type-h2 {
    margin-bottom: 0.75rem;
}

/* Page hero */
.page-hero {
    position: relative;
    padding: 4rem 0 4.5rem;
    overflow: hidden;
    background: linear-gradient(165deg, #eef4fc 0%, #fff 45%, #f1f5f9 100%);
    border-bottom: 1px solid rgba(0, 94, 178, 0.08);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 10% 40%, rgba(0, 94, 178, 0.08), transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 70%, rgba(20, 184, 166, 0.06), transparent 50%);
}

.page-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .page-hero {
        padding: 5rem 0 5.5rem;
    }
    .page-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.25rem;
    border-radius: 999px;
    background: rgba(0, 94, 178, 0.08);
    border: 1px solid rgba(0, 94, 178, 0.12);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #005eb2;
}

.page-hero__badge-dot {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #14b8a6;
    animation: heroHubPulseDot 2s ease infinite;
}

.page-hero__title {
    margin-bottom: 1rem;
}

.page-hero__title .type-gradient {
    display: inline;
}

.page-hero__lead {
    margin-bottom: 1.75rem;
    max-width: 34rem;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.page-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #001f3f, #005eb2);
    box-shadow: 0 6px 22px rgba(0, 94, 178, 0.35);
}

.page-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 94, 178, 0.42);
}

.page-btn--ghost {
    color: #005eb2;
    background: #fff;
    border: 1.5px solid rgba(0, 94, 178, 0.22);
}

.page-btn--ghost:hover {
    background: rgba(0, 94, 178, 0.05);
}

.page-hero__visual {
    position: relative;
}

.page-hero__frame {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(0, 94, 178, 0.12);
    box-shadow: 0 24px 56px rgba(0, 31, 63, 0.14);
}

.page-hero__frame img {
    display: block;
    width: 100%;
    min-height: 280px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .page-hero__frame img {
        min-height: 380px;
    }
}

.page-hero__float {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    border: 1px solid rgba(0, 31, 63, 0.08);
    box-shadow: 0 12px 32px rgba(0, 31, 63, 0.1);
}

.page-hero__float strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    color: #001f3f;
}

.page-hero__float span {
    font-size: 0.6875rem;
    color: rgba(0, 31, 63, 0.55);
}

/* About page — company-style hero */
.page-hero--about {
    background: linear-gradient(165deg, #f4f8fc 0%, #fff 50%, #eef6ff 100%);
}

.about-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
}

.about-hero__facts li {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.about-hero__facts strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #005eb2;
    line-height: 1.1;
}

.about-hero__facts span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(0, 31, 63, 0.5);
}

/* About hero — Dribbble / editorial floating image (no heavy gradient frame) */
.about-hero__visual {
    position: relative;
    width: 100%;
    padding: 0.5rem 0 1.5rem;
}

.about-hero__frame {
    position: relative;
    isolation: isolate;
    transform: rotate(-0.6deg);
    transition: transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.about-hero__visual:hover .about-hero__frame {
    transform: rotate(0deg);
}

.about-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.about-hero__blob--a {
    width: 55%;
    height: 45%;
    top: -8%;
    right: -5%;
    background: rgba(0, 94, 178, 0.18);
}

.about-hero__blob--b {
    width: 50%;
    height: 42%;
    bottom: -6%;
    left: -8%;
    background: rgba(45, 212, 191, 0.16);
}

.about-hero__frame-plate {
    position: absolute;
    z-index: 1;
    inset: 1.25rem -0.75rem -1.25rem 0.75rem;
    border-radius: 1.75rem 2rem 1.25rem 2.25rem;
    background: linear-gradient(160deg, #dbeafe 0%, #e0f2fe 45%, #ccfbf1 100%);
    box-shadow: 0 24px 48px rgba(0, 94, 178, 0.12);
    transform: rotate(2.5deg);
}

.about-hero__photo {
    position: relative;
    z-index: 2;
    border-radius: 1.5rem 1.75rem 0.75rem 1.65rem;
    overflow: hidden;
    background: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.9) inset,
        0 32px 64px -12px rgba(15, 23, 42, 0.22),
        0 12px 28px -8px rgba(0, 94, 178, 0.18);
}

.about-hero__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.12) 0%,
        transparent 42%,
        transparent 68%,
        rgba(0, 31, 63, 0.06) 100%
    );
    pointer-events: none;
}

.about-hero__photo img {
    display: block;
    width: 100%;
    min-height: 320px;
    object-fit: cover;
    object-position: center 22%;
    transform: scale(1.02);
    transition: transform 0.6s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.about-hero__visual:hover .about-hero__photo img {
    transform: scale(1.04);
}

@media (min-width: 768px) {
    .about-hero__photo img {
        min-height: 440px;
    }

    .about-hero__frame-plate {
        inset: 1.5rem -1rem -1.5rem 1rem;
    }
}

@media (min-width: 1024px) {
    .about-hero__photo {
        border-radius: 1.75rem 2rem 0.85rem 1.85rem;
    }

    .about-hero__photo img {
        min-height: 520px;
    }

    .about-hero__frame-plate {
        border-radius: 2rem 2.25rem 1.35rem 2.5rem;
    }
}

.about-hero__card {
    position: absolute;
    z-index: 6;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 1rem;
    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.1),
        0 4px 12px rgba(0, 94, 178, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-hero__visual:hover .about-hero__card {
    box-shadow:
        0 24px 48px rgba(15, 23, 42, 0.12),
        0 8px 20px rgba(0, 94, 178, 0.08);
}

.about-hero__card--mission {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    left: 0.25rem;
    bottom: 1.5rem;
    max-width: 16.5rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
}

@media (min-width: 1024px) {
    .about-hero__card--mission {
        left: -1rem;
        bottom: 2rem;
        max-width: 17.5rem;
        padding: 1.05rem 1.15rem;
    }
}

.about-hero__card--mission .material-symbols-outlined {
    color: #005eb2;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-hero__card--mission strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #001f3f;
}

.about-hero__card--mission p {
    margin: 0.2rem 0 0;
    font-size: 0.6875rem;
    line-height: 1.4;
    color: rgba(0, 31, 63, 0.6);
}

.about-hero__card--since {
    top: 0.75rem;
    right: 0.35rem;
    padding: 0.75rem 1.1rem;
    text-align: center;
    border-radius: 0.85rem;
    min-width: 9.5rem;
}

@media (min-width: 1024px) {
    .about-hero__card--since {
        top: 1rem;
        right: -0.85rem;
        padding: 0.8rem 1.15rem;
    }
}

.about-hero__card--since strong {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 31, 63, 0.45);
}

.about-hero__card--since span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #005eb2;
}

.about-pillars {
    padding: 0 0 2rem;
    margin-top: 0;
    position: relative;
    z-index: 2;
    background: #fff;
}

.about-pillars__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .about-pillars__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.about-pillar {
    padding: 1.5rem 1.35rem;
    background: #fff;
    border: 1px solid rgba(0, 94, 178, 0.1);
    border-radius: 1.25rem;
    box-shadow: 0 8px 28px rgba(0, 31, 63, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 94, 178, 0.1);
}

.about-pillar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.85rem;
    border-radius: 0.75rem;
    background: rgba(0, 94, 178, 0.08);
    color: #005eb2;
}

.about-pillar__icon .material-symbols-outlined {
    font-size: 1.35rem;
}

.about-pillar .type-h3 {
    margin-bottom: 0.5rem;
}

/* About — our story */
.about-story__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .about-story__grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
}

.about-story__copy .type-eyebrow {
    margin-bottom: 0.5rem;
}

.about-story__copy .type-h2 {
    margin-bottom: 1rem;
}

.about-story__copy .type-lead {
    margin-bottom: 1rem;
}

.about-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 2px solid rgba(0, 94, 178, 0.15);
}

.about-timeline__item {
    position: relative;
    padding: 0 0 1.75rem 1.5rem;
}

.about-timeline__item:last-child {
    padding-bottom: 0;
}

.about-timeline__item::before {
    content: '';
    position: absolute;
    left: -0.45rem;
    top: 0.35rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #005eb2;
}

.about-timeline__item--active::before {
    background: #005eb2;
    box-shadow: 0 0 0 4px rgba(0, 94, 178, 0.2);
}

.about-timeline__year {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #005eb2;
    margin-bottom: 0.35rem;
}

.about-timeline__item .type-h4 {
    margin-bottom: 0.35rem;
}

/* About — one flow pipeline */
.about-flow__pipeline {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid rgba(0, 94, 178, 0.1);
    border-radius: 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 31, 63, 0.06);
}

@media (min-width: 768px) {
    .about-flow__pipeline {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 2rem 1.5rem;
    }
}

.about-flow__step {
    flex: 1;
    text-align: center;
    padding: 1rem 0.5rem;
}

.about-flow__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 0.65rem;
    border-radius: 1rem;
    background: rgba(0, 94, 178, 0.08);
    color: #005eb2;
}

.about-flow__step--pay .about-flow__icon { background: rgba(16, 185, 129, 0.1); color: #059669; }
.about-flow__step--comply .about-flow__icon { background: rgba(99, 102, 241, 0.1); color: #4f46e5; }
.about-flow__step--advise .about-flow__icon { background: rgba(245, 158, 11, 0.1); color: #d97706; }

.about-flow__icon .material-symbols-outlined {
    font-size: 1.5rem;
}

.about-flow__step .type-h4 {
    margin-bottom: 0.25rem;
}

.about-flow__connector {
    display: none;
}

@media (min-width: 768px) {
    .about-flow__connector {
        display: block;
        flex: 0 0 2rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(0, 94, 178, 0.2), rgba(20, 184, 166, 0.4));
        margin-top: -1.5rem;
    }
}

/* About — capability rows */
.about-capabilities {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-cap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid rgba(0, 94, 178, 0.1);
    border-radius: 1.5rem;
    box-shadow: 0 8px 28px rgba(0, 31, 63, 0.05);
}

@media (min-width: 1024px) {
    .about-cap {
        grid-template-columns: 1fr 1fr;
        padding: 1.5rem;
        gap: 2rem;
    }
    .about-cap--reverse .about-cap__visual {
        order: 2;
    }
    .about-cap--reverse .about-cap__body {
        order: 1;
    }
}

.about-cap__visual {
    border-radius: 1.25rem;
    overflow: hidden;
    line-height: 0;
}

.about-cap__visual img {
    width: 100%;
    min-height: 220px;
    object-fit: cover;
}

.about-cap__tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #005eb2;
    background: rgba(0, 94, 178, 0.08);
    padding: 0.25rem 0.55rem;
    border-radius: 0.35rem;
    margin-bottom: 0.5rem;
}

.about-cap__tag--teal {
    color: #0d9488;
    background: rgba(20, 184, 166, 0.1);
}

.about-cap__body .type-h3 {
    margin-bottom: 0.5rem;
}

.about-cap__link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.85rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #005eb2;
    text-decoration: none;
}

.about-cap__link:hover {
    gap: 0.5rem;
}

.about-cap__link .material-symbols-outlined {
    font-size: 1.125rem;
}

/* About — why choose us */
.about-why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .about-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-why__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-why-card {
    padding: 1.5rem 1.25rem;
    background: #f8fafc;
    border: 1px solid rgba(0, 94, 178, 0.08);
    border-radius: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.about-why-card:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 94, 178, 0.1);
}

.about-why-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    margin-bottom: 0.85rem;
}

.about-why-card__icon--blue { background: rgba(59, 130, 246, 0.12); color: #2563eb; }
.about-why-card__icon--teal { background: rgba(20, 184, 166, 0.12); color: #0d9488; }
.about-why-card__icon--indigo { background: rgba(99, 102, 241, 0.12); color: #4f46e5; }
.about-why-card__icon--amber { background: rgba(245, 158, 11, 0.12); color: #d97706; }

.about-why-card .type-h4 {
    margin-bottom: 0.4rem;
}

/* About — global */
.about-global__box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #001f3f 0%, #005eb2 60%, #0d4a7a 100%);
    border-radius: 1.5rem;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 94, 178, 0.25);
}

@media (min-width: 768px) {
    .about-global__box {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 2.5rem 2.5rem;
    }
}

.about-global__copy .type-eyebrow {
    color: #5eead4;
}

.about-global__copy .type-h2 {
    color: #fff;
    margin-bottom: 0.75rem;
}

.about-global__copy .type-lead {
    color: rgba(255, 255, 255, 0.82);
}

.about-global__hubs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.about-global__hubs li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
}

.about-global__hubs .material-symbols-outlined {
    color: #5eead4;
    font-size: 1.5rem;
}

.about-global__hubs strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.about-global__hubs span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

/* About — leadership */
.about-leaders__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .about-leaders__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-leaders__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.leader-card {
    padding: 1.5rem;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(0, 94, 178, 0.1);
    border-radius: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 94, 178, 0.1);
}

.leader-card__avatar {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #005eb2, #001f3f);
}

.leader-card__avatar--teal { background: linear-gradient(135deg, #0d9488, #047857); }
.leader-card__avatar--indigo { background: linear-gradient(135deg, #4f46e5, #3730a3); }
.leader-card__avatar--amber { background: linear-gradient(135deg, #d97706, #b45309); }

.leader-card__role {
    font-size: 0.75rem;
    font-weight: 600;
    color: #005eb2;
    margin-bottom: 0.5rem;
}

.about-leaders__note {
    text-align: center;
    margin-top: 1.5rem;
}

/* About — ecosystem */
.about-eco__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(0, 94, 178, 0.12);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 31, 63, 0.06);
}

@media (min-width: 768px) {
    .about-eco__inner {
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
        padding: 2.25rem 2.5rem;
    }
}

.about-eco__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.about-eco__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: #f8fafc;
    border: 1px solid rgba(0, 94, 178, 0.1);
    border-radius: 0.75rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #001f3f;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.about-eco__links a::after {
    content: '→';
    color: #005eb2;
    font-weight: 700;
}

.about-eco__links a:hover {
    background: rgba(0, 94, 178, 0.06);
    border-color: rgba(0, 94, 178, 0.22);
    transform: translateX(4px);
}

/* Quote band */
/* Quote spotlight — animated testimonial band */
.quote-spotlight {
    position: relative;
    padding: 4.5rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(128deg, #000a18 0%, #001f3f 35%, #005eb2 70%, #0a3d6e 100%);
    color: #fff;
}

.quote-spotlight__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.quote-spotlight__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: quoteOrbFloat 12s ease-in-out infinite;
}

.quote-spotlight__orb--1 {
    width: 22rem;
    height: 22rem;
    left: -5%;
    top: 20%;
    background: rgba(20, 184, 166, 0.25);
}

.quote-spotlight__orb--2 {
    width: 18rem;
    height: 18rem;
    right: -3%;
    bottom: 10%;
    background: rgba(59, 130, 246, 0.2);
    animation-delay: -4s;
}

.quote-spotlight__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
    opacity: 0.6;
}

@keyframes quoteOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -15px) scale(1.08); }
}

.quote-spotlight__inner {
    position: relative;
    z-index: 1;
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
}

.quote-spotlight__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: rgba(94, 234, 212, 0.12);
    border: 1px solid rgba(94, 234, 212, 0.35);
    opacity: 1;
    transform: scale(1) rotate(0deg);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quote-spotlight__mark .material-symbols-outlined {
    font-size: 1.75rem;
    color: #5eead4;
    animation: quoteIconPulse 3s ease-in-out infinite;
}

@keyframes quoteIconPulse {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

.quote-spotlight__quote {
    margin: 0 0 1.5rem;
    padding: 0;
    border: none;
}

.quote-line {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.2rem, 2.4vw, 1.75rem);
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 0.65rem;
    color: rgba(255, 255, 255, 0.92);
}

.quote-line--accent {
    margin-bottom: 0;
}

.quote-word {
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
    filter: none;
}

.quote-word--highlight {
    background: linear-gradient(90deg, #93c5fd, #5eead4, #93c5fd);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.quote-spotlight.is-visible .quote-word--highlight {
    animation: quoteHighlightShine 4s linear infinite;
}

@keyframes quoteHighlightShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.quote-spotlight__cite {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    margin-bottom: 1.75rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.quote-cite__line {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease 0.9s, transform 0.6s ease 0.9s;
}

.quote-cite__dot {
    opacity: 1;
    color: rgba(94, 234, 212, 0.7);
    transition: opacity 0.4s ease 1.1s;
}

.quote-spotlight__actions {
    opacity: 1;
    transform: translateY(0);
}

.quote-spotlight__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    border-radius: 999px;
    background: #fff;
    color: #001f3f;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.25s ease;
    overflow: hidden;
    position: relative;
}

.quote-spotlight__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.5) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}

.quote-spotlight__btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    background: #f0f9ff;
}

.quote-spotlight__btn:hover::before {
    transform: translateX(120%);
}

.quote-spotlight__btn:hover .quote-spotlight__btn-icon {
    transform: translateX(4px);
}

.quote-spotlight__btn-icon {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.quote-spotlight__note {
    margin-top: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
    .quote-spotlight__orb,
    .quote-spotlight__mark .material-symbols-outlined,
    .quote-word--highlight {
        animation: none !important;
    }
}

/* Stat grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 1024px) {
    .stat-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #fff;
    border: 1px solid rgba(0, 94, 178, 0.1);
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 31, 63, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 94, 178, 0.1);
}

.stat-card__value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #005eb2;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.stat-card__label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 31, 63, 0.55);
}

.stat-card__hint {
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    color: rgba(0, 31, 63, 0.5);
}

/* Value bento */
.value-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .value-bento {
        grid-template-columns: repeat(12, 1fr);
    }
}

.value-card {
    padding: 1.75rem;
    background: #fff;
    border: 1px solid rgba(0, 94, 178, 0.1);
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 31, 63, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 94, 178, 0.1);
    border-color: rgba(0, 94, 178, 0.2);
}

.value-card--wide {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .value-card--wide { grid-column: span 8; }
    .value-card--tall { grid-column: span 4; grid-row: span 2; }
    .value-card--half { grid-column: span 6; }
}

.value-card--dark {
    background: linear-gradient(145deg, #001f3f, #005eb2);
    border-color: transparent;
    color: #fff;
}

.value-card--dark .type-h3,
.value-card--dark .type-body,
.value-card--dark .type-body-sm {
    color: rgba(255, 255, 255, 0.88);
}

.value-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(0, 94, 178, 0.08);
    color: #005eb2;
}

.value-card--dark .value-card__icon {
    background: rgba(255, 255, 255, 0.12);
    color: #5eead4;
}

.value-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.value-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(0, 94, 178, 0.08);
    color: #005eb2;
}

.value-card--dark .value-chip {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Split feature */
.split-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .split-feature {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
}

.split-feature__media {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(0, 94, 178, 0.12);
    box-shadow: 0 20px 48px rgba(0, 31, 63, 0.12);
}

.split-feature__media img {
    display: block;
    width: 100%;
    min-height: 300px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-feature__media:hover img {
    transform: scale(1.04);
}

.split-feature__badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(0, 31, 63, 0.08);
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.feature-list__item {
    display: flex;
    gap: 1rem;
    padding: 1.1rem 1.15rem;
    background: #f8fafc;
    border: 1px solid rgba(0, 94, 178, 0.1);
    border-radius: 1rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.feature-list__item:hover {
    border-color: rgba(0, 94, 178, 0.22);
    transform: translateX(4px);
}

.feature-list__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    background: rgba(0, 94, 178, 0.08);
    color: #005eb2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Steps */
.steps-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .steps-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid rgba(0, 94, 178, 0.1);
    border-radius: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 94, 178, 0.1);
}

.step-card--highlight {
    background: linear-gradient(145deg, #001f3f, #005eb2);
    border-color: transparent;
    color: #fff;
}

.step-card--highlight .type-eyebrow { color: #5eead4; }
.step-card--highlight .type-h4 { color: #fff; }
.step-card--highlight .type-body-sm { color: rgba(255, 255, 255, 0.78); }

.step-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    background: rgba(0, 94, 178, 0.08);
    color: #005eb2;
    margin-bottom: 0.85rem;
}

.step-card--highlight .step-card__num {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Page CTA */
.page-cta {
    padding: 4rem 0 5rem;
}

.page-cta__box {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #001f3f, #005eb2 50%, #0d9488);
    box-shadow: 0 24px 56px rgba(0, 94, 178, 0.28);
}

@media (min-width: 768px) {
    .page-cta__box {
        padding: 4rem 3rem;
    }
}

.page-cta__box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.15), transparent 50%);
    pointer-events: none;
}

.page-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 40rem;
    margin: 0 auto;
}

.page-cta__box .type-display,
.page-cta__box .type-h2 {
    color: #fff;
}

.page-cta__box .type-lead {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.75rem;
}

.page-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.page-btn--white {
    background: #fff;
    color: #001f3f;
}

.page-btn--white:hover {
    transform: translateY(-2px);
    background: #f0f9ff;
}

.page-btn--outline-white {
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    background: transparent;
}

.page-btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Image reveal on scroll */
.img-reveal {
    overflow: hidden;
}

.img-reveal img {
    transform: scale(1.06);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
    opacity: 0.92;
}

.img-reveal.is-visible img {
    transform: scale(1);
    opacity: 1;
}

/* Text reveal (works with AOS + CSS) */
.text-reveal {
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.text-reveal.aos-animate,
.text-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .img-reveal img,
    .text-reveal,
    .stat-card,
    .value-card,
    .step-card,
    .split-feature__media img {
        transition: none;
        transform: none;
        opacity: 1;
    }
    .type-gradient {
        animation: none;
    }
}

.faq-details[open] summary .faq-chevron {
    transform: rotate(180deg);
}
.faq-chevron {
    transition: transform 0.25s ease;
}

/* ─── Services hub & individual service pages ─── */
.services-hub-hero {
    position: relative;
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
    background: linear-gradient(165deg, #f8fafc 0%, #eef4fb 45%, #f1f5f9 100%);
    overflow: hidden;
}

.services-hub-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: min(55vw, 520px);
    height: min(55vw, 520px);
    background: radial-gradient(circle, rgba(0, 94, 178, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.services-hub-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .services-hub-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.services-hub-hero__visual {
    position: relative;
}

.services-hub-hero__media {
    position: relative;
    border-radius: 1.25rem 2rem 1.5rem 1rem;
    overflow: hidden;
    box-shadow:
        0 24px 48px -12px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    transform: rotate(-1deg);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-hub-hero__visual:hover .services-hub-hero__media {
    transform: rotate(0deg) scale(1.02);
}

.services-hub-hero__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.services-hub-hero__float {
    position: absolute;
    bottom: 1rem;
    left: -0.5rem;
    right: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary, #005eb2);
}

.services-hub__grid {
    display: grid;
    gap: 1.25rem;
}

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

@media (min-width: 1024px) {
    .services-hub__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.15);
    border-color: rgba(0, 94, 178, 0.2);
}

.service-card__img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card__img img {
    transform: scale(1.06);
}

.service-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.55) 0%, transparent 55%);
    pointer-events: none;
}

.service-card__icon {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.service-card--blue .service-card__icon { color: #005eb2; }
.service-card--amber .service-card__icon { color: #d97706; }
.service-card--emerald .service-card__icon { color: #059669; }
.service-card--purple .service-card__icon { color: #7c3aed; }
.service-card--teal .service-card__icon { color: #0d9488; }
.service-card--indigo .service-card__icon { color: #4f46e5; }

.service-card__body {
    padding: 1.25rem 1.25rem 1.35rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__body h3 {
    margin-bottom: 0.35rem;
}

.service-card__body p {
    flex: 1;
    margin-bottom: 0.75rem;
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-primary, #005eb2);
    transition: gap 0.25s ease;
}

.service-card:hover .service-card__link {
    gap: 0.5rem;
}

.service-card__link .material-symbols-outlined {
    font-size: 1rem;
}

/* Individual service page hero — unified brand accent (matches recruitment) */
.service-hero {
    position: relative;
    padding-top: calc(var(--header-h, 4.75rem) + clamp(1.25rem, 3vw, 2rem));
    padding-bottom: clamp(2rem, 5vw, 3rem);
    overflow: hidden;
    --service-accent: #005eb2;
    --service-glow: rgba(0, 94, 178, 0.14);
}

/* Service / product pages: hero handles header offset (avoid double gap on main) */
body.service-page main.page-wrap,
body.ats-page main.page-wrap,
body.hrms-page main.page-wrap,
body.payroll-sw-page main.page-wrap,
body.bgv-page main.page-wrap,
body.executive-search-page main.page-wrap,
body.contact-page main.page-wrap,
body.industries-page main.page-wrap,
body.partners-page main.page-wrap,
body.insights-page main.page-wrap,
body.case-studies-page main.page-wrap,
body.about-page main.page-wrap {
    padding-top: 0;
}

@media (min-width: 1024px) {
    .service-hero {
        padding-top: calc(var(--header-h, 5.5rem) + clamp(1.5rem, 3vw, 2.25rem));
    }
}

.service-hero--blue { --service-accent: #005eb2; --service-glow: rgba(0, 94, 178, 0.14); }
.service-hero--amber { --service-accent: #d97706; --service-glow: rgba(217, 119, 6, 0.14); }
.service-hero--emerald { --service-accent: #059669; --service-glow: rgba(5, 150, 105, 0.14); }
.service-hero--purple { --service-accent: #7c3aed; --service-glow: rgba(124, 58, 237, 0.14); }
.service-hero--teal { --service-accent: #0d9488; --service-glow: rgba(13, 148, 136, 0.14); }
.service-hero--indigo { --service-accent: #4f46e5; --service-glow: rgba(79, 70, 229, 0.14); }

.service-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, #f8fafc 0%, #fff 40%, #f1f5f9 100%);
    pointer-events: none;
}

.service-hero__bg::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, var(--service-glow) 0%, transparent 70%);
}

.service-hero__bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.08), transparent);
}

.service-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .service-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.service-hero__copy .page-hero__badge-dot {
    background: var(--service-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--service-accent) 25%, transparent);
}

.service-hero__copy .type-gradient {
    background: linear-gradient(90deg, var(--service-accent), color-mix(in srgb, var(--service-accent) 70%, #0ea5e9), var(--service-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-hero__copy .page-btn--primary {
    background: var(--service-accent);
    border-color: var(--service-accent);
}

.service-hero__copy .page-btn--primary:hover {
    filter: brightness(1.08);
}

.service-hero__media {
    position: relative;
    border-radius: 1rem 1.75rem 1.25rem 0.875rem;
    overflow: hidden;
    box-shadow:
        0 28px 56px -16px rgba(15, 23, 42, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.service-hero__media::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, transparent 50%, var(--service-glow) 100%);
    pointer-events: none;
}

.service-hero__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    animation: serviceHeroImgReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes serviceHeroImgReveal {
    from {
        opacity: 0;
        transform: scale(1.04);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.service-hero__chip {
    position: absolute;
    z-index: 2;
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 0.875rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--service-accent);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
}

body.service-page .type-gradient.animate-gradient-text {
    /* Match homepage hero gradient palette */
    background: linear-gradient(
        90deg,
        #c2410c 0%,
        #005eb2 35%,
        #0d9488 65%,
        #005eb2 90%,
        #c2410c 100%
    );
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroGradientFlow 7s linear 1.2s infinite;
}

body.service-page .section-head .type-eyebrow {
    color: var(--service-accent, #005eb2);
}

body.service-page {
    --service-accent: #005eb2;
}

body.service-page--blue { --service-accent: #005eb2; }
body.service-page--amber { --service-accent: #d97706; }
body.service-page--emerald { --service-accent: #059669; }
body.service-page--purple { --service-accent: #7c3aed; }
body.service-page--teal { --service-accent: #0d9488; }
body.service-page--indigo { --service-accent: #4f46e5; }

/* HR Advisory — editorial consulting impact */
.hr-advisory-impact {
    background: linear-gradient(165deg, #f0f7ff 0%, #fff 42%, #f8fafc 100%);
}

.hr-advisory-impact__inner {
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
}

.hr-advisory-impact__title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--color-primary, #001f3f);
    margin: 0 0 1.25rem;
}

.hr-advisory-impact__lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.65;
    color: #5c6f82;
    margin: 0 auto 2.5rem;
    max-width: 40rem;
}

.hr-advisory-impact__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    text-align: left;
    max-width: 28rem;
    margin-inline: auto;
}

.hr-advisory-impact__list li {
    position: relative;
    padding-left: 1.75rem;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 600;
    line-height: 1.45;
    color: #001f3f;
    letter-spacing: -0.01em;
}

.hr-advisory-impact__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--service-accent, #005eb2);
    box-shadow: 0 0 0 3px rgba(0, 94, 178, 0.15);
}

/* Executive Search — premium boardroom aesthetic */
body.executive-search-page .exec-search-hero .service-hero__bg {
    background: linear-gradient(165deg, #eef4fa 0%, #fff 38%, #f4f6f8 100%);
}

body.executive-search-page .exec-search-hero__media {
    box-shadow:
        0 32px 64px -20px rgba(0, 31, 63, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.exec-search-dark {
    background: linear-gradient(165deg, #001a33 0%, #001f3f 48%, #0a2744 100%);
    color: #e8eef4;
}

.exec-search-dark--soft {
    background: linear-gradient(165deg, #0a2744 0%, #001f3f 55%, #001a33 100%);
}

.exec-search-dark__eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(148, 197, 230, 0.95);
    margin-bottom: 0.75rem;
}

.exec-search-dark__title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 1rem;
}

.exec-search-dark__sub {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(232, 238, 244, 0.78);
    margin: 0 auto;
    max-width: 36rem;
    text-align: center;
}

.exec-search-timeline__line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148, 197, 230, 0.35), transparent);
    transform: translateY(-50%);
}

.exec-search-step {
    padding: 1.5rem 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.exec-search-step:hover {
    transform: translateY(-4px);
    border-color: rgba(148, 197, 230, 0.25);
    background: rgba(255, 255, 255, 0.07);
}

.exec-search-step__num {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: #001f3f;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.exec-search-step__num--alt {
    background: linear-gradient(135deg, #94c5e6, #5a9fd4);
    color: #001a33;
}

.exec-search-step__title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    margin: 0 0 0.5rem;
    min-height: 2.75rem;
}

.exec-search-step__desc {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(232, 238, 244, 0.65);
    margin: 0;
}

.exec-assessment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    font-weight: 700;
    color: #001f3f;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.exec-assessment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 94, 178, 0.1);
}

.exec-assessment-item .material-symbols-outlined {
    font-size: 1.5rem;
    color: #005eb2;
}

.exec-search-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.exec-search-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.exec-search-features .material-symbols-outlined {
    color: #94c5e6;
    font-size: 1.25rem;
}

.exec-search-impact {
    background: linear-gradient(180deg, #001a33 0%, #001f3f 100%);
    color: #e8eef4;
}

.exec-search-impact__inner {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.exec-search-impact__eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(148, 197, 230, 0.9);
    margin-bottom: 1.25rem;
}

.exec-search-impact__title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0 0 1.5rem;
}

.exec-search-impact__lead {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    line-height: 1.7;
    color: rgba(232, 238, 244, 0.82);
    margin: 0;
    max-width: 44rem;
    margin-inline: auto;
    font-weight: 500;
}

.exec-search-cta {
    background: linear-gradient(145deg, #001a33 0%, #001f3f 50%, #0a2744 100%);
}

.exec-search-cta__badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(148, 197, 230, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.exec-search-cta__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.exec-search-cta__sub {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(232, 238, 244, 0.78);
}

.exec-search-cta__ghost {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}

.exec-search-cta__ghost:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Background Verification — trust & compliance aesthetic */
body.bgv-page .bgv-hero .service-hero__bg {
    background: linear-gradient(165deg, #eef6fc 0%, #fff 40%, #f4f8fb 100%);
}

.bgv-coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.bgv-coverage-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 94, 178, 0.06);
    font-weight: 700;
    color: #001f3f;
    text-decoration: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.bgv-coverage-item:hover {
    border-color: rgba(0, 94, 178, 0.25);
    box-shadow: 0 8px 24px rgba(0, 94, 178, 0.12);
    transform: translateY(-2px);
}

.bgv-coverage-item .material-symbols-outlined {
    font-size: 1.35rem;
    color: #005eb2;
}

.bgv-trust {
    background: linear-gradient(165deg, #e8f2fa 0%, #f8fafc 48%, #fff 100%);
    border-top: 1px solid rgba(0, 94, 178, 0.1);
}

.bgv-trust__inner {
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
}

.bgv-trust__eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #005eb2;
    margin-bottom: 1rem;
}

.bgv-trust__title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #001f3f;
    margin: 0 0 1.25rem;
}

.bgv-trust__lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: #5c6f82;
    margin: 0;
    max-width: 42rem;
    margin-inline: auto;
}

/* HRMS Software — enterprise platform aesthetic */
body.hrms-page .hrms-hero .service-hero__bg {
    background: linear-gradient(165deg, #eef4fa 0%, #fff 42%, #f6f9fc 100%);
}

.hrms-dashboard-frame {
    position: relative;
    border-radius: 1rem 1.75rem 1.25rem 0.875rem;
    overflow: hidden;
    box-shadow:
        0 28px 56px -16px rgba(0, 31, 63, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

.hrms-dashboard-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2rem;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.95), transparent);
    z-index: 1;
    pointer-events: none;
}

.hrms-dashboard-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top center;
}

.hrms-dashboard-frame--large img {
    aspect-ratio: 16 / 9;
    min-height: 18rem;
}

.hrms-integrations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.hrms-integration-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 94, 178, 0.06);
    font-weight: 700;
    color: #001f3f;
    text-decoration: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.hrms-integration-item:hover {
    border-color: rgba(0, 94, 178, 0.25);
    box-shadow: 0 8px 24px rgba(0, 94, 178, 0.12);
    transform: translateY(-2px);
}

.hrms-integration-item .material-symbols-outlined {
    font-size: 1.35rem;
    color: #005eb2;
}

/* ATS Software — enterprise recruitment platform */
body.ats-page .ats-hero .service-hero__bg {
    background: linear-gradient(165deg, #eef4fa 0%, #fff 42%, #f6f9fc 100%);
}

.ats-hero-visual__stage {
    position: relative;
    min-height: 22rem;
}

.ats-dashboard-frame {
    position: relative;
    border-radius: 1rem 1.75rem 1.25rem 0.875rem;
    overflow: hidden;
    box-shadow:
        0 28px 56px -16px rgba(0, 31, 63, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

.ats-dashboard-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2rem;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.95), transparent);
    z-index: 1;
    pointer-events: none;
}

.ats-dashboard-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top center;
}

.ats-dashboard-frame--large img {
    aspect-ratio: 16 / 9;
    min-height: 18rem;
}

.ats-float-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    max-width: 11.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 12px 32px -8px rgba(0, 94, 178, 0.18),
        0 0 0 1px rgba(0, 94, 178, 0.06);
    animation: ats-float 5s ease-in-out infinite;
}

.ats-float-card strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: #001f3f;
    line-height: 1.3;
}

.ats-float-card span:not(.material-symbols-outlined) {
    font-size: 0.65rem;
    color: #5c6f82;
    font-weight: 600;
}

.ats-float-card .material-symbols-outlined {
    font-size: 1.25rem;
    color: #005eb2;
    flex-shrink: 0;
}

.ats-float-card--tl { top: 4%; left: -4%; animation-delay: 0s; }
.ats-float-card--tr { top: 8%; right: -6%; animation-delay: 0.8s; }
.ats-float-card--bl { bottom: 18%; left: -8%; animation-delay: 1.6s; }
.ats-float-card--br { bottom: 10%; right: -4%; animation-delay: 2.4s; }

@keyframes ats-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.ats-workflow-step {
    background: #fff;
    padding: 1.5rem 1.25rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(0, 94, 178, 0.08);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ats-workflow-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 94, 178, 0.12);
}

.ats-workflow-step__num {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #001f3f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    margin: 0 auto 1rem;
    box-shadow:
        0 8px 20px rgba(0, 31, 63, 0.2),
        0 0 0 4px rgba(0, 94, 178, 0.12);
}

.ats-workflow-step__num--alt {
    background: #005eb2;
}

.ats-collab-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ats-collab-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 28px rgba(0, 94, 178, 0.1);
}

.ats-collab-card--offset {
    margin-left: 2rem;
}

.ats-collab-card .material-symbols-outlined {
    font-size: 1.75rem;
    color: #005eb2;
}

.ats-collab-card strong {
    display: block;
    color: #001f3f;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.ats-collab-card p {
    margin: 0;
    font-size: 0.875rem;
    color: #5c6f82;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .ats-float-card {
        display: none;
    }

    .ats-collab-card--offset {
        margin-left: 0;
    }

    .ats-ecosystem-arrow,
    .kam-ecosystem-arrow {
        transform: rotate(90deg);
    }
}

/* KAM Workforce Technology ecosystem (ATS → HRMS → Payroll) */
.kam-ecosystem-flow,
.ats-ecosystem-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.25rem;
    max-width: 52rem;
    margin-inline: auto;
}

.kam-ecosystem-node,
.ats-ecosystem-node {
    flex: 1 1 10rem;
    max-width: 14rem;
    padding: 1.5rem 1.25rem;
    border-radius: 1.5rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(0, 94, 178, 0.08);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.kam-ecosystem-node:hover,
.ats-ecosystem-node:hover {
    border-color: rgba(0, 94, 178, 0.3);
    box-shadow: 0 16px 36px rgba(0, 94, 178, 0.14);
    transform: translateY(-3px);
}

.kam-ecosystem-node--active,
.ats-ecosystem-node--active {
    border-color: rgba(0, 94, 178, 0.35);
    background: linear-gradient(165deg, #f0f7ff 0%, #fff 100%);
    box-shadow: 0 12px 32px rgba(0, 94, 178, 0.15);
}

.kam-ecosystem-node .material-symbols-outlined,
.ats-ecosystem-node .material-symbols-outlined {
    font-size: 2rem;
    color: #005eb2;
    display: block;
    margin-bottom: 0.5rem;
}

.kam-ecosystem-node strong,
.ats-ecosystem-node strong {
    display: block;
    font-size: 1.1rem;
    color: #001f3f;
    margin-bottom: 0.25rem;
}

.kam-ecosystem-node span:last-child,
.ats-ecosystem-node span:last-child {
    font-size: 0.8rem;
    color: #5c6f82;
    font-weight: 600;
}

.kam-ecosystem-arrow,
.ats-ecosystem-arrow {
    color: #005eb2;
    font-size: 1.75rem;
    flex-shrink: 0;
}

/* Payroll Software product page */
body.payroll-sw-page .payroll-sw-hero .service-hero__bg {
    background: linear-gradient(165deg, #eef4fa 0%, #fff 42%, #f6f9fc 100%);
}

.payroll-sw-hero-visual__stage {
    position: relative;
    min-height: 22rem;
}

.payroll-sw-dashboard-frame {
    position: relative;
    border-radius: 1rem 1.75rem 1.25rem 0.875rem;
    overflow: hidden;
    box-shadow:
        0 28px 56px -16px rgba(0, 31, 63, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

.payroll-sw-dashboard-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2rem;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.95), transparent);
    z-index: 1;
    pointer-events: none;
}

.payroll-sw-dashboard-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top center;
}

.payroll-sw-dashboard-frame--large img {
    aspect-ratio: 16 / 9;
    min-height: 18rem;
}

.payroll-sw-float-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    max-width: 11.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 32px -8px rgba(0, 94, 178, 0.18);
    animation: payroll-sw-float 5s ease-in-out infinite;
}

.payroll-sw-float-card strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: #001f3f;
    line-height: 1.3;
}

.payroll-sw-float-card span:not(.material-symbols-outlined) {
    font-size: 0.65rem;
    color: #5c6f82;
    font-weight: 600;
}

.payroll-sw-float-card .material-symbols-outlined {
    font-size: 1.25rem;
    color: #005eb2;
    flex-shrink: 0;
}

.payroll-sw-float-card--tl { top: 4%; left: -4%; animation-delay: 0s; }
.payroll-sw-float-card--tr { top: 8%; right: -6%; animation-delay: 0.8s; }
.payroll-sw-float-card--bl { bottom: 18%; left: -8%; animation-delay: 1.6s; }
.payroll-sw-float-card--br { bottom: 10%; right: -4%; animation-delay: 2.4s; }

@keyframes payroll-sw-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.payroll-sw-workflow-step {
    background: #fff;
    padding: 1.5rem 1.25rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(0, 94, 178, 0.08);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.payroll-sw-workflow-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 94, 178, 0.12);
}

.payroll-sw-workflow-step__num {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #001f3f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    margin: 0 auto 1rem;
    box-shadow:
        0 8px 20px rgba(0, 31, 63, 0.2),
        0 0 0 4px rgba(0, 94, 178, 0.12);
}

.payroll-sw-workflow-step__num--alt {
    background: #005eb2;
}

@media (max-width: 767px) {
    .payroll-sw-float-card {
        display: none;
    }
}

/* Industries page — workforce consulting across sectors */
body.industries-page .industries-hero .service-hero__bg {
    background: linear-gradient(165deg, #eef4fa 0%, #fff 42%, #f6f9fc 100%);
}

.industries-hero__media img {
    object-position: center 20%;
}

.industries-overview-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.industries-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 94, 178, 0.12);
    border-color: rgba(0, 94, 178, 0.2);
}

.industries-sector__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .industries-sector__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .industries-sector__grid--reverse .industries-sector__copy {
        order: 2;
    }

    .industries-sector__grid--reverse .industries-sector__visual {
        order: 1;
    }
}

.industries-sector__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #005eb2;
    margin-bottom: 0.75rem;
}

.industries-sector__eyebrow .material-symbols-outlined {
    font-size: 1.25rem;
}

.industries-sector__img {
    width: 100%;
    border-radius: 1.75rem;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow:
        0 24px 48px -12px rgba(0, 31, 63, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.industries-sector__block {
    margin-bottom: 1.5rem;
}

.industries-sector__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.industries-sector__tags li {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: #f0f7ff;
    border: 1px solid rgba(0, 94, 178, 0.12);
    font-size: 0.8125rem;
    font-weight: 600;
    color: #001f3f;
}

.industries-sector__services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.industries-sector__services a {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    background: #001f3f;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.industries-sector__services a:hover {
    background: #005eb2;
    transform: translateY(-1px);
}

.industries-edtech-ventures {
    padding: 1.25rem 1.5rem;
    border-radius: 1.25rem;
    background: linear-gradient(165deg, #f8fafc 0%, #fff 100%);
    border: 1px solid rgba(0, 94, 178, 0.1);
}

.industries-edtech-ventures__grid {
    display: grid;
    gap: 0.75rem;
}

.industries-edtech-ventures__card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.industries-edtech-ventures__card:hover {
    border-color: rgba(0, 94, 178, 0.25);
    box-shadow: 0 8px 20px rgba(0, 94, 178, 0.1);
}

.industries-edtech-ventures__card .material-symbols-outlined {
    color: #005eb2;
    font-size: 1.5rem;
}

.industries-edtech-ventures__card strong {
    display: block;
    color: #001f3f;
    font-weight: 800;
    margin-bottom: 0.15rem;
}

.industries-edtech-ventures__card span {
    font-size: 0.8125rem;
    color: #5c6f82;
}

/* Partnership page — workforce alliance program */
body.partners-page .partners-hero .service-hero__bg {
    background: linear-gradient(165deg, #eef4fa 0%, #fff 42%, #f6f9fc 100%);
}

.partners-model-card {
    padding: 2rem 1.75rem;
    border-radius: 1.75rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 32px rgba(0, 94, 178, 0.08);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.partners-model-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 94, 178, 0.22);
    box-shadow: 0 20px 40px rgba(0, 94, 178, 0.14);
}

.partners-model-card__icon {
    font-size: 2.25rem;
    color: #005eb2;
    display: block;
    margin-bottom: 1rem;
}

.partners-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

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

.partners-services-grid__item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 0.875rem;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.875rem;
    font-weight: 700;
    color: #001f3f;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.partners-services-grid__item:hover {
    background: #f0f7ff;
    border-color: rgba(0, 94, 178, 0.2);
}

.partners-services-grid__item .material-symbols-outlined {
    font-size: 1.25rem;
    color: #005eb2;
}

.partners-trust-panel {
    padding: 2rem;
    border-radius: 1.75rem;
    background: linear-gradient(165deg, #001f3f 0%, #003d73 100%);
    color: #fff;
    box-shadow: 0 24px 48px rgba(0, 31, 63, 0.25);
}

.partners-trust-panel__stat {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.partners-trust-panel__stat:last-of-type {
    border-bottom: none;
}

.partners-trust-panel__stat strong {
    display: block;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.partners-trust-panel__stat span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}

.partners-trust-panel__note {
    margin: 1.5rem 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.partners-trust-panel .page-btn--ghost {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.partners-trust-panel .page-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Insights / Knowledge Center */
body.insights-page .insights-hero .service-hero__bg {
    background: linear-gradient(165deg, #eef4fa 0%, #fff 42%, #f6f9fc 100%);
}

.insights-filter-bar {
    position: sticky;
    top: 5rem;
    z-index: 30;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 20px rgba(0, 94, 178, 0.06);
}

.insights-filter-bar > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.insights-filter-bar__label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #5c6f82;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.insights-filter-bar__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.insights-filter-pill {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #001f3f;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.insights-filter-pill:hover {
    border-color: rgba(0, 94, 178, 0.3);
    color: #005eb2;
}

.insights-filter-pill.is-active {
    background: #001f3f;
    border-color: #001f3f;
    color: #fff;
}

.insights-topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr));
    gap: 1.25rem;
}

.insights-topic-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.5rem;
    border-radius: 1.25rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(0, 94, 178, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.insights-topic-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 94, 178, 0.22);
    box-shadow: 0 16px 36px rgba(0, 94, 178, 0.12);
}

.insights-topic-card--wide {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .insights-topic-card--wide {
        grid-column: span 2;
    }
}

.insights-topic-card .material-symbols-outlined {
    font-size: 2rem;
    color: #005eb2;
    margin-bottom: 0.75rem;
}

.insights-topic-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #001f3f;
    margin: 0 0 0.5rem;
}

.insights-topic-card p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5c6f82;
}

.insights-featured {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 1.75rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 48px rgba(0, 31, 63, 0.12);
}

@media (min-width: 1024px) {
    .insights-featured {
        grid-template-columns: 1.1fr 1fr;
        min-height: 22rem;
    }
}

.insights-featured__visual img {
    width: 100%;
    height: 100%;
    min-height: 16rem;
    object-fit: cover;
}

.insights-featured__copy {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1024px) {
    .insights-featured__copy {
        padding: 3rem;
    }
}

.insights-featured__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #001f3f;
    margin: 0 0 1rem;
}

.insights-featured__desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #5c6f82;
    margin: 0 0 1.5rem;
    flex: 1;
}

.insights-badge {
    display: inline-block;
    width: fit-content;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #f0f7ff;
    color: #005eb2;
    border: 1px solid rgba(0, 94, 178, 0.15);
    margin-bottom: 0.75rem;
}

.insights-badge--featured {
    background: #001f3f;
    color: #fff;
    border-color: transparent;
}

.insights-badge--report {
    background: #eef4fa;
    color: #001f3f;
}

.insights-article-card,
.insights-report-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    border-radius: 1.5rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(0, 94, 178, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.insights-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f0fa 0%, #f1f5f9 100%);
}

.insights-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.insights-article-card:hover .insights-card__media img,
.insights-report-card:hover .insights-card__media img {
    transform: scale(1.04);
}

.insights-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem 1.75rem 2rem;
}

.insights-article-card:hover,
.insights-report-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 94, 178, 0.1);
}

.insights-article-card h3,
.insights-report-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #001f3f;
    line-height: 1.3;
    margin: 0 0 0.75rem;
}

.insights-article-card p,
.insights-report-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5c6f82;
    margin: 0 0 1.25rem;
    flex: 1;
}

.insights-article-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #005eb2;
    text-decoration: none;
    margin-top: auto;
}

.insights-article-card__link .material-symbols-outlined {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.insights-article-card:hover .insights-article-card__link .material-symbols-outlined {
    transform: translateX(3px);
}

.insights-report-card__btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.insights-industry-card {
    padding: 1.75rem;
    border-radius: 1.25rem;
    background: linear-gradient(165deg, #fff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 20px rgba(0, 94, 178, 0.05);
}

.insights-industry-card--wide {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .insights-industry-card--wide {
        grid-column: span 2;
    }
}

.insights-industry-card__icon {
    font-size: 2rem;
    color: #005eb2;
    margin-bottom: 0.75rem;
}

.insights-industry-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #001f3f;
    margin: 0 0 0.75rem;
}

.insights-industry-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.insights-industry-card li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5c6f82;
    margin-bottom: 0.35rem;
}

.insights-industry-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #005eb2;
}

.insights-filterable.is-hidden {
    display: none !important;
}

.insights-filterable-section.is-empty {
    display: none;
}

.insights-newsletter {
    background: linear-gradient(165deg, #001f3f 0%, #003d73 100%);
    color: #fff;
}

.insights-newsletter__inner {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
}

.insights-newsletter__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1rem;
}

.insights-newsletter__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 1.75rem;
}

.insights-newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .insights-newsletter__form {
        flex-direction: row;
    }
}

.insights-newsletter__form input {
    flex: 1;
    padding: 0.9rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.insights-newsletter__form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.insights-newsletter__form input:focus {
    outline: 2px solid rgba(255, 255, 255, 0.4);
    outline-offset: 2px;
}

.insights-newsletter__fine {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.insights-newsletter__fine a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
}

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

/* Case Studies / Success Stories */
body.case-studies-page .cs-hero .service-hero__bg {
    background: linear-gradient(165deg, #eef4fa 0%, #fff 42%, #f6f9fc 100%);
}

.cs-hero__tagline {
    font-size: 1rem;
    font-weight: 600;
    color: #005eb2;
    margin: 0 0 1.5rem;
    max-width: 32rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.cs-trust-metric {
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(0, 94, 178, 0.06);
}

.cs-trust-metric__icon {
    font-size: 2rem;
    color: #005eb2;
    margin-bottom: 0.75rem;
}

.cs-trust-metric__label {
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #001f3f;
    line-height: 1.35;
}

.cs-trust-metric__desc {
    font-size: 0.875rem;
    color: #5c6f82;
    margin: 0.5rem 0 0;
}

.cs-badge {
    display: inline-block;
    width: fit-content;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #f0f7ff;
    color: #005eb2;
    border: 1px solid rgba(0, 94, 178, 0.15);
    margin-bottom: 0.75rem;
}

.cs-badge--featured {
    background: #001f3f;
    color: #fff;
    border-color: transparent;
}

.cs-featured {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 1.75rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 48px rgba(0, 31, 63, 0.12);
}

@media (min-width: 1024px) {
    .cs-featured {
        grid-template-columns: 0.95fr 1.05fr;
        min-height: 24rem;
    }
}

.cs-featured__visual img {
    width: 100%;
    height: 100%;
    min-height: 16rem;
    object-fit: cover;
}

.cs-featured__copy {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .cs-featured__copy {
        padding: 3rem;
    }
}

.cs-featured__anon {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #5c6f82;
    margin: 0 0 0.75rem;
}

.cs-featured__title {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #001f3f;
    margin: 0 0 1.5rem;
}

.cs-featured__blocks {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    flex: 1;
}

.cs-featured__block h3 {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #005eb2;
    margin: 0 0 0.35rem;
}

.cs-featured__block p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5c6f82;
}

.cs-featured__block--outcomes ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cs-featured__block--outcomes li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #5c6f82;
    margin-bottom: 0.25rem;
}

.cs-featured__block--outcomes li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #005eb2;
}

.cs-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 1.75rem;
    border-radius: 1.5rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(0, 94, 178, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 94, 178, 0.1);
}

.cs-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #001f3f;
    line-height: 1.3;
    margin: 0 0 1.25rem;
}

.cs-card__details {
    margin: 0 0 1.25rem;
    flex: 1;
}

.cs-card__details > div {
    margin-bottom: 1rem;
}

.cs-card__details > div:last-child {
    margin-bottom: 0;
}

.cs-card__details dt {
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #005eb2;
    margin-bottom: 0.25rem;
}

.cs-card__details dd {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5c6f82;
}

.cs-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #005eb2;
    text-decoration: none;
    margin-top: auto;
}

.cs-card__link .material-symbols-outlined {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.cs-card:hover .cs-card__link .material-symbols-outlined {
    transform: translateX(3px);
}

.cs-solution-card {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.75rem;
    border-radius: 1.5rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 20px rgba(0, 94, 178, 0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cs-solution-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 94, 178, 0.22);
    box-shadow: 0 14px 28px rgba(0, 94, 178, 0.1);
}

.cs-solution-card .material-symbols-outlined {
    font-size: 2rem;
    color: #005eb2;
    margin-bottom: 0.75rem;
}

.cs-solution-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #001f3f;
    margin: 0 0 0.5rem;
}

.cs-solution-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #5c6f82;
}

.cs-challenge-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 16px rgba(0, 94, 178, 0.04);
}

.cs-challenge-card .material-symbols-outlined {
    font-size: 1.5rem;
    color: #005eb2;
    flex-shrink: 0;
}

.cs-challenge-card span:last-child {
    font-size: 0.9rem;
    font-weight: 700;
    color: #001f3f;
    line-height: 1.35;
}

.cs-industry-card--wide {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .cs-industry-card--wide {
        grid-column: span 2;
    }
}

.cs-approach-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: cs-step;
}

@media (min-width: 1024px) {
    .cs-approach-timeline {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 0;
        position: relative;
    }

    .cs-approach-timeline::before {
        content: "";
        position: absolute;
        top: 1.6rem;
        left: 4%;
        right: 4%;
        height: 2px;
        background: linear-gradient(90deg,
            rgba(0, 94, 178, 0.08) 0%,
            rgba(0, 94, 178, 0.35) 50%,
            rgba(0, 94, 178, 0.08) 100%);
    }
}

.cs-approach-timeline__step {
    position: relative;
    padding: 0 0 2rem 0;
}

@media (min-width: 1024px) {
    .cs-approach-timeline__step {
        padding: 0 0.75rem;
        text-align: center;
    }
}

.cs-approach-timeline__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #001f3f;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0, 31, 63, 0.2);
}

@media (min-width: 1024px) {
    .cs-approach-timeline__num {
        margin-left: auto;
        margin-right: auto;
    }
}

.cs-approach-timeline__step h3 {
    font-size: 0.9375rem;
    font-weight: 800;
    color: #001f3f;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.cs-approach-timeline__step p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #5c6f82;
}

.cs-principle-card {
    padding: 2rem 1.75rem;
    border-radius: 1.5rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 20px rgba(0, 94, 178, 0.05);
    height: 100%;
}

.cs-principle-card .material-symbols-outlined {
    font-size: 2rem;
    color: #005eb2;
    margin-bottom: 0.75rem;
}

.cs-principle-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #001f3f;
    margin: 0 0 0.5rem;
}

.cs-principle-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5c6f82;
}

body.case-studies-page .cs-results.hr-advisory-impact__inner {
    max-width: 56rem;
}

/* Contact page */
body.contact-page .contact-hero .service-hero__bg {
    background: linear-gradient(165deg, #eef4fa 0%, #fff 42%, #f6f9fc 100%);
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .contact-form__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-form__field--full {
    grid-column: 1 / -1;
}

.contact-form__field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #5c6f82;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form__optional {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #94a3b8;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    font-size: 1rem;
    color: #001f3f;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: #005eb2;
    box-shadow: 0 0 0 3px rgba(0, 94, 178, 0.12);
}

.contact-form__field textarea {
    resize: vertical;
    min-height: 8rem;
}

.contact-form__submit {
    margin-top: 0.5rem;
}

.contact-form__fine {
    margin: 1rem 0 0;
    font-size: 0.8125rem;
    color: #5c6f82;
}

.contact-form__fine a {
    color: #005eb2;
    text-decoration: underline;
}

.contact-hubs {
    padding: 2rem;
    border-radius: 1.5rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(0, 94, 178, 0.06);
}

.contact-hubs__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: #001f3f;
    margin: 0 0 1.25rem;
}

.contact-hubs__title .material-symbols-outlined {
    color: #005eb2;
}

.contact-hubs__list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.contact-hubs__item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-hubs__item:last-child {
    border-bottom: none;
}

.contact-hubs__city {
    font-weight: 800;
    color: #001f3f;
}

.contact-hubs__role {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #005eb2;
}

.contact-hubs__note {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5c6f82;
}

.contact-hubs__offices {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 0 0 1rem;
}

.contact-hubs__office {
    display: block;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(0, 94, 178, 0.06) 0%, rgba(15, 23, 42, 0.02) 100%);
    border: 1px solid rgba(15, 23, 42, 0.1);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-hubs__office:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 94, 178, 0.25);
    box-shadow: 0 10px 24px rgba(0, 94, 178, 0.12);
}

.contact-hubs__office-city {
    display: block;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.8125rem;
    color: #001f3f;
    margin-bottom: 0.25rem;
}

.contact-hubs__office-lines {
    display: block;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #5c6f82;
}

.contact-hubs__office-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.6rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #005eb2;
}

.contact-hubs__office-cta .material-symbols-outlined {
    font-size: 1rem;
}

.contact-why__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #001f3f;
    margin: 0 0 1rem;
}

.contact-why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.contact-why__card {
    padding: 1.25rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 16px rgba(0, 94, 178, 0.04);
}

.contact-why__card .material-symbols-outlined {
    font-size: 1.5rem;
    color: #005eb2;
    margin-bottom: 0.35rem;
}

.contact-why__card strong {
    display: block;
    font-size: 0.9375rem;
    color: #001f3f;
    margin-bottom: 0.25rem;
}

.contact-why__card p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #5c6f82;
}

.contact-service-card {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.75rem;
    border-radius: 1.5rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(0, 94, 178, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 94, 178, 0.22);
    box-shadow: 0 16px 32px rgba(0, 94, 178, 0.1);
}

.contact-service-card .material-symbols-outlined {
    font-size: 2rem;
    color: #005eb2;
    margin-bottom: 0.75rem;
}

.contact-service-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #001f3f;
    margin: 0 0 0.5rem;
}

.contact-service-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #5c6f82;
}

.contact-trust-card {
    padding: 2rem 1.75rem;
    border-radius: 1.5rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(0, 94, 178, 0.06);
    height: 100%;
}

.contact-trust-card__check {
    font-size: 2rem;
    color: #005eb2;
    margin-bottom: 0.75rem;
}

.contact-trust-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #001f3f;
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

.contact-trust-card p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5c6f82;
}

body.contact-page .contact-global .ab-global__title {
    margin-bottom: 1.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: #001f3f;
}

body.contact-page .ab-eyebrow {
    color: #005eb2;
}

/* Animated globe (port of components/ui/globe.tsx) */
@keyframes earthRotate {
    0% { background-position: 0 0; }
    100% { background-position: 400px 0; }
}

@keyframes twinkling {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 1; }
}

@keyframes twinkling-slow {
    0%, 100% { opacity: 0.12; }
    50% { opacity: 0.9; }
}

@keyframes twinkling-long {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.85; }
}

@keyframes twinkling-fast {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

.contact-globe-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: clamp(18rem, 32vw, 26rem);
    padding: 1.5rem 0;
}

.contact-globe {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: clamp(220px, 30vw, 300px);
}

/* Soft ground shadow — floating 3D, no dark plate behind globe */
.contact-globe::after {
    content: "";
    position: absolute;
    bottom: 6%;
    left: 50%;
    z-index: 0;
    width: min(72%, 200px);
    height: 14%;
    border-radius: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(0, 94, 178, 0.22) 0%, rgba(0, 94, 178, 0.06) 45%, transparent 72%);
    filter: blur(2px);
    pointer-events: none;
}

.contact-globe__sphere {
    position: relative;
    z-index: 1;
    width: clamp(200px, 28vw, 250px);
    height: clamp(200px, 28vw, 250px);
    border-radius: 50%;
    overflow: hidden;
    isolation: isolate;
    background-color: #1a5f8a;
    background-image: url("../img/globe-texture.jpeg");
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: 0 0;
    animation: earthRotate 30s linear infinite;
    /* External lift + spherical inset lighting (no flat dark ring) */
    box-shadow:
        0 22px 48px rgba(0, 94, 178, 0.28),
        0 10px 22px rgba(0, 31, 63, 0.14),
        0 2px 6px rgba(0, 31, 63, 0.08),
        inset -8px -6px 22px rgba(0, 20, 40, 0.45),
        inset 10px 8px 24px rgba(255, 255, 255, 0.18),
        inset -18px 0 28px rgba(140, 210, 255, 0.35),
        inset 40px 0 36px rgba(0, 0, 0, 0.18);
}

/* Atmosphere rim + highlight */
.contact-globe__sphere::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.45) 0%, transparent 38%),
        radial-gradient(circle at 78% 72%, rgba(0, 40, 80, 0.25) 0%, transparent 42%);
    mix-blend-mode: soft-light;
}

.contact-globe__sphere::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    background: radial-gradient(circle at 70% 50%, transparent 58%, rgba(0, 94, 178, 0.12) 100%);
}

.contact-globe__star {
    position: absolute;
    z-index: 4;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

.contact-globe__star--1 {
    left: -8%;
    top: 42%;
    animation: twinkling 3s infinite;
}

.contact-globe__star--2 {
    left: -12%;
    top: 18%;
    animation: twinkling-slow 2s infinite;
}

.contact-globe__star--3 {
    left: 92%;
    top: 32%;
    animation: twinkling-long 4s infinite;
}

.contact-globe__star--4 {
    left: 55%;
    top: 88%;
    animation: twinkling 3s infinite;
}

.contact-globe__star--5 {
    left: 8%;
    top: 82%;
    animation: twinkling-fast 1.5s infinite;
}

.contact-globe__star--6 {
    left: 72%;
    top: -8%;
    animation: twinkling-long 4s infinite;
}

.contact-globe__star--7 {
    left: 88%;
    top: 22%;
    animation: twinkling-slow 2s infinite;
}

.contact-globe__caption {
    margin: 1.25rem 0 0;
    max-width: 18rem;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #5c6f82;
    font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
    .contact-globe__sphere {
        animation: none;
    }

    .contact-globe__star {
        animation: none;
        opacity: 0.5;
    }
}

/* --- Why Partner With KAM Global HR --- */
.partner-why {
    padding: 3.5rem 0 3.75rem;
    background: linear-gradient(165deg, #f0f7ff 0%, #fff 48%, #f8fafc 100%);
    border-bottom: 1px solid rgba(0, 94, 178, 0.08);
}

.partner-why__head {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.partner-why__grid--compact .partner-point {
    padding: 1.1rem 1rem;
}

.partner-why__grid--compact .partner-point__desc {
    font-size: 0.8125rem;
    line-height: 1.45;
}

.partner-why__eyebrow {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #005eb2;
    margin-bottom: 0.6rem;
}

.partner-why__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    color: #001f3f;
    margin-bottom: 0.85rem;
}

/* Homepage section h2 — unified type + accent */
.page-home .partner-why__title,
.page-home .services-pro__title,
.page-home .workforce-process__title,
.page-home .home-industries__title,
.page-home .home-tech__title,
.page-home .home-final-cta__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.65rem, 2.8vw, 2.15rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.page-home .partner-why__title span,
.page-home .services-pro__title span,
.page-home .workforce-process__title span,
.page-home .home-industries__title span,
.page-home .home-tech__title span {
    background: linear-gradient(90deg, #005eb2, #0d9488, #005eb2);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 5s linear infinite;
}

.partner-why__lead {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(0, 31, 63, 0.65);
    margin: 0;
}

.partner-why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .partner-why__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.15rem;
    }
}

@media (min-width: 1024px) {
    .partner-why__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.partner-point {
    position: relative;
    padding: 1.35rem 1.25rem 1.3rem;
    border-radius: 1.25rem;
    background: #fff;
    border: 1px solid rgba(0, 94, 178, 0.1);
    box-shadow: 0 4px 20px rgba(0, 31, 63, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #001f3f, #005eb2, #0d9488);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 94, 178, 0.12);
    border-color: rgba(0, 94, 178, 0.22);
}

.partner-point:hover::before {
    opacity: 1;
}

.partner-point--featured {
    border-color: rgba(0, 94, 178, 0.18);
    box-shadow: 0 8px 28px rgba(0, 94, 178, 0.1);
}

.partner-point--featured::before {
    opacity: 1;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .partner-point--featured {
        grid-column: span 2;
    }
}

.partner-point__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.partner-point__icon .material-symbols-outlined {
    font-size: 1.35rem;
}

.partner-point--blue .partner-point__icon {
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
}

.partner-point--teal .partner-point__icon {
    background: rgba(20, 184, 166, 0.12);
    color: #0d9488;
}

.partner-point--indigo .partner-point__icon {
    background: rgba(99, 102, 241, 0.12);
    color: #4f46e5;
}

.partner-point--amber .partner-point__icon {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

.partner-point__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #001f3f;
    margin: 0 0 0.45rem;
    line-height: 1.3;
}

.partner-point__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(0, 31, 63, 0.62);
    margin: 0;
}

.partner-why__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding: 1.5rem 1.75rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 94, 178, 0.12);
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px rgba(0, 31, 63, 0.06);
    backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
    .partner-why__footer {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 1.35rem 1.75rem;
    }
}

.partner-why__footer-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(0, 31, 63, 0.68);
    margin: 0;
    max-width: 36rem;
}

.partner-why__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #001f3f, #005eb2);
    box-shadow: 0 6px 22px rgba(0, 94, 178, 0.35);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.partner-why__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 94, 178, 0.42);
}

.partner-why__cta .material-symbols-outlined {
    font-size: 1.125rem;
    transition: transform 0.2s ease;
}

.partner-why__cta:hover .material-symbols-outlined {
    transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
    .page-home .partner-why__title span,
    .page-home .services-pro__title span,
    .page-home .workforce-process__title span,
    .page-home .home-industries__title span,
    .page-home .home-tech__title span {
        animation: none;
        color: #005eb2;
        -webkit-text-fill-color: #005eb2;
    }

    .partner-point:hover {
        transform: none;
    }

    .partner-why__cta:hover {
        transform: none;
    }

    .partner-why__ambient,
    [data-aos="partner-title"],
    [data-aos="partner-card"],
    [data-aos="partner-card"].aos-animate .partner-point__icon,
    [data-aos="partner-card"].aos-animate .partner-point__title,
    .page-home .partner-why__title span {
        animation: none !important;
        transition: none !important;
    }

    [data-aos="partner-title"],
    [data-aos="partner-card"] {
        opacity: 1;
        transform: none;
    }

    .partner-why--animated .partner-point--strip:hover {
        transform: none;
    }

    .partner-why--animated .partner-point--strip:hover .partner-point__icon {
        transform: none;
        box-shadow: none;
    }
}

/* --- Homepage section rhythm (alternating contrast) --- */

/* Homepage trust band — light palette aligned with hero */
.trust-band--dark {
    background: linear-gradient(180deg, #eef4f9 0%, #f8fafc 52%, #ffffff 100%);
    border-top: 1px solid rgba(0, 94, 178, 0.1);
    border-bottom: 1px solid rgba(0, 31, 63, 0.06);
}

.trust-band--dark .trust-stat {
    background: #fff;
    border: 1px solid rgba(0, 94, 178, 0.1);
    box-shadow: 0 4px 18px rgba(0, 31, 63, 0.06);
    padding: 1.65rem 1.15rem 1.5rem;
    cursor: default;
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.28s ease,
        background 0.28s ease;
}

.trust-band--dark .trust-stat::before {
    background: linear-gradient(90deg, #001f3f, #005eb2);
    transition: height 0.28s ease, opacity 0.28s ease;
}

.trust-band--dark .trust-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 94, 178, 0.22);
    background: #fff;
    box-shadow:
        0 14px 32px rgba(0, 31, 63, 0.1),
        0 4px 12px rgba(0, 94, 178, 0.08);
}

.trust-band--dark .trust-stat:hover::before {
    height: 4px;
    opacity: 1;
}

.trust-band--dark .trust-stat__icon {
    color: #005eb2;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.28s ease;
}

.trust-band--dark .trust-stat:hover .trust-stat__icon {
    transform: scale(1.08);
    color: #004a8f;
}

.trust-band--dark .trust-stat strong {
    transition: color 0.28s ease;
}

.trust-band--dark .trust-stat:hover strong {
    color: #005eb2;
}

.trust-band--dark .trust-stat strong {
    color: #001f3f;
}

.trust-band--dark .trust-stat span {
    color: #5c6f82;
}

.trust-band--dark .trust-band__stats {
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.trust-band--dark .trust-band__presence {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.trust-band--dark .trust-band__markets,
.trust-band--dark .trust-band__markets--static {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.65rem;
    overflow: visible;
    animation: none;
}

.trust-band--dark .trust-band__marquee-wrap,
.trust-band--dark .trust-band__marquee,
.trust-band--dark .animate-marquee {
    animation: none;
    overflow: visible;
    width: auto;
}

.trust-band--dark .trust-band__fade {
    display: none;
}

@keyframes trustMarketIn {
    from {
        opacity: 0;
        transform: translateY(0.45rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-band--dark .trust-market {
    color: #3d5a73;
    background: #fff;
    border: 1px solid rgba(0, 94, 178, 0.12);
    box-shadow: 0 2px 8px rgba(0, 31, 63, 0.04);
    cursor: default;
    animation: trustMarketIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    transition:
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        background 0.25s ease;
}

.trust-band--dark .trust-market:nth-child(1) { animation-delay: 0.04s; }
.trust-band--dark .trust-market:nth-child(2) { animation-delay: 0.09s; }
.trust-band--dark .trust-market:nth-child(3) { animation-delay: 0.14s; }
.trust-band--dark .trust-market:nth-child(4) { animation-delay: 0.19s; }
.trust-band--dark .trust-market:nth-child(5) { animation-delay: 0.24s; }
.trust-band--dark .trust-market:nth-child(6) { animation-delay: 0.29s; }
.trust-band--dark .trust-market:nth-child(7) { animation-delay: 0.34s; }

.trust-band--dark .trust-market:hover {
    transform: translateY(-3px);
    color: #005eb2;
    background: rgba(0, 94, 178, 0.05);
    border-color: rgba(0, 94, 178, 0.28);
    box-shadow:
        0 8px 20px rgba(0, 94, 178, 0.12),
        0 2px 6px rgba(0, 31, 63, 0.06);
}

.trust-band--dark .trust-market:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 94, 178, 0.1);
}

@media (prefers-reduced-motion: reduce) {
    .trust-band--dark .trust-stat,
    .trust-band--dark .trust-stat::before,
    .trust-band--dark .trust-stat__icon,
    .trust-band--dark .trust-stat strong {
        transition: none;
    }

    .trust-band--dark .trust-stat:hover {
        transform: none;
    }

    .trust-band--dark .trust-stat:hover .trust-stat__icon {
        transform: none;
    }

    .trust-band--dark .trust-market {
        animation: none;
        transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    }

    .trust-band--dark .trust-market:hover {
        transform: none;
    }

    .trust-band--dark .trust-market:active {
        transform: none;
    }
}

/* Partner strip — minimal, low-border */
.partner-why--strip {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-bottom: none;
}

/* Partner section — scroll animations */
.partner-why--animated {
    position: relative;
    overflow: hidden;
}

.partner-why__ambient {
    position: absolute;
    inset: -20% -10%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 45% at 15% 40%, rgba(0, 94, 178, 0.07) 0%, transparent 65%),
        radial-gradient(ellipse 45% 40% at 88% 55%, rgba(13, 148, 136, 0.06) 0%, transparent 60%);
    animation: partnerWhyAmbient 14s ease-in-out infinite alternate;
}

.partner-why--animated .partner-why__inner {
    position: relative;
    z-index: 1;
}

@keyframes partnerWhyAmbient {
    0% { transform: translate(0, 0) scale(1); opacity: 0.85; }
    100% { transform: translate(2%, -1.5%) scale(1.04); opacity: 1; }
}

[data-aos="partner-title"] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.85s ease;
}

[data-aos="partner-title"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="partner-title"].aos-animate .partner-why__title span {
    animation: gradientShift 5s linear infinite, partnerTitleAccent 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s backwards;
}

@keyframes partnerTitleAccent {
    from {
        opacity: 0;
        transform: translateY(12px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

[data-aos="partner-card"] {
    opacity: 0;
    transform: translateY(22px) scale(0.97);
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.65s ease,
        background 0.25s ease;
}

[data-aos="partner-card"].aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

[data-aos="partner-card"].aos-animate .partner-point__icon {
    animation: partnerIconPop 0.55s cubic-bezier(0.34, 1.4, 0.64, 1) backwards;
}

.partner-why__grid--strip [data-aos="partner-card"]:nth-child(1).aos-animate .partner-point__icon { animation-delay: 0.08s; }
.partner-why__grid--strip [data-aos="partner-card"]:nth-child(2).aos-animate .partner-point__icon { animation-delay: 0.14s; }
.partner-why__grid--strip [data-aos="partner-card"]:nth-child(3).aos-animate .partner-point__icon { animation-delay: 0.2s; }
.partner-why__grid--strip [data-aos="partner-card"]:nth-child(4).aos-animate .partner-point__icon { animation-delay: 0.26s; }
.partner-why__grid--strip [data-aos="partner-card"]:nth-child(5).aos-animate .partner-point__icon { animation-delay: 0.32s; }
.partner-why__grid--strip [data-aos="partner-card"]:nth-child(6).aos-animate .partner-point__icon { animation-delay: 0.38s; }
.partner-why__grid--strip [data-aos="partner-card"]:nth-child(7).aos-animate .partner-point__icon { animation-delay: 0.44s; }
.partner-why__grid--strip [data-aos="partner-card"]:nth-child(8).aos-animate .partner-point__icon { animation-delay: 0.5s; }

@keyframes partnerIconPop {
    from {
        opacity: 0;
        transform: scale(0.6) rotate(-8deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

[data-aos="partner-card"].aos-animate .partner-point__title {
    animation: partnerTitleSlide 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.12s backwards;
}

@keyframes partnerTitleSlide {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.partner-why--strip .partner-why__head {
    text-align: left;
    max-width: none;
    margin: 0 0 2.75rem;
}

.partner-why--strip .partner-why__title {
    margin-bottom: 0;
}

.partner-why__grid--strip {
    gap: 0;
}

@media (min-width: 640px) {
    .partner-why__grid--strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .partner-why__grid--strip {
        grid-template-columns: repeat(4, 1fr);
    }
}

.partner-point--strip {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.35rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 94, 178, 0.08);
}

.partner-point--strip::before {
    display: none;
}

.partner-point--strip .partner-point__icon {
    width: 2.35rem;
    height: 2.35rem;
    margin-bottom: 0;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.partner-why--animated .partner-point--strip {
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease,
        border-color 0.3s ease;
}

.partner-why--animated .partner-point--strip:hover {
    transform: translateX(5px);
    background: rgba(0, 94, 178, 0.05);
    box-shadow: none;
    border-color: rgba(0, 94, 178, 0.08);
}

.partner-why--animated .partner-point--strip:hover .partner-point__icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 94, 178, 0.15);
}

.partner-why--animated .partner-point--strip:hover .partner-point__title {
    color: #005eb2;
    transition: color 0.25s ease;
}

.partner-point--strip .partner-point__title {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .partner-point--strip:not(:nth-child(4n)) {
        border-right: 1px solid rgba(0, 94, 178, 0.08);
    }
}

/* Enterprise services — premium text grid */
.services-pro {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 45%, #f8fafc 100%);
    border-bottom: 1px solid rgba(0, 94, 178, 0.05);
    overflow: hidden;
}

.services-pro__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 12% 20%, rgba(0, 94, 178, 0.05), transparent 55%),
        radial-gradient(ellipse 50% 40% at 88% 75%, rgba(20, 184, 166, 0.04), transparent 50%),
        radial-gradient(ellipse 40% 35% at 50% 50%, rgba(99, 102, 241, 0.03), transparent 60%);
}

.services-pro__inner {
    position: relative;
    z-index: 1;
}

.services-pro__head {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.25rem;
}

@media (min-width: 768px) {
    .services-pro__head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 2.75rem;
    }
}

.services-pro__title {
    color: #001f3f;
    margin: 0 0 0.55rem;
}

.services-pro__lead {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    line-height: 1.65;
    color: rgba(0, 31, 63, 0.52);
    margin: 0;
    max-width: 32rem;
}

.services-pro__all {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #005eb2;
    text-decoration: none;
    transition: color 0.25s ease;
}

.services-pro__all:hover {
    color: #001f3f;
}

.services-pro__all .material-symbols-outlined {
    font-size: 1rem;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-pro__all:hover .material-symbols-outlined {
    transform: translateX(3px);
}

/* Softer grid — spaced cards, not one table */
.services-pro__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

@media (min-width: 768px) {
    .services-pro__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }
}

@media (min-width: 1024px) {
    .services-pro__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.services-pro__card {
    --pro-accent: #005eb2;
    --pro-glow: rgba(0, 94, 178, 0.07);
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 0.9rem 1.1rem;
    padding: 1.35rem 1.35rem 1.4rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 31, 63, 0.07);
    border-radius: 0.9rem;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(0, 31, 63, 0.03),
        0 4px 16px rgba(0, 31, 63, 0.04);
    transition:
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

/* Top accent strip */
.services-pro__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pro-accent), transparent 85%);
    opacity: 0.85;
    pointer-events: none;
}

/* Subtle corner glow */
.services-pro__card::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 55%;
    height: 70%;
    background: radial-gradient(circle at center, var(--pro-glow), transparent 68%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.35s ease;
}

.services-pro__card--blue {
    --pro-accent: #2563eb;
    --pro-glow: rgba(37, 99, 235, 0.07);
}

.services-pro__card--amber {
    --pro-accent: #d97706;
    --pro-glow: rgba(217, 119, 6, 0.07);
}

.services-pro__card--emerald {
    --pro-accent: #059669;
    --pro-glow: rgba(5, 150, 105, 0.07);
}

.services-pro__card--violet {
    --pro-accent: #7c3aed;
    --pro-glow: rgba(124, 58, 237, 0.07);
}

.services-pro__card--indigo {
    --pro-accent: #4f46e5;
    --pro-glow: rgba(79, 70, 229, 0.07);
}

.services-pro__card--teal {
    --pro-accent: #0d9488;
    --pro-glow: rgba(13, 148, 136, 0.07);
}

.services-pro__card:hover {
    transform: translateY(-4px);
    background: #fff;
    border-color: color-mix(in srgb, var(--pro-accent) 22%, transparent);
    box-shadow:
        0 4px 12px rgba(0, 31, 63, 0.05),
        0 16px 40px color-mix(in srgb, var(--pro-accent) 12%, transparent);
}

.services-pro__card:hover::after {
    opacity: 1.35;
}

.services-pro__index {
    position: relative;
    z-index: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: color-mix(in srgb, var(--pro-accent) 55%, #94a3b8);
    line-height: 1.4;
    padding-top: 0.2rem;
}

.services-pro__copy {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.services-pro__name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.015rem;
    font-weight: 700;
    line-height: 1.35;
    color: #001f3f;
    margin: 0 0 0.35rem;
    letter-spacing: -0.015em;
    transition: color 0.25s ease;
}

.services-pro__text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgba(0, 31, 63, 0.48);
    margin: 0;
}

.services-pro__arrow {
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    color: rgba(0, 31, 63, 0.22);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
    margin-top: 0.15rem;
}

.services-pro__card:hover .services-pro__arrow {
    color: var(--pro-accent);
    transform: translateX(4px);
}

.services-pro__card:hover .services-pro__name {
    color: #001f3f;
}

@media (prefers-reduced-motion: reduce) {
    .services-pro__card {
        transition: border-color 0.2s ease, background 0.2s ease;
    }

    .services-pro__card:hover {
        transform: none;
    }

    .services-pro__card:hover .services-pro__arrow {
        transform: none;
    }
}

/* Fallback if color-mix unsupported */
@supports not (color: color-mix(in srgb, red, blue)) {
    .services-pro__card:hover {
        border-color: rgba(0, 94, 178, 0.2);
        box-shadow: 0 8px 32px rgba(0, 94, 178, 0.1);
    }

    .services-pro__index {
        color: rgba(0, 94, 178, 0.45);
    }
}

/* Dark process section */
.workforce-process--dark {
    background: linear-gradient(165deg, #001428 0%, #001f3f 55%, #002a52 100%);
    color: #fff;
}

.workforce-process--dark .workforce-process__head {
    margin-bottom: 2.75rem;
}

.workforce-process--dark .workforce-process__title {
    color: #fff;
    margin: 0;
}

.workforce-process--dark .workforce-process__step-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.35;
}

.workforce-process--dark .process-step__badge {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.workforce-process--dark .process-step__badge--final {
    background: rgba(20, 184, 166, 0.25);
    border-color: rgba(20, 184, 166, 0.45);
    color: #5eead4;
}

.workforce-process--dark .process-section__stage {
    border-color: rgba(255, 255, 255, 0.12);
}

/* Three-column process layout: visual | steps 1–4 | steps 5–8 */
.workforce-process__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .workforce-process__layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 1fr);
        gap: 2rem 2.25rem;
        align-items: stretch;
    }
}

.workforce-process__visual {
    width: 100%;
    min-height: 0;
}

.workforce-process__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    max-height: 16rem;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
    .workforce-process__visual {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .workforce-process__stage {
        position: sticky;
        top: 6.5rem;
        flex: 1 1 auto;
        width: 100%;
        height: 100%;
        min-height: 0;
        max-height: none;
        aspect-ratio: unset;
    }
}

.workforce-process__stage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 20, 40, 0.55), transparent 50%);
    pointer-events: none;
}

.workforce-process__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .workforce-process__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .workforce-process__steps {
        display: contents;
    }

    .workforce-process__col {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
}

.workforce-process__col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.workforce-process--dark .process-step--compact {
    margin-bottom: 0 !important;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.workforce-process--dark .process-step--compact:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.workforce-process--dark .process-step--compact:first-child {
    padding-top: 0;
}

.workforce-process__col .process-step__inner {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.workforce-process--dark .process-step__badge {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1;
}

.workforce-process--dark .workforce-process__step-title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0;
}

.workforce-process--dark .process-step.is-active .process-step__badge,
.workforce-process--dark .process-step.is-active .workforce-process__step-title {
    border-color: rgba(125, 211, 252, 0.45);
}

.workforce-process--dark .process-step.is-active {
    background: rgba(255, 255, 255, 0.04);
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    border-radius: 0.5rem;
}

/* Sector expertise — editorial premium showcase */
.home-industries--premium {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 42%, #f6f9fc 100%);
}

.home-industries__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 42% 38% at 8% 18%, rgba(56, 189, 248, 0.07), transparent 70%),
        radial-gradient(ellipse 38% 42% at 92% 28%, rgba(99, 102, 241, 0.06), transparent 68%),
        radial-gradient(ellipse 50% 45% at 50% 95%, rgba(0, 94, 178, 0.05), transparent 65%);
}

.home-industries__inner {
    position: relative;
    z-index: 1;
}

.home-industries__eyebrow {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #005eb2;
    margin-bottom: 0.55rem;
    opacity: 0.85;
}

.home-industries__head {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .home-industries__head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 2.75rem;
    }
}

.home-industries__title {
    color: #001f3f;
    margin: 0;
}

.home-industries__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #005eb2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-industries__link:hover {
    color: #001f3f;
}

.home-industries__link .material-symbols-outlined {
    font-size: 0.9rem;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 20;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-industries__link:hover .material-symbols-outlined {
    transform: translateX(2px);
}

.home-industries__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .home-industries__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.35rem;
    }
}

/* Premium industry card */
.industry-card--premium {
    --glass-h: 30%;
    position: relative;
    display: block;
    height: 13rem;
    border-radius: 1.15rem;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(0, 31, 63, 0.07);
    box-shadow:
        0 1px 1px rgba(255, 255, 255, 0.8) inset,
        0 1px 2px rgba(0, 31, 63, 0.04),
        0 6px 20px rgba(0, 31, 63, 0.06),
        0 16px 40px rgba(0, 94, 178, 0.05);
    transition:
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

@media (min-width: 1024px) {
    .industry-card--premium {
        height: 14rem;
    }
}

.industry-card--premium:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 94, 178, 0.16);
    box-shadow:
        0 1px 1px rgba(255, 255, 255, 0.9) inset,
        0 4px 12px rgba(0, 31, 63, 0.06),
        0 14px 36px rgba(0, 94, 178, 0.1),
        0 28px 56px rgba(0, 31, 63, 0.08);
}

.industry-card__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.industry-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
    filter:
        saturate(0.8)
        contrast(1.1)
        brightness(0.88)
        hue-rotate(-4deg);
}

.industry-card--premium:hover .industry-card__img {
    transform: scale(1.05);
    filter:
        saturate(0.85)
        contrast(1.12)
        brightness(0.94)
        hue-rotate(-4deg);
}

/* Cinematic navy / cyan grade */
.industry-card__grade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(165deg, rgba(0, 31, 63, 0.22) 0%, transparent 45%),
        linear-gradient(to top, rgba(0, 20, 40, 0.35) 0%, transparent 42%),
        linear-gradient(120deg, rgba(0, 94, 178, 0.12) 0%, rgba(13, 148, 136, 0.08) 100%);
    opacity: 0.5;
    transition: opacity 0.45s ease;
}

.industry-card--premium:hover .industry-card__grade {
    opacity: 0.38;
}

/* Minimal lift for glass legibility */
.industry-card__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(var(--glass-h) + 8%);
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 20, 40, 0.22) 0%,
        rgba(0, 31, 63, 0.06) 55%,
        transparent 100%
    );
    transition: opacity 0.45s ease;
}

.industry-card--premium:hover .industry-card__overlay {
    background: linear-gradient(
        to top,
        rgba(0, 20, 40, 0.16) 0%,
        transparent 100%
    );
}

/* Compact glass strip — ~30% card height */
.industry-card__glass {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: var(--glass-h);
    min-height: 3.5rem;
    max-height: 4.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.65rem 0 0.6rem;
    border-radius: 0 0 calc(1.15rem - 1px) calc(1.15rem - 1px);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.12) 100%
    );
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -8px 24px rgba(0, 20, 40, 0.08);
    -webkit-backdrop-filter: blur(18px) saturate(1.35);
    backdrop-filter: blur(18px) saturate(1.35);
    transition:
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.industry-card--premium:hover .industry-card__glass {
    transform: translateY(-2px);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.14) 100%
    );
    border-top-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 -4px 28px rgba(0, 20, 40, 0.12);
}

.industry-card__icon-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0;
    background: transparent;
    border: none;
}

.industry-card__icon-wrap .material-symbols-outlined {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.92);
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 20;
}

.industry-card__copy {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.industry-card__name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(0.72rem, 0.9vw, 0.8125rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 12px rgba(0, 20, 40, 0.4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.industry-card__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 1024px) {
    .industry-card__desc {
        white-space: normal;
    }
}

.industry-card__arrow {
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 20;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s ease, opacity 0.35s ease;
    opacity: 0.85;
}

.industry-card--premium:hover .industry-card__arrow {
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
    transform: translateX(3px);
}

/* Sector-specific crop focal points */
.home-industries__grid .industry-card--premium:nth-child(1) .industry-card__img {
    object-position: center 40%;
}

.home-industries__grid .industry-card--premium:nth-child(2) .industry-card__img {
    object-position: center 42%;
}

.home-industries__grid .industry-card--premium:nth-child(3) .industry-card__img {
    object-position: center 38%;
}

.home-industries__grid .industry-card--premium:nth-child(4) .industry-card__img {
    object-position: center 45%;
}

@media (prefers-reduced-motion: reduce) {
    .industry-card--premium:hover {
        transform: none;
    }

    .industry-card--premium:hover .industry-card__img {
        transform: none;
    }

    .industry-card--premium:hover .industry-card__glass {
        transform: none;
    }

    .industry-card--premium:hover .industry-card__arrow {
        transform: none;
    }
}

/* Tighter rhythm: Sector expertise → HR technology */
.page-home .home-industries--premium.page-section {
    padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.page-home .home-industries--premium + .home-tech--operations.page-section {
    padding-top: clamp(1rem, 2vw, 1.75rem);
}

/* HR technology — operational supporting capability */
.home-tech--operations {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-top: 1px solid rgba(0, 94, 178, 0.06);
}

.home-tech--operations .home-tech__head {
    max-width: 52rem;
    margin-bottom: 2.5rem;
}

.home-tech--operations .home-tech__eyebrow {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #005eb2;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.home-tech--operations .home-tech__title {
    color: #001f3f;
    margin: 0 0 0.75rem;
    max-width: none;
}

.home-tech--operations .home-tech__lead {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    line-height: 1.65;
    color: rgba(0, 31, 63, 0.62);
    margin: 0;
}

.home-tech--operations .home-tech__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .home-tech--operations .home-tech__body {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        gap: 1.25rem;
        align-items: center;
    }
}

.home-tech--operations .home-tech__visual {
    margin: 0;
    width: 100%;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(0, 94, 178, 0.1);
    box-shadow: 0 12px 36px rgba(0, 31, 63, 0.08);
    background: #eef2f6;
}

.home-tech--operations .home-tech__visual img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 20rem;
    object-fit: contain;
    object-position: center center;
}

@media (min-width: 768px) {
    .home-tech--operations .home-tech__visual img {
        max-height: 22rem;
    }
}

@media (min-width: 1024px) {
    .home-tech--operations .home-tech__visual img {
        width: 100%;
        max-height: 24rem;
        object-fit: contain;
        object-position: center center;
    }
}

.home-tech--operations .home-tech__capabilities {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.home-tech--operations .home-tech__card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(0, 94, 178, 0.1);
    box-shadow: 0 4px 16px rgba(0, 31, 63, 0.04);
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-tech--operations .home-tech__card:hover {
    border-color: rgba(0, 94, 178, 0.2);
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.08);
}

.home-tech--operations .home-tech__thumb {
    flex-shrink: 0;
    width: 4.5rem;
    height: 3.25rem;
    border-radius: 0.55rem;
    overflow: hidden;
    border: 1px solid rgba(0, 94, 178, 0.08);
    background: #f1f5f9;
}

.home-tech--operations .home-tech__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-tech--operations .home-tech__card-copy {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.home-tech--operations .home-tech__label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #001f3f;
    line-height: 1.25;
}

.home-tech--operations .home-tech__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: rgba(0, 31, 63, 0.58);
}

.home-tech--operations .home-tech__arrow {
    flex-shrink: 0;
    font-size: 1.125rem;
    color: rgba(0, 94, 178, 0.35);
    transition: transform 0.2s ease, color 0.2s ease;
}

.home-tech--operations .home-tech__card:hover .home-tech__arrow {
    color: #005eb2;
    transform: translateX(3px);
}

.home-tech--operations .home-tech__focus {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.home-tech--operations .home-tech__focus li {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #3d5a73;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(0, 94, 178, 0.06);
    border: 1px solid rgba(0, 94, 178, 0.1);
}

/* Final CTA — compact banner with description */
.page-home .home-final-cta--premium.page-section {
    padding: clamp(1.15rem, 2.5vw, 1.75rem) 0 clamp(1.35rem, 2.5vw, 2rem);
}

.home-final-cta--premium .home-final-cta__panel {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: 0.85rem;
    background: linear-gradient(128deg, #001428 0%, #001f3f 52%, #003a66 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.05) inset,
        0 10px 28px rgba(0, 31, 63, 0.14);
}

@media (min-width: 768px) {
    .home-final-cta--premium .home-final-cta__panel {
        grid-template-columns: minmax(0, 1fr) minmax(10.5rem, 22%);
        align-items: stretch;
    }
}

.home-final-cta--premium .home-final-cta__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    align-items: center;
    text-align: left;
    padding: 0.8rem 0.95rem;
}

@media (min-width: 768px) {
    .home-final-cta--premium .home-final-cta__content {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: auto auto auto;
        column-gap: 1.15rem;
        row-gap: 0.2rem;
        padding: 0.85rem 0.85rem 0.85rem 1.25rem;
        min-height: 8.25rem;
        align-items: center;
    }

    .home-final-cta--premium .home-final-cta__copy {
        display: contents;
    }

    .home-final-cta--premium .home-final-cta__eyebrow {
        grid-column: 1 / -1;
        margin-bottom: 0.15rem;
    }

    .home-final-cta--premium .home-final-cta__title {
        grid-column: 1;
        grid-row: 2;
        margin: 0;
        max-width: none;
    }

    .home-final-cta--premium .home-final-cta__lead {
        grid-column: 1;
        grid-row: 3;
        margin: 0;
        max-width: none;
        display: block;
        line-clamp: unset;
        -webkit-line-clamp: unset;
        overflow: visible;
    }

    .home-final-cta--premium .home-final-cta__btn {
        grid-column: 2;
        grid-row: 2 / 4;
        align-self: center;
    }
}

.home-final-cta--premium .home-final-cta__copy {
    min-width: 0;
}

.home-final-cta--premium .home-final-cta__eyebrow {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(125, 211, 252, 0.9);
    margin-bottom: 0.28rem;
}

.home-final-cta--premium .home-final-cta__title {
    color: #fff;
    margin: 0 0 0.5rem;
    max-width: 36rem;
}

.home-final-cta--premium .home-final-cta__lead {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.74);
    margin: 0;
    max-width: 34rem;
}

.home-final-cta--premium .home-final-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: #001f3f;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
    align-self: start;
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s ease,
        background 0.3s ease;
}

@media (min-width: 1024px) {
    .home-final-cta--premium .home-final-cta__lead {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.home-final-cta--premium .home-final-cta__btn .material-symbols-outlined {
    font-size: 0.875rem;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 20;
    transition: transform 0.3s ease;
}

.home-final-cta--premium .home-final-cta__btn:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.home-final-cta--premium .home-final-cta__btn:hover .material-symbols-outlined {
    transform: translateX(3px);
}

.home-final-cta--premium .home-final-cta__media {
    position: relative;
    display: none;
    min-height: 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .home-final-cta--premium .home-final-cta__media {
        display: block;
    }
}

.home-final-cta--premium .home-final-cta__media::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        #001f3f 0%,
        rgba(0, 31, 63, 0.92) 18%,
        rgba(0, 31, 63, 0.55) 42%,
        rgba(0, 58, 102, 0.2) 70%,
        transparent 100%
    );
    pointer-events: none;
}

.home-final-cta--premium .home-final-cta__media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(0, 20, 40, 0.15) 0%,
        transparent 40%,
        rgba(0, 20, 40, 0.25) 100%
    );
    pointer-events: none;
}

.home-final-cta--premium .home-final-cta__media img {
    display: block;
    width: 100%;
    height: 7rem;
    min-height: 0;
    max-height: 7rem;
    object-fit: cover;
    object-position: center 35%;
    filter: saturate(0.85) contrast(1.05) brightness(0.88);
}

@media (min-width: 768px) {
    .home-final-cta--premium .home-final-cta__media img {
        height: 100%;
        min-height: 8.25rem;
        max-height: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-final-cta--premium .home-final-cta__btn:hover {
        transform: none;
    }

    .home-final-cta--premium .home-final-cta__btn:hover .material-symbols-outlined {
        transform: none;
    }
}

/* Pricing guarantee strip (legacy pages) */
.home-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    border-radius: 1.15rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
    border: 1px solid rgba(0, 94, 178, 0.12);
}

.home-guarantee__icon {
    flex-shrink: 0;
    font-size: 1.75rem;
    color: #005eb2;
    margin-top: 0.1rem;
}

/* ==========================================================================
   Enterprise footer (6-column + trust bar + bottom bar)
   ========================================================================== */
.site-footer--enterprise,
.site-footer--premium {
    --footer-bg: #050a14;
    --footer-bg-card: #0c1525;
    --footer-blue: #3b9eff;
    --footer-blue-bright: #5eb3ff;
    --footer-text: #f1f5f9;
    --footer-muted: rgba(203, 213, 225, 0.82);
    --footer-dim: rgba(148, 163, 184, 0.72);
    position: relative;
    margin-top: 0;
    padding: clamp(3rem, 5vw, 4.25rem) 0 0;
    color: var(--footer-text);
    background: var(--footer-bg);
    font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
}

.site-footer__inner {
    position: relative;
    z-index: 1;
}

.site-footer__main {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 2.5rem);
    padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

@media (min-width: 640px) {
    .site-footer__main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (min-width: 900px) {
    .site-footer__main {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1200px) {
    .site-footer__main {
        grid-template-columns: minmax(0, 1.45fr) repeat(4, minmax(0, 1fr)) minmax(0, 1.15fr);
        gap: clamp(1.25rem, 2vw, 2rem);
        align-items: start;
    }

    .site-footer__brand {
        grid-column: auto;
        margin-top: -0.4rem;
    }

    .site-footer__logo-link {
        margin-bottom: 0.75rem;
    }

    .site-footer__logo {
        max-width: min(100%, 7.75rem);
        max-height: 2.15rem;
    }
}

.site-footer__brand,
.site-footer__col {
    display: flex;
    flex-direction: column;
    min-width: 0;
    align-items: flex-start;
}

.site-footer__logo-link {
    display: block;
    margin-bottom: 0.9rem;
    line-height: 0;
    text-decoration: none;
}

.site-footer__logo {
    display: block;
    width: auto;
    height: auto;
    max-width: min(100%, 9rem);
    max-height: 2.5rem;
    object-fit: contain;
    object-position: left top;
}

.site-footer__desc {
    margin: 0 0 1.25rem;
    max-width: 20rem;
    font-size: 0.8125rem;
    line-height: 1.7;
    color: var(--footer-muted);
    font-weight: 400;
}

.site-footer__contact {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.site-footer__contact li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.site-footer__contact-icon {
    font-size: 1.125rem;
    color: var(--footer-blue);
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body.site-page .site-footer--enterprise .site-footer__contact a,
.site-footer--enterprise .site-footer__contact a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--footer-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

body.site-page .site-footer--enterprise .site-footer__contact a:hover,
.site-footer--enterprise .site-footer__contact a:hover {
    color: var(--footer-blue-bright);
}

body.site-page .site-footer--enterprise h2.site-footer__heading,
.site-footer--enterprise h2.site-footer__heading {
    margin: 0 0 0.85rem;
    padding: 0 0 0.55rem;
    font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 2px solid var(--footer-blue);
    width: 100%;
    max-width: 8.5rem;
}

.site-footer__links {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.site-footer__links li + li {
    margin-top: 0.5rem;
}

body.site-page .site-footer--enterprise .site-footer__links a,
.site-footer--enterprise .site-footer__links a {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.45;
    color: var(--footer-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__chev {
    flex-shrink: 0;
    color: var(--footer-blue);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
}

body.site-page .site-footer--enterprise .site-footer__links a:hover,
.site-footer--enterprise .site-footer__links a:hover {
    color: #fff;
}

.site-footer__col--offices {
    max-width: 100%;
}

@media (min-width: 1200px) {
    .site-footer__col--offices {
        max-width: 13.5rem;
    }
}

.site-footer__offices {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    width: 100%;
    font-style: normal;
}

.site-footer__office-card {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.75rem 0.85rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: inherit;
    background: var(--footer-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.site-footer__office-card:hover {
    border-color: rgba(59, 158, 255, 0.35);
    background: #101d32;
}

.site-footer__office-pin {
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-size: 1.125rem;
    color: var(--footer-blue);
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.site-footer__office-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.site-footer__office-title {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.site-footer__office-lines {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--footer-dim);
}

.site-footer__office-card:hover .site-footer__office-lines {
    color: var(--footer-muted);
}

/* Trust stats bar */
.site-footer__trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
    padding: clamp(1.35rem, 3vw, 1.75rem) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .site-footer__trust {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem 2rem;
    }
}

.site-footer__trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.site-footer__trust-icon {
    flex-shrink: 0;
    font-size: 1.75rem;
    color: var(--footer-blue);
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.site-footer__trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.site-footer__trust-text strong {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

.site-footer__trust-text span {
    font-size: 0.6875rem;
    font-weight: 400;
    line-height: 1.35;
    color: var(--footer-dim);
}

/* Bottom bar */
.site-footer__bottom {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 1.25rem;
    padding: clamp(1.25rem, 3vw, 1.5rem) 0 clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 900px) {
    .site-footer__bottom {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 1rem 1.5rem;
    }

    .site-footer__copy {
        justify-self: start;
    }

    .site-footer__legal {
        justify-self: center;
    }

    .site-footer__social {
        justify-self: end;
    }
}

body.site-page .site-footer--enterprise .site-footer__copy,
.site-footer--enterprise .site-footer__copy {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--footer-dim);
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0.65rem;
}

.site-footer__legal-sep {
    color: rgba(148, 163, 184, 0.45);
    font-size: 0.75rem;
    user-select: none;
}

body.site-page .site-footer--enterprise .site-footer__legal a,
.site-footer--enterprise .site-footer__legal a {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--footer-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

body.site-page .site-footer--enterprise .site-footer__legal a:hover,
.site-footer--enterprise .site-footer__legal a:hover {
    color: var(--footer-blue-bright);
}

.site-footer__bottom .site-footer__social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

@media (min-width: 900px) {
    .site-footer__bottom .site-footer__social {
        justify-content: flex-end;
    }
}

.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    color: var(--footer-bg);
    background: rgba(255, 255, 255, 0.92);
    transition: background 0.2s ease, transform 0.2s ease;
}

.site-footer__social-link svg {
    width: 0.9rem;
    height: 0.9rem;
    fill: currentColor;
}

.site-footer__social-link:hover {
    background: var(--footer-blue);
    color: #fff;
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    .site-footer__social-link:hover,
    .site-footer__office-card:hover {
        transform: none;
    }
}

/* ==========================================================================
   About page — enterprise workforce consulting redesign (.abt-*)
   ========================================================================== */
.abt {
    --abt-navy: #001f3f;
    --abt-blue: #005eb2;
    --abt-cyan: #0ea5e9;
    --abt-muted: #5c6f82;
    --abt-surface: #ffffff;
    --abt-alt: #f1f5f9;
}

.abt-eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--abt-blue);
}

.abt-eyebrow--light {
    color: rgba(125, 211, 252, 0.95);
}

.abt-section {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.abt-section--alt {
    background: linear-gradient(180deg, var(--abt-alt) 0%, #fff 100%);
}

.abt-section__head {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2.75rem;
}

.abt-section__head--light .abt-section__title,
.abt-section__head--light .abt-section__sub {
    color: #fff;
}

.abt-section__head--light .abt-section__sub {
    color: rgba(226, 232, 240, 0.82);
}

.abt-section__title {
    margin: 0 0 0.75rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.65rem, 2.8vw, 2.15rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--abt-navy);
}

body.about-page .abt-section__title {
    color: var(--abt-navy);
}

.abt-section__sub,
.abt-section__lead,
.abt-section__text {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--abt-muted);
}

.abt-section__sub {
    margin: 0;
}

.abt-section__lead {
    margin: 0 0 1rem;
}

.abt-section__text {
    margin: 0 0 1.5rem;
    font-size: 0.9375rem;
}

/* Hero */
.abt-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-h, 4.25rem) + 2.5rem) 0 clamp(3.5rem, 6vw, 5rem);
    background: linear-gradient(165deg, #fff 0%, #f0f7ff 45%, #f8fafc 100%);
}

@media (min-width: 1024px) {
    .abt-hero {
        padding-top: calc(var(--header-h, 5.25rem) + 3rem);
    }
}

.abt-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 85% 15%, rgba(0, 94, 178, 0.08), transparent 55%),
        radial-gradient(ellipse 50% 40% at 5% 90%, rgba(14, 165, 233, 0.06), transparent 50%);
    pointer-events: none;
}

.abt-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .abt-hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 3.5rem;
    }
}

.abt-hero__title {
    margin: 0 0 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4.2vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--abt-navy);
}

body.about-page .abt-hero__title {
    color: var(--abt-navy);
}

.abt-hero__lead {
    margin: 0 0 1.75rem;
    max-width: 34rem;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--abt-muted);
}

.abt-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
}

@media (min-width: 640px) {
    .abt-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.abt-stat {
    padding: 0.85rem 0.75rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 94, 178, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 31, 63, 0.05);
}

.abt-stat strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--abt-navy);
    line-height: 1.1;
}

.abt-stat span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--abt-muted);
}

.abt-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.abt-hero__actions .page-btn .material-symbols-outlined {
    font-size: 1.125rem;
}

.abt-hero__visual {
    position: relative;
}

.abt-hero__frame {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(0, 31, 63, 0.08);
    box-shadow: 0 24px 60px rgba(0, 31, 63, 0.12);
}

.abt-hero__frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.abt-hero__badge {
    position: absolute;
    left: 1rem;
    bottom: -1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    max-width: calc(100% - 2rem);
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 94, 178, 0.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0, 31, 63, 0.1);
}

.abt-hero__badge .material-symbols-outlined {
    color: var(--abt-blue);
    font-size: 1.5rem;
}

.abt-hero__badge strong {
    display: block;
    font-size: 0.875rem;
    color: var(--abt-navy);
}

.abt-hero__badge span {
    font-size: 0.75rem;
    color: var(--abt-muted);
}

/* Overview */
.abt-overview__grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .abt-overview__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        gap: 3.5rem;
    }
}

.abt-overview__img-wrap {
    border-radius: 1.15rem;
    overflow: hidden;
    border: 1px solid rgba(0, 31, 63, 0.08);
    box-shadow: 0 20px 50px rgba(0, 31, 63, 0.1);
}

.abt-overview__img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.abt-mini-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .abt-mini-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.abt-mini-card {
    padding: 1rem 1.1rem;
    border-radius: 0.85rem;
    background: #fff;
    border: 1px solid rgba(0, 31, 63, 0.08);
    box-shadow: 0 4px 16px rgba(0, 31, 63, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.abt-mini-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 94, 178, 0.2);
    box-shadow: 0 12px 28px rgba(0, 94, 178, 0.1);
}

.abt-mini-card .material-symbols-outlined {
    font-size: 1.35rem;
    color: var(--abt-blue);
    margin-bottom: 0.5rem;
}

.abt-mini-card h3 {
    margin: 0 0 0.25rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--abt-navy);
}

body.about-page .abt-mini-card h3 {
    color: var(--abt-navy);
}

.abt-mini-card p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--abt-muted);
}

/* Industries */
.abt-industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 15.5rem), 1fr));
    gap: 1rem;
}

.abt-industry-card {
    padding: 1.35rem;
    border-radius: 1rem;
    background: linear-gradient(145deg, #fff 0%, #f8fafc 100%);
    border: 1px solid rgba(0, 31, 63, 0.07);
    box-shadow: 0 4px 20px rgba(0, 31, 63, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.abt-industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 94, 178, 0.12);
}

.abt-industry-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.85rem;
    border-radius: 0.65rem;
    font-size: 1.35rem;
    color: var(--abt-blue);
    background: rgba(0, 94, 178, 0.08);
}

.abt-industry-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--abt-navy);
}

body.about-page .abt-industry-card h3 {
    color: var(--abt-navy);
}

.abt-industry-card p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--abt-muted);
}

/* Vision & Mission */
.abt-vision-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .abt-vision-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.abt-vision-card {
    padding: 2rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(0, 31, 63, 0.08);
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 31, 63, 0.06);
}

.abt-vision-card--vision {
    background: linear-gradient(135deg, #001f3f 0%, #003d73 100%);
    border-color: transparent;
}

.abt-vision-card--vision .abt-vision-card__label {
    color: rgba(125, 211, 252, 0.95);
}

.abt-vision-card--vision p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(248, 250, 252, 0.92);
}

.abt-vision-card__label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--abt-blue);
}

.abt-vision-card--mission ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.abt-vision-card--mission li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.65rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--abt-muted);
}

.abt-vision-card--mission li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--abt-blue), var(--abt-cyan));
}

/* Services */
.abt-service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .abt-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .abt-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.abt-service-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 31, 63, 0.08);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px rgba(0, 31, 63, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.abt-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 94, 178, 0.22);
    box-shadow: 0 16px 40px rgba(0, 94, 178, 0.12);
}

.abt-service-card__icon {
    font-size: 1.75rem;
    color: var(--abt-blue);
    margin-bottom: 0.85rem;
}

.abt-service-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--abt-navy);
}

body.about-page .abt-service-card h3 {
    color: var(--abt-navy);
}

.abt-service-card p {
    flex: 1;
    margin: 0 0 1rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--abt-muted);
}

.abt-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--abt-blue);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.abt-service-card__link:hover {
    gap: 0.45rem;
}

.abt-service-card__link .material-symbols-outlined {
    font-size: 1rem;
}

/* Why partner */
.abt-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .abt-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .abt-why-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.abt-why-card {
    padding: 1.35rem;
    border-radius: 0.95rem;
    background: #fff;
    border: 1px solid rgba(0, 31, 63, 0.07);
    box-shadow: 0 4px 18px rgba(0, 31, 63, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.abt-why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 94, 178, 0.1);
}

.abt-why-card .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--abt-blue);
    margin-bottom: 0.65rem;
}

.abt-why-card h3 {
    margin: 0 0 0.4rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--abt-navy);
}

body.about-page .abt-why-card h3 {
    color: var(--abt-navy);
}

.abt-why-card p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--abt-muted);
}

/* Process */
.abt-process-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: abt-step;
}

@media (min-width: 640px) {
    .abt-process-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .abt-process-track {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.abt-process-step {
    position: relative;
    padding: 1.35rem 1.25rem 1.25rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(0, 31, 63, 0.08);
    box-shadow: 0 4px 20px rgba(0, 31, 63, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.abt-process-step:hover {
    border-color: rgba(0, 94, 178, 0.2);
    box-shadow: 0 12px 32px rgba(0, 94, 178, 0.1);
}

.abt-process-step__num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: rgba(0, 94, 178, 0.35);
}

.abt-process-step__icon {
    display: block;
    font-size: 1.5rem;
    color: var(--abt-blue);
    margin-bottom: 0.65rem;
}

.abt-process-step h3 {
    margin: 0 0 0.35rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--abt-navy);
}

body.about-page .abt-process-step h3 {
    color: var(--abt-navy);
}

.abt-process-step p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--abt-muted);
}

/* Global */
.abt-global {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 7vw, 5.5rem) 0;
    background: linear-gradient(165deg, #050b16 0%, #0a1424 50%, #0f1c32 100%);
}

.abt-global__bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='400' viewBox='0 0 800 400'%3E%3Cg fill='none' stroke='%233b9eff' stroke-opacity='0.08' stroke-width='0.75'%3E%3Cpath d='M120 180c40-30 90-35 130-10s70 55 110 45 80-50 120-40 90 60 140 50'/%3E%3Cpath d='M80 220c50 20 100 10 150 25s90 40 140 30'/%3E%3Ccircle cx='200' cy='160' r='4' fill='%233b9eff' fill-opacity='0.15'/%3E%3Ccircle cx='500' cy='140' r='3' fill='%2322d3ee' fill-opacity='0.2'/%3E%3Ccircle cx='620' cy='200' r='3' fill='%233b9eff' fill-opacity='0.12'/%3E%3C/g%3E%3C/svg%3E");
    background-size: min(1100px, 130%) auto;
    background-position: center 40%;
    opacity: 0.9;
    pointer-events: none;
}

.abt-global__inner {
    position: relative;
    z-index: 1;
}

.abt-global-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .abt-global-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .abt-global-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }
}

.abt-global-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.abt-global-card:hover {
    transform: translateY(-2px);
    background: rgba(59, 158, 255, 0.12);
    border-color: rgba(59, 158, 255, 0.35);
    box-shadow: 0 8px 24px rgba(59, 158, 255, 0.15);
}

.abt-global-card .material-symbols-outlined {
    font-size: 1.125rem;
    color: #3b9eff;
}

.abt-global-card strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f8fafc;
}

/* CTA */
.abt-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.abt-cta__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% 0%, rgba(59, 158, 255, 0.2), transparent 55%),
        linear-gradient(135deg, #001f3f 0%, #003d73 50%, #005eb2 100%);
}

.abt-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 40rem;
    margin: 0 auto;
}

.abt-cta__title {
    margin: 0 0 0.75rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
}

body.about-page .abt-cta__title {
    color: #fff;
}

.abt-cta__lead {
    margin: 0 0 1.75rem;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.88);
}

.abt-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
    .abt-mini-card:hover,
    .abt-industry-card:hover,
    .abt-service-card:hover,
    .abt-why-card:hover,
    .abt-global-card:hover {
        transform: none;
    }
}

/* --- Hero refinement --- */
.abt-hero__note {
    margin: 0 0 1.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--abt-blue);
    opacity: 0.9;
    text-transform: uppercase;
}

/* --- Overview list (replaces mini-cards) --- */
.abt-overview__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.abt-overview__list li {
    position: relative;
    padding: 0.65rem 0 0.65rem 1.25rem;
    border-bottom: 1px solid rgba(0, 31, 63, 0.07);
    font-size: 0.9375rem;
    color: var(--abt-muted);
    line-height: 1.45;
}

.abt-overview__list li:first-child {
    border-top: 1px solid rgba(0, 31, 63, 0.07);
}

.abt-overview__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--abt-blue), var(--abt-cyan));
}

/* --- Journey (dark section) --- */
.abt-section--dark {
    background: linear-gradient(165deg, #001629 0%, #002245 50%, #001f3f 100%);
}

.abt-section__intro {
    max-width: 36rem;
    margin-bottom: 2.5rem;
}

.abt-section__intro--light .abt-section__sub {
    color: rgba(226, 232, 240, 0.78);
}

.abt-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

@media (min-width: 768px) {
    .abt-timeline {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .abt-timeline::before {
        content: '';
        position: absolute;
        top: 1.75rem;
        left: 2.5%;
        right: 2.5%;
        height: 1px;
        background: linear-gradient(90deg,
            transparent 0%,
            rgba(59, 158, 255, 0.3) 10%,
            rgba(59, 158, 255, 0.5) 50%,
            rgba(34, 211, 238, 0.3) 90%,
            transparent 100%);
    }
}

.abt-timeline__item {
    position: relative;
    padding: 0 1rem 1.75rem;
}

@media (min-width: 768px) {
    .abt-timeline__item {
        padding: 0 1.25rem;
    }
}

.abt-timeline__item::before {
    content: '';
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(59, 158, 255, 0.35);
    border: 2px solid rgba(59, 158, 255, 0.6);
    transition: background 0.25s ease;
}

.abt-timeline__item--current::before {
    background: var(--abt-blue);
    border-color: var(--abt-cyan);
    box-shadow: 0 0 16px rgba(59, 158, 255, 0.5);
}

.abt-timeline__year {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(125, 211, 252, 0.9);
}

.abt-timeline__content h3 {
    margin: 0 0 0.4rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: rgba(248, 250, 252, 0.95);
    line-height: 1.3;
}

body.about-page .abt-timeline__content h3 {
    color: rgba(248, 250, 252, 0.95);
}

.abt-timeline__content p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgba(203, 213, 225, 0.75);
}

/* --- What We Believe --- */
.abt-believe {
    background: #fff;
}

.abt-believe__header {
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.abt-believe__statement {
    margin: 0.5rem 0 0;
    font-size: clamp(1.125rem, 2.2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--abt-navy);
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.01em;
}

.abt-believe__blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .abt-believe__blocks {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.abt-believe__block {
    padding: 2rem 1.75rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(0, 31, 63, 0.08);
    background: #f8fafc;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.abt-believe__block:hover {
    border-color: rgba(0, 94, 178, 0.2);
    box-shadow: 0 12px 32px rgba(0, 94, 178, 0.08);
}

.abt-believe__block--a {
    background: linear-gradient(145deg, #001f3f 0%, #003d73 100%);
    border-color: transparent;
}

.abt-believe__block--a .abt-believe__label,
.abt-believe__block--a h3,
.abt-believe__block--a p {
    color: rgba(248, 250, 252, 0.92);
}

.abt-believe__block--a .abt-believe__label {
    color: rgba(125, 211, 252, 0.9);
}

.abt-believe__label {
    display: block;
    margin-bottom: 0.85rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(0, 94, 178, 0.15);
    letter-spacing: -0.03em;
}

.abt-believe__block h3 {
    margin: 0 0 0.6rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--abt-navy);
    line-height: 1.3;
}

body.about-page .abt-believe__block h3 {
    color: var(--abt-navy);
}

.abt-believe__block--a h3,
body.about-page .abt-believe__block--a h3 {
    color: rgba(248, 250, 252, 0.95);
}

.abt-believe__block p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--abt-muted);
}

/* --- Leadership --- */
.abt-leadership__grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .abt-leadership__grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 4rem;
    }
}

.abt-leadership__frame {
    border-radius: 1.15rem;
    overflow: hidden;
    border: 1px solid rgba(0, 31, 63, 0.08);
    box-shadow: 0 20px 50px rgba(0, 31, 63, 0.1);
}

.abt-leadership__frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.abt-leadership__quote {
    margin: 1.25rem 0;
    padding: 1.5rem;
    border-left: 3px solid var(--abt-blue);
    background: #f0f7ff;
    border-radius: 0 0.75rem 0.75rem 0;
}

.abt-leadership__quote p {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--abt-navy);
    font-style: italic;
}

.abt-leadership__signoff {
    margin: 0.5rem 0 0;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--abt-navy);
}

.abt-leadership__role {
    margin: 0.15rem 0 0;
    font-size: 0.8125rem;
    color: var(--abt-muted);
}

/* --- Industries — split layout --- */
.abt-industries__layout {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .abt-industries__layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
        gap: 3.5rem;
    }
}

.abt-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.85rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--abt-blue);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.abt-text-link:hover {
    gap: 0.55rem;
}

.abt-text-link .material-symbols-outlined {
    font-size: 1.125rem;
}

.abt-industry-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.abt-industry-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0, 31, 63, 0.07);
    transition: background 0.2s ease;
    border-radius: 0.5rem;
}

.abt-industry-list li:first-child {
    padding-top: 0;
}

.abt-industry-list li:last-child {
    border-bottom: none;
}

.abt-industry-list .material-symbols-outlined {
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--abt-blue);
    margin-top: 0.05rem;
}

.abt-industry-list div {
    min-width: 0;
}

.abt-industry-list strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--abt-navy);
    line-height: 1.3;
}

.abt-industry-list span {
    display: block;
    font-size: 0.8125rem;
    color: var(--abt-muted);
    margin-top: 0.1rem;
}

/* --- Services — list layout --- */
.abt-services__layout {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .abt-services__layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
        gap: 3.5rem;
    }
}

.abt-services__intro {
    position: sticky;
    top: calc(var(--header-h, 5.25rem) + 1.5rem);
}

.abt-service-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.abt-service-list li {
    border-bottom: 1px solid rgba(0, 31, 63, 0.08);
}

.abt-service-list li:first-child {
    border-top: 1px solid rgba(0, 31, 63, 0.08);
}

.abt-service-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 0;
    text-decoration: none;
    transition: background 0.2s ease, padding-left 0.2s ease;
    border-radius: 0.5rem;
}

.abt-service-list a:hover {
    padding-left: 0.5rem;
}

.abt-service-list__icon {
    flex-shrink: 0;
    font-size: 1.35rem;
    color: var(--abt-blue);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.6rem;
    background: rgba(0, 94, 178, 0.06);
    transition: background 0.2s ease;
}

.abt-service-list a:hover .abt-service-list__icon {
    background: rgba(0, 94, 178, 0.12);
}

.abt-service-list__body {
    flex: 1;
    min-width: 0;
}

.abt-service-list__body strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--abt-navy);
    line-height: 1.3;
    margin-bottom: 0.15rem;
}

.abt-service-list__body span {
    display: block;
    font-size: 0.8125rem;
    color: var(--abt-muted);
    line-height: 1.45;
}

.abt-service-list__arrow {
    flex-shrink: 0;
    font-size: 1.125rem;
    color: var(--abt-blue);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.abt-service-list a:hover .abt-service-list__arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* --- Client Trust band --- */
.abt-trust {
    padding: clamp(2.5rem, 4vw, 3.5rem) 0;
    background: linear-gradient(135deg, #001629 0%, #002548 100%);
}

.abt-trust__inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .abt-trust__inner {
        flex-direction: row;
        text-align: left;
        gap: 3rem;
        align-items: center;
        justify-content: space-between;
    }
}

.abt-trust__title {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

body.about-page .abt-trust__title {
    color: #fff;
}

.abt-trust__metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 1024px) {
    .abt-trust__metrics {
        justify-content: flex-end;
    }
}

.abt-trust__metrics li {
    text-align: center;
}

.abt-trust__metrics strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: rgba(125, 211, 252, 0.95);
    line-height: 1.1;
}

.abt-trust__metrics span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.8);
}

/* --- Global section split layout --- */
.abt-global__layout {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .abt-global__layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 4rem;
    }
}

.abt-global__copy .abt-section__title {
    color: #fff;
}

body.about-page .abt-global__copy .abt-section__title {
    color: #fff;
}

.abt-global-markets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.abt-global-markets li {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(248, 250, 252, 0.92);
    background: rgba(59, 158, 255, 0.12);
    border: 1px solid rgba(59, 158, 255, 0.3);
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.abt-global-markets li:hover {
    background: rgba(59, 158, 255, 0.22);
    border-color: rgba(59, 158, 255, 0.55);
}

@media (prefers-reduced-motion: reduce) {
    .abt-believe__block:hover,
    .abt-industry-list li:hover,
    .abt-service-list a:hover {
        transform: none;
        padding-left: 0;
    }
}

/* ==========================================================================
   About page v2 — premium enterprise polish (.ab-*)
   ========================================================================== */

.ab-hero,
.ab-section,
.ab-believe,
.ab-cta {
    --ab-navy: #0b1633;
    --ab-navy-soft: #12224a;
    --ab-blue: #1f4ed8;
    --ab-cyan: #0ea5e9;
    --ab-text: #1d2b45;
    --ab-text-soft: #5f6f88;
    --ab-border: rgba(148, 163, 184, 0.26);
    --ab-glass: rgba(255, 255, 255, 0.72);
    --ab-glass-strong: rgba(255, 255, 255, 0.85);
    --ab-shadow-soft: 0 20px 50px -28px rgba(21, 35, 74, 0.32);
    --ab-shadow-float: 0 40px 80px -42px rgba(12, 25, 57, 0.45);
    --ab-radius: 1.35rem;
}

.ab-eyebrow {
    display: inline-block;
    margin-bottom: 1.15rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    color: #2b5bd9;
}

.ab-eyebrow--light {
    color: rgba(191, 219, 254, 0.95);
}

.ab-section {
    position: relative;
    padding-top: clamp(3.25rem, 5vw, 4.5rem);
    padding-bottom: clamp(6rem, 8vw, 8rem);
    background: #ffffff;
    overflow: clip;
}

.ab-section::before {
    content: "";
    position: absolute;
    inset: -35% auto auto -18%;
    width: clamp(14rem, 28vw, 26rem);
    height: clamp(14rem, 28vw, 26rem);
    background: radial-gradient(circle, rgba(110, 166, 255, 0.16), rgba(110, 166, 255, 0));
    pointer-events: none;
}

.ab-section--alt {
    background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
}

.ab-section--alt::before {
    inset: auto -20% -25% auto;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.13), rgba(14, 165, 233, 0));
}

.ab-section__head {
    text-align: center;
    max-width: 54rem;
    margin: 0 auto 4.5rem;
}

.ab-section__head--light .ab-section__title,
.ab-section__head--light .ab-section__sub {
    color: #f8fbff;
}

.ab-section__title {
    margin-bottom: 1rem;
    font-size: clamp(2.15rem, 4.2vw, 3.55rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.04;
    color: var(--ab-navy);
    text-wrap: balance;
}

.ab-section__sub {
    font-size: clamp(1.05rem, 1.25vw, 1.22rem);
    line-height: 1.88;
    color: var(--ab-text-soft);
}

/* ---------- HERO ---------- */
.ab-hero {
    position: relative;
    /* Header offset lives here only (main.page-wrap padding-top is 0 on about-page) */
    padding-top: calc(var(--header-h, 4.75rem) + clamp(1.25rem, 3vw, 2rem));
    padding-bottom: clamp(4rem, 6vw, 6rem);
    background: #ffffff;
    overflow: visible;
}

@media (min-width: 1024px) {
    .ab-hero {
        padding-top: calc(var(--header-h, 5.5rem) + clamp(1.5rem, 3vw, 2.25rem));
    }
}

.ab-hero__bg {
    display: none;
}

.ab-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: clamp(2.25rem, 5vw, 4.5rem);
    align-items: start;
}

.ab-hero__copy {
    position: relative;
    z-index: 2;
    container-type: inline-size;
    container-name: ab-hero-copy;
}

/* Match homepage hero typography + color */
body.about-page .ab-hero__title {
    margin-bottom: 1.45rem;
    max-width: 100%;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: var(--type-display);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.18;
    color: #0a1f33;
}

.ab-hero__title-line {
    display: block;
}

@media (min-width: 1024px) {
    .ab-hero__title-line {
        white-space: nowrap;
    }
}

/* Apply homepage-style gradient to the About hero headline (not the eyebrow) */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    body.about-page .ab-hero__grad {
        display: inline;
        background: linear-gradient(
            90deg,
            #c2410c 0%,
            #005eb2 35%,
            #0d9488 65%,
            #005eb2 90%,
            #c2410c 100%
        );
        background-size: 220% auto;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: heroGradientFlow 7s linear 0.6s infinite;
    }
}

.ab-hero__lead {
    max-width: 30rem;
    margin-bottom: 2.25rem;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
    font-weight: 400;
    line-height: 1.75;
    color: #5c6f82;
}

.ab-stats {
    list-style: none;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(11.5rem, 1fr));
    gap: 1.1rem;
    width: calc(100% + clamp(3rem, 14vw, 11rem));
    max-width: 52rem;
    margin: 0 0 2.9rem;
    padding: 0;
}

.ab-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.4rem;
    min-height: 6.5rem;
    padding: 1.15rem 1.35rem;
    border-radius: 1rem;
    border: 1px solid #e7eefb;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.ab-stat__icon {
    font-size: 1.3rem;
    color: #005eb2;
    line-height: 1;
}

.ab-stat strong {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--ab-navy);
}

.ab-stat span {
    font-size: 0.8rem;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
    color: #6b7280;
}

.ab-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
}

.ab-hero__actions .page-btn {
    min-height: 3rem;
    padding: 0.82rem 1.25rem;
    border-radius: 999px;
    box-shadow: 0 18px 35px -24px rgba(30, 64, 175, 0.8);
}

.ab-hero__visual {
    position: relative;
    width: 100%;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-self: start;
    overflow: visible;
    transform: none;
    z-index: 1;
}

.ab-hero__frame {
    position: relative;
    width: 100%;
    overflow: visible;
    line-height: 0;
}

.ab-hero__frame img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    object-position: center;
    -webkit-mask-image: none;
    mask-image: none;
}

.ab-hero__visual::before {
    content: none;
}

@media (max-width: 1100px) {
    .ab-stats {
        grid-template-columns: repeat(2, minmax(11rem, 1fr));
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 900px) {
    .ab-stats {
        grid-template-columns: repeat(2, minmax(10rem, 1fr));
    }
}

/* ---------- WHO WE ARE ---------- */
.ab-who {
    padding-top: clamp(2.25rem, 4vw, 3.25rem);
    padding-bottom: clamp(6rem, 8vw, 8rem);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.ab-who__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
    gap: clamp(2.4rem, 6vw, 5.6rem);
    align-items: center;
}

.ab-who__img-wrap {
    position: relative;
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: var(--ab-shadow-float);
}

.ab-who__img-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: inherit;
    pointer-events: none;
}

.ab-who__img-wrap img {
    width: 100%;
    min-height: clamp(22rem, 34vw, 30rem);
    object-fit: cover;
    display: block;
}

.ab-who__lead {
    margin-bottom: 1rem;
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    line-height: 1.92;
    color: #455774;
}

.ab-who__body {
    margin-bottom: 2.2rem;
    font-size: clamp(0.98rem, 1.05vw, 1.08rem);
    line-height: 1.88;
    color: #64758f;
}

.ab-who__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.ab-who-card {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.05rem 1.15rem;
    border-radius: 1rem;
    border: 1px solid rgba(186, 214, 255, 0.55);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.85), rgba(241, 248, 255, 0.8));
    box-shadow: var(--ab-shadow-soft);
    backdrop-filter: blur(9px);
}

.ab-who-card .material-symbols-outlined {
    font-size: 1.3rem;
    color: #2b5bd9;
    margin-top: 0.15rem;
}

.ab-who-card div {
    display: flex;
    flex-direction: column;
    gap: 0.24rem;
}

.ab-who-card strong {
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #13284f;
}

.ab-who-card span {
    font-size: 0.78rem;
    line-height: 1.55;
    color: #6e809a;
}

/* ---------- JOURNEY ---------- */
.ab-journey {
    padding-top: clamp(3.25rem, 5vw, 4.5rem);
    padding-bottom: clamp(6rem, 8vw, 8rem);
    background: linear-gradient(180deg, #f7faff 0%, #eef5ff 100%);
}

.ab-timeline {
    list-style: none;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.35rem, 1.2vw, 1rem);
    margin: 0;
    padding: 0;
    /* dot centers for 4-column layout */
    --ab-timeline-dot: 1.3rem;
    --ab-timeline-dot-top: calc(0.55rem + (var(--ab-timeline-dot) / 2));
    --ab-timeline-start: 12.5%;
    --ab-timeline-end: 87.5%;
}

.ab-timeline::before {
    content: "";
    position: absolute;
    left: var(--ab-timeline-start);
    right: calc(100% - var(--ab-timeline-end));
    top: 1.16rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.28), rgba(56, 189, 248, 0.44), rgba(59, 130, 246, 0.28));
}

/* Animated "travel dot" moving across the journey line */
.ab-timeline::after {
    content: "";
    position: absolute;
    top: var(--ab-timeline-dot-top);
    left: var(--ab-timeline-start);
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #93c5fd 22%, #005eb2 55%, #0d9488 100%);
    box-shadow:
        0 0 0 5px rgba(45, 89, 207, 0.12),
        0 10px 24px rgba(0, 94, 178, 0.18);
    animation: abTimelineTravel 6.5s ease-in-out infinite;
}

.ab-timeline__dot {
    animation: abTimelineDotPulse 6.5s ease-in-out infinite;
}

.ab-timeline__item:nth-child(1) .ab-timeline__dot { animation-delay: 0s; }
.ab-timeline__item:nth-child(2) .ab-timeline__dot { animation-delay: 1.6s; }
.ab-timeline__item:nth-child(3) .ab-timeline__dot { animation-delay: 3.2s; }
.ab-timeline__item:nth-child(4) .ab-timeline__dot { animation-delay: 4.8s; }

@keyframes abTimelineTravel {
    0% { left: var(--ab-timeline-start); opacity: 0; }
    10% { opacity: 1; }
    50% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: var(--ab-timeline-end); opacity: 0; }
}

@keyframes abTimelineDotPulse {
    0%, 55%, 100% {
        box-shadow: 0 0 0 7px rgba(45, 89, 207, 0.12);
        transform: translateX(-50%) scale(1);
    }
    12% {
        box-shadow: 0 0 0 10px rgba(45, 89, 207, 0.2);
        transform: translateX(-50%) scale(1.06);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ab-timeline::after,
    .ab-timeline__dot {
        animation: none !important;
    }
}

.ab-timeline__item {
    position: relative;
    text-align: center;
    padding: 3.3rem 1.35rem 0;
}

.ab-timeline__dot {
    position: absolute;
    top: 0.55rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    border: 3px solid #2d59cf;
    background: #ffffff;
    box-shadow: 0 0 0 7px rgba(45, 89, 207, 0.12);
}

.ab-timeline__item--active .ab-timeline__dot {
    background: #2d59cf;
    box-shadow: 0 0 0 7px rgba(45, 89, 207, 0.22);
}

.ab-timeline__year {
    display: block;
    margin-bottom: 0.78rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2d59cf;
}

.ab-timeline__content h3 {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.35;
    color: #11284d;
}

.ab-timeline__content p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.68;
    color: #697d98;
}

/* ---------- INDUSTRIES ---------- */
.ab-industries {
    padding-top: clamp(3.25rem, 5vw, 4.5rem);
    padding-bottom: clamp(6rem, 8vw, 8rem);
    background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.ab-industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr));
    gap: 1.45rem;
}

.ab-industry-card {
    position: relative;
    padding: 1.85rem 1.6rem 1.75rem;
    text-align: center;
    border-radius: 1.2rem;
    border: 1px solid rgba(191, 219, 254, 0.8);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.86), rgba(241, 248, 255, 0.82));
    backdrop-filter: blur(10px);
    box-shadow: var(--ab-shadow-soft);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.ab-industry-card::after {
    content: "";
    position: absolute;
    inset: auto 12% -28px 12%;
    height: 34px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.24), rgba(59, 130, 246, 0));
    filter: blur(12px);
    opacity: 0;
    transition: opacity 220ms ease;
}

.ab-industry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.85);
    box-shadow: var(--ab-shadow-float);
}

.ab-industry-card:hover::after {
    opacity: 1;
}

.ab-industry-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    margin-bottom: 0.95rem;
    border-radius: 999px;
    font-size: 1.45rem;
    color: #2b5bd9;
    background: linear-gradient(180deg, rgba(191, 219, 254, 0.72), rgba(147, 197, 253, 0.35));
}

.ab-industry-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #102750;
}

.ab-industry-card p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.66;
    color: #687b95;
}

/* ---------- SERVICES ---------- */
.ab-services {
    padding-top: clamp(3.25rem, 5vw, 4.5rem);
    padding-bottom: clamp(6rem, 8vw, 8rem);
    background: linear-gradient(180deg, #f6faff 0%, #eef5ff 100%);
}

.ab-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 18.2rem), 1fr));
    gap: 1.55rem;
}

.ab-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 16.4rem;
    padding: 2rem 1.75rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(186, 214, 255, 0.82);
    background:
        linear-gradient(170deg, rgba(255, 255, 255, 0.9), rgba(242, 248, 255, 0.84));
    backdrop-filter: blur(10px);
    box-shadow: var(--ab-shadow-soft);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.ab-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.ab-service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(96, 165, 250, 0.82);
    box-shadow: var(--ab-shadow-float);
}

.ab-service-card__icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2553cf;
    background: linear-gradient(180deg, rgba(191, 219, 254, 0.8), rgba(147, 197, 253, 0.42));
}

.ab-service-card h3 {
    margin-bottom: 0.62rem;
    font-size: 1.03rem;
    font-weight: 700;
    letter-spacing: -0.012em;
    color: #11284f;
}

.ab-service-card p {
    margin: 0 0 1.15rem;
    flex: 1;
    font-size: 0.86rem;
    line-height: 1.74;
    color: #657892;
}

.ab-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    font-size: 0.84rem;
    font-weight: 700;
    color: #2553cf;
    text-decoration: none;
}

.ab-service-card__link .material-symbols-outlined {
    font-size: 1rem;
    transition: transform 220ms ease;
}

.ab-service-card__link:hover .material-symbols-outlined {
    transform: translateX(3px);
}

/* ---------- WHAT WE BELIEVE ---------- */
.ab-believe {
    position: relative;
    padding-top: clamp(3.25rem, 5vw, 4.5rem);
    padding-bottom: clamp(6rem, 8vw, 8rem);
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 10%, rgba(30, 64, 175, 0.42), transparent 42%),
        radial-gradient(circle at 87% 78%, rgba(14, 165, 233, 0.28), transparent 42%),
        linear-gradient(180deg, #09152f 0%, #0f1f44 100%);
}

.ab-believe::before {
    content: "";
    position: absolute;
    inset: auto -14% -40% auto;
    width: clamp(16rem, 30vw, 28rem);
    height: clamp(16rem, 30vw, 28rem);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.28), rgba(56, 189, 248, 0));
    filter: blur(20px);
}

body.about-page .ab-believe .ab-section__title,
.about-page .ab-believe .ab-section__title {
    color: #f8fbff;
}

.ab-believe-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.ab-believe-card {
    padding: 2.2rem 1.8rem 2rem;
    text-align: center;
    border-radius: 1.3rem;
    border: 1px solid rgba(148, 163, 184, 0.32);
    background: linear-gradient(180deg, rgba(15, 32, 68, 0.58), rgba(17, 36, 77, 0.47));
    backdrop-filter: blur(12px);
    box-shadow: 0 28px 50px -32px rgba(3, 8, 24, 0.78);
}

.ab-believe-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    font-size: 1.5rem;
    color: #93c5fd;
    background: linear-gradient(180deg, rgba(30, 64, 175, 0.45), rgba(14, 165, 233, 0.18));
}

body.about-page .ab-believe .ab-believe-card h3,
.about-page .ab-believe .ab-believe-card h3 {
    margin-bottom: 0.72rem;
    font-size: 1.03rem;
    font-weight: 700;
    letter-spacing: -0.012em;
    line-height: 1.35;
    color: #ffffff;
}

body.about-page .ab-believe .ab-believe-card p,
.about-page .ab-believe .ab-believe-card p {
    margin: 0;
    font-size: 0.87rem;
    line-height: 1.72;
    color: rgba(226, 232, 240, 0.92);
}

/* ---------- LEADERSHIP ---------- */
.ab-leadership {
    padding-top: clamp(3.25rem, 5vw, 4.5rem);
    padding-bottom: clamp(6rem, 8vw, 8rem);
    background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.ab-leadership__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    gap: clamp(2.5rem, 7vw, 6.2rem);
    align-items: center;
}

.ab-leadership__quote-mark {
    display: block;
    margin-bottom: -0.8rem;
    font-family: Georgia, serif;
    font-size: clamp(4.6rem, 8vw, 7rem);
    line-height: 0.9;
    color: rgba(37, 83, 207, 0.82);
}

.ab-leadership__quote {
    margin-bottom: 1rem;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.92;
    color: #334867;
    font-style: italic;
}

.ab-leadership__quote-p2 {
    margin-bottom: 1.8rem;
    font-size: 0.98rem;
    line-height: 1.85;
    color: #5f7390;
}

.ab-leadership__sig {
    margin-bottom: 0.2rem;
    font-size: 0.96rem;
    font-weight: 700;
    font-style: italic;
    color: #13284f;
}

.ab-leadership__org {
    margin: 0;
    font-size: 0.8rem;
    color: #6d809b;
}

.ab-leadership__frame {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--ab-shadow-float);
}

.ab-leadership__frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.62);
    pointer-events: none;
}

.ab-leadership__frame img {
    width: 100%;
    min-height: clamp(23rem, 36vw, 31rem);
    object-fit: cover;
    display: block;
}

/* ---------- GLOBAL PRESENCE ---------- */
.ab-global {
    position: relative;
    overflow: hidden;
    padding-top: clamp(3.25rem, 5vw, 4.5rem);
    padding-bottom: clamp(6rem, 8vw, 8rem);
    background:
        radial-gradient(circle at top left, rgba(0, 94, 178, 0.08), transparent 35%),
        radial-gradient(circle at bottom right, rgba(20, 184, 166, 0.08), transparent 35%),
        #f7faff;
}

.ab-global__inner {
    position: relative;
    z-index: 1;
}

.ab-global__head {
    text-align: center;
    max-width: min(100%, 72rem);
    margin: 0 auto clamp(3rem, 5vw, 4rem);
}

body.about-page .ab-global__title,
.about-page .ab-global__title {
    margin-bottom: 1.25rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.85rem, 3.2vw, 3.15rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: #001f3f;
    white-space: nowrap;
}

@media (max-width: 900px) {
    body.about-page .ab-global__title,
    .about-page .ab-global__title {
        white-space: normal;
        font-size: clamp(1.75rem, 6.5vw, 2.35rem);
    }
}

.ab-global__sub {
    margin: 0;
    font-size: clamp(1.05rem, 1.2vw, 1.25rem);
    line-height: 1.8;
    color: #5c6f82;
}

.ab-global__body {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.ab-global__map-col {
    position: relative;
    min-height: clamp(18rem, 32vw, 26rem);
}

.ab-global__map-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.ab-global__map-img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: contain;
    object-position: center;
    background: transparent;
}

.ab-global__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.ab-global-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.25rem 1.65rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #ffffff;
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.06),
        0 2px 10px rgba(15, 23, 42, 0.03);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    overflow: hidden;
}

.ab-global-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 58%);
    pointer-events: none;
}

.ab-global-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 94, 178, 0.14);
    box-shadow:
        0 28px 70px rgba(0, 94, 178, 0.12),
        0 10px 25px rgba(15, 23, 42, 0.06);
}

.ab-global-card__flag {
    display: block;
    width: 3.25rem;
    height: 2.25rem;
    margin-bottom: 1rem;
    border-radius: 0.35rem;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.ab-global-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #001f3f;
    letter-spacing: -0.01em;
}

.ab-global-card__label {
    font-size: 0.82rem;
    line-height: 1.5;
    color: #5c6f82;
}

@media (max-width: 1100px) {
    .ab-global__body {
        grid-template-columns: 1fr;
    }

    .ab-global__map-col {
        min-height: 16rem;
        max-width: 36rem;
        margin: 0 auto;
    }

    .ab-global__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .ab-global__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .ab-global__grid {
        grid-template-columns: 1fr;
    }

    .ab-global-card {
        padding: 1.5rem 1.15rem;
    }
}

/* ---------- CTA ---------- */
.ab-cta {
    position: relative;
    overflow: hidden;
    padding-top: clamp(3.25rem, 5vw, 4.5rem);
    padding-bottom: clamp(6rem, 8vw, 8rem);
    background:
        radial-gradient(circle at 18% 25%, rgba(0, 94, 178, 0.1), transparent 42%),
        radial-gradient(circle at 82% 70%, rgba(20, 184, 166, 0.1), transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.ab-cta__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.08), transparent 55%),
        radial-gradient(circle at 0% 90%, rgba(20, 184, 166, 0.08), transparent 55%);
}

.ab-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 51rem;
    margin: 0 auto;
    text-align: center;
}

.ab-cta__title {
    margin-bottom: 1rem;
    font-size: clamp(1.9rem, 3.6vw, 3.15rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.08;
    color: #0a1f33;
    text-wrap: balance;
}

.ab-cta__lead {
    margin: 0 auto 2.35rem;
    max-width: 44rem;
    font-size: clamp(1rem, 1.15vw, 1.14rem);
    line-height: 1.85;
    color: #5c6f82;
}

.ab-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.ab-cta__actions .page-btn {
    min-height: 3rem;
    border-radius: 999px;
    box-shadow: 0 20px 35px -26px rgba(15, 23, 42, 0.9);
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
    .ab-hero__grid,
    .ab-who__grid,
    .ab-leadership__grid {
        grid-template-columns: 1fr;
        gap: 2.35rem;
    }

    .ab-hero__visual {
        max-width: 44rem;
        margin: 0 auto;
        transform: none;
    }

    .ab-who__media,
    .ab-leadership__media {
        max-width: 42rem;
        margin: 0 auto;
    }

    .ab-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 1rem;
    }

    .ab-timeline::before {
        display: none;
    }
}

@media (max-width: 760px) {
    .ab-section,
    .ab-who,
    .ab-journey,
    .ab-industries,
    .ab-services,
    .ab-believe,
    .ab-leadership,
    .ab-global {
        padding-top: clamp(2rem, 6vw, 2.75rem);
        padding-bottom: clamp(3rem, 8vw, 4rem);
    }

    .ab-section__head {
        margin-bottom: 3rem;
    }

    .ab-hero {
        padding-top: calc(4.25rem + clamp(1.5rem, 5vw, 2rem));
        padding-bottom: clamp(3rem, 8vw, 4rem);
    }

    .ab-who__cards {
        grid-template-columns: 1fr;
    }

    .ab-believe-grid {
        grid-template-columns: 1fr;
    }

    .ab-timeline {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ab-industry-card,
    .ab-service-card,
    .ab-global-card,
    .ab-believe-card,
    .ab-service-card__link .material-symbols-outlined {
        transition: none;
    }
}

/* Services hub */
.services-hub-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid color-mix(in srgb, var(--outline-variant) 35%, transparent);
    background: var(--surface-container-lowest);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.services-hub-card:hover {
    box-shadow: 0 20px 40px -24px rgba(15, 23, 42, 0.35);
    border-color: color-mix(in srgb, var(--secondary) 40%, transparent);
    transform: translateY(-2px);
}

.services-hub-card__icon {
    font-size: 2rem;
    color: var(--secondary);
}

.services-hub-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.services-hub-card__for {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.services-hub-card p:not(.services-hub-card__for) {
    color: var(--on-surface-variant);
    font-size: 0.9375rem;
    line-height: 1.6;
    flex: 1;
}

.services-hub-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--secondary);
    margin-top: 0.5rem;
}

.site-footer__grid--5 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .site-footer__grid--5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .site-footer__grid--5 {
        grid-template-columns: 1.4fr repeat(4, 1fr);
    }
}

.contact-form__field input.is-invalid,
.contact-form__field select.is-invalid,
.contact-form__field textarea.is-invalid,
.insights-newsletter__form input.is-invalid {
    border-color: #dc2626;
    outline-color: #dc2626;
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9375rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.form-message--success {
    background: color-mix(in srgb, var(--secondary) 12%, transparent);
    color: var(--primary);
}

.form-message--error {
    background: #fef2f2;
    color: #991b1b;
}

/* Recruitment page — process pipeline cards */
.recruitment-pipeline {
    position: relative;
    padding-top: 0.5rem;
}

.recruitment-pipeline__track {
    position: absolute;
    top: 2.75rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(
        90deg,
        color-mix(in srgb, var(--outline-variant) 35%, transparent),
        color-mix(in srgb, var(--secondary) 55%, transparent),
        color-mix(in srgb, var(--outline-variant) 35%, transparent)
    );
    border-radius: 999px;
    z-index: 0;
    pointer-events: none;
}

.recruitment-pipeline__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 640px) {
    .recruitment-pipeline__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .recruitment-pipeline__grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1280px) {
    .recruitment-pipeline--7 .recruitment-pipeline__grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 0.75rem;
    }

    .recruitment-pipeline--7 .recruitment-pipeline__title {
        font-size: 0.875rem;
    }

    .recruitment-pipeline--8 .recruitment-pipeline__grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 0.625rem;
    }

    .recruitment-pipeline--8 .recruitment-pipeline__title {
        font-size: 0.8125rem;
    }
}

.recruitment-pipeline__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100%;
    padding: 1.75rem 1.25rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid color-mix(in srgb, var(--outline-variant) 35%, transparent);
    background: var(--surface-container-lowest);
    box-shadow: 0 12px 32px -20px rgba(15, 23, 42, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.recruitment-pipeline__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -22px rgba(15, 23, 42, 0.22);
}

.recruitment-pipeline__badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1.25rem;
    border-radius: 0.65rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 2;
}

.recruitment-pipeline__badge--primary {
    background: var(--primary, #001f3f);
    box-shadow: 0 8px 20px -8px rgba(0, 31, 63, 0.45);
}

.recruitment-pipeline__badge--secondary {
    background: var(--secondary, #005eb2);
    box-shadow: 0 8px 20px -8px rgba(0, 94, 178, 0.4);
}

.recruitment-pipeline__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    min-width: 0;
}

.recruitment-pipeline__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--primary, #001f3f);
    margin: 0 0 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.recruitment-pipeline__desc {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: color-mix(in srgb, var(--on-surface-variant) 88%, transparent);
}

/* Pipeline on executive search dark section */
.recruitment-pipeline--dark .recruitment-pipeline__card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 32px -20px rgba(0, 0, 0, 0.35);
}

.recruitment-pipeline--dark .recruitment-pipeline__card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(148, 197, 230, 0.28);
}

.recruitment-pipeline--dark .recruitment-pipeline__title {
    color: #fff;
}

.recruitment-pipeline--dark .recruitment-pipeline__desc {
    color: rgba(232, 238, 244, 0.68);
}

.recruitment-pipeline--dark .recruitment-pipeline__badge--primary {
    background: #fff;
    color: #001f3f;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.recruitment-pipeline--dark .recruitment-pipeline__badge--secondary {
    background: linear-gradient(135deg, #94c5e6, #5a9fd4);
    color: #001a33;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.recruitment-pipeline--dark .recruitment-pipeline__track {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(148, 197, 230, 0.4),
        transparent
    );
}

/* Recruitment page — industries grid */
.recruitment-industries {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 640px) {
    .recruitment-industries {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .recruitment-industries {
        grid-template-columns: repeat(8, 1fr);
        gap: 0.875rem;
    }
}

.recruitment-industries__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-height: 9.5rem;
    padding: 1.5rem 0.75rem 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid color-mix(in srgb, var(--outline-variant) 35%, transparent);
    background: var(--surface-container-lowest);
    box-shadow: 0 10px 28px -18px rgba(15, 23, 42, 0.16);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.recruitment-industries__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -20px rgba(15, 23, 42, 0.2);
}

.recruitment-industries__icon {
    flex-shrink: 0;
    font-size: 2.25rem;
    line-height: 1;
    color: var(--secondary, #005eb2);
    margin-bottom: 0.875rem;
}

.recruitment-industries__label {
    display: block;
    width: 100%;
    min-width: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--primary, #001f3f);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Home CMS blocks (insights, case studies, testimonial) */
.home-cms-head {
    margin-bottom: 2rem;
}

.home-cms-head--row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
}

.home-cms-head__eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary, #005eb2);
    margin-bottom: 0.5rem;
}

.home-cms-head__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 800;
    color: var(--primary, #001f3f);
    line-height: 1.15;
    margin: 0 0 0.5rem;
}

.home-cms-head__lead {
    margin: 0;
    font-size: 1.0625rem;
    color: #64748b;
    max-width: 36rem;
}

.home-cms-head__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    color: var(--secondary, #005eb2);
    text-decoration: none;
    white-space: nowrap;
}

.home-cms-head__link:hover {
    text-decoration: underline;
}

.home-cms-block--muted {
    background: #f8fafc;
    border-block: 1px solid rgba(0, 31, 63, 0.06);
}

.home-cms-loading {
    color: #94a3b8;
    font-size: 0.9375rem;
    margin: 0;
}

[data-cms].cms-loaded .home-cms-loading {
    display: none;
}

.home-insights-grid,
.home-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .home-insights-grid,
    .home-cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.home-insight-card,
.home-case-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0;
    background: #fff;
    border: 1px solid rgba(0, 31, 63, 0.08);
    border-radius: 1rem;
    box-shadow: 0 8px 28px rgba(0, 31, 63, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    overflow: hidden;
}

.home-insight-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8f0fa;
}

.home-insight-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.home-insight-card:hover .home-insight-card__media img {
    transform: scale(1.04);
}

.home-insight-card .home-insight-card__badge,
.home-insight-card .home-insight-card__title,
.home-insight-card .home-insight-card__excerpt,
.home-insight-card .home-insight-card__cta {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
}

.home-insight-card .home-insight-card__badge {
    margin-top: 1rem;
}

.home-insight-card .home-insight-card__cta {
    margin-bottom: 1.25rem;
}

.home-case-card {
    padding: 1.35rem 1.25rem;
}

.home-insight-card:hover,
.home-case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 31, 63, 0.1);
}

.home-insight-card__badge,
.home-case-card__badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(0, 94, 178, 0.1);
    color: #005eb2;
}

.home-insight-card__title,
.home-case-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #001f3f;
    margin: 0;
    line-height: 1.35;
}

.home-insight-card__excerpt,
.home-case-card__excerpt {
    margin: 0;
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.55;
    flex: 1;
}

.home-insight-card__cta,
.home-case-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #005eb2;
    margin-top: auto;
}

.home-testimonial {
    background: linear-gradient(165deg, #001f3f 0%, #003d73 55%, #005eb2 100%);
    color: #fff;
}

.home-testimonial__inner {
    max-width: 52rem;
}

.home-testimonial__card {
    margin: 0;
    padding: 2rem 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.25rem;
    backdrop-filter: blur(8px);
}

.home-testimonial__mark {
    font-size: 2.5rem;
    opacity: 0.45;
    margin-bottom: 0.5rem;
    display: block;
}

.home-testimonial__quote {
    margin: 0 0 1.25rem;
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 500;
    line-height: 1.55;
    font-style: normal;
}

.home-testimonial__cite {
    font-size: 0.9375rem;
    opacity: 0.85;
    font-style: normal;
}

.home-testimonial .home-cms-head__title,
.home-testimonial .home-cms-head__eyebrow {
    color: #fff;
}

.home-testimonial .home-cms-head__eyebrow {
    opacity: 0.75;
}

/* Insight article page */
.insight-page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 31, 63, 0.08);
}

.insight-page-header__inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.insight-page-header__logo {
    height: 2.5rem;
    width: auto;
}

.insight-page-header__nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.insight-page-header__nav a {
    font-weight: 600;
    font-size: 0.875rem;
    color: #001f3f;
    text-decoration: none;
}

.insight-page-header__nav a:hover {
    color: #005eb2;
}

.insight-article {
    max-width: 48rem;
    margin: 0 auto;
    padding: 5.5rem 1.5rem 3rem;
}

.insight-article__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.insight-related {
    max-width: 48rem;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.insight-related__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #001f3f;
    margin: 0 0 1rem;
}

.insight-related__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.insight-related__list a {
    display: block;
    padding: 1rem 1.1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 31, 63, 0.1);
    text-decoration: none;
    color: #001f3f;
    font-weight: 600;
    transition: background 0.15s ease;
}

.insight-related__list a:hover {
    background: #f1f5f9;
}

.insight-related__list span {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Keep last: wins over Tailwind CDN injected utilities */
html:not(.admin-app) {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

html:not(.admin-app)::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

body.site-page,
body.site-page.overflow-x-hidden,
main.page-wrap,
.page-wrap {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body.site-page::-webkit-scrollbar,
main.page-wrap::-webkit-scrollbar,
.page-wrap::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

