/* Corporate import/export navy, red accent, light surfaces */

:root {
    --navy: #1d2b5b;
    --navy-deep: #141d3d;
    --navy-soft: #2e3e7e;
    --red: #d12026;
    --red-dark: #b01b20;
    --green-tag: #1a5c40;
    --bg: #f0f2f7;
    --bg-white: #ffffff;
    --bg-stripe: #e8ecf4;
    --text: #1e293b;
    --muted: #64748b;
    --border: rgba(29, 43, 91, 0.12);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow: 0 20px 50px rgba(29, 43, 91, 0.12);
    --font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
    --container: min(1140px, calc(100% - 2.5rem));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

a:hover {
    color: var(--navy-soft);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -100px;
    background: var(--red);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 100;
}

.skip-link:focus {
    top: 1rem;
}

.shell {
    width: var(--container);
    margin-inline: auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.75rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
}

.brand:hover {
    color: var(--navy);
}

.brand__logo {
    display: block;
    height: auto;
    width: auto;
    max-width: 160px;
    flex-shrink: 0;
    object-fit: contain;
}

.brand__text {
    line-height: 1.15;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list > li > a,
.site-nav__trigger {
    font-size: 0.9rem;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0.65rem;
    border-radius: var(--radius-sm);
    border: none;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.site-nav__list > li > a:hover,
.site-nav__trigger:hover {
    background: rgba(29, 43, 91, 0.06);
}

.site-nav__list > li > a[aria-current="page"] {
    color: var(--red);
    font-weight: 700;
}

.site-nav__trigger .caret {
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    transform: rotate(45deg) translateY(-2px);
    margin-top: -2px;
}

.site-nav__item--dropdown {
    position: relative;
}

.site-nav__dropdown {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    min-width: 240px;
    margin: 0;
    padding: 0.4rem;
    list-style: none;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.site-nav__item--dropdown.is-open .site-nav__dropdown,
.site-nav__item--dropdown:hover .site-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-nav__dropdown a {
    display: block;
    padding: 0.55rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius-sm);
}

.site-nav__dropdown a:hover {
    background: rgba(29, 43, 91, 0.06);
    color: var(--navy);
}

.site-nav__cta {
    margin-left: 0.5rem;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.65rem;
    cursor: pointer;
}

.nav-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    margin: 5px 0;
    border-radius: 2px;
}

@media (max-width: 960px) {
    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 1.25rem;
        background: #fff;
        border-bottom: 1px solid var(--border);
        display: none;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .site-nav__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 0.5rem;
        display: none;
    }

    .site-nav__item--dropdown.is-open .site-nav__dropdown {
        display: block;
    }

    .site-nav__cta {
        margin-left: 0;
        text-align: center;
        margin-top: 0.5rem;
    }
}

@media (min-width: 961px) {
    .site-nav__item--dropdown:hover .site-nav__trigger .caret,
    .site-nav__item--dropdown.is-open .site-nav__trigger .caret {
        transform: rotate(225deg) translateY(1px);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.8rem 1.35rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
    transform: translateY(1px);
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn--primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 10px 28px rgba(209, 32, 38, 0.28);
}

.btn--primary:hover {
    color: #fff;
    background: var(--red-dark);
}

.btn--navy {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 10px 28px rgba(29, 43, 91, 0.22);
}

.btn--navy:hover {
    color: #fff;
    background: var(--navy-deep);
}

.btn--ghost {
    border: 2px solid var(--navy);
    background: transparent;
    color: var(--navy);
}

.btn--ghost:hover {
    background: rgba(29, 43, 91, 0.06);
}

/* Inner page hero */
.page-hero {
    background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy) 100%);
    color: #fff;
    padding-block: clamp(2.25rem, 4.5vw, 3.25rem);
}

.page-hero__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.page-hero__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.page-hero__sub {
    margin: 0;
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
}

.page-hero__crumb {
    margin: 1rem 0 0;
    font-size: 0.9rem;
}

.page-hero__crumb a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.page-hero__crumb a:hover {
    color: #fff;
}

/* Service detail (individual service pages) */
.service-detail {
    padding-block: clamp(2rem, 4vw, 3rem);
}

.service-detail__layout {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

@media (min-width: 900px) {
    .service-detail__layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    }
}

.service-detail__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.service-detail__media img {
    display: block;
    width: 100%;
    height: auto;
}

.service-detail__body {
    position: relative;
}

.service-detail__num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.service-detail__text {
    margin: 0 0 1rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 1rem;
}

