:root {
    --red: #d71920;
    --red-dark: #a90e16;
    --blue: #1262ad;
    --blue-dark: #0b3766;
    --blue-soft: #edf6ff;
    --ink: #0c141d;
    --ink-2: #142231;
    --muted: #596879;
    --line: #dce6f1;
    --line-dark: rgba(255, 255, 255, 0.14);
    --panel: #f6f9fd;
    --white: #ffffff;
    --shadow-sm: 0 10px 28px rgba(12, 20, 29, 0.08);
    --shadow: 0 24px 70px rgba(12, 20, 29, 0.14);
    --header-h: 78px;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(18, 98, 173, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(18, 98, 173, 0.035) 1px, transparent 1px),
        var(--white);
    background-size: 72px 72px;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    overflow-x: hidden;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

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

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

::selection {
    color: var(--white);
    background: var(--red);
}

.container {
    width: min(1188px, calc(100% - 44px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(220, 230, 241, 0.82);
    backdrop-filter: blur(22px);
    transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease), height 0.35s var(--ease);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: var(--scroll-progress, 0%);
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--blue));
}

.site-header.is-scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 42px rgba(12, 20, 29, 0.08);
}

.nav-shell {
    width: min(1240px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    min-width: 176px;
    color: var(--ink);
    font-weight: 900;
    line-height: 1;
}

.brand-main {
    font-size: 1.12rem;
}

.brand-main span {
    color: var(--red);
}

.brand-sub {
    margin-top: 5px;
    font-size: 0.72rem;
    color: var(--ink);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 15px;
    border-radius: 7px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 800;
    transition: color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
    color: var(--red);
    background: rgba(215, 25, 32, 0.08);
}

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

.site-nav .nav-button {
    gap: 8px;
    margin-left: 8px;
    color: var(--white);
    background: var(--red);
    box-shadow: 0 10px 24px rgba(215, 25, 32, 0.22);
}

.site-nav .nav-button:hover,
.site-nav .nav-button[aria-current="page"] {
    color: var(--white);
    background: var(--red-dark);
}

.nav-button svg,
.btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.28s var(--ease);
}

.nav-button:hover svg,
.btn:hover svg {
    transform: translateX(3px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--white);
    color: var(--ink);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 19px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    --hero-y: 0px;
    position: relative;
    min-height: min(850px, calc(100svh - 24px));
    padding: calc(var(--header-h) + 76px) 0 72px;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(6, 12, 19, 0.9) 0%, rgba(8, 16, 25, 0.82) 42%, rgba(8, 16, 25, 0.46) 68%, rgba(8, 16, 25, 0.26) 100%),
        linear-gradient(180deg, rgba(6, 12, 19, 0.44) 0%, rgba(6, 12, 19, 0.28) 54%, rgba(6, 12, 19, 0.78) 100%),
        url("tiger-global-logistics-hero.png");
    background-size: cover;
    background-position: center calc(50% + var(--hero-y));
    color: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(90deg, black 0 60%, transparent 92%);
    opacity: 0.45;
}

.hero-frame {
    position: absolute;
    inset: var(--header-h) 22px 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
    content: "";
    position: absolute;
    width: 88px;
    height: 4px;
    background: var(--red);
}

.hero-frame::before {
    left: -1px;
    top: -1px;
}

.hero-frame::after {
    right: -1px;
    bottom: -1px;
    background: var(--blue);
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: 62px;
}

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

.eyebrow {
    margin: 0 0 16px;
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.hero-title {
    margin: 0;
    max-width: 900px;
    color: var(--white);
    font-size: 5.35rem;
    line-height: 0.93;
    font-weight: 900;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
}

.hero-title span {
    display: inline-block;
}

.hero-copy {
    max-width: 626px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.18rem;
}

.hero-actions,
.cta-panel {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-actions {
    margin-top: 34px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-badges span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border-radius: 7px;
    font-weight: 900;
    font-size: 0.84rem;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 21px;
    border-radius: 7px;
    border: 1px solid transparent;
    font-weight: 900;
    cursor: pointer;
    gap: 10px;
    overflow: hidden;
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease), background 0.28s var(--ease);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transition: transform 0.65s var(--ease);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:hover::before {
    transform: translateX(120%);
}

.btn span,
.btn svg {
    position: relative;
}

.btn-primary {
    color: var(--white);
    background: var(--red);
    box-shadow: 0 16px 30px rgba(215, 25, 32, 0.24);
}

.btn-primary:hover {
    background: var(--red-dark);
    box-shadow: 0 20px 38px rgba(215, 25, 32, 0.28);
}

.btn-secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-sm);
}

