:root {
  --ink: #07111c;
  --ink-soft: #0c1a29;
  --surface: #102233;
  --surface-2: #142a3d;
  --paper: #f1eee7;
  --paper-soft: #d6d1c7;
  --gold: #d6a95f;
  --gold-light: #f1cb83;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(7, 17, 28, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  --radius: 24px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
button, a { font: inherit; }
a { color: inherit; }
button { cursor: pointer; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 16px;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
}
.skip-link:focus { top: 16px; }
.shell { width: calc(100% - 40px); max-width: var(--max); min-width: 0; margin: 0 auto; }
.section { position: relative; padding: 112px 0; }
.section-light { background: var(--paper); color: var(--ink); }
.section-dark { background: var(--ink); }
.section-deep { background: var(--ink-soft); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-light .eyebrow { color: #896127; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 600; letter-spacing: -.04em; line-height: 1.08; }
h1 { max-width: 900px; margin-bottom: 20px; font-size: clamp(3rem, 7.5vh, 6.6rem); }
h2 { max-width: 800px; margin-bottom: 24px; font-size: clamp(2.25rem, 4.5vw, 4.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
.lead { max-width: 780px; color: var(--paper-soft); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.section-light .lead { color: #45515a; }
.topbar {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.topbar::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(7, 17, 28, .78);
  opacity: 0;
  backdrop-filter: blur(18px);
  transition: opacity .25s ease;
  pointer-events: none;
}
.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
.topbar.scrolled {
  border-color: var(--line);
}
.topbar.scrolled::before { opacity: 1; }
.nav { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
}
.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 169, 95, .55);
  color: var(--gold-light);
  transform: rotate(45deg);
}
.brand-mark span { transform: rotate(-45deg); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: #d9dde0;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--gold-light); }
.language {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.language a { min-width: 44px; padding: 7px 10px; border-radius: 999px; text-align: center; }
.language a.active { background: var(--gold); color: var(--ink); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: white;
}
.menu-toggle span {
  width: 18px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform .25s ease;
}
.menu-toggle span + span { margin-top: 5px; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
.hero {
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 90px 0 20px;
  background: linear-gradient(90deg, rgba(7,17,28,.98) 0%, rgba(7,17,28,.76) 43%, rgba(7,17,28,.1) 78%), url("../images/hero-logistics.png") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 62% 34%, rgba(241,203,131,.16), transparent 13%);
  opacity: .35;
  animation: route-glow 4.5s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, var(--ink));
  pointer-events: none;
}
@keyframes route-glow {
  0%, 100% { opacity: .18; transform: scale(.98); }
  50% { opacity: .65; transform: scale(1.04); }
}
.hero-content { position: relative; z-index: 2; }
.hero h1 span { color: var(--gold-light); }
.hero-copy { max-width: 660px; margin-bottom: 24px; color: #cbd2d7; font-size: clamp(.95rem, 1.25vw, 1.12rem); }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.btn-secondary { background: rgba(255,255,255,.04); color: white; backdrop-filter: blur(8px); }
.hero-foot {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #b9c2c8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-foot::before { content: ""; width: 54px; height: 1px; background: var(--gold); }
.hero .eyebrow, .hero h1, .hero-copy, .hero-actions, .hero-foot {
  opacity: 0;
  transform: translateY(26px);
  will-change: transform, opacity;
}
.hero.hero-ready .eyebrow { animation: hero-enter .7s .08s cubic-bezier(.22,1,.36,1) forwards; }
.hero.hero-ready h1 { animation: hero-enter .85s .18s cubic-bezier(.22,1,.36,1) forwards; }
.hero.hero-ready .hero-copy { animation: hero-enter .75s .35s cubic-bezier(.22,1,.36,1) forwards; }
.hero.hero-ready .hero-actions { animation: hero-enter .7s .48s cubic-bezier(.22,1,.36,1) forwards; }
.hero.hero-ready .hero-foot { animation: hero-enter .7s .62s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}
.intro-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
.quote-panel {
  position: sticky;
  top: 120px;
  padding: 32px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #e5dfd4;
}
.quote-panel strong { display: block; margin-bottom: 18px; font-size: clamp(1.7rem, 3vw, 3rem); line-height: 1.05; letter-spacing: -.045em; }
.value-copy p { color: #3f4d56; font-size: 1.08rem; }
.freight-heading, .services-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: end;
}
.freight-layout {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.freight-primary {
  min-height: 460px;
  position: relative;
  padding: 54px 70px 54px 0;
  border-right: 1px solid var(--line);
}
.freight-primary, .freight-row {
  opacity: 0;
  will-change: transform, opacity;
}
.freight-primary { transform: translateX(-45px); }
.freight-row { transform: translateX(45px); }
.freight-layout.motion-visible .freight-primary,
.freight-layout.motion-visible .freight-row {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .8s ease, transform .9s cubic-bezier(.22,1,.36,1);
}
.freight-layout.motion-visible .freight-row:first-child { transition-delay: .14s; }
.freight-layout.motion-visible .freight-row:last-child { transition-delay: .27s; }
.freight-label {
  display: block;
  color: var(--gold-light);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300;
  letter-spacing: -.07em;
  line-height: 1;
}
.freight-primary h3 { max-width: 480px; margin: 80px 0 16px; font-size: clamp(2rem, 4vw, 4rem); }
.freight-primary p, .freight-row p, .service-line p, .benefit-line p { margin: 0; color: #aeb9c0; }
.freight-line {
  position: absolute;
  right: 45px;
  bottom: 60px;
  width: 110px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}
.freight-layout.motion-visible .freight-line { animation: line-draw .9s .45s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes line-draw { to { transform: scaleX(1); } }
.freight-side { display: grid; grid-template-rows: 1fr 1fr; }
.freight-row { padding: 55px; border-bottom: 1px solid var(--line); }
.freight-row:last-child { border-bottom: 0; }
.freight-row h3 { margin-bottom: 22px; font-size: clamp(1.7rem, 3vw, 2.7rem); }
.service-list { margin-top: 70px; border-top: 1px solid var(--line); }
.service-line {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 35px;
  align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .3s ease, color .3s ease;
  opacity: 0;
  transform: translateX(-28px);
  will-change: transform, opacity;
}
.service-list.motion-visible .service-line {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .65s ease, transform .75s cubic-bezier(.22,1,.36,1), padding .3s ease, color .3s ease;
}
.service-list.motion-visible .service-line:nth-child(2) { transition-delay: .11s; }
.service-list.motion-visible .service-line:nth-child(3) { transition-delay: .22s; }
.service-list.motion-visible .service-line:nth-child(4) { transition-delay: .33s; }
.service-line:hover { padding-left: 18px; color: var(--gold-light); }
.service-line h3 { margin: 0; font-size: clamp(1.5rem, 2.7vw, 2.8rem); }
.image-band {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(90deg, rgba(7,17,28,.96), rgba(7,17,28,.1)), url("../images/supplier-control.png") center/cover no-repeat;
  background-size: auto, 108%;
  transition: background-size 1.8s cubic-bezier(.22,1,.36,1);
}
.image-band.motion-visible { background-size: auto, 100%; }
.image-band .eyebrow, .image-band h2 { opacity: 0; transform: translateX(-45px); }
.image-band.motion-visible .eyebrow, .image-band.motion-visible h2 {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .8s ease, transform .9s cubic-bezier(.22,1,.36,1);
}
.image-band.motion-visible h2 { transition-delay: .16s; }
.image-band-copy { max-width: 650px; padding: 100px 0; }
.categories-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: end; }
.catalog {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.catalog-names {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 0;
  padding: 35px 45px 35px 0;
  border-right: 1px solid var(--line-dark);
}
.catalog-item { display: contents; }
.catalog-name {
  padding: 11px 16px 11px 0;
  border: 0;
  background: none;
  color: #68737a;
  font-size: clamp(1.1rem, 1.9vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -.03em;
  text-align: left;
  transition: color .2s ease, transform .2s ease;
  opacity: 0;
  transform: translateY(14px);
}
.catalog-mobile-detail { display: none; }
.catalog.motion-visible .catalog-name { opacity: 1; transform: translateY(0); transition: opacity .5s ease, transform .6s cubic-bezier(.22,1,.36,1), color .2s ease; }
.catalog.motion-visible .catalog-name:nth-child(3n+2) { transition-delay: .08s; }
.catalog.motion-visible .catalog-name:nth-child(3n) { transition-delay: .16s; }
.catalog-name::after { content: " /"; color: #c5bdaE; font-weight: 400; }
.catalog-name:hover, .catalog-name.active { color: var(--ink); transform: translateX(5px); }
.catalog-name.active { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 7px; }
.catalog-detail {
  min-height: 420px;
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 52px;
  opacity: 0;
  transform: translateX(35px);
}
.catalog.motion-visible .catalog-detail { opacity: 1; transform: translateX(0); transition: opacity .8s .2s ease, transform .9s .2s cubic-bezier(.22,1,.36,1); }
.catalog-detail-label { color: #896127; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.catalog-detail h3 { margin: 110px 0 20px; font-size: clamp(2rem, 4vw, 4rem); }
.catalog-detail p { max-width: 550px; color: #526069; }
.catalog-detail a { display: inline-block; margin-top: 20px; color: var(--ink); font-size: 13px; font-weight: 800; text-decoration: none; }
.catalog-detail h3, .catalog-detail p { transition: opacity .18s ease, transform .25s ease; }
.catalog-detail.changing h3, .catalog-detail.changing p { opacity: 0; transform: translateY(10px); }
.plus {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  transition: transform .25s ease, background .25s ease;
}
.category.open .plus { background: var(--ink); color: white; transform: rotate(45deg); }
.category-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.category-content > div { overflow: hidden; }
.category-content p { max-width: 900px; margin: 0 0 28px 66px; color: #526069; }
.category.open .category-content { grid-template-rows: 1fr; }
.process-route {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.process-route::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(214,169,95,.1));
  transform: scaleX(0);
  transform-origin: left center;
}
.process-route.motion-visible::before { animation: route-draw 1.3s .1s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes route-draw { to { transform: scaleX(1); } }
.route-stop { position: relative; padding: 48px 35px 0 0; }
.route-dot {
  position: absolute;
  top: 2px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  background: var(--ink);
  opacity: 0;
  transform: scale(.2);
}
.route-stop h3, .route-stop p { opacity: 0; transform: translateY(18px); }
.process-route.motion-visible .route-dot { animation: dot-pop .45s cubic-bezier(.34,1.56,.64,1) forwards; }
.process-route.motion-visible .route-stop h3,
.process-route.motion-visible .route-stop p { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.process-route.motion-visible .route-stop:nth-child(2) .route-dot,
.process-route.motion-visible .route-stop:nth-child(2) h3,
.process-route.motion-visible .route-stop:nth-child(2) p { animation-delay: .2s; transition-delay: .2s; }
.process-route.motion-visible .route-stop:nth-child(3) .route-dot,
.process-route.motion-visible .route-stop:nth-child(3) h3,
.process-route.motion-visible .route-stop:nth-child(3) p { animation-delay: .4s; transition-delay: .4s; }
.process-route.motion-visible .route-stop:nth-child(4) .route-dot,
.process-route.motion-visible .route-stop:nth-child(4) h3,
.process-route.motion-visible .route-stop:nth-child(4) p { animation-delay: .6s; transition-delay: .6s; }
.process-route.motion-visible .route-stop:nth-child(5) .route-dot,
.process-route.motion-visible .route-stop:nth-child(5) h3,
.process-route.motion-visible .route-stop:nth-child(5) p { animation-delay: .8s; transition-delay: .8s; }
@keyframes dot-pop { to { opacity: 1; transform: scale(1); } }
.route-stop h3 { min-height: 75px; margin-bottom: 20px; font-size: clamp(1.2rem, 2vw, 1.75rem); }
.route-stop p { margin: 0; color: #aeb9c0; font-size: .94rem; }
.benefits-editorial {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 90px;
  row-gap: 75px;
}
.benefit-line { min-height: 190px; position: relative; padding: 0 0 0 38px; }
.benefit-line::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(var(--gold), transparent);
  transform: scaleY(.15);
  transform-origin: top;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.benefits-editorial.motion-visible .benefit-line::before { transform: scaleY(1); }
.benefit-line { opacity: 0; transform: translateY(35px); }
.benefits-editorial.motion-visible .benefit-line { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .85s cubic-bezier(.22,1,.36,1); }
.benefits-editorial.motion-visible .benefit-line:nth-child(2) { transition-delay: .12s; }
.benefits-editorial.motion-visible .benefit-line:nth-child(3) { transition-delay: .24s; }
.benefits-editorial.motion-visible .benefit-line:nth-child(4) { transition-delay: .36s; }
.benefit-line h3 { max-width: 470px; margin: 0 0 42px; font-size: clamp(1.65rem, 3vw, 3.1rem); }
.faq { margin-top: 50px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  text-align: left;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 700;
}
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 850px; margin: 0 0 26px; color: #aeb9c0; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .plus { background: var(--gold); color: var(--ink); transform: rotate(45deg); }
.final-cta {
  overflow: hidden;
  background: var(--gold);
  color: var(--ink);
}
.final-cta .shell { position: relative; z-index: 1; }
.final-cta .lead { color: #3d3427; }
.final-cta .btn-primary { border-color: var(--ink); background: var(--ink); color: white; }
.final-cta .btn-secondary { border-color: rgba(7,17,28,.35); color: var(--ink); }
.cta-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; }
.cta-signature {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 2px solid rgba(7,17,28,.5);
  padding-top: 18px;
  color: var(--ink);
  font-size: clamp(2.3rem, 7.5vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .9;
}
.cta-signature span { opacity: 0; will-change: transform, opacity; }
.cta-signature span:first-child { transform: translateX(-70px); }
.cta-signature span:last-child { transform: translateX(70px); }
.cta-signature.motion-visible span { opacity: 1; transform: translateX(0); transition: opacity .8s ease, transform 1s cubic-bezier(.22,1,.36,1); }
.cta-signature.motion-visible span:last-child { transition-delay: .15s; }
.footer { padding: 42px 0; border-top: 1px solid var(--line); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.contact { display: grid; gap: 7px; color: #aeb9c0; font-size: 14px; }
.contact a { text-decoration: none; }
.contact a:hover { color: var(--gold-light); }
.footer-note { color: #74838d; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .85s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    z-index: 101;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 90px 24px 40px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(7,17,28,.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.25rem; }
  .language { margin-top: 12px; }
  .menu-toggle { position: relative; z-index: 102; display: grid; place-items: center; }
  .intro-grid, .categories-intro { grid-template-columns: 1fr; gap: 34px; }
  .quote-panel { position: static; }
  .freight-heading, .services-heading, .cta-layout { grid-template-columns: 1fr; gap: 25px; }
  .freight-layout { grid-template-columns: 1fr; }
  .freight-primary { border-right: 0; border-bottom: 1px solid var(--line); }
  .catalog { grid-template-columns: 1fr; }
  .catalog-names { border-right: 0; border-bottom: 1px solid var(--line-dark); padding-right: 0; }
  .catalog-detail { display: none; }
  .catalog-item { display: block; width: 100%; border-bottom: 1px solid var(--line-dark); }
  .catalog-name { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
  .catalog-name::after { content: "+"; color: #896127; font-size: 1.3rem; }
  .catalog-item.active .catalog-name::after { content: "−"; }
  .catalog-mobile-detail { display: block; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .35s ease; }
  .catalog-mobile-detail p { margin: 0; color: #526069; }
  .catalog-mobile-detail a { color: var(--ink); font-size: 12px; font-weight: 800; text-decoration: none; opacity: 0; }
  .catalog-item.active .catalog-mobile-detail { max-height: 500px; padding-bottom: 24px; }
  .catalog-item.active .catalog-mobile-detail p { margin-bottom: 18px; }
  .catalog-item.active .catalog-mobile-detail a { opacity: 1; }
  .process-route { grid-template-columns: 1fr; }
  .process-route::before { top: 0; bottom: 0; left: 6px; width: 1px; height: auto; }
  .process-route::before { transform: scaleY(0); transform-origin: top; }
  .process-route.motion-visible::before { animation-name: route-draw-y; }
  @keyframes route-draw-y { to { transform: scaleY(1); } }
  .route-stop { padding: 0 0 45px 45px; }
  .route-dot { top: 4px; }
  .route-stop h3 { min-height: 0; }
}

@media (max-width: 680px) {
  .shell { width: calc(100% - 28px); }
  .section { padding: 78px 0; }
  .nav { height: 70px; }
  .brand { font-size: 11px; }
  .brand-mark { width: 31px; height: 31px; }
  .hero { height: 100svh; min-height: 640px; align-items: flex-start; padding: 150px 0 18px; background-position: 60% center; }
  .hero h1 { font-size: clamp(2.25rem, 10vw, 2.7rem); }
  .hero-copy { margin-bottom: 18px; font-size: .93rem; line-height: 1.5; }
  .hero-foot { margin-top: 22px; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-foot { margin-top: 50px; font-size: 10px; }
  .freight-primary { min-height: 360px; padding-right: 0; }
  .freight-primary h3 { margin-top: 60px; }
  .freight-row { padding: 38px 0; }
  .service-line { grid-template-columns: 1fr; gap: 18px; }
  .catalog-name { font-size: 1.15rem; }
  .benefits-editorial { grid-template-columns: 1fr; gap: 55px; }
  .benefit-line { min-height: 170px; padding: 0 0 0 26px; }
  .benefit-line h3 { margin-bottom: 45px; }
  .cta-signature { flex-direction: column; margin-top: 70px; }
  .footer-grid { grid-template-columns: 1fr; }
  .image-band {
    min-height: 500px;
    align-items: flex-end;
    background-position: 72% center;
    background-size: auto, cover;
    transition: background-position 1.4s cubic-bezier(.22,1,.36,1);
  }
  .image-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,17,28,.08) 0%, rgba(7,17,28,.12) 34%, rgba(7,17,28,.96) 86%);
  }
  .image-band-copy { position: relative; z-index: 1; padding: 46px 0; }
  .image-band.motion-visible { background-position: 58% center; background-size: auto, cover; }
}

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