.service-detail__list {
    margin: 1.25rem 0 0;
    padding-left: 1.2rem;
    color: var(--text);
    line-height: 1.55;
}

.service-detail__list li {
    margin-bottom: 0.45rem;
}

.service-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.service-detail__related {
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid var(--border);
}

.service-detail__related-title {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
}

.service-detail__related-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.service-detail__related-list a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(209, 32, 38, 0.35);
}

.service-detail__related-list a:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}

.page-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.75rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.page-cta__text {
    margin: 0;
    font-weight: 700;
    color: var(--navy);
    max-width: 42ch;
}

.split-band__sub--push {
    margin-top: 1.25rem;
}

.split-band__text--push {
    margin-top: 1.25rem;
}

.link-inverse {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.link-inverse:hover {
    color: rgba(255, 255, 255, 0.88);
}

.section__sub a {
    color: var(--navy-soft);
    font-weight: 600;
    text-decoration: none;
}

.section__sub a:hover {
    text-decoration: underline;
}

.section__sub--narrow {
    max-width: 720px;
    margin-top: 1rem;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
}

.hero:not(.hero--immersive) {
    padding-block: clamp(2.5rem, 5vw, 4rem);
    background: var(--bg-white);
}

.hero:not(.hero--immersive)::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 12% 18%, rgba(29, 43, 91, 0.06) 0%, transparent 42%),
        radial-gradient(circle at 88% 80%, rgba(209, 32, 38, 0.05) 0%, transparent 38%);
    pointer-events: none;
}

.hero.hero--immersive {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(clamp(24rem, 88vh, 58rem), auto);
    padding: 0;
    background: var(--navy-deep);
    overflow: hidden;
}

.hero.hero--immersive::before {
    display: none;
}

.hero__backdrop {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    min-height: 0;
}

@media (max-width: 640px) {
    .hero.hero--immersive {
        grid-template-rows: minmax(clamp(22rem, 72vh, 42rem), auto);
    }
}

/* Intro card directly below full-bleed hero carousel */
.home-hero-intro {
    padding-block: clamp(2rem, 4.5vw, 3.25rem);
    border-top: 1px solid var(--border);
}

.home-hero-intro__inner {
    display: flex;
    justify-content: center;
}

.home-hero-intro__card {
    width: 100%;
    padding: clamp(1.2rem, 3vw, 1.75rem);
    border-radius: var(--radius-md);
    background: #f8fafc;
    border: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(29, 43, 91, 0.08);
}

.home-hero-intro .hero__lead {
    max-width: none;
}

.hero__copy {
    position: relative;
    z-index: 1;
}

.hero__copy::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: -1rem;
    width: 120px;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%231d2b5b' fill-opacity='.06' d='M20 20h25v25H20zm35 0h25v25H55zM20 55h25v25H20zm35 0h25v25H55z'/%3E%3C/svg%3E")
        no-repeat;
    opacity: 0.9;
    z-index: -1;
}

.hero__rule {
    width: 48px;
    height: 3px;
    background: var(--red);
    margin-bottom: 1rem;
}

.hero__title {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0 0 1rem;
    font-weight: 800;
}

.hero__tagline {
    margin: 0 0 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-tag);
}

.hero__lead {
    margin: 0 0 1.5rem;
    color: var(--muted);
    font-size: 1rem;
    max-width: 52ch;
}

.hero__lead + .hero__lead {
    margin-top: -0.75rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.hero__services-line {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
    max-width: 100%;
}

.hero__frame {
    position: relative;
    border: 10px solid var(--navy);
    border-radius: 4px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
    box-shadow: var(--shadow);
}

.hero__frame img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* Hero carousel */
.hero-carousel {
    position: relative;
    width: 100%;
}

.hero-carousel__slides {
    position: relative;
    aspect-ratio: 4/3;
    border: 10px solid var(--navy);
    border-radius: 4px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
    box-shadow: var(--shadow);
    background: var(--navy);
    overflow: hidden;
}

.hero--immersive .hero-carousel {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 100%;
}

.hero--immersive .hero-carousel__slides {
    aspect-ratio: unset;
    height: 100%;
    min-height: 100%;
    border: none;
    border-radius: 0;
    clip-path: none;
    box-shadow: none;
}

.hero--immersive .hero-carousel__media img {
    max-width: none;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.hero-carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
    pointer-events: none;
    z-index: 0;
}

.hero-carousel__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.hero-carousel__media {
    position: absolute;
    inset: 0;
}

.hero-carousel__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-carousel__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.1rem 1.15rem 1.25rem;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 29, 61, 0.25) 35%, rgba(20, 29, 61, 0.88) 100%);
    color: #fff;
}