.hero-motion {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(8, 16, 25, 0.58);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.hero-motion::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0 36%, rgba(255, 255, 255, 0.12) 44%, transparent 54% 100%);
    transform: translateX(-110%);
    animation: boardSheen 5.8s var(--ease) infinite;
}

.motion-board {
    position: relative;
    min-height: 330px;
    border-radius: 8px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 42%, rgba(215, 25, 32, 0.26), transparent 18%),
        radial-gradient(circle at 78% 38%, rgba(18, 98, 173, 0.28), transparent 22%),
        rgba(255, 255, 255, 0.06);
}

.motion-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 36px 36px;
    animation: gridDrift 18s linear infinite;
    opacity: 0.55;
}

.motion-node {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
    font-size: 0.78rem;
    font-weight: 900;
    animation: nodePulse 3.4s ease-in-out infinite;
}

.node-vn {
    left: 10%;
    top: 52%;
    background: var(--red);
}

.node-cn {
    left: 26%;
    top: 24%;
    animation-delay: 0.3s;
}

.node-in {
    left: 47%;
    top: 58%;
    animation-delay: 0.55s;
}

.node-eu {
    right: 28%;
    top: 20%;
    animation-delay: 0.85s;
}

.node-us {
    right: 9%;
    top: 44%;
    animation-delay: 1.1s;
}

.node-au {
    right: 24%;
    bottom: 16%;
    animation-delay: 1.35s;
}

.motion-lane {
    position: absolute;
    z-index: 2;
    left: 18%;
    top: 60%;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.7));
    transform-origin: left center;
}

.motion-lane::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.95);
    animation: routeDot 3.2s linear infinite;
}

.motion-lane-1 {
    transform: rotate(-24deg);
}

.motion-lane-2 {
    top: 39%;
    width: 60%;
    transform: rotate(9deg);
}

.motion-lane-2::before {
    animation-delay: 0.55s;
}

.motion-lane-3 {
    top: 62%;
    width: 54%;
    transform: rotate(24deg);
}

.motion-lane-3::before {
    animation-delay: 1s;
}

.motion-lane-4 {
    left: 31%;
    top: 31%;
    width: 45%;
    transform: rotate(38deg);
}

.motion-lane-4::before {
    animation-delay: 1.45s;
}

.motion-status {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
}

.motion-status div {
    padding: 16px;
    background: rgba(8, 16, 25, 0.68);
}

