/*
  GLOBALINK HOME PROTOTYPE
  PP Mori is the intended project typeface.
  Font binaries are deliberately not distributed with this prototype.
  Add licensed files to assets/fonts/ using the names below to enable them.
*/
@font-face {
  font-family: "PP Mori";
  src: url("../fonts/ppmori-extralight.otf") format("opentype");
  font-style: normal;
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "PP Mori";
  src: url("../fonts/ppmori-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "PP Mori";
  src: url("../fonts/ppmori-semibold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --navy: #182f4f;
  --blue: #3051a0;
  --light-blue: #6aa0d6;
  --mist: #e2ecf9;
  --white: #ffffff;
  --warm: #f6f3ee;
  --warm-2: #efebe6;
  --ink: #172944;
  --muted: #667489;
  --line: rgba(24,47,79,.14);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shadow: 0 18px 60px rgba(20, 43, 75, .09);
  --container: 1280px;
  --type-h1: clamp(2.75rem, 4.2vw, 4.8rem);
  --type-h2: clamp(2.25rem, 3.5vw, 3.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--warm);
  color: var(--ink);
  font-family: "PP Mori", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 400; letter-spacing: -.045em; }
h1 { font-size: var(--type-h1); line-height: .94; }
h2 { font-size: var(--type-h2); line-height: .98; }
h3 { font-size: clamp(1.55rem, 2vw, 2.1rem); line-height: 1.04; }
p { font-size: 1.05rem; }

.shell { padding: clamp(16px, 2.2vw, 56px); }
.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.container--narrow { max-width: 1040px; }
.section { padding: clamp(64px, 7vw, 100px) 0; }
.section--light { background: var(--warm); }
.section--white { background: var(--white); }
.section--warm { background: #f1ede7; }
.section--navy { overflow: hidden; background: #101f37; color: white; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: .76rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.eyebrow--light { color: #bfd8f3; }
.eyebrow--dot::before { content: none; }
.lead { font-size: clamp(1.05rem, 1.45vw, 1.3rem); line-height: 1.48; }

/* GLOBAL BUTTONS */
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button-row--center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 56px;
  padding: 6px 7px 6px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: .97rem;
  transition: transform .28s ease, background-color .28s ease, color .28s ease, border-color .28s ease;
}
.btn:hover { transform: none; }
.btn__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), background-color .28s ease, color .28s ease;
}
.btn:hover .btn__icon { transform: translateX(4px); }
.btn--primary { background: var(--navy); color: white; }
.btn--primary .btn__icon { background: var(--light-blue); color: var(--navy); }
.btn--primary:hover { background: #102643; }
.btn--ghost { background: rgba(255,255,255,.9); color: var(--navy); }
.btn--ghost .btn__icon { background: var(--mist); }
.btn--outline { border-color: rgba(24,47,79,.28); color: var(--navy); background: transparent; }
.btn--outline .btn__icon { background: var(--navy); color: white; }
.btn--light { background: white; color: var(--navy); }
.btn--light .btn__icon { background: var(--light-blue); color: var(--navy); }
.btn--quote { background: var(--blue); color: white; }
.btn--quote .btn__icon { background: rgba(255,255,255,.2); color: white; }
.btn--compact { min-height: 48px; padding: 5px 7px 5px 17px; gap: 13px; }
.btn--compact .btn__icon { width: 36px; height: 36px; flex-basis: 36px; font-size: 1.05rem; }
.btn { position: relative; overflow: hidden; }
.btn > span:not(.btn__icon) { position: relative; z-index: 1; transition: transform .32s cubic-bezier(.2,.8,.2,1); }
.btn__icon svg { width: 100%; height: 100%; }
.btn__icon--left { position: absolute; z-index: 2; left: 7px; top: 50%; opacity: 0; pointer-events: none; transform: translate(-120%,-50%); }
.btn__icon--right { position: relative; z-index: 1; }
.btn:hover > span:not(.btn__icon) { transform: translateX(42px); }
.btn:hover .btn__icon--left { opacity: 1; transform: translate(0,-50%); }
.btn:hover .btn__icon--right { opacity: 0; transform: translateX(120%); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}
.text-link span { transition: transform .22s ease; }
.text-link__icon { width: 18px; height: 18px; display: inline-grid; place-items: center; }.text-link__arrow { width: 100%; height: 100%; }
.text-link:hover span { transform: translateX(4px); }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid transparent; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); }
.site-header.is-scrolled { border-color: var(--line); }
.site-header__inner { min-height: 84px; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; color: var(--navy); font-size: 1.55rem; font-weight: 600; letter-spacing: -.07em; text-decoration: none; }.brand--original { width: 175px; padding: 5px 0 1px; }.brand__logo { width: 100%; height: auto; }
.brand__mark { width: 30px; height: 30px; display: block; position: relative; border: 7px solid var(--blue); border-right-color: var(--light-blue); border-radius: 50%; }
.brand__mark::after { content: ""; position: absolute; top: 5px; right: -8px; width: 13px; height: 7px; border-top: 3px solid var(--blue); border-right: 3px solid var(--blue); transform: rotate(20deg); }
.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; font-size: .92rem; }
.site-nav > a, .nav-dropdown__toggle { border: 0; padding: 10px 0; background: none; color: var(--ink); text-decoration: none; cursor: pointer; }
.nav-dropdown { position: relative; }.nav-dropdown__toggle svg { width: 12px; height: 12px; margin-left: 5px; vertical-align: -1px; color: var(--blue); transition: transform .2s ease; }.nav-dropdown:hover .nav-dropdown__toggle svg, .nav-dropdown:focus-within .nav-dropdown__toggle svg { transform: rotate(180deg); }
.nav-dropdown__menu { position: absolute; top: 42px; left: -18px; display: none; width: 250px; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow); }
.nav-dropdown.is-open .nav-dropdown__menu, .nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu { display: block; }.nav-dropdown__menu a { display: block; padding: 10px 12px; border-radius: 9px; color: var(--ink); font-size: .9rem; text-decoration: none; }.nav-dropdown__menu a:hover { background: var(--mist); }
.site-header__actions { display: flex; gap: 9px; }.menu-toggle { display: none; }.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* HERO */
.hero { padding-bottom: 46px; background: var(--white); }
.hero.shell { padding: 16px 16px 46px; }
.hero__media {
  position: relative;
  height: min(780px, calc(100svh - 150px));
  min-height: 640px;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--navy);
}
.hero__media > img,
.hero__media > .hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(.9) contrast(1.03);
}
.hero__video { display: block; }