.hero--immersive .hero-carousel__overlay {
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: clamp(2.5rem, 7vw, 4rem) clamp(1rem, 3vw, 2rem) clamp(5.25rem, 11vw, 6.75rem)
        clamp(1.25rem, 7vw, 5.5rem);
    background: linear-gradient(100deg, rgba(20, 29, 61, 0.78) 0%, rgba(20, 29, 61, 0.35) 52%, rgba(20, 29, 61, 0.2) 100%);
}

.hero--immersive .hero-carousel__overlay-inner {
    max-width: min(36rem, 100%);
    margin-inline: 0;
    margin-right: auto;
}

.hero--immersive .hero-carousel__eyebrow {
    font-size: clamp(0.78rem, 1.5vw, 0.98rem);
    letter-spacing: 0.18em;
    margin-bottom: 0.5rem;
}

.hero--immersive h1.hero-carousel__eyebrow {
    font-size: clamp(0.78rem, 1.5vw, 0.98rem);
}

.hero--immersive .hero-carousel__slide-title {
    font-size: clamp(1.75rem, 6vw, 3.35rem);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.hero--immersive .hero-carousel__sub {
    font-size: clamp(0.68rem, 1.25vw, 0.8rem);
}

.hero--immersive .hero-carousel__desc {
    max-width: 42ch;
    font-size: clamp(0.85rem, 1.65vw, 1.05rem);
    line-height: 1.55;
}

.hero-carousel__eyebrow {
    margin: 0 0 0.35rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ff8a8a;
    font-size: 0.62rem;
}

/* Optional: h1 + same class — reset default user-agent h1 size (still avoid multiple h1s per page). */
h1.hero-carousel__eyebrow {
    font-size: 0.62rem;
    line-height: 1.35;
    font-family: var(--font-sans), system-ui, sans-serif;
}

.hero-carousel__slide-title {
    margin: 0 0 0.25rem;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #fff;
}

.hero-carousel__sub {
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.hero-carousel__desc {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    max-width: 42ch;
}

.hero-carousel__chrome {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.hero--immersive .hero-carousel__chrome {
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(0.65rem, 2vw, 1.25rem);
    margin-top: 0;
    z-index: 4;
    padding-inline: clamp(0.5rem, 2vw, 1rem);
    pointer-events: none;
}

.hero--immersive .hero-carousel__chrome > * {
    pointer-events: auto;
}

.hero-carousel__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 1px solid rgba(26, 48, 102, 0.2);
    border-radius: 6px;
    background: var(--bg-white);
    color: var(--navy);
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-carousel__btn:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.hero-carousel__btn:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

.hero--immersive .hero-carousel__btn {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.94);
    color: var(--navy);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero--immersive .hero-carousel__btn:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.hero-carousel__dots {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-carousel__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(26, 48, 102, 0.22);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-carousel__dot:hover {
    background: rgba(26, 48, 102, 0.45);
}

.hero-carousel__dot.is-active {
    background: var(--red);
    transform: scale(1.15);
}

.hero--immersive .hero-carousel__dot {
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.hero--immersive .hero-carousel__dot:hover {
    background: rgba(255, 255, 255, 0.65);
}

.hero--immersive .hero-carousel__dot.is-active {
    background: var(--red);
    box-shadow: none;
}

.hero-carousel__dot:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}

.hero--immersive .hero-carousel__dot:focus-visible {
    outline-color: #fff;
}

@media (max-width: 960px) {
    .hero:not(.hero--immersive) .hero-carousel__desc {
        max-width: none;
    }

    .hero--immersive .hero-carousel__overlay {
        padding-bottom: clamp(5rem, 14vw, 6.25rem);
    }

    .hero--immersive .hero-carousel__desc {
        max-width: 36ch;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-carousel__slide {
        transition: none;
    }
}

/* Split band (import/export, about) */
.split-band {
    padding-block: clamp(2.5rem, 5vw, 4rem);
}

.split-band--navy {
    background: linear-gradient(180deg, var(--navy-soft) 0%, var(--navy) 100%);
    color: #fff;
}

.split-band__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    align-items: stretch;
    min-height: 360px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

@media (max-width: 900px) {
    .split-band__grid {
        grid-template-columns: 1fr;
        min-height: unset;
    }
}

.split-band__media {
    position: relative;
    min-height: 280px;
}

.split-band__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-band__accent-bar {
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: var(--red);
}

.split-band__content {
    padding: clamp(1rem, 4vw, 1rem);
    position: relative;
}

.split-band--navy .split-band__content {
    background: transparent;
}

.split-band--navy .split-band__content::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 120px;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' fill-opacity='.06' d='M20 20h25v25H20zm35 0h25v25H55zM20 55h25v25H20zm35 0h25v25H55z'/%3E%3C/svg%3E");
    pointer-events: none;
}

.split-band__title {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.split-band--navy .split-band__title {
    color: #fff;
}

.split-band__sub {
    margin: 0 0 1rem;
    font-weight: 700;
    font-size: 1rem;
}

.split-band--navy .split-band__sub {
    color: rgba(255, 255, 255, 0.95);
}

.split-band__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    max-width: 58ch;
}

.split-band__list {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.split-band__list li {
    margin-bottom: 0.4rem;
}

.split-band__rule {
    width: 100%;
    max-width: 200px;
    height: 3px;
    background: var(--red);
    margin-top: 1.5rem;
}

.split-band--text-only .split-band__grid {
    grid-template-columns: 1fr;
    /* max-width: 900px; */
    margin-inline: auto;
}

.split-band--text-only .split-band__content {
    padding: clamp(1rem, 4vw, 1rem);
}

/* Sections */
.section {
    padding-block: clamp(2.75rem, 5vw, 4rem);
}

.section--white {
    background: var(--bg-white);
}

.section__head {
    max-width: 720px;
    margin-bottom: 2rem;
    text-align: center;
    margin-inline: auto;
}

.section__head--left {
    text-align: left;
    margin-inline: 0;
}

.section__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.section__title {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0 0 0.5rem;
    font-weight: 800;
}

.section__sub {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}

/* Service cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

@media (max-width: 960px) {
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    position: relative;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-white);
    padding: 0;
    box-shadow: 0 8px 24px rgba(29, 43, 91, 0.06);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.2s ease, box-shadow 0.35s ease;
}

.card__link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.card__link:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

.card:hover {
    transform: scale(1.03);
    border-color: rgba(209, 32, 38, 0.45);
    box-shadow: 0 18px 44px rgba(29, 43, 91, 0.14);
}

.card__hover {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card__hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform 0.55s ease;
}

.card__hover::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(165deg, rgba(20, 29, 61, 0.38) 0%, rgba(29, 43, 91, 0.9) 100%);
}

.card:hover .card__hover {
    opacity: 1;
}

.card:hover .card__hover img {
    transform: scale(1.2);
}

.card__body {
    position: relative;
    z-index: 2;
    padding: 1.35rem 1.4rem;
}

.card:hover .card__title {
    color: #fff;
}

.card:hover .card__text {
    color: rgba(255, 255, 255, 0.9);
}

.card:hover .card__icon {
    background: #fff;
    color: var(--navy);
}

.card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    background: var(--navy);
    margin-bottom: 0.85rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.card__title {
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
    font-weight: 700;
    color: var(--navy);
    transition: color 0.3s ease;
}

.card__text {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    transition: color 0.3s ease;
}

.card__more {
    margin: 0.75rem 0 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease, color 0.3s ease;
}

.card:hover .card__more {
    opacity: 1;
    transform: translateY(0);
    color: rgba(255, 255, 255, 0.95);
}

/* Process */
.process {
    display: grid;
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

@media (max-width: 900px) {
    .process {
        grid-template-columns: 1fr;
    }
}

.process__banner {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.process__banner .section__title {
    margin: 0;
}

.process__arrow {
    background: var(--navy);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

.process__aside {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 100%;
}

.process__aside img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.process-step__num {
    width: 2.75rem;
    height: 2.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.process-step__title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.process-step__text {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

/* Industries */
.industries {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-white);
}

.industry-row {
    display: grid;
    grid-template-columns: 140px minmax(0, 0.28fr) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.industry-row:nth-child(odd) {
    background: var(--bg-stripe);
}

.industry-row:last-child {
    border-bottom: none;
}

@media (max-width: 800px) {
    .industry-row {
        grid-template-columns: 1fr;
    }
}

.industry-row__img {
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 88px;
}

.industry-row__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.industry-row:hover .industry-row__img img {
    transform: scale(1.08);
}

.industry-row__name {
    margin: 0;
    font-weight: 800;
    color: var(--navy);
    font-size: 0.95rem;
}

.industry-row__body {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.industry-row__body strong {
    color: var(--text);
    font-weight: 600;
}

/* Contact / quote brand layout (two-column) */
.contact-band {
    background: #e4e7ed;
}

.contact-band__intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.contact-band__intro .section__title {
    color: var(--navy);
}

.contact-duo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

@media (max-width: 960px) {
    .contact-duo {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: 0 16px 48px rgba(26, 48, 102, 0.1);
    border: 1px solid rgba(29, 43, 91, 0.06);
}

.contact-card__title {
    margin: 0 0 1.25rem;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 800;
    color: #1a3066;
    letter-spacing: 0.02em;
}

.contact-card__title--sub {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    margin-bottom: 1rem;
}

.contact-card__sub {
    margin: -0.5rem 0 1.25rem;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.5;
}

.form--brand .field--brand {
    margin-bottom: 1.1rem;
}

.form--brand .field__label--brand {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.form--brand .field__input--brand {
    border: 1px solid rgba(26, 48, 102, 0.12);
    background: #eef1f5;
    border-radius: 8px;
    padding: 0.75rem 0.95rem;
    font-size: 0.95rem;
    color: var(--text);
}

.form--brand .field__input--brand::placeholder {
    color: #94a3b8;
}

.form--brand .field__input--brand:focus {
    outline: none;
    border-color: rgba(26, 48, 102, 0.35);
    background: #f8f9fb;
    box-shadow: 0 0 0 3px rgba(26, 48, 102, 0.08);
}

.form--brand .field__input--select {
    cursor: pointer;
    appearance: auto;
}

.form__actions--brand {
    margin-top: 1.25rem;
}

.btn--inquiry-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1.25rem;
    background: #1a3066;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
    box-shadow: 0 10px 28px rgba(26, 48, 102, 0.25);
}

.btn--inquiry-submit:hover {
    background: #14274d;
    color: #fff;
}

.btn--inquiry-submit:active {
    transform: translateY(1px);
}

.btn--inquiry-submit__arrow {
    flex-shrink: 0;
}

/* Operations centers (contact / home / about) */
.ops-panel {
    padding-top: 0.25rem;
}

.ops-panel__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
}

.ops-panel__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 800;
    color: #1a3066;
    letter-spacing: 0.02em;
}

.ops-panel__lead {
    margin: 0 0 1.75rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #475569;
    max-width: 52ch;
}

.ops-locations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ops-card {
    background: #eef1f5;
    border-radius: var(--radius-md);
    padding: 1.15rem 1.15rem 1.15rem 1.15rem;
    border: 1px solid rgba(26, 48, 102, 0.08);
}

.ops-card--accent {
    border-left: 4px solid var(--red);
    padding-left: calc(1.15rem - 4px);
}

.ops-card__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.ops-card__mark {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a3066;
    color: #fff;
    border-radius: 8px;
}

.ops-card__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a3066;
    text-transform: capitalize;
}

.ops-card__details {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ops-card__details li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.55rem;
    font-size: 0.88rem;
    color: #334155;
    line-height: 1.45;
}

.ops-card__details li:last-child {
    margin-bottom: 0;
}

.ops-card__ico {
    color: var(--red);
    flex-shrink: 0;
    margin-top: 0.12rem;
}

.ops-card__details a {
    color: #1a3066;
    font-weight: 600;
    text-decoration: none;
}

.ops-card__details a:hover {
    text-decoration: underline;
}

.form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (max-width: 640px) {
    .form__row {
        grid-template-columns: 1fr;
    }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.field__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.field__input {
    width: 100%;
    border-radius: 6px;
    border: 2px solid rgba(29, 43, 91, 0.2);
    background: #fafbfc;
    color: var(--text);
    padding: 0.7rem 0.85rem;
    font: inherit;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field__input:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(29, 43, 91, 0.12);
}

.field__input--textarea {
    resize: vertical;
    min-height: 140px;
}

.form__actions {
    margin-top: 0.5rem;
}

.alert {
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.alert--success {
    border: 1px solid rgba(26, 92, 64, 0.35);
    background: rgba(26, 92, 64, 0.08);
    color: var(--green-tag);
}

.alert--error {
    border: 1px solid rgba(209, 32, 38, 0.35);
    background: rgba(209, 32, 38, 0.06);
    color: var(--red-dark);
}

.alert ul {
    margin: 0.5rem 0 0;
    padding-left: 1.1rem;
}

.site-flash {
    padding-block: 0.75rem 0;
}

.site-flash .alert {
    margin: 0;
}

/* About page (reference layout) */
.about-hero {
    position: relative;
    min-height: min(72vh, 560px);
    display: flex;
    align-items: flex-end;
    padding-block: clamp(2.5rem, 6vw, 4rem);
    color: #fff;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    background-color: var(--navy-deep);
    background-size: cover;
    background-position: center;
}

.about-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 29, 61, 0.35) 0%, rgba(29, 43, 91, 0.88) 100%);
}

.about-hero__inner {
    position: relative;
    z-index: 1;
    max-width: min(720px, 100%);
}

.about-hero__tag {
    display: inline-block;
    margin: 0 0 0.75rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ff6b6b;
}

.about-hero__title {
    margin: 0 0 1rem;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0.04em;
    text-transform: capitalize;
}

.about-hero__lead {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    max-width: 52ch;
}

.about-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.about-section-head__text {
    flex: 1 1 min(100%, 560px);
    min-width: 0;
}

.about-section-head__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: capitalize;
    color: var(--navy);
}

.about-section-head__intro {
    margin: 0;
    color: var(--muted);
    max-width: 56ch;
    font-size: 1rem;
}

.about-section-head__rule {
    display: block;
    width: 72px;
    height: 4px;
    background: var(--red);
    margin-top: 0.35rem;
    flex-shrink: 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 2rem);
}

@media (max-width: 900px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }
}

.leadership-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(29, 43, 91, 0.08);
}

.leadership-card__photo {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bg-stripe);
}

.leadership-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.leadership-card:hover .leadership-card__photo img {
    transform: scale(1.06);
}

.leadership-card__name {
    margin: 1rem 1.25rem 0.25rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
}

.leadership-card__role {
    margin: 0 1.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--red);
}

.leadership-card__bio {
    margin: 0;
    padding: 0 1.25rem 1.35rem;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.55;
}

.about-industries {
    background: var(--bg);
}

.industry-focus-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

@media (max-width: 1100px) {
    .industry-focus-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .industry-focus-grid {
        grid-template-columns: 1fr;
    }
}

.industry-focus-card {
    position: relative;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.35rem 1.25rem 1.5rem;
    height: 100%;
    box-shadow: 0 8px 28px rgba(29, 43, 91, 0.06);
}

.industry-focus-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(29, 43, 91, 0.08);
    color: var(--navy);
    margin-bottom: 1rem;
}

.industry-focus-card__title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
}