.motion-status span {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.motion-status strong {
    display: block;
    margin-top: 5px;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: auto 0 0;
    height: 8px;
    background: linear-gradient(90deg, var(--red) 0 38%, var(--blue) 38% 100%);
}

.carrier-strip {
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.carrier-track {
    width: max-content;
    display: flex;
    gap: 16px;
    padding: 17px 16px;
    animation: carrierScroll 34s linear infinite;
}

.carrier-track:hover {
    animation-play-state: paused;
}

.carrier-track span {
    min-width: 118px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: var(--ink-2);
    background: var(--white);
    font-weight: 900;
    font-size: 0.86rem;
}

.stats-band {
    position: relative;
    background: var(--ink);
    color: var(--white);
    padding: 26px 0;
    overflow: hidden;
}

.stats-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.32;
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.stats-grid div {
    min-height: 122px;
    padding: 26px;
    background: rgba(12, 20, 29, 0.96);
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.stats-grid div:hover {
    transform: translateY(-3px);
    background: #111f2d;
}

.stats-grid strong {
    display: block;
    color: var(--red);
    font-size: 2.28rem;
    line-height: 1;
}

.stats-grid span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.section {
    padding: 104px 0;
}

.section-blue {
    background:
        linear-gradient(135deg, rgba(18, 98, 173, 0.1), transparent 38%),
        var(--blue-soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-heading h2,
.section-copy h2,
.cta-panel h2,
.office-panel h2 {
    margin: 0;
    font-size: 2.55rem;
    line-height: 1.08;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.cta-panel p:not(.eyebrow),
.office-panel p {
    color: var(--muted);
    font-size: 1rem;
}

.split-layout,
.route-layout,
.contact-layout,
.process-layout,
.values-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 58px;
    align-items: start;
}

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

.feature-list article,
.service-card,
.detail-card,
.fact-panel,
.values-grid article,
.network-panels article,
.office-panel,
.quote-form,
.contact-card,
.network-board {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(12, 20, 29, 0.02);
}

.feature-list article,
.service-card,
.detail-card,
.values-grid article,
.network-panels article,
.contact-card {
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.feature-list article:hover,
.service-card:hover,
.detail-card:hover,
.values-grid article:hover,
.network-panels article:hover,
.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 98, 173, 0.34);
    box-shadow: var(--shadow-sm);
}

.feature-list article {
    position: relative;
    padding: 28px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 18px;
    overflow: hidden;
}

.feature-list article::before,
.service-card::before,
.detail-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--red), var(--blue));
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.feature-list article:hover::before,
.service-card:hover::before,
.detail-card:hover::before {
    opacity: 1;
}

.feature-list span {
    color: var(--red);
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
}

.feature-list h3,
.service-card h3,
.detail-card h2,
.values-grid h3,
.network-panels h3,
.process-steps h3 {
    margin: 0 0 10px;
    line-height: 1.2;
}

.feature-list h3,
.feature-list p {
    grid-column: 2;
}

.feature-list p,
.service-card p,
.detail-card p,
.values-grid p,
.network-panels p,
.process-steps p {
    margin: 0;
    color: var(--muted);
}

.text-link {
    position: relative;
    display: inline-flex;
    margin-top: 18px;
    color: var(--red);
    font-weight: 900;
}

.text-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: currentColor;
    transform-origin: left;
    transition: transform 0.28s var(--ease);
}

.text-link:hover::after {
    transform: scaleX(0.55);
}

.card-grid {
    display: grid;
    gap: 18px;
}

.card-grid.three,
.network-panels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.detail-card {
    position: relative;
    padding: 30px;
    overflow: hidden;
}

.service-card {
    min-height: 246px;
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    border-radius: 7px;
    color: var(--red);
    background: rgba(215, 25, 32, 0.08);
    transition: color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.service-card:hover .icon-box,
.detail-card:hover .icon-box {
    color: var(--white);
    background: var(--red);
    transform: translateY(-2px);
}

.icon-box svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.network-showcase {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.network-board {
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(18, 98, 173, 0.07), transparent 46%),
        var(--white);
    box-shadow: var(--shadow-sm);
}

.lane-map {
    position: relative;
    min-height: 238px;
    margin-bottom: 18px;
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(18, 98, 173, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(18, 98, 173, 0.07) 1px, transparent 1px),
        #f8fbff;
    background-size: 42px 42px;
}

.hub {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--white);
    background: var(--ink);
    border: 3px solid var(--white);
    box-shadow: 0 12px 28px rgba(12, 20, 29, 0.18);
    font-size: 0.82rem;
    font-weight: 900;
}

.hub-origin {
    left: 12%;
    top: 48%;
    background: var(--red);
}

.hub-china {
    left: 22%;
    top: 22%;
    background: var(--blue);
}

.hub-india {
    left: 48%;
    top: 54%;
}

.hub-europe {
    left: 66%;
    top: 22%;
}

.hub-us {
    right: 10%;
    top: 42%;
}

.hub-au {
    right: 22%;
    bottom: 18%;
    background: var(--blue-dark);
}

.lane {
    position: absolute;
    z-index: 1;
    left: 18%;
    top: 58%;
    width: 68%;
    height: 2px;
    background: linear-gradient(90deg, rgba(215, 25, 32, 0.15), rgba(18, 98, 173, 0.72));
    transform-origin: left center;
}

.lane::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    animation: laneMove 3.8s linear infinite;
}

.lane-1 {
    transform: rotate(-24deg);
}

.lane-2 {
    top: 38%;
    width: 58%;
    transform: rotate(7deg);
}

.lane-2::after {
    animation-delay: 0.7s;
}

.lane-3 {
    top: 62%;
    width: 52%;
    transform: rotate(22deg);
}

.lane-3::after {
    animation-delay: 1.25s;
}

.lane-4 {
    left: 27%;
    top: 32%;
    width: 44%;
    transform: rotate(38deg);
}

.lane-4::after {
    animation-delay: 1.8s;
}

.route-table {
    border-top: 1px solid var(--line);
}

.route-table div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.route-table span {
    color: var(--muted);
    font-weight: 800;
}

.route-table strong {
    text-align: right;
    color: var(--ink);
}

.route-table.large div {
    padding: 22px 0;
}

.cta-section {
    padding: 0 0 104px;
}