/* SERVICES MAIN */
.services-hero { padding-top: clamp(28px, 3vw, 48px); }
.services-hero__top { display: flex; align-items: baseline; justify-content: space-between; gap: 30px; margin-bottom: 38px; color: var(--muted); font-size: 1rem; }
.services-hero__top .eyebrow { margin: 0; }
.services-hero__visual { height: clamp(270px, 30vw, 520px); overflow: hidden; border-radius: var(--radius-xl); background: var(--navy); }
.services-hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; filter: saturate(.75) contrast(1.04); }
.services-hero__intro { display: grid; grid-template-columns: minmax(170px,.48fr) minmax(0,1.18fr); gap: clamp(28px, 5vw, 88px); padding: clamp(42px, 4vw, 64px) 6.5% 12px; }
.services-hero__intro .eyebrow { margin-top: 15px; }
.services-hero__intro h1 { max-width: 940px; margin-bottom: 30px; }
.services-hero__intro h1 span { color: var(--light-blue); }
.services-hero__intro div > p { max-width: 690px; margin-bottom: 32px; font-size: clamp(1.16rem, 1.55vw, 1.4rem); line-height: 1.45; color: #465772; }

.services-sequence { position: relative; z-index: 1; height: 600vh; padding: 0 24px; background: var(--navy); }
.services-sequence__stage { position: sticky; top: 84px; height: calc(100svh - 84px); max-width: 1540px; margin-inline: auto; overflow: hidden; }
.service-slide { position: absolute; inset: clamp(24px, 5vh, 66px) 74px clamp(24px, 5vh, 66px) 0; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); overflow: hidden; border-radius: 32px; background: #f9fbfb; opacity: 0; transform: translateY(72px); transition: opacity .52s ease, transform .65s cubic-bezier(.2,.8,.2,1); pointer-events: none; }
.service-slide.is-active { z-index: 2; opacity: 1; transform: translateY(0); pointer-events: auto; }
.service-slide.is-past { z-index: 1; opacity: 0; transform: translateY(-72px); }
.service-slide__media { order: 2; min-height: 100%; overflow: hidden; background: var(--navy); }
.service-slide--reverse .service-slide__media { order: 0; }
.service-slide__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); }
.service-slide__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(34px, 6vw, 104px); color: var(--navy); }
.service-slide__copy h2 { max-width: 630px; margin-bottom: 27px; }
.service-slide__copy > p:not(.eyebrow) { max-width: 490px; margin-bottom: 34px; font-size: clamp(1.08rem, 1.4vw, 1.3rem); line-height: 1.5; color: #52627a; }
.services-sequence__dots { position: absolute; z-index: 4; right: 25px; top: 50%; display: grid; gap: 12px; transform: translateY(-50%); }
.services-sequence__dots i { display: block; width: 8px; height: 8px; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; transition: transform .3s ease, background-color .3s ease; }
.services-sequence__dots i.is-active { background: white; transform: scale(1.35); }

.prefooter-cta { background: var(--white); text-align: center; }
.prefooter-cta__inner { max-width: 940px; margin-inline: auto; }
.prefooter-cta h2 { margin-bottom: 28px; }
.prefooter-cta h2 span { color: var(--blue); }
.prefooter-cta p:not(.eyebrow) { max-width: 620px; margin: 0 auto 32px; color: var(--muted); font-size: 1.15rem; }

/* INDIVIDUAL SERVICE TEMPLATE */
.detail-hero { position: relative; padding-top: clamp(48px, 6vw, 88px); padding-bottom: clamp(72px, 7vw, 100px); }
.detail-hero__grid { display: grid; grid-template-columns: minmax(0,.95fr) minmax(420px,1.05fr); align-items: center; gap: clamp(42px, 7vw, 120px); }
.detail-hero__copy h1 { margin-bottom: 28px; }
.detail-hero__copy > p:not(.eyebrow) { max-width: 590px; margin-bottom: 26px; color: #4a5b73; font-size: 1.16rem; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 31px; }.detail-tags span { padding: 7px 11px; border-radius: 999px; background: var(--mist); color: var(--blue); font-size: .78rem; font-weight: 600; }
.detail-hero__media { position: relative; height: clamp(440px, 36vw, 560px); overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow); }.detail-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.detail-resolve { position: relative; z-index: 1; padding-top: 100px; background: var(--warm); }.detail-resolve__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.9fr); gap: clamp(45px, 9vw, 140px); padding-inline: 0; }.detail-resolve h2 { max-width: 670px; }.detail-resolve p { color: #50617a; font-size: 1.14rem; }
.detail-heading { display: grid; grid-template-columns: minmax(190px,.45fr) minmax(0,1.2fr); gap: 30px; margin-bottom: 44px; }.detail-heading .eyebrow { margin-top: 17px; }.detail-heading h2 { max-width: 730px; }
.capabilities-section { overflow: hidden; }.capability-track { display: flex; gap: 16px; width: 100%; padding: 0 max(24px, calc((100vw - var(--container))/2)); overflow: hidden; }.capability-track article { flex: 0 0 clamp(270px, 23vw, 350px); min-height: 300px; padding: 28px; border-radius: 22px; background: var(--mist); }.capability-track article:nth-child(3n + 2) { background: #bdd9f5; }.capability-icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 70px; color: var(--blue); }.capability-icon svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }.capability-track strong { display: block; margin-bottom: 18px; color: var(--navy); font-size: 1.55rem; font-weight: 400; }.capability-track p { margin: 0; color: #334967; font-size: .98rem; }
.service-how__grid { display: grid; grid-template-columns: minmax(360px,.85fr) minmax(0,1.15fr); align-items: center; gap: clamp(48px, 6vw, 160px); }.service-how__visual { position: relative; min-height: 550px; overflow: hidden; border-radius: var(--radius-lg); background: var(--navy); color: white; }.service-how__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.6); }.service-how__visual div { position: absolute; inset: auto 30px 30px; }.service-how__visual span { display: block; margin-bottom: 8px; color: #bfdbf7; font-size: .76rem; font-weight: 600; text-transform: uppercase; }.service-how__visual strong { display: block; max-width: 300px; font-size: 1.65rem; font-weight: 400; line-height: 1.1; }
.service-how h2 { max-width: 620px; margin-bottom: 36px; }.numbered-steps { display: grid; gap: 0; padding: 0; margin: 0; list-style: none; }.numbered-steps li { display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); }.numbered-steps b { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--navy); color: white; font-size: .84rem; }.numbered-steps strong { display: block; margin-bottom: 6px; font-size: 1.25rem; font-weight: 400; }.numbered-steps p { margin: 0; color: var(--muted); }
.detail-choose h2 { max-width: 760px; color: white; }.detail-choose__list { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 46px; }.detail-choose__list article { display: grid; grid-template-columns: 52px minmax(0,1fr); align-items: start; gap: 18px; min-height: 168px; padding: 26px; border: 1px solid rgba(255,255,255,.18); border-radius: 22px; background: rgba(255,255,255,.96); color: var(--navy); }.detail-choose__icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; background: var(--light-blue); color: var(--navy); }.detail-choose__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }.detail-choose__list h3 { margin: 0 0 9px; font-size: 1.3rem; font-weight: 600; line-height: 1.2; }.detail-choose__list p { margin: 0; color: #56667d; line-height: 1.55; }
.quote-flow { background: #eef5f6; }.quote-flow__layout { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.55fr); align-items: stretch; gap: 36px; }.quote-card { overflow: hidden; border: 1px solid rgba(48,81,160,.15); border-radius: 26px; background: white; box-shadow: var(--shadow); }.quote-card__head { padding: 30px 34px 20px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #fff 20%, #edf3fc); }.quote-card__head .eyebrow { display: inline-block; }.quote-card__head > span { float: right; color: var(--blue); font-size: .78rem; font-weight: 600; }.quote-card__head h2 { margin: 0 0 5px; font-size: 2.2rem; }.quote-card__head > p:not(.eyebrow) { margin-bottom: 18px; color: var(--muted); font-size: .94rem; }.quote-progress { display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; margin-bottom: 12px; }.quote-progress i { height: 3px; border-radius: 999px; background: #dfe6f1; }.quote-progress i.is-active { background: var(--blue); }.quote-steps { display: flex; justify-content: space-between; gap: 10px; color: #738197; font-size: .74rem; }.quote-steps span.is-active { color: var(--blue); font-weight: 600; }
.quote-form { padding: 30px 34px; }.quote-form fieldset { display: none; padding: 0; margin: 0; border: 0; }.quote-form fieldset.is-active { display: block; }.quote-form legend { margin-bottom: 18px; color: var(--ink); font-size: 1.2rem; font-weight: 600; }.choice-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }.choice-grid label { position: relative; cursor: pointer; }.choice-grid input { position: absolute; opacity: 0; }.choice-grid span { display: block; min-height: 64px; padding: 20px; border: 1px solid var(--line); border-radius: 13px; color: var(--ink); transition: border-color .2s, background .2s; }.choice-grid input:checked + span { border-color: var(--blue); background: var(--mist); }.field-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; }.field-grid label, .field-message { display: grid; gap: 7px; color: #53617a; font-size: .8rem; }.field-grid input, .field-grid select, .field-message textarea { width: 100%; min-height: 46px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; background: #fbfcfe; color: var(--ink); }.field-message { margin-top: 15px; }.field-message textarea { min-height: 94px; resize: vertical; }.quote-actions { display: flex; justify-content: space-between; gap: 14px; margin-top: 30px; }.quote-actions .btn { min-height: 48px; }.quote-actions .btn:disabled { opacity: .42; pointer-events: none; }.btn--back .btn__icon { transform: rotate(180deg); }.btn--back:hover .btn__icon--left { transform: translate(0,-50%) rotate(180deg); }.btn--back:hover .btn__icon--right { transform: translateX(120%) rotate(180deg); }.quote-contact { position: relative; display: flex; flex-direction: column; height: 100%; min-height: 510px; overflow: hidden; padding: 0; border-radius: 25px; background: white; color: var(--navy); box-shadow: var(--shadow); }.quote-contact__copy { padding: 31px 31px 18px; }.quote-contact h3 { margin-bottom: 12px; font-size: 1.65rem; }.quote-contact p:not(.eyebrow) { margin-bottom: 0; color: #52627a; }.quote-contact__copy .btn { position: absolute; z-index: 3; left: 24px; bottom: 24px; }.quote-contact__image { width: 100%; height: 280px; margin-top: auto; overflow: hidden; }.quote-contact__image::after { content: ""; position: absolute; inset: auto 0 0; height: 130px; background: linear-gradient(180deg, transparent, rgba(10,30,52,.35)); pointer-events: none; }.quote-contact__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.shipping-methods { display: grid; gap: 10px; }.shipping-methods label { position: relative; cursor: pointer; }.shipping-methods input { position: absolute; opacity: 0; }.shipping-methods label > span { display: grid; grid-template-columns: 54px minmax(0,1fr) 32px; align-items: center; column-gap: 15px; min-height: 82px; padding: 12px 16px; border: 1px solid var(--line); border-radius: 14px; transition: border-color .2s ease, background .2s ease, transform .2s ease; }.shipping-methods input:focus-visible + span { outline: 3px solid rgba(48,81,160,.25); outline-offset: 2px; }.shipping-methods input:checked + span { border-color: var(--blue); background: var(--mist); }.shipping-methods label:hover > span { border-color: var(--blue); transform: translateX(3px); }.shipping-methods__icon { display: grid; grid-row: 1 / span 2; width: 54px; height: 54px; place-items: center; border-radius: 50%; background: #eaf4ff; color: var(--blue); }.shipping-methods__icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }.shipping-methods label > span > b:not(.shipping-methods__icon) { align-self: end; font-size: 1rem; }.shipping-methods small { align-self: start; color: var(--muted); font-size: .82rem; }.shipping-methods i { grid-column: 3; grid-row: 1 / span 2; color: var(--blue); font-size: 1.7rem; font-style: normal; }.quote-route { margin-bottom: 22px; }.quote-section-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; }.quote-section-label { margin: 0 0 9px; color: var(--blue); font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }.quote-add-row { min-height: 38px; padding: 7px 12px; border: 1px solid var(--blue); border-radius: 8px; background: white; color: var(--blue); font-size: .75rem; font-weight: 600; cursor: pointer; }.cargo-row { display: grid; gap: 8px; margin-bottom: 10px; }.cargo-row label { display: grid; gap: 6px; color: #53617a; font-size: .7rem; }.cargo-row input,.cargo-row select { width: 100%; min-width: 0; min-height: 48px; padding: 9px 10px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe; color: var(--ink); }.cargo-row--fcl { grid-template-columns: 120px minmax(0,1fr); }.cargo-row--loose { position: relative; grid-template-columns: .7fr 1fr .7fr repeat(3,.8fr) .7fr; padding-right: 34px; }.cargo-row__remove { position: absolute; top: 20px; right: 0; width: 28px; height: 28px; border: 0; border-radius: 50%; background: var(--mist); color: var(--navy); cursor: pointer; }.cargo-row:first-child .cargo-row__remove { visibility: hidden; }.quote-detail-grid { margin-top: 16px; }.quote-known-shipper { display: flex; align-items: center; gap: 10px; margin-top: 16px; color: #53617a; font-size: .84rem; }.quote-known-shipper input { width: 18px; height: 18px; accent-color: var(--blue); }
.quote-form [hidden],.quote-form .is-hidden { display: none; }
.detail-insights { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }.detail-insights article { min-width: 0; overflow: hidden; border-radius: 24px; background: white; }.detail-insight__link { display: block; height: 100%; color: inherit; text-decoration: none; }.detail-insight__media { display: block; aspect-ratio: 16 / 8.5; overflow: hidden; margin: 14px 14px 0; border-radius: 17px; }.detail-insight__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }.detail-insight__link:hover .detail-insight__media img { transform: scale(1.025); }.detail-insight__body { display: block; padding: 24px 30px 30px; }.detail-insights h3 { max-width: 590px; margin-bottom: 16px; font-size: clamp(1.65rem, 2.2vw, 2.35rem); }.detail-insight__body > p:not(.eyebrow) { max-width: 620px; margin-bottom: 22px; color: var(--muted); }