.industry-focus-card__text {
    margin: 0 0 0.85rem;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
}

.industry-focus-card__list {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.5;
}

.industry-focus-card__accent {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--red);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.about-efs {
    padding-block: clamp(2.75rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy) 100%);
    color: #fff;
}

.about-efs__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

@media (max-width: 900px) {
    .about-efs__grid {
        grid-template-columns: 1fr;
    }
}

.about-efs__tag {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff8a8a;
}

.about-efs__title {
    margin: 0 0 1rem;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.25;
}

.about-efs__text {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 54ch;
}

.about-efs__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-efs__features li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.about-efs__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    margin-top: 0.35rem;
    flex-shrink: 0;
}

.about-efs__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-efs__visual img {
    width: 100%;
    height: auto;
    display: block;
}

.field__input--select {
    cursor: pointer;
    appearance: auto;
}

.btn--block {
    width: 100%;
    justify-content: center;
}

.btn--upper {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

/* Home process / execution / sourcing / customs / trade / CTA */
.home-process-head {
    background: linear-gradient(180deg, #141d3d 0%, #1a3066 100%);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    color: #fff;
    text-align: center;
}

.home-process-head__inner {
    max-width: 920px;
    margin-inline: auto;
}

.home-process-head__title {
    font-size: clamp(1.15rem, 3.2vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin: 0 0 1rem;
}

.home-process-head__accent {
    color: var(--red);
}

.home-process-head__sub {
    margin: 0 auto;
    max-width: 52ch;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    line-height: 1.65;
}

.home-execution__head {
    margin-bottom: 2rem;
}

.home-phase-tag {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.45rem;
}

.home-execution__title {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    color: #1a3066;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

.home-exec-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

@media (max-width: 960px) {
    .home-exec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .home-exec-grid {
        grid-template-columns: 1fr;
    }
}

.home-exec-cell {
    position: relative;
    padding: 0;
    background: var(--bg-white);
    border: 1px solid rgba(26, 48, 102, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 36px rgba(26, 48, 102, 0.06);
    min-height: 200px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-exec-cell:hover {
    transform: scale(1.03);
    box-shadow: 0 18px 48px rgba(26, 48, 102, 0.14);
}

.home-exec-cell__hover {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.home-exec-cell__hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform 0.55s ease;
}

.home-exec-cell__hover::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(165deg, rgba(20, 29, 61, 0.35) 0%, rgba(26, 48, 102, 0.9) 100%);
}

.home-exec-cell:hover .home-exec-cell__hover {
    opacity: 1;
}

.home-exec-cell:hover .home-exec-cell__hover img {
    transform: scale(1.2);
}

.home-exec-cell__body {
    position: relative;
    z-index: 2;
    padding: 1.6rem 1.2rem 1.35rem;
}

.home-exec-cell:hover .home-exec-cell__title,
.home-exec-cell:hover .home-exec-cell__text {
    color: #fff;
}

.home-exec-cell:hover .home-exec-cell__num {
    color: rgba(255, 255, 255, 0.22);
}

.home-exec-cell:hover .home-exec-cell__icon {
    color: #fff;
}

.home-exec-cell__num {
    position: absolute;
    top: 0.35rem;
    left: 0.65rem;
    font-size: clamp(2.5rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1;
    color: #e4e9f0;
    letter-spacing: -0.03em;
    pointer-events: none;
    transition: color 0.3s ease;
}

.home-exec-cell__icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #1a3066;
    z-index: 1;
    transition: color 0.3s ease;
}

.home-exec-cell__title {
    position: relative;
    z-index: 1;
    margin: 1.75rem 0 0.5rem;
    font-size: 1rem;
    font-weight: 800;
    color: #1a3066;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.home-exec-cell__text {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.55;
    transition: color 0.3s ease;
}

.home-sourcing {
    position: relative;
    background: linear-gradient(160deg, #141d3d 0%, #1a3066 55%, #152238 100%);
    color: #fff;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    overflow: hidden;
}

.home-sourcing::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cpath fill='%23ffffff' fill-opacity='.04' d='M100 400 Q300 200 500 350 T900 300 T1100 450 V600 H0 Z'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center bottom;
    pointer-events: none;
}

.home-sourcing__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

@media (max-width: 900px) {
    .home-sourcing__grid {
        grid-template-columns: 1fr;
    }
}

.home-sourcing__title {
    margin: 0 0 1rem;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.25;
}

.home-sourcing__paren {
    color: var(--red);
    text-transform: none;
    font-weight: 800;
}

.home-sourcing__text {
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 52ch;
}

.home-sourcing__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-sourcing__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.home-check {
    color: var(--red);
    font-weight: 800;
    flex-shrink: 0;
}

.home-check--dark {
    color: var(--red);
}

.home-sourcing__media {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.home-sourcing__media img {
    width: 100%;
    height: auto;
    display: block;
}

.home-customs__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

@media (max-width: 900px) {
    .home-customs__grid {
        grid-template-columns: 1fr;
    }
}

.home-freight-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    max-width: 320px;
}

@media (max-width: 900px) {
    .home-freight-tiles {
        max-width: none;
    }
}

.home-freight-tiles__tile {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.25;
}

.home-freight-tiles__tile--muted {
    background: #e8eaee;
    color: #1a3066;
}

.home-freight-tiles__tile--navy {
    background: #1a3066;
    color: #fff;
}

.home-freight-tiles__tile--red {
    background: var(--red);
    color: #fff;
}

.home-customs__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 800;
    color: #1a3066;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.25;
}

.home-customs__text {
    margin: 0 0 1.1rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 52ch;
}

.home-customs__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-customs__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #334155;
}

.home-trade-modes {
    background: #eef1f5;
}

.home-trade-modes__head {
    text-align: center;
    margin-bottom: 2rem;
}

.home-trade-modes__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: #1a3066;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.home-trade-modes__rule {
    display: block;
    width: 52px;
    height: 3px;
    background: var(--red);
    margin: 0 auto;
    border-radius: 2px;
}

.home-trade-modes__intro {
    max-width: 42rem;
    margin: 0 auto 1.75rem;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

.home-trade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

@media (min-width: 1200px) {
    .home-trade-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .home-trade-grid {
        max-width: 420px;
        margin-inline: auto;
        grid-template-columns: 1fr;
    }
}

.home-efs-band {
    border-top: 1px solid var(--border);
}

.home-efs-band__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: start;
}

@media (max-width: 900px) {
    .home-efs-band__grid {
        grid-template-columns: 1fr;
    }
}

.home-efs-band__list {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text);
}

.home-efs-band__list li + li {
    margin-top: 0.65rem;
}

.home-efs-band__cta {
    margin: 1.5rem 0 0;
}

.home-efs-band__aside {
    background: linear-gradient(160deg, rgba(29, 43, 91, 0.06) 0%, rgba(29, 43, 91, 0.02) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.35rem 1.25rem 1.5rem;
}

.home-efs-band__tag {
    margin: 0 0 0.75rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
}

.home-efs-band__corridors {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--muted);
}

.home-efs-band__corridors li + li {
    margin-top: 0.5rem;
}

.home-efs-band__note {
    margin: 1rem 0 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--muted);
    font-style: italic;
}

