:root {
    --font-sans: Inter, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --ink: #17212b;
    --muted: #5c6874;
    --paper: #fbfaf6;
    --sand: #f1eadf;
    --line: #ddd3c2;
    --cargo-red: #d9362b;
    --signal-yellow: #f0b52f;
    --route-green: #147d72;
    --white: #ffffff;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.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;
}

.container-shell {
    width: min(100% - 32px, 1180px);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px max(18px, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid rgba(23, 33, 43, 0.1);
    background: rgba(251, 250, 246, 0.94);
    backdrop-filter: blur(16px);
    transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body.menu-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    transition: transform 220ms var(--ease-out);
}

.brand-mark:hover {
    transform: translateY(-1px);
}

.brand-symbol {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.brand-symbol img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-mark strong,
.brand-mark small {
    display: block;
    line-height: 1.1;
}

.brand-mark strong {
    font-size: 1.02rem;
}

.brand-mark small {
    margin-top: 3px;
    color: var(--muted);
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(23, 33, 43, 0.14);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    padding: 0;
}

.menu-bars {
    display: grid;
    gap: 5px;
    width: 20px;
}

.menu-bars i {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle.is-open .menu-bars i:first-child {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open .menu-bars i:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open .menu-bars i:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.site-nav a {
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 700;
    padding: 10px 13px;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: rgba(217, 54, 43, 0.1);
    color: var(--cargo-red);
}

.site-nav a:hover {
    transform: translateY(-1px);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
}

.language-switcher select {
    min-height: 42px;
    max-width: 150px;
    border: 1px solid rgba(23, 33, 43, 0.14);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    font-weight: 800;
    padding: 9px 34px 9px 12px;
}

#google_translate_element,
.goog-te-banner-frame,
.goog-te-gadget {
    display: none !important;
}

body {
    top: 0 !important;
}

.header-cta,
.btn,
.track-mini-form button,
.track-search button,
.newsletter-form button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    padding: 12px 18px;
    transition: background 200ms ease, border-color 200ms ease, box-shadow 220ms ease, color 200ms ease, transform 220ms var(--ease-out);
}

.header-cta,
.btn-primary,
.track-mini-form button,
.track-search button,
.newsletter-form button {
    background: var(--cargo-red);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(217, 54, 43, 0.2);
}

.btn-secondary {
    background: var(--white);
    color: var(--ink);
    border: 1px solid rgba(23, 33, 43, 0.18);
}

.header-cta:hover,
.btn:hover,
.track-mini-form button:hover,
.track-search button:hover,
.newsletter-form button:hover {
    box-shadow: 0 18px 34px rgba(217, 54, 43, 0.24);
    transform: translateY(-2px);
}

.btn-secondary:hover {
    border-color: rgba(23, 33, 43, 0.28);
    box-shadow: 0 16px 30px rgba(23, 33, 43, 0.12);
}

.hero {
    min-height: 78svh;
    display: grid;
    align-items: center;
    color: var(--white);
    padding: clamp(72px, 12vw, 136px) 0 clamp(56px, 8vw, 88px);
    position: relative;
}

.hero-slider {
    display: block;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 25%, rgba(240, 181, 47, 0.18), transparent 32%),
        linear-gradient(90deg, rgba(13, 19, 25, 0.82), rgba(13, 19, 25, 0.5), rgba(13, 19, 25, 0.18));
    pointer-events: none;
    z-index: 1;
}

.hero-visuals {
    inset: 0;
    overflow: hidden;
    position: absolute;
    z-index: 0;
}

.hero-visual {
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    inset: 0;
    opacity: 0;
    position: absolute;
    transform: translateX(4%) scale(1.04);
    transition: opacity 700ms ease, transform 900ms ease;
}

.hero-visual.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.hero-slides {
    display: grid;
    min-height: 72svh;
    padding: clamp(76px, 12vw, 136px) 0 clamp(62px, 8vw, 92px);
    position: relative;
    z-index: 1;
}

.hero-slide {
    grid-area: 1 / 1;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 500ms ease, transform 500ms ease, visibility 500ms ease;
    visibility: hidden;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.hero-slide.is-active .eyebrow,
.hero-slide.is-active h1,
.hero-slide.is-active .hero-copy,
.hero-slide.is-active .hero-actions {
    animation: hero-rise 720ms var(--ease-smooth) both;
}

.hero-slide.is-active h1 {
    animation-delay: 80ms;
}

.hero-slide.is-active .hero-copy {
    animation-delay: 160ms;
}

.hero-slide.is-active .hero-actions {
    animation-delay: 240ms;
}

.hero-content {
    max-width: 760px;
}

.eyebrow {
    color: var(--cargo-red);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.send-hero .eyebrow,
.track-hero .eyebrow {
    color: var(--signal-yellow);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero h1,
.page-hero h1,
.send-hero h1,
.track-hero h1 {
    font-size: clamp(2.8rem, 8vw, 6.4rem);
    line-height: 0.95;
    margin-bottom: 22px;
    max-width: 900px;
}

.send-hero h1,
.track-hero h1 {
    font-size: clamp(2.45rem, 5.7vw, 4.9rem);
    line-height: 1;
}

.hero-copy,
.send-hero p,
.track-hero p {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.7;
    max-width: 670px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-slider-footer {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding-bottom: 30px;
    position: relative;
    z-index: 2;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    color: var(--white);
    display: inline-flex;
    font-weight: 800;
    min-height: 44px;
    padding: 10px 14px;
}

.hero-dots {
    display: flex;
    gap: 9px;
    min-width: max-content;
}

.hero-dots button {
    width: 14px;
    height: 14px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    padding: 0;
    transition: background 180ms ease, border-color 180ms ease, width 180ms ease;
}

.hero-dots button.is-active {
    width: 46px;
    background: var(--signal-yellow);
    border-color: var(--signal-yellow);
}

.logistics-marquee {
    overflow: hidden;
    background: #0a0f14;
    border-bottom: 6px solid var(--signal-yellow);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.marquee-track {
    animation: marquee-scroll 34s linear infinite;
    display: flex;
    width: max-content;
}

.marquee-track span {
    align-items: center;
    color: var(--signal-yellow);
    display: inline-flex;
    font-weight: 900;
    gap: 16px;
    min-height: 72px;
    padding: 0 30px;
    white-space: nowrap;
}

.marquee-track span::before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--route-green);
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes route-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(240, 181, 47, 0.24);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(240, 181, 47, 0);
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms var(--ease-smooth), transform 700ms var(--ease-smooth), box-shadow 240ms ease, border-color 240ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.lane-grid > *:nth-child(2),
.service-grid > *:nth-child(2),
.feature-grid > *:nth-child(2),
.mission-grid > *:nth-child(2),
.blog-grid > *:nth-child(2),
.contact-card-grid > *:nth-child(2),
.support-topic-grid > *:nth-child(2),
.process-grid > *:nth-child(2) {
    transition-delay: 80ms;
}

.lane-grid > *:nth-child(3),
.service-grid > *:nth-child(3),
.feature-grid > *:nth-child(3),
.mission-grid > *:nth-child(3),
.blog-grid > *:nth-child(3),
.contact-card-grid > *:nth-child(3),
.support-topic-grid > *:nth-child(3),
.process-grid > *:nth-child(3) {
    transition-delay: 150ms;
}

.lane-grid > *:nth-child(4),
.service-grid > *:nth-child(4),
.feature-grid > *:nth-child(4),
.mission-grid > *:nth-child(4),
.blog-grid > *:nth-child(4),
.contact-card-grid > *:nth-child(4),
.support-topic-grid > *:nth-child(4),
.process-grid > *:nth-child(4) {
    transition-delay: 220ms;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .marquee-track {
        animation: none;
    }

    .hero-slide,
    .hero-visual,
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.command-strip,
.action-band {
    background: var(--ink);
    color: var(--white);
    padding: 22px 0;
}

.command-grid,
.action-grid {
    display: grid;
    grid-template-columns: minmax(280px, 520px) 1fr;
    align-items: center;
    gap: 24px;
}

.action-grid h2 {
    font-size: clamp(1.2rem, 2.6vw, 1.7rem);
    margin-bottom: 0;
}

.track-mini-form,
.track-search,
.newsletter-form {
    display: flex;
    gap: 8px;
}

.track-mini-form input,
.track-search input,
.newsletter-form input {
    min-width: 0;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    min-height: 46px;
    padding: 0 14px;
}

.track-mini-form input::placeholder,
.track-search input::placeholder,
.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.66);
}

.office-pill {
    display: grid;
    gap: 4px;
    border-left: 3px solid var(--signal-yellow);
    padding-left: 16px;
}

.office-pill span {
    color: rgba(255, 255, 255, 0.74);
}

.command-link {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    justify-self: end;
}

.section-pad {
    padding: clamp(72px, 9vw, 120px) 0;
}

.section-heading {
    max-width: 760px;
    text-align: center;
}

.section-heading.compact {
    margin-bottom: 34px;
}

.section-heading h2,
.split-copy h2,
.contact-details h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.03;
    margin-bottom: 18px;
}

.section-heading p,
.split-copy p,
.mission-grid p,
.blog-card p,
.contact-details p,
.footer-brand p,
.site-footer p {
    color: var(--muted);
    line-height: 1.75;
}

.logistics-hub {
    background:
        linear-gradient(180deg, var(--paper), var(--white) 64%, var(--paper));
    overflow: hidden;
    position: relative;
}

.logistics-hub-grid {
    align-items: center;
    display: grid;
    gap: clamp(34px, 7vw, 82px);
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
}

.hub-copy h2,
.support-copy h2 {
    font-size: clamp(2.2rem, 5vw, 4.25rem);
    line-height: 1;
    margin-bottom: 18px;
}

.hub-copy p:not(.eyebrow),
.support-copy p {
    color: var(--muted);
    line-height: 1.75;
    max-width: 680px;
}

.hub-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hub-points span {
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(23, 33, 43, 0.12);
    border-left: 4px solid var(--route-green);
    border-radius: 8px;
    color: var(--ink);
    display: inline-flex;
    font-weight: 850;
    min-height: 44px;
    padding: 10px 14px;
}

.dispatch-panel {
    background:
        linear-gradient(145deg, rgba(240, 181, 47, 0.1), transparent 34%),
        #101820;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(23, 33, 43, 0.2);
    color: var(--white);
    overflow: hidden;
    padding: clamp(24px, 4vw, 34px);
    position: relative;
    transition: box-shadow 260ms ease, transform 260ms var(--ease-out), border-color 260ms ease;
}

.dispatch-panel:hover {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 34px 80px rgba(23, 33, 43, 0.26);
    transform: translateY(-4px);
}

.dispatch-panel::before {
    background: linear-gradient(90deg, var(--cargo-red), var(--signal-yellow), var(--route-green));
    content: "";
    height: 6px;
    inset: 0 0 auto;
    position: absolute;
}

.dispatch-header {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.dispatch-header span,
.dispatch-list span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dispatch-header strong {
    color: var(--signal-yellow);
    font-size: clamp(1.35rem, 3vw, 2rem);
}

.dispatch-route {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 28px;
}

.route-step {
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
}

.route-step i {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    display: block;
    height: 42px;
    width: 42px;
}

.route-step.is-complete i {
    background: var(--route-green);
    border-color: var(--route-green);
}

.route-step.is-active i {
    background: var(--signal-yellow);
    border-color: var(--signal-yellow);
    box-shadow: 0 0 0 8px rgba(240, 181, 47, 0.16);
    animation: route-pulse 2.4s ease-in-out infinite;
}

.route-step span {
    font-weight: 850;
}

.dispatch-list {
    display: grid;
    gap: 10px;
}

.dispatch-list div {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 15px 16px;
}

.dispatch-list strong {
    font-size: 1.02rem;
}

.lane-section {
    background: var(--white);
}

.lane-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 42px;
}

.lane-card {
    background: var(--paper);
    border: 1px solid rgba(23, 33, 43, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(23, 33, 43, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 276px;
    padding: 28px;
    position: relative;
    transition: border-color 240ms ease, box-shadow 260ms ease, transform 260ms var(--ease-out);
}

.lane-card:hover {
    border-color: rgba(217, 54, 43, 0.22);
    box-shadow: 0 24px 54px rgba(23, 33, 43, 0.1);
    transform: translateY(-5px);
}

.lane-card::before {
    background: linear-gradient(90deg, var(--cargo-red), var(--signal-yellow));
    content: "";
    height: 4px;
    left: 28px;
    position: absolute;
    right: 28px;
    top: 0;
}

.lane-card span {
    color: var(--route-green);
    display: block;
    font-weight: 950;
    margin-bottom: 44px;
}

.lane-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.lane-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.support-section {
    background:
        linear-gradient(135deg, rgba(20, 125, 114, 0.22), transparent 42%),
        #101820;
    color: var(--white);
    overflow: hidden;
    padding: clamp(72px, 9vw, 116px) 0;
}

.support-grid {
    align-items: center;
    display: grid;
    gap: clamp(26px, 5vw, 58px);
    grid-template-areas:
        "copy flow"
        "stats flow";
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
}

.support-copy {
    grid-area: copy;
}

.support-copy .eyebrow {
    color: var(--signal-yellow);
}

.support-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.support-flow {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: grid;
    gap: 12px;
    grid-area: flow;
    padding: 18px;
}

.support-step {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: grid;
    gap: 14px;
    grid-template-columns: 34px 1fr;
    min-height: 70px;
    padding: 16px;
    transition: background 220ms ease, transform 220ms var(--ease-out);
}

.support-step:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.support-step i {
    background: var(--signal-yellow);
    border-radius: 999px;
    display: block;
    height: 34px;
    width: 34px;
}

.support-step span {
    font-size: 1.08rem;
    font-weight: 900;
}

.support-stats {
    display: grid;
    gap: 12px;
    grid-area: stats;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-stats div {
    border-top: 3px solid var(--signal-yellow);
    padding-top: 14px;
}

.support-stats strong,
.support-stats span {
    display: block;
}

.support-stats strong {
    font-size: clamp(1.35rem, 2.5vw, 1.9rem);
    margin-bottom: 6px;
}

.support-stats span {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.service-grid,
.feature-grid,
.mission-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.service-card,
.feature-grid article,
.mission-grid article,
.blog-card,
.tracking-result,
.empty-state,
.aon-form {
    border: 1px solid rgba(23, 33, 43, 0.1);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 22px 48px rgba(23, 33, 43, 0.08);
    transition: border-color 240ms ease, box-shadow 260ms ease, transform 260ms var(--ease-out);
}

.service-card:hover,
.feature-grid article:hover,
.mission-grid article:hover,
.blog-card:hover,
.tracking-result:hover,
.empty-state:hover,
.aon-form:hover {
    border-color: rgba(20, 125, 114, 0.18);
    box-shadow: 0 28px 64px rgba(23, 33, 43, 0.11);
    transform: translateY(-4px);
}

.service-card {
    overflow: hidden;
}

.feature-grid article {
    padding: 30px;
    position: relative;
}

.feature-grid article::after {
    background: var(--signal-yellow);
    content: "";
    height: 4px;
    inset: auto 30px 0;
    position: absolute;
}

.feature-grid span,
.principle-list span {
    color: var(--route-green);
    display: block;
    font-weight: 900;
    margin-bottom: 28px;
}

.service-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-card div {
    padding: 24px;
}

.service-card h3,
.mission-grid h3,
.blog-card h2 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.7;
}

.service-card a,
.blog-card a,
.text-link {
    color: var(--cargo-red);
    font-weight: 900;
}

.split-feature {
    background: var(--sand);
    padding: clamp(70px, 9vw, 110px) 0;
}

.operations-section {
    background:
        linear-gradient(135deg, rgba(20, 125, 114, 0.14), transparent 45%),
        var(--sand);
    padding: clamp(70px, 9vw, 110px) 0;
}

.split-grid,
.operations-grid,
.send-hero-grid,
.track-hero-grid,
.story-grid,
.contact-grid,
.partner-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(28px, 6vw, 72px);
}

.ops-board {
    display: grid;
    gap: 16px;
}

.ops-card {
    border: 1px solid rgba(23, 33, 43, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 22px 48px rgba(23, 33, 43, 0.08);
    padding: 24px;
    transition: box-shadow 260ms ease, transform 260ms var(--ease-out);
}

.ops-card:hover {
    box-shadow: 0 28px 64px rgba(23, 33, 43, 0.12);
    transform: translateY(-4px);
}

.ops-card.primary {
    background: var(--ink);
    color: var(--white);
    padding: 34px;
}

.ops-card span {
    color: var(--route-green);
    display: block;
    font-weight: 900;
    margin-bottom: 10px;
}

.ops-card.primary span {
    color: var(--signal-yellow);
}

.ops-card strong {
    display: block;
    font-size: clamp(1.3rem, 3vw, 2.3rem);
    line-height: 1.05;
}

.route-line {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 26px;
}

.route-line i {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: var(--signal-yellow);
}

.split-image img,
.image-collage img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 24px 55px rgba(23, 33, 43, 0.16);
    transition: box-shadow 260ms ease, transform 420ms var(--ease-smooth);
}

.split-image img:hover,
.image-collage img:hover {
    box-shadow: 0 30px 70px rgba(23, 33, 43, 0.2);
    transform: scale(1.015);
}

.split-image img {
    aspect-ratio: 1.15 / 1;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.stat-row span {
    border-top: 3px solid var(--route-green);
    color: var(--muted);
    line-height: 1.5;
    padding-top: 12px;
}

.stat-row strong {
    display: block;
    color: var(--ink);
    font-size: 1.45rem;
}

.partner-section {
    background: var(--paper);
}

.partner-grid h2 {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1.1;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.partner-logos img {
    width: 100%;
    height: 76px;
    object-fit: contain;
    border: 1px solid rgba(23, 33, 43, 0.1);
    border-radius: 8px;
    background: var(--white);
    padding: 14px;
}

.cta-section {
    background: var(--paper);
}

.cta-panel {
    align-items: center;
    background: var(--ink);
    border-radius: 8px;
    color: var(--white);
    display: grid;
    gap: 26px;
    grid-template-columns: 1fr max-content;
    padding: clamp(28px, 5vw, 52px);
    transition: box-shadow 260ms ease, transform 260ms var(--ease-out);
}

.cta-panel:hover {
    box-shadow: 0 28px 70px rgba(23, 33, 43, 0.18);
    transform: translateY(-3px);
}

.cta-panel h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.04;
    margin-bottom: 14px;
}

.cta-panel p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 0;
}

.modern-cta {
    background:
        linear-gradient(135deg, rgba(20, 125, 114, 0.38), transparent 38%),
        var(--ink);
}

.modern-cta .eyebrow {
    color: var(--signal-yellow);
}

.page-hero {
    min-height: 46svh;
    display: grid;
    align-items: end;
    background-image: linear-gradient(90deg, rgba(13, 19, 25, 0.82), rgba(13, 19, 25, 0.36)), var(--hero-image);
    background-position: center;
    background-size: cover;
    color: var(--white);
    overflow: hidden;
    padding: clamp(82px, 12vw, 150px) 0 clamp(52px, 7vw, 88px);
}

.page-hero .container-shell {
    animation: hero-rise 760ms var(--ease-smooth) both;
}

.page-hero h1 {
    max-width: 780px;
}

.page-hero .hero-copy {
    margin-bottom: 0;
    max-width: 760px;
}

.contact-hero {
    min-height: 54svh;
    background-image:
        linear-gradient(90deg, rgba(13, 19, 25, 0.88), rgba(13, 19, 25, 0.58), rgba(13, 19, 25, 0.16)),
        var(--hero-image);
    background-position: center;
}

.contact-hero h1 {
    font-size: clamp(3.2rem, 7vw, 5.65rem);
    max-width: 720px;
}

.contact-hero .hero-copy {
    max-width: 650px;
}

.hero-metrics {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 170px));
    margin-top: 30px;
}

.hero-metrics div {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 16px;
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    color: var(--signal-yellow);
    font-size: 1.4rem;
}

.hero-metrics span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
    margin-top: 4px;
}

.profile-section,
.form-section,
.blog-feature-section {
    background: var(--paper);
}

.profile-grid,
.values-grid,
.service-area-grid,
.process-grid,
.request-guide-grid,
.form-layout,
.tracking-guide-grid,
.status-preview-grid,
.contact-card-grid,
.support-topic-grid,
.blog-feature,
.service-note-grid {
    display: grid;
    gap: clamp(22px, 5vw, 54px);
}

.profile-grid,
.values-grid,
.service-area-grid,
.form-layout,
.tracking-guide-grid,
.status-preview-grid,
.blog-feature {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    align-items: start;
}

.profile-card,
.form-sidebar,
.status-preview-card,
.contact-card,
.blog-feature article,
.blog-feature-panel,
.guide-card-grid article,
.support-topic-grid article,
.service-note-grid article,
.process-card {
    border: 1px solid rgba(23, 33, 43, 0.1);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(23, 33, 43, 0.07);
    transition: border-color 240ms ease, box-shadow 260ms ease, transform 260ms var(--ease-out);
}

.profile-card:hover,
.form-sidebar:hover,
.status-preview-card:hover,
.contact-card:hover,
.blog-feature article:hover,
.blog-feature-panel:hover,
.guide-card-grid article:hover,
.support-topic-grid article:hover,
.service-note-grid article:hover,
.process-card:hover {
    border-color: rgba(217, 54, 43, 0.18);
    box-shadow: 0 24px 58px rgba(23, 33, 43, 0.1);
    transform: translateY(-4px);
}

.profile-card {
    display: grid;
    gap: 14px;
    padding: clamp(24px, 4vw, 36px);
}

.profile-card span,
.contact-card span {
    color: var(--route-green);
    font-weight: 950;
    text-transform: uppercase;
}

.profile-card h3,
.status-preview-card h2,
.contact-card h2,
.blog-feature h2 {
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    line-height: 1.05;
    margin-bottom: 0;
}

.profile-card p,
.form-sidebar p,
.status-preview-card p,
.contact-card p,
.guide-card-grid p,
.support-topic-grid p,
.service-note-grid p,
.blog-feature p {
    color: var(--muted);
    line-height: 1.7;
}

.profile-card a,
.contact-card a {
    color: var(--cargo-red);
    font-weight: 900;
}

.process-grid,
.request-guide-grid,
.support-topic-grid,
.service-note-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
    min-height: 250px;
    padding: 28px;
    position: relative;
}

.process-card::before {
    background: var(--signal-yellow);
    content: "";
    height: 4px;
    left: 28px;
    position: absolute;
    right: 28px;
    top: 0;
}

.process-card span {
    color: var(--route-green);
    display: block;
    font-weight: 950;
    margin-bottom: 40px;
}

.process-card h3 {
    margin-bottom: 10px;
}

.process-card p {
    color: var(--muted);
    line-height: 1.7;
}

.values-grid {
    align-items: start;
}

.service-area-section,
.request-guide-section,
.tracking-guide-section,
.contact-card-section,
.support-topic-section,
.service-notes-section {
    background: var(--white);
}

.service-checklist {
    display: grid;
    gap: 10px;
}

.service-checklist span {
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(23, 33, 43, 0.1);
    border-left: 4px solid var(--route-green);
    border-radius: 8px;
    color: var(--ink);
    display: flex;
    font-weight: 850;
    min-height: 54px;
    padding: 14px 16px;
}

.service-area-section .service-checklist span,
.form-sidebar .service-checklist span {
    background: var(--paper);
}

.form-layout {
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
}

.form-sidebar {
    padding: clamp(22px, 4vw, 32px);
    position: sticky;
    top: 104px;
}

.request-guide-grid {
    margin-top: 34px;
}

.guide-card-grid {
    display: grid;
    gap: 14px;
}

.guide-card-grid article {
    padding: 24px;
}

.guide-card-grid h3,
.support-topic-grid h3,
.service-note-grid h3 {
    margin-bottom: 10px;
}

.status-preview-section {
    background: var(--sand);
}

.status-preview-card {
    padding: clamp(24px, 4vw, 38px);
}

.status-preview-card .btn {
    margin-top: 18px;
}

.stage-list {
    display: grid;
    gap: 10px;
}

.stage-list span {
    background: var(--ink);
    border-radius: 8px;
    color: var(--white);
    font-weight: 900;
    padding: 16px 18px;
}

.stage-list span:nth-child(even) {
    background: var(--route-green);
}

.contact-main-section {
    background:
        linear-gradient(180deg, var(--paper), var(--white) 55%, var(--paper));
}

.contact-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.contact-card {
    display: grid;
    gap: 12px;
    min-width: 0;
    padding: 28px;
}

.contact-card h2 {
    color: var(--ink);
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    overflow-wrap: anywhere;
}

.contact-card.is-email-card h2 {
    font-size: clamp(1.35rem, 1.8vw, 1.7rem);
    line-height: 1.08;
    overflow-wrap: normal;
    white-space: nowrap;
}

.contact-card p {
    margin-bottom: 0;
}

.support-topic-grid,
.service-note-grid {
    margin-top: 34px;
}

.support-topic-grid article,
.service-note-grid article {
    padding: 26px;
}

.blog-feature {
    align-items: stretch;
}

.blog-feature article {
    padding: clamp(26px, 5vw, 46px);
}

.blog-feature-panel {
    align-content: center;
    background:
        linear-gradient(135deg, rgba(240, 181, 47, 0.28), transparent 44%),
        var(--ink);
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: clamp(24px, 5vw, 42px);
}

.blog-feature-panel span {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: var(--white);
    display: flex;
    font-weight: 950;
    justify-content: center;
    min-height: 92px;
    text-align: center;
}

.expanded-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-grid {
    align-items: start;
}

.principle-list {
    display: grid;
    gap: 16px;
}

.principle-list article {
    border: 1px solid rgba(23, 33, 43, 0.1);
    border-radius: 8px;
    background: var(--white);
    padding: 24px;
}

.principle-list h3 {
    margin-bottom: 10px;
}

.principle-list p {
    color: var(--muted);
    line-height: 1.7;
}

.image-collage {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    align-items: end;
    gap: 14px;
}

.image-collage img:first-child {
    aspect-ratio: 1 / 1.05;
}

.image-collage img:last-child {
    aspect-ratio: 0.85 / 1;
    margin-bottom: 42px;
}

.mission-section {
    background: var(--sand);
}

.mission-grid article {
    padding: 28px;
}

.mission-grid span {
    color: var(--route-green);
    display: block;
    font-weight: 900;
    margin-bottom: 28px;
}

.send-hero,
.track-hero {
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
    padding: clamp(64px, 8vw, 96px) 0 clamp(34px, 5vw, 58px);
}

#package-request,
#tracking-search {
    scroll-margin-top: 104px;
}

.send-hero img,
.track-hero img {
    justify-self: end;
    max-height: 520px;
    object-fit: contain;
}

.request-panel,
.tracking-visual {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    color: var(--white);
}

.request-panel {
    display: grid;
    gap: 14px;
    justify-self: stretch;
    padding: clamp(24px, 5vw, 46px);
}

.request-panel span {
    color: var(--signal-yellow);
    font-weight: 900;
}

.request-panel strong {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 16px;
}

.tracking-visual {
    min-height: 320px;
    overflow: hidden;
    padding: 28px;
    position: relative;
}

.tracking-visual::before {
    background: linear-gradient(135deg, rgba(240, 181, 47, 0.28), rgba(20, 125, 114, 0.2));
    content: "";
    inset: 18px;
    position: absolute;
}

.tracking-visual div,
.tracking-visual strong {
    position: relative;
    z-index: 1;
}

.tracking-visual div {
    border-left: 4px solid var(--signal-yellow);
    height: 58px;
    margin-left: 30px;
    position: relative;
}

.tracking-visual div::before {
    background: var(--white);
    border: 5px solid var(--route-green);
    border-radius: 50%;
    content: "";
    height: 22px;
    left: -13px;
    position: absolute;
    top: 0;
    width: 22px;
}

.tracking-visual strong {
    background: var(--white);
    border-radius: 8px;
    color: var(--ink);
    display: inline-block;
    margin-top: 18px;
    padding: 14px 16px;
}

.tracking-chip {
    display: inline-flex;
    margin-top: 20px;
    border-radius: 8px;
    background: var(--signal-yellow);
    color: var(--ink);
    font-weight: 900;
    padding: 12px 16px;
}

.form-shell {
    max-width: 980px;
}

.aon-form {
    padding: clamp(22px, 5vw, 42px);
}

.form-section-title {
    margin-bottom: 26px;
}

.form-section-title h2 {
    font-size: clamp(1.6rem, 3vw, 2.45rem);
    margin-bottom: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.aon-form label {
    color: var(--ink);
    display: grid;
    font-weight: 800;
    gap: 8px;
}

.aon-form input,
.aon-form textarea,
.track-search input {
    border: 1px solid rgba(23, 33, 43, 0.16);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    min-height: 50px;
    padding: 12px 14px;
    width: 100%;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.aon-form input:focus,
.aon-form textarea:focus,
.track-search input:focus,
.track-mini-form input:focus,
.newsletter-form input:focus,
.modal-form input:focus,
.modal-form textarea:focus {
    border-color: rgba(217, 54, 43, 0.55);
    box-shadow: 0 0 0 4px rgba(217, 54, 43, 0.1);
    outline: none;
    transform: translateY(-1px);
}

.aon-form textarea {
    min-height: 132px;
    resize: vertical;
}

.aon-form span,
.form-error {
    color: var(--cargo-red);
    font-size: 0.88rem;
    font-weight: 700;
}

.full-span {
    grid-column: 1 / -1;
}

.aon-form .btn {
    margin-top: 24px;
}

.track-search {
    margin-top: 26px;
    max-width: 620px;
}

.track-search input {
    background: var(--white);
}

.tracking-result-section {
    background: var(--sand);
}

.tracking-result,
.empty-state {
    padding: clamp(24px, 5vw, 42px);
}

.tracking-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(23, 33, 43, 0.12);
    padding-bottom: 22px;
}

.tracking-summary h2 {
    font-size: clamp(1.7rem, 4vw, 3rem);
    margin-bottom: 0;
}

.status-badge {
    border-radius: 999px;
    background: rgba(20, 125, 114, 0.12);
    color: var(--route-green);
    font-weight: 900;
    padding: 10px 14px;
}

.tracking-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 26px 0 34px;
}

.tracking-meta div {
    border: 1px solid rgba(23, 33, 43, 0.1);
    border-radius: 8px;
    padding: 16px;
}

.tracking-meta span,
.tracking-timeline time,
.detail-list span {
    color: var(--muted);
    display: block;
    font-size: 0.86rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.tracking-timeline {
    display: grid;
    gap: 16px;
}

.tracking-timeline article {
    border-left: 4px solid var(--cargo-red);
    padding-left: 18px;
    transition: border-color 220ms ease, transform 220ms var(--ease-out);
}

.tracking-timeline article:hover {
    border-color: var(--route-green);
    transform: translateX(4px);
}

.tracking-timeline h3 {
    margin-bottom: 8px;
}

.tracking-timeline p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 6px;
}

.empty-state {
    max-width: 760px;
}

.contact-grid {
    align-items: start;
}

.contact-details {
    padding-right: clamp(0px, 4vw, 38px);
}

.contact-details h2 {
    font-size: clamp(2.05rem, 4vw, 3.5rem);
    line-height: 1.05;
}

.office-address {
    background: var(--white);
    border: 1px solid rgba(23, 33, 43, 0.1);
    border-left: 5px solid var(--route-green);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(23, 33, 43, 0.06);
    margin-top: 28px;
    padding: 22px;
    transition: border-color 240ms ease, box-shadow 260ms ease, transform 260ms var(--ease-out);
}

.office-address:hover {
    border-color: rgba(20, 125, 114, 0.24);
    box-shadow: 0 24px 56px rgba(23, 33, 43, 0.1);
    transform: translateY(-3px);
}

.office-address span,
.contact-card span {
    font-size: 0.78rem;
    letter-spacing: 0;
}

.office-address span {
    color: var(--route-green);
    display: block;
    font-weight: 950;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.office-address strong {
    display: block;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.2;
    margin-bottom: 8px;
}

.office-address p {
    margin-bottom: 0;
}

.detail-list {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.detail-list p {
    border-top: 1px solid var(--line);
    margin-bottom: 0;
    padding-top: 16px;
}

.detail-list a {
    color: var(--cargo-red);
    font-weight: 900;
    overflow-wrap: anywhere;
}

.contact-form {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 96px;
}

.contact-form .btn {
    width: 100%;
}

.blog-card {
    padding: 30px;
}

.site-footer {
    background: #101820;
    color: var(--white);
    padding-top: clamp(54px, 7vw, 82px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.2fr 1fr;
    gap: 34px;
}

.site-footer h2 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 18px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.78);
    display: block;
    line-height: 1.8;
}

.site-footer a:hover {
    color: var(--white);
}

.site-footer p,
.site-footer .brand-mark small {
    color: rgba(255, 255, 255, 0.68);
}

.newsletter-form {
    margin-top: 16px;
}

.newsletter-form input {
    border-color: rgba(255, 255, 255, 0.14);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    margin-top: 42px;
    padding: 20px 16px;
    text-align: center;
}

.flash-message {
    background: var(--route-green);
    color: var(--white);
    font-weight: 800;
    padding: 14px 20px;
    text-align: center;
}

.action-modal {
    align-items: center;
    display: grid;
    inset: 0;
    opacity: 0;
    padding: 24px;
    pointer-events: none;
    position: fixed;
    transition: opacity 180ms ease, visibility 180ms ease;
    visibility: hidden;
    z-index: 100;
}

.action-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.modal-backdrop {
    background: rgba(6, 15, 23, 0.68);
    backdrop-filter: blur(8px);
    inset: 0;
    position: absolute;
}

.modal-panel {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    color: var(--ink);
    justify-self: center;
    max-height: min(86svh, 760px);
    max-width: 860px;
    overflow-y: auto;
    padding: clamp(24px, 4vw, 38px);
    position: relative;
    transform: translateY(12px) scale(0.98);
    transition: transform 180ms ease;
    width: min(100%, 860px);
    z-index: 1;
}

.action-modal.is-open .modal-panel {
    transform: translateY(0) scale(1);
}

.modal-panel-compact {
    max-width: 520px;
}

.modal-panel h2 {
    font-size: clamp(1.65rem, 4vw, 2.55rem);
    line-height: 1.05;
    margin-bottom: 22px;
}

.modal-close {
    align-items: center;
    background: var(--ink);
    border: 0;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    font-size: 1.7rem;
    font-weight: 700;
    height: 42px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 42px;
}

.modal-form {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.modal-search-form {
    grid-template-columns: 1fr;
}

.modal-form label {
    color: var(--ink);
    display: grid;
    font-weight: 800;
    gap: 8px;
}

.modal-form input,
.modal-form textarea {
    border: 1px solid rgba(23, 33, 43, 0.16);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    min-height: 50px;
    padding: 12px 14px;
    width: 100%;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.modal-form textarea {
    min-height: 110px;
    resize: vertical;
}

@media (max-width: 980px) {
    .site-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .site-nav {
        flex-basis: 100%;
        justify-content: flex-start;
        order: 3;
    }

    .header-cta {
        margin-left: auto;
    }

    .action-grid,
    .command-grid,
    .logistics-hub-grid,
    .profile-grid,
    .values-grid,
    .service-area-grid,
    .form-layout,
    .tracking-guide-grid,
    .status-preview-grid,
    .blog-feature,
    .split-grid,
    .operations-grid,
    .send-hero-grid,
    .track-hero-grid,
    .story-grid,
    .contact-grid,
    .partner-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .feature-grid,
    .process-grid,
    .request-guide-grid,
    .mission-grid,
    .blog-grid,
    .expanded-blog-grid,
    .contact-card-grid,
    .support-topic-grid,
    .service-note-grid {
        grid-template-columns: 1fr;
    }

    .form-sidebar {
        position: static;
    }

    .contact-form {
        position: static;
    }

    .support-grid {
        grid-template-areas:
            "copy"
            "flow"
            "stats";
        grid-template-columns: 1fr;
    }

    .lane-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dispatch-panel {
        max-width: 720px;
    }

    .command-link {
        justify-self: start;
    }

    .cta-panel {
        grid-template-columns: 1fr;
    }

    .tracking-meta,
    .stat-row,
    .partner-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reverse-mobile .image-collage {
        order: -1;
    }
}

@media (max-width: 860px) {
    .container-shell {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 46px;
        align-items: center;
        gap: 12px;
        padding: 10px 14px;
        border: 1px solid rgba(23, 33, 43, 0.12);
        border-width: 0 0 1px;
        border-radius: 0;
        box-shadow: 0 14px 34px rgba(23, 33, 43, 0.14);
    }

    .brand-mark {
        min-width: 0;
    }

    .brand-symbol {
        width: 42px;
        height: 42px;
        font-size: 0.86rem;
    }

    .brand-mark strong {
        font-size: 0.98rem;
    }

    .brand-mark small {
        font-size: 0.8rem;
    }

    .mobile-menu-toggle {
        display: grid;
        justify-self: end;
    }

    .header-cta {
        display: none;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
        max-height: calc(100svh - 66px);
        overflow-y: auto;
        padding: 10px 14px 14px;
        border: 1px solid rgba(23, 33, 43, 0.12);
        border-width: 0 0 1px;
        border-radius: 0 0 8px 8px;
        background: rgba(251, 250, 246, 0.98);
        box-shadow: 0 24px 60px rgba(23, 33, 43, 0.18);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
        visibility: hidden;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .site-nav a {
        display: flex;
        align-items: center;
        min-height: 48px;
        width: 100%;
        padding: 12px 14px;
        font-size: 1rem;
    }

    .language-switcher,
    .language-switcher select {
        width: 100%;
        max-width: none;
    }

    .language-switcher select {
        min-height: 48px;
    }

    .hero {
        min-height: auto;
        padding: 0;
        background-position: 58% center;
    }

    .hero-slider::before {
        background:
            linear-gradient(180deg, rgba(13, 19, 25, 0.7), rgba(13, 19, 25, 0.9)),
            linear-gradient(90deg, rgba(13, 19, 25, 0.9), rgba(13, 19, 25, 0.45));
    }

    .hero-visual {
        background-position: 68% center;
        transform: none;
    }

    .hero-slider {
        padding: 0;
    }

    .hero-slides {
        min-height: auto;
        padding: 104px 0 26px;
    }

    .hero-slider-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding-bottom: 24px;
    }

    .hero-tags {
        gap: 8px;
    }

    .hero-tags span {
        min-height: 40px;
        padding: 9px 11px;
        font-size: 0.9rem;
    }

    .hero-dots {
        align-self: center;
        justify-content: center;
        width: 100%;
    }

    .marquee-track {
        animation-duration: 28s;
    }

    .marquee-track span {
        min-height: 58px;
        padding: 0 22px;
    }

    .hero h1,
    .page-hero h1,
    .send-hero h1,
    .track-hero h1 {
        font-size: clamp(2.2rem, 10.5vw, 3.35rem);
        line-height: 1.02;
        overflow-wrap: anywhere;
    }

    .send-hero h1,
    .track-hero h1 {
        font-size: clamp(2.05rem, 9.2vw, 2.85rem);
    }

    .hero-copy,
    .send-hero p,
    .track-hero p {
        font-size: 1rem;
        line-height: 1.55;
    }

    .page-hero {
        min-height: auto;
        padding: 92px 0 54px;
        background-position: 62% center;
    }

    .contact-hero {
        background-position: 66% center;
    }

    .contact-hero h1 {
        font-size: clamp(2.25rem, 10vw, 3.4rem);
    }

    .send-hero,
    .track-hero {
        padding: 94px 0 36px;
    }

    .section-pad,
    .operations-section,
    .support-section,
    .split-feature {
        padding: 58px 0;
    }

    .section-heading {
        text-align: left;
    }

    .section-heading h2,
    .hub-copy h2,
    .split-copy h2,
    .support-copy h2,
    .contact-details h2,
    .cta-panel h2 {
        font-size: clamp(1.9rem, 9vw, 2.65rem);
        line-height: 1.08;
    }

    .feature-grid,
    .process-grid,
    .request-guide-grid,
    .lane-grid,
    .mission-grid,
    .blog-grid,
    .expanded-blog-grid,
    .contact-card-grid,
    .support-topic-grid,
    .service-note-grid {
        margin-top: 26px;
        gap: 14px;
    }

    .contact-card h2 {
        font-size: clamp(1.35rem, 7vw, 1.9rem);
    }

    .feature-grid article,
    .process-card,
    .contact-card,
    .form-sidebar,
    .guide-card-grid article,
    .support-topic-grid article,
    .service-note-grid article,
    .mission-grid article,
    .blog-card,
    .aon-form,
    .tracking-result,
    .empty-state {
        box-shadow: 0 14px 32px rgba(23, 33, 43, 0.07);
    }

    .command-grid {
        gap: 14px;
    }

    .track-mini-form,
    .track-search {
        width: 100%;
    }

    .request-panel,
    .tracking-visual {
        margin-top: 10px;
    }

    .request-panel {
        gap: 10px;
        padding: 18px;
    }

    .request-panel strong {
        padding: 13px 14px;
    }

    .tracking-visual {
        min-height: 220px;
        padding: 22px;
    }

    .cta-panel {
        padding: 26px;
    }

    .cta-panel .hero-actions {
        margin-top: 0;
    }

    .footer-grid {
        gap: 26px;
    }
}

@media (max-width: 640px) {
    .site-header {
        gap: 12px;
        padding-inline: 16px;
    }

    .brand-symbol {
        width: 40px;
        height: 40px;
    }

    .site-nav {
        gap: 2px;
    }

    .site-nav a {
        padding: 8px 9px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 22px;
    }

    .hero .btn,
    .cta-panel .btn,
    .aon-form .btn,
    .status-preview-card .btn,
    .empty-state .btn {
        min-height: 54px;
        width: 100%;
    }

    .hero-tags {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .hero-tags span {
        justify-content: center;
        min-width: 0;
        text-align: center;
    }

    .hero-dots button {
        width: 13px;
        height: 13px;
    }

    .hero-dots button.is-active {
        width: 38px;
    }

    .track-mini-form,
    .track-search,
    .newsletter-form {
        flex-direction: column;
    }

    .track-mini-form button,
    .track-search button,
    .newsletter-form button {
        width: 100%;
        min-height: 52px;
    }

    .office-pill {
        border-left: 0;
        border-top: 3px solid var(--signal-yellow);
        padding-left: 0;
        padding-top: 14px;
    }

    .hero-metrics,
    .blog-feature-panel {
        grid-template-columns: 1fr;
    }

    .hero-metrics {
        margin-top: 24px;
    }

    .hero-metrics div,
    .process-card,
    .contact-card,
    .blog-card,
    .blog-feature article,
    .blog-feature-panel,
    .form-sidebar,
    .guide-card-grid article,
    .support-topic-grid article,
    .service-note-grid article,
    .status-preview-card,
    .profile-card {
        padding: 20px;
    }

    .process-card {
        min-height: auto;
    }

    .process-card::before {
        left: 20px;
        right: 20px;
    }

    .process-card span {
        margin-bottom: 28px;
    }

    .hub-points {
        display: grid;
    }

    .dispatch-header,
    .dispatch-list div {
        align-items: flex-start;
        flex-direction: column;
    }

    .dispatch-route,
    .lane-grid,
    .support-stats {
        grid-template-columns: 1fr;
    }

    .route-step {
        grid-template-columns: 42px 1fr;
        justify-items: start;
        text-align: left;
    }

    .lane-card {
        min-height: auto;
        padding: 22px;
    }

    .lane-card::before {
        left: 22px;
        right: 22px;
    }

    .lane-card span {
        margin-bottom: 30px;
    }

    .support-flow {
        padding: 12px;
    }

    .form-grid,
    .tracking-meta,
    .stat-row,
    .partner-logos,
    .contact-card-grid,
    .process-grid,
    .request-guide-grid,
    .support-topic-grid,
    .service-note-grid,
    .expanded-blog-grid,
    .command-grid {
        grid-template-columns: 1fr;
    }

    .aon-form {
        padding: 20px;
    }

    .aon-form input,
    .aon-form textarea,
    .track-search input,
    .track-mini-form input,
    .newsletter-form input {
        font-size: 16px;
        min-height: 52px;
    }

    .tracking-summary h2 {
        overflow-wrap: anywhere;
    }

    .tracking-meta div,
    .request-panel strong {
        padding: 14px;
    }

    .image-collage {
        grid-template-columns: 1fr;
    }

    .image-collage img:last-child {
        margin-bottom: 0;
    }

    .tracking-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer a {
        padding-block: 3px;
    }

    .site-footer {
        padding-top: 44px;
    }

    .action-modal {
        align-items: end;
        padding: 0;
    }

    .modal-panel {
        border-radius: 8px 8px 0 0;
        max-height: 88svh;
        padding: 24px 20px 22px;
        width: 100%;
    }

    .modal-panel h2 {
        max-width: calc(100% - 52px);
    }

    .modal-form {
        grid-template-columns: 1fr;
    }

    .modal-form input,
    .modal-form textarea {
        font-size: 16px;
        min-height: 52px;
    }

    .modal-form .btn {
        min-height: 54px;
        width: 100%;
    }
}

@media (max-width: 420px) {
    .container-shell {
        width: min(100% - 24px, 1180px);
    }

    .site-header {
        left: 0;
        right: 0;
        top: 0;
        padding-inline: 12px;
    }

    .site-nav {
        left: 0;
        right: 0;
    }

    .brand-mark {
        gap: 9px;
    }

    .brand-symbol {
        width: 38px;
        height: 38px;
        font-size: 0.78rem;
    }

    .brand-mark strong {
        font-size: 0.92rem;
    }

    .brand-mark small {
        font-size: 0.76rem;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }

    .hero {
        padding-top: 0;
    }

    .hero-slider {
        padding-top: 0;
    }

    .hero-slides {
        padding-top: 88px;
        padding-bottom: 24px;
    }

    .hero-tags span {
        font-size: 0.84rem;
        padding-inline: 8px;
    }

    .hero h1,
    .page-hero h1,
    .send-hero h1,
    .track-hero h1 {
        font-size: clamp(2rem, 11.5vw, 2.9rem);
    }

    .send-hero h1,
    .track-hero h1 {
        font-size: clamp(1.9rem, 10vw, 2.5rem);
    }

    .tracking-result,
    .empty-state,
    .cta-panel {
        padding: 20px;
    }
}