@media (max-width: 900px) { .detail-hero__grid, .detail-resolve__grid, .service-how__grid, .quote-flow__layout { grid-template-columns: 1fr; }.detail-hero__media { min-height: 390px; }.detail-resolve { padding-top: 10px; }.detail-resolve__grid, .detail-heading { padding-inline: 0; }.detail-heading { grid-template-columns: 1fr; gap: 0; }.detail-heading .eyebrow { margin-top: 0; }.detail-choose__list { grid-template-columns: repeat(2,1fr); }.service-how__visual { min-height: 390px; }.quote-contact { min-height: 0; } }
@media (max-width: 760px) { .cargo-row--loose { grid-template-columns: repeat(3,1fr); }.cargo-row--loose label:first-child { grid-column: span 1; }.cargo-row--loose label:nth-child(2) { grid-column: span 1; }.cargo-row--loose label:nth-child(4) { grid-column: 1; } }
@media (max-width: 620px) { .detail-hero { padding-top: 35px; }.detail-hero__media { min-height: 310px; }.detail-choose__list, .detail-insights, .field-grid, .choice-grid { grid-template-columns: 1fr; }.service-how__visual { min-height: 330px; }.quote-card__head, .quote-form { padding: 25px 20px; }.quote-steps { font-size: .65rem; }.quote-steps span { max-width: 62px; }.quote-actions { flex-direction: column-reverse; }.quote-actions .btn { justify-content: space-between; }.detail-insights h3 { font-size: 1.55rem; }.shipping-methods label > span { grid-template-columns: 48px minmax(0,1fr) 24px; min-height: 76px; padding: 10px 12px; }.shipping-methods__icon { width: 46px; height: 46px; }.shipping-methods__icon svg { width: 29px; height: 29px; }.cargo-row--fcl { grid-template-columns: 90px minmax(0,1fr); }.cargo-row--loose { grid-template-columns: repeat(2,1fr); padding-right: 0; }.cargo-row--loose label:nth-child(4) { grid-column: auto; }.cargo-row__remove { top: auto; right: 4px; bottom: 4px; }.quote-section-heading { align-items: flex-start; }.quote-detail-grid { grid-template-columns: 1fr; } }