.home-trade-card {
    position: relative;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 14px 44px rgba(26, 48, 102, 0.08);
    border: 1px solid rgba(26, 48, 102, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-trade-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 52px rgba(26, 48, 102, 0.16);
}

.home-trade-card__hover {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.home-trade-card__hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform 0.55s ease;
}

.home-trade-card__hover::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(20, 29, 61, 0.4) 0%, rgba(26, 48, 102, 0.92) 100%);
}

.home-trade-card:hover .home-trade-card__hover {
    opacity: 1;
}

.home-trade-card:hover .home-trade-card__hover img {
    transform: scale(1.2);
}

.home-trade-card__body {
    position: relative;
    z-index: 2;
    padding: 1.5rem 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home-trade-card:hover .home-trade-card__title,
.home-trade-card:hover .home-trade-card__text {
    color: #fff;
}

.home-trade-card:hover .home-trade-card__label {
    color: #ffb4b4;
}

.home-trade-card__title {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a3066;
    transition: color 0.3s ease;
}

.home-trade-card__text {
    flex: 1;
    margin: 0 0 1.1rem;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.55;
    transition: color 0.3s ease;
}

.home-trade-card__label {
    margin: 0;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    transition: color 0.3s ease;
}

/* Footer CTA (split card above global footer) */
.footer-cta-band {
    padding: clamp(2rem, 5vw, 3rem) 0 clamp(1.25rem, 3vw, 1.75rem);
    background: var(--bg);
}

.footer-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    border-radius: clamp(18px, 3vw, 26px);
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(20, 29, 61, 0.18);
    align-items: stretch;
}