.cta-panel {
    position: relative;
    justify-content: space-between;
    padding: 44px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(215, 25, 32, 0.2), transparent 32%),
        linear-gradient(315deg, rgba(18, 98, 173, 0.28), transparent 38%),
        var(--ink);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cta-panel::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--blue));
}

.cta-panel .eyebrow,
.cta-panel h2 {
    color: var(--white);
}

.cta-panel p:not(.eyebrow) {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.76);
}

.page-hero {
    position: relative;
    padding: calc(var(--header-h) + 76px) 0 84px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(18, 98, 173, 0.14), transparent 42%),
        linear-gradient(180deg, var(--blue-soft), var(--white));
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(18, 98, 173, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(18, 98, 173, 0.07) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: linear-gradient(180deg, black, transparent 86%);
}

.page-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
    gap: 50px;
    align-items: center;
}

.page-hero h1 {
    margin: 0;
    max-width: 790px;
    font-size: 3.35rem;
    line-height: 1.04;
}

.page-hero p:not(.eyebrow) {
    max-width: 690px;
    color: var(--muted);
    font-size: 1.1rem;
}

.page-media {
    position: relative;
    min-height: 368px;
    border-radius: 8px;
    background-image: url("tiger-global-logistics-hero.png");
    background-size: cover;
    background-position: 66% center;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.page-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(12, 20, 29, 0.28));
}

.fact-panel {
    padding: 10px 28px;
    box-shadow: var(--shadow-sm);
}

.fact-panel div,
.office-list div {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.fact-panel div:last-child,
.office-list div:last-child {
    border-bottom: 0;
}

.fact-panel span,
.office-list span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.fact-panel strong,
.office-list strong {
    display: block;
    margin-top: 6px;
}

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

.values-grid article {
    padding: 26px;
}

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

.check-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--ink);
    font-weight: 800;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: inset 0 0 0 4px var(--white);
    border: 1px solid var(--red);
}

.process-layout {
    grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.process-steps article {
    padding: 25px;
    background: var(--white);
}

.process-steps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 22px;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
    font-weight: 900;
}

.network-panels {
    display: grid;
    gap: 18px;
}

.network-panels article {
    padding: 28px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-list span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 0 12px;
    border-radius: 7px;
    color: var(--blue-dark);
    background: rgba(18, 98, 173, 0.09);
    border: 1px solid rgba(18, 98, 173, 0.12);
    font-weight: 900;
    font-size: 0.92rem;
}

.contact-hero {
    background:
        linear-gradient(135deg, rgba(215, 25, 32, 0.18), transparent 36%),
        linear-gradient(315deg, rgba(18, 98, 173, 0.32), transparent 44%),
        var(--ink);
    color: var(--white);
}

.contact-hero .eyebrow,
.contact-hero h1 {
    color: var(--white);
}

.contact-hero p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.74);
}

.contact-card {
    padding: 28px;
    display: grid;
    gap: 12px;
    background: var(--white);
}

.contact-card a {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 7px;
    color: var(--ink);
    background: var(--panel);
    font-weight: 900;
    overflow-wrap: anywhere;
    transition: color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.contact-card a:hover {
    color: var(--white);
    background: var(--red);
    transform: translateX(3px);
}

.contact-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.quote-form,
.office-panel {
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

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

label {
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--white);
    color: var(--ink);
    padding: 13px 14px;
    outline: none;
    transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(18, 98, 173, 0.12);
}

.office-panel {
    position: sticky;
    top: 102px;
}

.office-list {
    margin-top: 22px;
}

.site-footer {
    position: relative;
    padding: 62px 0 26px;
    color: rgba(255, 255, 255, 0.78);
    background: var(--ink);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 76px 76px;
    opacity: 0.6;
}

.footer-grid,
.footer-bottom {
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.6fr) minmax(260px, 0.8fr);
    gap: 44px;
}

.footer-brand {
    color: var(--white);
    margin-bottom: 18px;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 1rem;
}

.site-footer a {
    display: block;
    margin: 0 0 10px;
    transition: color 0.22s var(--ease), transform 0.22s var(--ease);
}

.site-footer a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.92rem;
}

.motion-ready [data-reveal],
.motion-ready .auto-reveal {
    opacity: 0.88;
    transform: translateY(18px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease), filter 0.75s var(--ease);
}