@media (max-width: 900px) { .detail-hero { padding-bottom: 76px; }.detail-hero__media { height: 390px; min-height: 0; margin-bottom: 0; transform: none; }.detail-resolve { padding-top: 82px; }.quote-contact { min-height: 260px; } }
@media (max-width: 620px) { .detail-hero { padding-bottom: 64px; }.detail-hero__media { height: 310px; min-height: 0; margin-bottom: 0; transform: none; }.detail-resolve { padding-top: 68px; }.capability-track { padding-inline: 16px; }.capability-track article { flex-basis: 82vw; min-height: 270px; }.capability-icon { margin-bottom: 42px; }.quote-contact { min-height: 470px; }.quote-contact__copy { padding: 25px 22px 15px; }.quote-contact__image { height: 250px; }.quote-contact__copy .btn { left: 18px; right: 18px; bottom: 18px; justify-content: space-between; } }

@media (max-width: 900px) {
  .services-hero__top, .services-hero__intro { display: block; }
  .services-hero__top > span { display: block; margin-top: 12px; }
  .services-hero__intro { padding: 38px 6% 0; }
  .services-hero__intro .eyebrow { margin-bottom: 22px; }
  .services-sequence { height: auto; padding: 62px 16px; }
  .services-sequence__stage { position: static; height: auto; overflow: visible; }
  .service-slide, .service-slide.is-active, .service-slide.is-past { position: relative; inset: auto; display: flex; flex-direction: column; min-height: 0; margin-bottom: 16px; opacity: 1; transform: none; pointer-events: auto; }
  .service-slide__media, .service-slide--reverse .service-slide__media { order: 0; min-height: 290px; }
  .service-slide__copy { order: 1; padding: 40px 30px 46px; }
  .services-sequence__dots { display: none; }
}
.hero__wash {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,30,52,.1), rgba(10,30,52,.28));
}
.card { border-radius: var(--radius-lg); }
.card--light { background: rgba(250,248,244,.96); color: var(--navy); backdrop-filter: blur(12px); }
.hero__content {
  position: absolute;
  left: clamp(24px, 3.3vw, 52px);
  bottom: clamp(24px, 4vw, 56px);
  z-index: 2;
  width: min(720px, calc(100% - 64px));
  padding: clamp(30px, 3.25vw, 48px);
}
.hero__content h1 { margin-bottom: 28px; font-size: clamp(2.75rem, 3.8vw, 4.25rem); line-height: .95; }
.hero__content-bottom { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: end; }
.hero__content-bottom .lead { max-width: 430px; margin-bottom: 0; }
.hero__content-bottom .button-row { justify-content: flex-start; }
.hero__content .btn { min-height: 52px; }
.hero__content .btn__icon { width: 40px; height: 40px; flex-basis: 40px; }