.footer-cta-card__copy {
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
    padding: clamp(2rem, 4.5vw, 2.85rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.footer-cta-card__title {
    margin: 0;
    font-size: clamp(1.35rem, 2.8vw, 1.9rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    letter-spacing: 0.02em;
}

.footer-cta-card__sub {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    max-width: 42ch;
}

.footer-cta-card__btn {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 0.35rem;
    padding: 0.9rem 1.4rem;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-cta-card__btn:hover {
    background: var(--red-dark);
    color: #fff;
}

.footer-cta-card__btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.footer-cta-card__visual {
    position: relative;
    height: 350px;
    background: var(--navy-deep);
}

.footer-cta-card__visual img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .footer-cta-card {
        grid-template-columns: 1fr;
    }

    .footer-cta-card__visual {
        min-height: 220px;
        order: -1;
    }

    .footer-cta-card__visual img {
        min-height: 220px;
    }
}

/* Footer */
.site-footer {
    padding: 0 0 0.5rem;
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.88);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.85fr 0.85fr 1.05fr;
    gap: clamp(1.5rem, 4vw, 2.75rem);
    padding-top: 5rem;
    align-items: start;
}

@media (max-width: 1000px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

.site-footer__grid a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 500;
}

.site-footer__grid a:hover {
    color: #fff;
    text-decoration: underline;
}

.site-footer__logo-link {
    display: inline-block;
    line-height: 0;
    margin-bottom: 0.75rem;
    text-decoration: none;
}

.site-footer__logo-link:hover .site-footer__logo {
    opacity: 0.92;
}

.site-footer__logo {
    display: block;
    height: auto;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.site-footer__brand {
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #fff;
    margin: 0 0 0.85rem;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.site-footer__lead {
    margin: 0 0 1.25rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    max-width: 38ch;
}

.site-footer__icons {
    display: flex;
    gap: 0.85rem;
    align-items: center;
}

.site-footer__icon {
    display: flex;
    color: rgba(255, 255, 255, 0.88);
    opacity: 0.95;
}

.site-footer__icon svg {
    display: block;
}

.site-footer__heading {
    margin: 0 0 0.85rem;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.site-footer__heading--caps {
    font-size: 0.72rem;
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__list li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.site-footer__address {
    margin: 0 0 0.85rem;
    font-style: normal;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.site-footer__email {
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--red);
    text-decoration: none;
}

.site-footer__email:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.site-footer__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    padding-block: 1.35rem 1.65rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__copyright {
    margin: 0;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.15rem;
    align-items: center;
}

.site-footer__legal a {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
}

.site-footer__legal a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.muted {
    color: var(--muted);
}

.small {
    font-size: 0.875rem;
}