.motion-ready [data-reveal].is-visible,
.motion-ready .auto-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.motion-ready [data-reveal]:nth-child(2),
.motion-ready .auto-reveal:nth-child(2) {
    transition-delay: 0.06s;
}

.motion-ready [data-reveal]:nth-child(3),
.motion-ready .auto-reveal:nth-child(3) {
    transition-delay: 0.12s;
}

@keyframes carrierScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes statusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(215, 25, 32, 0.5);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(215, 25, 32, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(215, 25, 32, 0);
    }
}

@keyframes laneMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(100% - 10px));
    }
}

@keyframes routeDot {
    from {
        transform: translateX(0);
        opacity: 0;
    }
    12% {
        opacity: 1;
    }
    88% {
        opacity: 1;
    }
    to {
        transform: translateX(calc(100% - 10px));
        opacity: 0;
    }
}

@keyframes nodePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26), 0 0 0 0 rgba(255, 255, 255, 0.18);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32), 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

@keyframes gridDrift {
    from {
        background-position: 0 0, 0 0;
    }
    to {
        background-position: 72px 0, 0 72px;
    }
}

@keyframes boardSheen {
    0%, 40% {
        transform: translateX(-120%);
    }
    82%, 100% {
        transform: translateX(120%);
    }
}

@media (max-width: 1080px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-motion {
        max-width: 560px;
    }
}

@media (max-width: 980px) {
    .hero-title {
        font-size: 3.7rem;
    }

    .split-layout,
    .route-layout,
    .contact-layout,
    .process-layout,
    .values-layout,
    .page-hero-grid,
    .network-showcase {
        grid-template-columns: 1fr;
    }

    .card-grid.three,
    .network-panels,
    .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-media {
        min-height: 286px;
    }

    .office-panel {
        position: static;
    }
}

@media (max-width: 760px) {
    :root {
        --header-h: 68px;
    }

    .container {
        width: min(100% - 28px, 1188px);
    }

    .site-header.is-scrolled {
        height: var(--header-h);
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: calc(var(--header-h) + 10px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
    }

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

    .site-nav > a {
        justify-content: flex-start;
        min-height: 48px;
    }

    .site-nav .nav-button {
        margin-left: 0;
        justify-content: center;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-h) + 48px) 0 46px;
        background-image:
            linear-gradient(180deg, rgba(6, 12, 19, 0.88) 0%, rgba(6, 12, 19, 0.78) 52%, rgba(6, 12, 19, 0.66) 100%),
            url("tiger-global-logistics-hero.png");
        background-position: 62% center;
    }

    .hero-frame {
        inset: var(--header-h) 14px 14px;
    }

    .hero-title {
        font-size: 2.78rem;
    }

    .hero-copy,
    .page-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .hero-motion {
        max-width: none;
        padding: 12px;
    }

    .motion-board {
        min-height: 188px;
    }

    .motion-status {
        grid-template-columns: 1fr;
    }

    .motion-node {
        width: 34px;
        height: 34px;
        font-size: 0.68rem;
    }

    .hero-badges {
        gap: 8px;
    }

    .hero-badges span {
        min-height: 32px;
        font-size: 0.78rem;
    }

    .section,
    .page-hero {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .page-hero {
        padding-top: calc(var(--header-h) + 46px);
    }

    .section-heading h2,
    .section-copy h2,
    .cta-panel h2,
    .office-panel h2,
    .page-hero h1 {
        font-size: 2.05rem;
    }

    .stats-grid,
    .service-detail-grid,
    .values-grid,
    .form-grid,
    .card-grid.three,
    .network-panels,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .stats-grid div {
        min-height: 104px;
    }

    .feature-list article {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature-list h3,
    .feature-list p {
        grid-column: auto;
    }

    .lane-map {
        min-height: 210px;
    }

    .hub {
        width: 40px;
        height: 40px;
        font-size: 0.72rem;
    }

    .route-table div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .route-table strong {
        text-align: left;
    }

    .cta-panel {
        padding: 30px;
        align-items: flex-start;
    }

    .footer-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .brand {
        min-width: 146px;
    }

    .brand-main {
        font-size: 0.98rem;
    }

    .brand-sub {
        font-size: 0.66rem;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .btn {
        width: 100%;
    }

    .network-board,
    .service-card,
    .detail-card,
    .quote-form,
    .office-panel,
    .contact-card {
        padding: 24px;
    }
}

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

    .motion-ready [data-reveal],
    .motion-ready .auto-reveal {
        opacity: 1;
        transform: none;
    }
}