.latest-card {
  position: absolute;
  right: clamp(24px, 3vw, 44px);
  bottom: clamp(24px, 3vw, 44px);
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 18px;
  width: min(450px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(15,33,56,.91);
  color: white;
  text-decoration: none;
  box-shadow: 0 22px 70px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
  transition: transform .3s ease, background-color .3s ease;
}
.latest-card:hover { transform: translateY(-4px); background: rgba(15,33,56,.97); }
.latest-card strong { display: block; font-size: 1.02rem; line-height: 1.25; margin: 3px 0 14px; letter-spacing: -.015em; }
.latest-card img { width: 150px; height: 116px; object-fit: cover; border-radius: 16px; }
.latest-card .text-link { color: #c5e0fb; font-size: .88rem; }

/* SECTION HEADING */
.split-heading { display: grid; grid-template-columns: 1.2fr .9fr; gap: 11vw; align-items: start; margin-bottom: 58px; }
.split-heading h2 { max-width: 780px; }
.split-heading__copy { padding-top: 44px; max-width: 560px; }
.split-heading__copy p { font-size: 1.15rem; color: #4d5c70; }
.split-heading__copy p + p { margin-top: 28px; }
.section-heading { margin-bottom: 58px; }
.section-heading--center { max-width: 830px; margin-inline: auto; text-align: center; }
.section-heading--center > p:last-child { max-width: 740px; margin: 24px auto 0; color: var(--muted); font-size: 1.12rem; }
.section-heading--inverse h2 { color: white; }

/* VALUE VISUAL */
.value-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #a8cbe6;
  box-shadow: var(--shadow);
}
.value-visual > img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; filter: saturate(.9); }
.value-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,47,79,.05), rgba(24,47,79,.22)); }
/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.service-card {
  grid-column: span 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.9);
  box-shadow: inset 0 0 0 1px rgba(24,47,79,.04);
}
.service-card--wide { grid-column: span 3; }
.service-card__art { aspect-ratio: 1.65 / 1; margin: 8px; border-radius: 22px; overflow: hidden; display: grid; place-items: center; }
.service-card__art svg, .service-card__art img { width: 100%; height: 100%; }.service-card__art img { display: block; object-fit: cover; transition: transform .5s ease; }.service-card:hover .service-card__art img { transform: scale(1.035); }
.art-sea, .art-air, .art-road, .art-logistics, .art-customs { background: #ddd9d4; }
.service-card__body { padding: 22px 26px 30px; }
.service-card h3 { margin-bottom: 13px; }
.service-card p:not(.eyebrow) { color: #4f5f73; min-height: 3.2em; }
.service-card .text-link { margin-top: 10px; }
.section-action { display: flex; justify-content: center; margin-top: 58px; }
/* PROCESS */
.process-layout { display: grid; grid-template-columns: .95fr 1fr; gap: 22px; align-items: stretch; max-width: none; margin: 0; }
.process-list { height: 100%; display: flex; flex-direction: column; gap: 10px; }
.process-step {
  appearance: none;
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr 46px;
  gap: 12px;
  align-items: start;
  padding: 26px 24px;
  border: 1px solid transparent;
  border-radius: 24px;
  background: rgba(255,255,255,.68);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  flex: 1 1 0;
  min-height: 0;
  transition: flex .35s cubic-bezier(.2,.75,.25,1), background-color .3s ease, border-color .3s ease, transform .3s ease;
}
.process-step:hover { transform: translateX(3px); background: white; }
.process-step.is-active { flex: 1.6 1 0; border-color: var(--navy); background: white; }
.process-step__num { color: #8b9aab; font-size: .82rem; padding-top: 4px; }
.process-step__text strong { display: block; font-size: clamp(1.15rem,1.8vw,1.55rem); font-weight: 400; letter-spacing: -.03em; }
.process-step__text small { display: block; color: #67768a; max-height: 0; overflow: hidden; opacity: 0; margin-top: 0; transition: max-height .35s ease, opacity .25s ease, margin .35s ease; line-height: 1.45; }
.process-step.is-active .process-step__text small { max-height: 90px; opacity: 1; margin-top: 9px; }
.process-step__toggle { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--warm); font-size: 1.35rem; transition: transform .3s ease; }
.process-step.is-active .process-step__toggle { transform: rotate(180deg); }
.process-stage { position: relative; min-height: 560px; overflow: hidden; border-radius: var(--radius-lg); background: #ded9d4; }
.process-stage__label { position: absolute; z-index: 4; top: 22px; left: 24px; color: #697586; font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; }
.motion-scene { position: absolute; inset: 0; display: grid; grid-template-rows: 1fr auto; padding: 52px 42px 38px; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .35s ease, transform .35s ease, visibility .35s; }
.motion-scene.is-active { opacity: 1; visibility: visible; transform: translateY(0); }
.motion-scene svg { width: 100%; max-height: 380px; }
.process-stage__copy { max-width: 510px; }
.process-stage__copy strong { display: block; font-size: 1.35rem; font-weight: 400; letter-spacing: -.025em; }
.process-stage__copy p { color: #647184; margin: 8px 0 0; }
.node--soft { fill: rgba(106,160,214,.35); }.node--navy { fill: var(--navy); }.node--blue { fill: var(--blue); }.node--mist { fill: var(--mist); }.node--white { fill: white; }.node--light { fill: var(--light-blue); }
.motion-line { fill: none; stroke: var(--blue); stroke-width: 4; stroke-linecap: round; }.motion-line--thick { stroke-width: 7; }.motion-mini { fill: none; stroke: var(--navy); stroke-width: 8; stroke-linecap: round; }.motion-mini--blue { stroke: var(--light-blue); }
.dash { stroke-dasharray: 12 10; animation: dash 8s linear infinite; }.pulse { transform-box: fill-box; transform-origin: center; animation: pulse 2.5s ease-in-out infinite; }.delay-1{animation-delay:.35s}.delay-2{animation-delay:.7s}.delay-3{animation-delay:1.05s}.float { animation: float 3s ease-in-out infinite; }.moving-dot { fill: var(--light-blue); transform-box: fill-box; transform-origin: center; animation: travel 3.4s ease-in-out infinite; }.moving-dot--two { animation-duration: 4.2s; }
@keyframes dash { to { stroke-dashoffset: -220; } }
@keyframes pulse { 50% { transform: scale(1.12); opacity:.68; } }
@keyframes float { 50% { transform: translateY(-12px); } }
@keyframes travel { 50% { transform: translate(150px,-80px); } }

/* WHY */
.why-grid { display: grid; grid-template-columns: 1.1fr 1.1fr .55fr .55fr; grid-template-rows: auto auto; gap: 14px; }
.why-card { overflow: hidden; border-radius: 22px; background: #1c3152; }
.why-card h3 { color: white; margin-bottom: 8px; }
.why-card p { color: #c4d0df; font-size: .98rem; }
.why-card--intro { grid-column: 1 / span 2; min-height: 230px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.why-card--image { grid-column: 3 / span 2; min-height: 230px; }
.why-card--image img, .why-card--media img { width: 100%; height: 100%; object-fit: cover; }
.why-card--media { grid-column: 1 / span 2; display: grid; grid-template-rows: 220px auto; }
.why-card--media > div { padding: 22px; }
.why-card--small { min-height: 245px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
.why-icon { color: #b9ddff; font-size: 1.55rem; }
.why-card--small h3 { font-size: 1.2rem; max-width: 13ch; }

/* INSTITUTIONAL */
.institutional { position: relative; min-height: 620px; overflow: hidden; border-radius: var(--radius-lg); background: var(--navy); }
.institutional > img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.institutional__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,26,47,.88) 0%, rgba(10,26,47,.62) 42%, rgba(10,26,47,.08) 76%); }
.institutional__copy { position: absolute; left: clamp(30px,5vw,72px); top: 50%; transform: translateY(-50%); max-width: 570px; color: white; }
.institutional__copy h3 { max-width: 430px; margin-bottom: 22px; color: white; font-size: clamp(2.1rem, 2.8vw, 3rem); line-height: 1; }
.institutional__copy p { max-width: 520px; margin-bottom: 16px; color: rgba(255,255,255,.84); font-size: .95rem; line-height: 1.48; }
.institutional__copy .btn { margin-top: 18px; }
.institutional .btn--light { align-self: flex-start; min-width: 230px; margin-top: 8px; background: white; color: var(--navy); }
.institutional .btn--light > span:not(.btn__icon) { position: relative; z-index: 2; color: var(--navy); }

/* INSIGHTS */
.insights-panel { position: relative; min-height: 610px; display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; overflow: hidden; padding: clamp(40px,6vw,82px); border-radius: var(--radius-lg); background: #b9d2e6; }
.insights-panel__pattern { position: absolute; inset: 0; opacity: .28; background: radial-gradient(circle at 20% 10%, rgba(255,255,255,.8), transparent 32%), repeating-radial-gradient(ellipse at 12% 90%, transparent 0 28px, rgba(24,47,79,.18) 30px 32px); transform: scale(1.15); }
.insights-panel__copy, .insight-feature { position: relative; z-index: 2; }
.insights-panel__copy h2 { color: white; text-shadow: 0 2px 18px rgba(24,47,79,.08); }
.insights-panel__copy > p:not(.eyebrow) { max-width: 520px; color: #244661; font-size: 1.12rem; }
.insights-panel__copy .btn { margin-top: 20px; }
.insight-feature { background: white; border-radius: 24px; padding: 16px; box-shadow: var(--shadow); }
.insight-feature > img { width: 100%; aspect-ratio: 1.75 / 1; object-fit: cover; border-radius: 16px; }
.insight-feature__body { padding: 24px 12px 10px; }
.insight-feature__body h3 { margin-bottom: 14px; }
.insight-feature__body p:not(.eyebrow) { color: #657386; }

/* FULL-WIDTH INSTITUTIONAL + INSIGHTS PAIR */
.feature-pair-section {
  position: relative;
  z-index: 1;
  margin-top: -30px;
  padding-top: calc(clamp(64px, 7vw, 100px) + 30px);
  padding-inline: 0;
  border-radius: 30px 30px 0 0;
  background: var(--warm);
}
.feature-pair { width: calc(100% - 56px); margin-inline: auto; display: grid; grid-template-columns: minmax(0,3fr) minmax(0,7fr); gap: 16px; }
.feature-pair .institutional, .feature-pair .insights-panel { min-height: 680px; }
.feature-pair .institutional__copy { inset: 0; display: flex; flex-direction: column; justify-content: center; max-width: none; padding: clamp(36px,4vw,64px); transform: none; }
.feature-pair .insights-panel { grid-template-columns: minmax(0,.9fr) minmax(360px,1.1fr); align-items: start; align-content: start; gap: 30px; padding: clamp(34px,5vw,70px); }
.feature-pair .insights-panel__copy { max-width: 540px; }
.feature-pair .insight-feature { max-width: none; }

/* FINAL CTA */
.final-cta { background: white; }
.final-cta__inner { text-align: center; padding: 30px 0 70px; }
.final-cta__inner h2 { max-width: 920px; margin-inline: auto; color: #101722; }
.final-cta__inner h2 span { color: var(--blue); }

/* ABOUT PAGE */
.about-hero { padding-top: clamp(54px, 6vw, 92px); }.about-hero__intro { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(340px,.65fr); align-items: end; gap: clamp(48px, 8vw, 140px); margin-bottom: 72px; }.about-hero__intro h1 { max-width: 820px; margin: 0; line-height: .96; }.about-hero__intro > div:last-child { padding-bottom: 8px; }.about-hero__intro > div:last-child p { max-width: 510px; margin-bottom: 28px; color: #40516a; font-size: 1.15rem; }.about-hero__media { position: relative; height: clamp(470px, 45vw, 670px); overflow: hidden; border-radius: var(--radius-xl); }.about-hero__media > img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; }.founder-card { position: absolute; left: 28px; bottom: 28px; display: grid; grid-template-columns: 82px minmax(0,1fr); align-items: center; gap: 16px; width: min(360px,calc(100% - 56px)); padding: 12px; border: 1px solid rgba(255,255,255,.4); border-radius: 18px; background: rgba(24,47,79,.78); color: white; text-decoration: none; backdrop-filter: blur(14px); }.founder-card__portrait { display: grid; width: 82px; height: 82px; place-items: center; border-radius: 12px; background: var(--light-blue); color: var(--navy); font-size: 1.7rem; font-weight: 600; }.founder-card small,.founder-card strong,.founder-card em { display: block; text-decoration: none; }.founder-card small { margin-bottom: 3px; color: #dbe8f7; }.founder-card strong { margin-bottom: 9px; font-size: 1.05rem; }.founder-card em { font-size: .85rem; font-style: normal; }
.about-method__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.8fr); gap: clamp(60px,10vw,170px); }.about-method__grid > div:last-child { align-self: end; }.about-method__grid > div:last-child p { color: #50617a; font-size: 1.13rem; }.about-method__grid > div:last-child p + p { margin-top: 24px; }.about-story--fade { display: grid; min-height: min(78svh, 800px); padding-block: clamp(100px, 12vw, 180px); place-items: center; overflow: hidden; background: var(--navy); color: white; text-align: center; }.about-story--fade .about-story__grid { display: block; max-width: 1080px; margin-inline: auto; }.about-story--fade h2 { max-width: 1000px; margin-inline: auto; color: white; }.about-story--fade .about-story__copy { max-width: 830px; margin: clamp(38px, 5vw, 68px) auto 0; }.about-story--fade .about-story__copy p { margin: 0; color: #d5e1ee; font-size: clamp(1.05rem, 1.4vw, 1.28rem); line-height: 1.55; }.about-story--fade .about-story__copy p + p { margin-top: 20px; }.scroll-fade-word { display: inline-block; will-change: opacity, transform; }
.section--blue { background: var(--blue); }.about-method { position: relative; overflow: hidden; color: white; }.about-method::before { content: ""; position: absolute; width: 680px; height: 680px; left: 6%; bottom: -500px; border: 80px solid rgba(255,255,255,.06); border-radius: 50%; }.about-method__grid { position: relative; z-index: 1; }.about-method h2 { max-width: 700px; color: white; }.about-method__grid > div:last-child { align-self: start; padding-top: 42px; }.about-method__grid > div:last-child p { color: rgba(255,255,255,.88); }
.about-values__heading { max-width: 920px; margin: 0 auto 58px; text-align: center; }.about-values__heading > p:last-child { max-width: 700px; margin: 22px auto 0; color: var(--muted); }.about-values__grid { display: flex; gap: 16px; }.about-values__grid article { flex: 1 1 0; min-width: 0; min-height: 390px; padding: 28px; border-radius: 24px; background: var(--mist); transition: flex-grow .38s cubic-bezier(.2,.75,.25,1), transform .38s ease, box-shadow .38s ease; }.about-values__grid article:hover { flex-grow: 1.22; transform: translateY(-5px); box-shadow: var(--shadow); }.about-values__grid article:nth-child(2) { background: #c9e0f6; }.about-values__icon { display: grid; width: 50px; height: 50px; place-items: center; margin-bottom: 64px; border-radius: 14px; background: var(--navy); color: white; }.about-values__icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }.about-values__grid h3 { margin-bottom: 14px; font-size: 1.6rem; }.about-values__grid strong { display: block; min-height: 3em; margin-bottom: 16px; color: var(--navy); font-size: 1.05rem; line-height: 1.45; }.about-values__grid p { margin: 0; color: #455a74; }
@media (max-width: 900px) { .about-hero__intro,.about-method__grid { grid-template-columns: 1fr; gap: 32px; }.about-hero__intro { margin-bottom: 48px; }.about-hero__media { height: 520px; }.about-story--fade { min-height: 68svh; }.about-method__grid > div:last-child { padding-top: 0; }.about-values__grid { display: grid; grid-template-columns: 1fr; }.about-values__grid article,.about-values__grid article:hover { min-height: 0; transform: none; }.about-values__icon { margin-bottom: 38px; } }
@media (max-width: 620px) { .about-hero { padding-top: 38px; }.about-hero__media { height: 430px; }.founder-card { left: 16px; bottom: 16px; grid-template-columns: 66px minmax(0,1fr); width: calc(100% - 32px); }.founder-card__portrait { width: 66px; height: 66px; }.about-values__heading { text-align: left; }.about-values__heading > p:last-child { margin-left: 0; }.about-values__grid article { padding: 24px; } }

/* INSIGHTS */
.insights-hero { padding-top: clamp(70px,8vw,130px); }.insights-hero__grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(340px,.55fr); align-items: end; gap: clamp(60px,10vw,170px); }.insights-hero h1 { max-width: 900px; margin: 0; line-height: .96; }.insights-hero__grid > p { margin: 0 0 10px; color: #4d5e76; font-size: 1.2rem; }.insights-library { padding-top: clamp(42px, 5vw, 76px); }.insights-library__head { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 40px; margin-bottom: 52px; }.insights-library__head h2 { max-width: 700px; }.insight-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }.insight-filters button { min-height: 42px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--navy); cursor: pointer; }.insight-filters button.is-active,.insight-filters button:hover { border-color: var(--navy); background: var(--navy); color: white; }.insight-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }.editorial-card { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: white; }.editorial-card__media { display: block; aspect-ratio: 16/8.5; overflow: hidden; margin: 12px 12px 0; border-radius: 18px; }.editorial-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }.editorial-card:hover .editorial-card__media img { transform: scale(1.035); }.editorial-card > div { padding: 25px 30px 30px; }.editorial-card h3 { margin-bottom: 16px; font-size: clamp(1.55rem,1.8vw,2.15rem); }.editorial-card h3 a { color: inherit; text-decoration: none; }.editorial-card > div > p:not(.eyebrow) { color: var(--muted); }
@media (max-width: 1050px) { .insight-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }

/* ARTICLE */
.article-hero.section { padding: 60px 60px 0; }.article-back { display: inline-block; margin-bottom: 45px; color: var(--navy); text-decoration: none; }.article-hero h1 { max-width: 1050px; margin: 0 auto 30px; text-align: center; line-height: .98; }.article-hero__dek { max-width: 780px; margin: 0 auto 28px; color: #52627a; text-align: center; font-size: 1.25rem; }.article-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; color: var(--muted); font-size: .9rem; }.article-hero__media { height: min(490px,55vw); margin-top: 64px; overflow: hidden; border-radius: var(--radius-xl); }.article-hero__media img { width: 100%; height: 100%; object-fit: cover; }.article-hero__category { margin-top: 24px; }.article-hero__category .eyebrow { margin-bottom: 0; }.article-layout { display: grid; grid-template-columns: 220px minmax(0,760px); justify-content: start; gap: clamp(50px,8vw,120px); }.article-index { position: sticky; top: 120px; align-self: start; display: grid; gap: 12px; padding: 22px; border-left: 2px solid var(--light-blue); }.article-index p { margin: 0 0 8px; font-weight: 600; }.article-index a { color: var(--muted); text-decoration: none; }.article-index a:hover { color: var(--blue); }.article-body { font-size: 1.12rem; }.article-body p { margin-bottom: 24px; }.article-lead { color: var(--navy); font-size: 1.38rem; line-height: 1.55; }.article-body h2 { margin: 70px 0 24px; }.article-body ul { display: grid; gap: 14px; margin: 0 0 30px 22px; }.article-body blockquote { margin: 45px 0; padding: 30px 0 30px 28px; border-left: 5px solid var(--light-blue); color: var(--navy); font-size: 1.6rem; line-height: 1.4; }.article-callout { margin: 48px 0; padding: 32px; border-radius: 22px; background: var(--mist); }.article-callout h3 { font-size: 1.8rem; }.article-related header { margin-bottom: 45px; }.article-related header h2 { max-width: 720px; }

/* CONTACT */
.contact-hero { padding-top: clamp(60px,7vw,100px); }.contact-hero__grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(430px,1.15fr); align-items: center; gap: clamp(50px,8vw,130px); }.contact-hero h1 { margin-bottom: 28px; line-height: .98; }.contact-hero p:not(.eyebrow) { max-width: 590px; margin-bottom: 32px; color: var(--muted); font-size: 1.15rem; }.contact-hero__media { height: 560px; overflow: hidden; border-radius: var(--radius-xl); }.contact-hero__media img { width: 100%; height: 100%; object-fit: cover; }.contact-main__grid { display: grid; grid-template-columns: minmax(320px,.72fr) minmax(0,1.28fr); gap: clamp(50px,8vw,120px); }.contact-details h2 { margin-bottom: 22px; }.contact-details > p:not(.eyebrow) { color: var(--muted); }.contact-options { display: grid; gap: 10px; margin-top: 40px; }.contact-options > * { display: grid; grid-template-columns: 46px minmax(0,1fr); align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); color: var(--navy); text-decoration: none; }.contact-options > * > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; background: var(--mist); }.contact-options small,.contact-options strong { display: block; }.contact-options small { margin-bottom: 3px; color: var(--muted); }.contact-form { padding: clamp(28px,4vw,48px); border-radius: 28px; background: white; box-shadow: var(--shadow); }.contact-form h2 { margin-bottom: 28px; }.contact-consent { display: flex; gap: 10px; margin: 20px 0 28px; color: var(--muted); font-size: .85rem; }.contact-consent input { margin-top: 3px; }.contact-quote__inner { display: grid; grid-template-columns: minmax(0,1fr) minmax(340px,.65fr); align-items: end; gap: clamp(60px,10vw,160px); }.contact-quote h2 { color: white; }.contact-quote p { color: #d5e1ee; }.btn--light { border-color: white; color: white; }

/* GLOBAL QUOTE MODAL */
.quote-modal { width: min(940px,calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: 0; border: 0; border-radius: 28px; background: white; box-shadow: 0 30px 100px rgba(9,25,47,.34); }.quote-modal::backdrop { background: rgba(9,25,47,.72); backdrop-filter: blur(6px); }.quote-modal__close { position: absolute; z-index: 5; top: 18px; right: 18px; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--navy); font-size: 1.35rem; cursor: pointer; }.quote-modal .quote-card { overflow: visible; border: 0; border-radius: 0; box-shadow: none; }.quote-modal .quote-card__head { position: sticky; z-index: 3; top: 0; padding-right: 78px; }.quote-modal__note { margin: 18px 34px 0; color: var(--muted); font-size: .8rem; }.quote-modal__success { display: none; padding: 70px 35px; text-align: center; }.quote-modal__success.is-visible { display: block; }.quote-modal__success h2 { margin-bottom: 15px; }.quote-modal.is-complete .quote-card { display: none; }

@media (max-width:900px) { .insights-hero__grid,.insights-library__head,.contact-hero__grid,.contact-main__grid,.contact-quote__inner { grid-template-columns:1fr; }.insight-filters { justify-content:flex-start; }.article-layout { grid-template-columns:1fr; }.article-index { position:static; grid-template-columns:repeat(2,1fr); }.contact-hero__media { height:480px; } }
@media (max-width:620px) { .insight-grid { grid-template-columns:1fr; }.editorial-card > div { padding:24px 22px; }.insight-filters { flex-wrap:nowrap; overflow-x:auto; padding-bottom:8px; }.insight-filters button { flex:0 0 auto; }.article-hero__media { height:340px; margin-top:40px; border-radius:22px; }.article-index { grid-template-columns:1fr; }.article-body { font-size:1rem; }.contact-hero__media { height:360px; }.quote-modal { width:calc(100vw - 16px); max-height:calc(100vh - 16px); border-radius:20px; }.quote-modal .quote-card__head,.quote-modal .quote-form { padding-left:20px; padding-right:20px; }.quote-modal .quote-card__head { padding-right:68px; }.quote-modal__note { margin-inline:20px; } }
.contact-quote .btn--light { background: transparent; }

/* COMPACT SERVICE FORMS */
.quote-card--service .quote-card__head { padding-bottom: 28px; }
.quote-card--service .quote-card__head h2 { max-width: 700px; }
.service-quote-form { display: grid; gap: 28px; scroll-margin-top: 120px; }
.service-quote-form__group { display: grid; gap: 16px; padding: 0; margin: 0; border: 0; }
.service-quote-form .service-quote-step.is-active { display: grid; gap: 24px; padding: 0; margin: 0; border: 0; }
.service-quote-progress { display: grid; grid-template-columns: auto minmax(40px,1fr) auto; align-items: center; gap: 12px; color: var(--muted); font-size: .82rem; }
.service-quote-progress i { height: 2px; background: var(--line); }
.service-quote-progress span { font-weight: 600; }
.service-quote-progress span.is-active { color: var(--blue); }
.service-quote-form .choice-grid--compact span { min-height: 54px; padding: 16px; font-weight: 600; }
.service-quote-form .quote-mode-panel[hidden] { display: none; }
.service-quote-form .contact-consent,.service-contact-form .contact-consent { margin: 0; }
.service-quote-form > .btn,.service-contact-form > .btn { justify-self: start; }
.service-quote-actions { margin-top: 0; }
.service-contact-form { display: grid; gap: 22px; }
.service-contact-form .field-message { margin-top: 0; }
.form-status { min-height: 1.4em; margin: 4px 0 0; color: var(--muted); font-size: .9rem; }
.form-status.is-success { color: #17623a; }
.form-status.is-error { color: #a62a2a; }
.field-grid input:focus-visible,.field-grid select:focus-visible,.field-message textarea:focus-visible,.choice-grid input:focus-visible + span { outline: 3px solid rgba(86,151,222,.35); outline-offset: 2px; border-color: var(--blue); }
@media (max-width:620px) { .service-quote-form { gap:22px; }.service-quote-form .choice-grid--compact { grid-template-columns:1fr; } }

/* LEGAL DOCUMENTS */
.legal-section { background: var(--warm); }
.legal-document { max-width: 880px; margin-inline: auto; }
.legal-document > h1 { max-width: 820px; margin-bottom: 24px; line-height: 1; }
.legal-document .legal-updated { margin-bottom: 42px; color: var(--muted); font-size: .92rem; }
.legal-document .legal-summary { margin-bottom: 48px; padding: clamp(24px,4vw,38px); border-radius: 24px; background: var(--white); box-shadow: 0 12px 45px rgba(13,39,72,.07); }
.legal-document .legal-summary p:last-child { margin-bottom: 0; }
.legal-document .legal-index { margin: 0 0 54px; padding: 28px 32px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.58); }
.legal-document .legal-index strong { display: block; margin-bottom: 14px; }
.legal-document .legal-index ol { columns: 2; column-gap: 48px; margin: 0; padding-left: 20px; }
.legal-document .legal-index li { break-inside: avoid; margin-bottom: 9px; }
.legal-document .legal-index a { color: var(--navy); text-underline-offset: 3px; }
.legal-document h2 { scroll-margin-top: 120px; margin-top: 58px; font-size: clamp(2rem,3.5vw,2.8rem); line-height: 1.08; }
.legal-document h3 { margin: 34px 0 14px; font-size: clamp(1.25rem,2vw,1.55rem); }
.legal-document ul,.legal-document ol { padding-left: 24px; }
.legal-document li { padding-left: 4px; }
.legal-document .legal-contact { margin-top: 46px; padding: 30px; border-radius: 22px; background: var(--navy); color: white; }
.legal-document .legal-contact h2 { margin: 0 0 16px; color: white; font-size: clamp(1.8rem,3vw,2.35rem); }
.legal-document .legal-contact p { margin-bottom: 8px; }
.legal-document .legal-contact a { color: white; font-weight: 700; }
@media (max-width:620px) { .legal-document .legal-index ol { columns:1; }.legal-document .legal-summary,.legal-document .legal-index,.legal-document .legal-contact { padding:22px; } }
.final-cta__inner > p:not(.eyebrow) { max-width: 650px; margin: 28px auto 36px; color: #59677a; font-size: 1.15rem; }

/* FOOTER */
.site-footer { overflow: hidden; padding: 78px 0 28px; background: var(--navy); color: white; }
.site-footer__top { display: grid; grid-template-columns: 1.35fr repeat(3,.72fr); gap: 30px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.2); }
.brand--inverse { width: 138px; height: 35px; background: url("../images/globalink-logo-inverted.svg") center / contain no-repeat; color: white; }
.brand--inverse .brand__mark { border-color: white; border-right-color: var(--light-blue); }
.brand--inverse .brand__mark::after { border-color: white; }
.brand--inverse > span { visibility: hidden; }
.footer-intro p { max-width: 330px; margin: 22px 0 0; color: #d5e1ee; font-size: .98rem; }
.footer-links h2 { margin: 7px 0 19px; color: #b9ddff; font-size: .72rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.footer-links a { display: block; margin: 10px 0; color: #e4ebf4; font-size: .9rem; text-decoration: none; }
.footer-wordmark { margin: 65px 0 58px -10px; color: #f1f5fa; font-size: clamp(6.5rem,17.4vw,15.8rem); font-weight: 600; letter-spacing: -.065em; line-height: .72; white-space: nowrap; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #bbcadb; font-size: .74rem; }
.site-footer__bottom > span { display: flex; }
.site-footer__bottom > span:not(.footer-social) { gap: 17px; }
.site-footer__bottom a { color: inherit; text-decoration: none; }
.footer-social { gap: 10px; }
.footer-social a { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: .78rem; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1160px) {
  .hero__content { width: min(720px, calc(100% - 48px)); }
  .hero__content-bottom { grid-template-columns: 1fr; }
  .hero__content-bottom .button-row { justify-content: flex-start; }
  .latest-card { width: 380px; grid-template-columns: 1fr 118px; }
  .latest-card img { width: 118px; }
  .split-heading { gap: 6vw; }
}

@media (max-width: 900px) {
  .site-header__inner { min-height: 72px; }.menu-toggle { display: grid; width: 44px; height: 44px; place-items: center; margin-left: auto; border: 0; background: none; color: var(--navy); font-size: 1.45rem; cursor: pointer; }.site-nav, .site-header__actions { display: none; }.site-header.is-menu-open .site-nav { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 16px 24px 8px; border-bottom: 1px solid var(--line); background: var(--warm); }.site-header.is-menu-open .site-nav > a, .site-header.is-menu-open .nav-dropdown__toggle { width: 100%; padding: 12px 0; text-align: left; }.site-header.is-menu-open .site-header__actions { display: flex; position: absolute; top: 318px; left: 0; right: 0; padding: 0 24px 20px; background: var(--warm); }.site-header.is-menu-open .nav-dropdown__menu { position: static; width: 100%; margin: 2px 0 8px; box-shadow: none; }.site-footer__top { grid-template-columns: 1fr 1fr; }.footer-intro { grid-column: span 2; }
  .shell { padding: 16px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .hero__media { min-height: 900px; border-radius: 26px; }
  .hero__content { left: 18px; right: 18px; bottom: 222px; width: auto; }
  .hero__content h1 { margin-bottom: 28px; }
  .latest-card { left: 18px; right: 18px; bottom: 18px; width: auto; }
  .split-heading, .process-layout, .insights-panel, .feature-pair { grid-template-columns: 1fr; }
  .process-list { height: auto; }.process-step, .process-step.is-active { flex: none; }
  .split-heading__copy { padding-top: 0; }
  .value-visual, .value-visual > img { min-height: 460px; }
  .service-card, .service-card--wide { grid-column: span 3; }
  .process-stage { min-height: 520px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card--intro, .why-card--image, .why-card--media { grid-column: span 2; }
  .institutional__shade { background: linear-gradient(0deg, rgba(10,26,47,.94) 0%, rgba(10,26,47,.68) 58%, rgba(10,26,47,.18) 100%); }
  .institutional__copy { left: 30px; right: 30px; top: auto; bottom: 34px; transform: none; }
  .feature-pair .institutional__copy { inset: 0; display: flex; padding: 30px; justify-content: center; }
  .institutional__copy h3 { max-width: 540px; font-size: clamp(2.35rem, 6.5vw, 3.6rem); }
  .insights-panel { gap: 42px; }.feature-pair .institutional, .feature-pair .insights-panel { min-height: 620px; }
}

@media (max-width: 620px) {
  .site-header__actions { gap: 7px; }.site-header.is-menu-open .site-header__actions { top: 306px; }.site-footer { padding-top: 64px; }.site-footer__top { grid-template-columns: 1fr; gap: 29px; }.footer-intro { grid-column: auto; }.footer-wordmark { margin-left: -4px; font-size: 19vw; }.site-footer__bottom { display: grid; align-items: start; }
  .section { padding: 74px 0; }
  .insights-library { padding-top: 42px; }
  .hero__media { min-height: 940px; }
  .hero__content { padding: 28px 22px; bottom: 230px; }
  .hero__content .button-row { flex-direction: column; align-items: stretch; }
  .hero__content .btn { justify-content: space-between; width: 100%; }
  .latest-card { grid-template-columns: 1fr 92px; }
  .latest-card img { width: 92px; height: 96px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card--wide { grid-column: auto; }
  .process-step { grid-template-columns: 40px 1fr 40px; padding: 22px 18px; }
  .process-stage { min-height: 480px; }
  .motion-scene { padding: 48px 24px 28px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card--intro, .why-card--image, .why-card--media, .why-card--small { grid-column: auto; }
  .institutional, .institutional > img { min-height: 760px; }.feature-pair { width: calc(100% - 32px); gap: 14px; }.feature-pair .institutional, .feature-pair .insights-panel { min-height: auto; }.feature-pair .institutional { min-height: 620px; }.feature-pair .institutional > img { min-height: 620px; }.feature-pair .insights-panel { padding: 28px; }
  .institutional__copy { left: 22px; right: 22px; }
  .feature-pair .institutional__copy { inset: 0; display: flex; padding: 28px 22px; justify-content: center; }
  .institutional__copy h3 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .institutional .btn--light { width: 100%; min-width: 0; }
  .insights-panel { padding: 28px; }
  .button-row--center { flex-direction: column; align-items: stretch; max-width: 360px; margin-inline: auto; }
  .button-row--center .btn { justify-content: space-between; }
}

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

.quote-modal__success h2 { font-size: clamp(2.1rem, 3vw, 2.8rem); }

/* Insights library */
.insights-library__filters { margin-bottom: 52px; }
.insights-library__filters .insight-filters { justify-content: flex-start; }
.editorial-card { height: 100%; }
.editorial-card__link { display: flex; flex-direction: column; height: 100%; overflow: hidden; color: inherit; text-decoration: none; }
.editorial-card__link > div:not(.editorial-card__media) { padding: 25px 30px 30px; }
.editorial-card__link > div > p:not(.eyebrow) { color: var(--muted); }
.editorial-card__link:hover .text-link span { transform: translateX(4px); }
@media (max-width: 620px) { .editorial-card__link > div:not(.editorial-card__media) { padding: 24px 22px; } }

/* WordPress integration */
.editorial-card__body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 25px 30px 30px; }
.editorial-card__body .eyebrow { margin-bottom: 9px; }
.editorial-card__title { display: block; margin-bottom: 15px; color: var(--navy); font-size: clamp(1.45rem,1.55vw,1.6rem); line-height: 1.12; }
.editorial-card__excerpt { display: block; margin-bottom: 20px; color: var(--muted); line-height: 1.48; }
.editorial-card__body .text-link { margin-top: auto; }
.insight-filters a { min-height: 42px; display: inline-flex; align-items: center; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--navy); text-decoration: none; }
.insight-filters a.is-active,.insight-filters a:hover { border-color: var(--navy); background: var(--navy); color: white; }
.nav-links { display: flex; justify-content: center; gap: 12px; margin-top: 48px; }
.nav-links a,.nav-links .current { padding: 10px 14px; border-radius: 999px; text-decoration: none; }
.nav-links .current { background: var(--navy); color: white; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-status { display: block; margin-top: 12px; color: inherit; font-size: .88rem; }
.form-status.is-error { color: #b42318; }
.form-status.is-success { color: #1d7044; }
@media (max-width: 620px) { .editorial-card__body { padding: 24px 22px; } }
