:root {
  --primary-yellow: #dba913;
  --primary-black: #000000;
  --black-shade: #1b1b1b;
  --page-dark: #060606;
  --page-dark-2: #171717;
  --grey-shade: #a0a0a0;
  --text-white: #d9d9d9;
  --white: #ffffff;
  --border-soft: rgba(255, 255, 255, 0.11);
  --shadow-strong: 0 34px 90px rgba(0, 0, 0, 0.5);
  --section-width: min(1180px, calc(100% - 56px));
  --radius-card: 18px;
  --omc-image-lift: 76px;
  --transport-image-lift: 0px;
  --transport-scatter: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page-dark);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(219, 169, 19, 0.055), transparent 24rem),
    linear-gradient(180deg, var(--page-dark) 0%, #050505 42%, var(--page-dark) 100%);
  color: var(--text-white);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(rgba(219, 169, 19, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(219, 169, 19, 0.022) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: radial-gradient(circle at 50% 18%, black, transparent 68%);
}

body.menu-open {
  overflow: hidden;
}

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

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

main {
  background: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

.section-shell {
  width: var(--section-width);
  margin: 0 auto;
}

.breadcrumb {
  padding-top: 132px;
  margin-bottom: -76px;
  color: rgba(217, 217, 217, 0.72);
  font-size: 0.88rem;
  font-weight: 600;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.breadcrumb li + li::before {
  content: "/";
  color: rgba(219, 169, 19, 0.8);
}

.breadcrumb a {
  color: var(--primary-yellow);
  transition: color 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  pointer-events: none;
  transition:
    background 220ms ease,
    backdrop-filter 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.nav {
  width: var(--section-width);
  height: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  pointer-events: auto;
  transition: height 220ms ease;
}

.site-header.is-scrolled .nav {
  height: 84px;
}

.brand {
  width: 284px;
  justify-self: start;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--text-white);
  font-size: 0.98rem;
  font-weight: 400;
}

.nav-links a {
  position: relative;
  opacity: 0.92;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--primary-yellow);
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover {
  color: var(--primary-yellow);
  opacity: 1;
  transform: translateY(-1px);
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta,
.hero-cta,
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  border: 1.5px solid var(--primary-yellow);
  border-radius: 999px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.nav-cta {
  width: max-content;
  padding: 0 10px 0 22px;
  justify-self: end;
}

.hero-cta {
  width: max-content;
  min-height: 54px;
  padding: 0 10px 0 22px;
  font-size: 1.15rem;
}

.contact-button {
  width: max-content;
  padding: 0 10px 0 22px;
  color: var(--primary-black);
  border-color: var(--primary-black);
}

.nav-cta:hover,
.hero-cta:hover {
  transform: translateY(-2px);
  background: rgba(219, 169, 19, 0.12);
  box-shadow: 0 0 0 5px rgba(219, 169, 19, 0.08), 0 18px 34px rgba(0, 0, 0, 0.28);
}

.contact-button:hover {
  transform: translateY(-2px);
  background: var(--primary-black);
  color: var(--white);
}

.arrow-badge {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary-yellow);
  color: var(--primary-black);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
}

.arrow-badge img {
  width: 17px;
  height: 17px;
  filter: brightness(0);
  transform: rotate(90deg);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(219, 169, 19, 0.55);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--primary-yellow);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 76px);
  margin: 0;
  padding: 108px max(42px, calc((100vw - 1180px) / 2)) 128px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.66) 28%, rgba(0, 0, 0, 0.2) 56%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.64) 100%);
}

.hero-map {
  position: absolute;
  top: 60%;
  right: 0;
  left: auto;
  z-index: -2;
  width: max(660px, 62vw);
  max-width: none;
  opacity: 1;
  filter: saturate(0.74) contrast(1.32) brightness(1.02);
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-content {
  position: relative;
  z-index: 3;
  align-self: center;
  transform: translateY(92px);
}

.hero h1 {
  max-width: 610px;
  margin: 0 0 46px;
  color: var(--primary-yellow);
  font-size: clamp(3rem, 5.3vw, 4.75rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.mobile-title-break {
  display: none;
}

.contact-mobile-break {
  display: none;
}

.about-mobile-break {
  display: none;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: min(68vh, 650px);
  display: grid;
  place-items: center;
  transform: translateY(64px);
}

.hero-orbit {
  position: absolute;
  width: clamp(330px, 32vw, 470px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--primary-yellow);
  box-shadow: 0 22px 54px rgba(219, 169, 19, 0.12);
  animation: orbitPulse 3.8s ease-in-out infinite;
}

.hero-visual img {
  position: relative;
  width: clamp(240px, 23vw, 330px);
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.6));
  animation: phoneFloat 4.2s ease-in-out infinite;
}

.omc-showcase {
  position: relative;
  z-index: 4;
  width: min(1280px, calc(100% - 24px));
  margin-top: 88px;
  padding: 0 0 132px;
}

.omc-panel {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  background:
    linear-gradient(180deg, rgba(225, 176, 17, 1) 0%, rgba(184, 139, 10, 0.96) 45%, rgba(9, 9, 9, 0.99) 77%, rgba(0, 0, 0, 1) 100%),
    var(--primary-yellow);
  box-shadow: var(--shadow-strong);
}

.omc-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.16) 46%, transparent 58%),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.18), transparent 14rem);
  opacity: 0.28;
  transform: translateX(-38%);
  animation: panelSweep 5.4s ease-in-out infinite;
}

.omc-panel-map {
  position: absolute;
  inset: -42% -8% auto auto;
  width: 64%;
  height: 58%;
  opacity: 0.08;
  background: url("../assets/images/Webmap.webp") center / cover no-repeat;
  filter: grayscale(1);
}

.omc-panel h2 {
  position: relative;
  z-index: 2;
  max-width: 410px;
  margin: 0 auto;
  padding-top: 66px;
  color: var(--primary-black);
  font-size: clamp(1.36rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.18;
  text-align: center;
}

.omc-title {
  position: absolute;
  top: 285px;
  left: 50%;
  z-index: 5;
  width: max-content;
  color: var(--white);
  font-size: clamp(1.28rem, 2.1vw, 1.8rem);
  font-weight: 800;
  transform: translate(-50%, -50%);
}

.omc-card {
  position: absolute;
  top: 202px;
  width: clamp(300px, 25.8vw, 340px);
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(22, 22, 22, 0.98);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 1) 0%, rgba(5, 5, 5, 1) 62%, rgba(0, 0, 0, 0.88) 100%),
    var(--primary-black);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 -26px 42px rgba(0, 0, 0, 0.72),
    0 24px 45px rgba(0, 0, 0, 0.48);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.omc-card::after,
.transport-card::after,
.why-grid article::after,
.faq-list details::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 38%, rgba(219, 169, 19, 0.12));
  opacity: 0;
  transition: opacity 260ms ease;
}

.omc-card:hover {
  border-color: rgba(219, 169, 19, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 -26px 42px rgba(0, 0, 0, 0.72),
    0 32px 65px rgba(0, 0, 0, 0.55),
    0 0 34px rgba(219, 169, 19, 0.14);
}

.omc-card:hover::after,
.transport-card:hover::after,
.why-grid article:hover::after,
.faq-list details:hover::after {
  opacity: 1;
}

.omc-card p {
  position: relative;
  z-index: 2;
  width: 72%;
  margin: 0 auto;
  padding-top: 56px;
  color: var(--text-white);
  font-size: 0.92rem;
  line-height: 1.18;
  text-align: center;
}

.omc-card img {
  position: absolute;
  left: 50%;
  bottom: -82px;
  width: 282px;
  max-width: none;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.62);
  transform: translate(-50%, var(--omc-image-lift));
  transition:
    transform 90ms linear,
    filter 260ms ease;
  will-change: transform;
}

.omc-showcase.is-visible .omc-card img {
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.42));
}

.omc-card-left {
  left: 2.8%;
}

.omc-card-center {
  left: 50%;
  top: 326px;
  width: clamp(278px, 24vw, 315px);
  height: 450px;
  transform: translateX(-50%);
}

.omc-card-center img {
  bottom: -132px;
  width: 285px;
}

.omc-card-right {
  right: 2.8%;
}

.track-page main {
  padding-top: 128px;
}

.track-shell {
  display: grid;
  gap: 34px;
  padding: 72px 0 112px;
}

.track-heading {
  max-width: 720px;
}

.track-heading h1 {
  margin: 12px 0 0;
  color: var(--primary-yellow);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.track-card {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(219, 169, 19, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 10, 0.86);
  box-shadow: var(--shadow-strong);
}

.track-lookup-form,
.track-upload-form,
.track-form-grid,
.track-upload-card,
.track-uploader-details {
  display: grid;
  gap: 18px;
}

.track-lookup-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.track-lookup-form label,
.track-upload-form label {
  display: grid;
  gap: 9px;
}

.track-lookup-form label span,
.track-upload-form label span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.track-lookup-form input,
.track-upload-form input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 16px;
  outline: 0;
}

.track-lookup-form input:focus,
.track-upload-form input:focus {
  border-color: rgba(219, 169, 19, 0.72);
  box-shadow: 0 0 0 4px rgba(219, 169, 19, 0.12);
}

.track-message {
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-white);
  font-weight: 700;
}

.track-message[data-tone="success"] {
  background: rgba(22, 163, 74, 0.14);
  color: #86efac;
}

.track-message[data-tone="danger"] {
  background: rgba(220, 38, 38, 0.14);
  color: #fca5a5;
}

.track-result {
  display: grid;
  gap: 24px;
}

.track-lookup-form[hidden],
.track-result[hidden],
.track-uploader-details[hidden],
.track-message[hidden],
.track-loading-card[hidden],
.track-success-card[hidden],
.track-suggestion-panel[hidden] {
  display: none !important;
}

.track-summary {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(219, 169, 19, 0.16);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.32);
}

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

.track-summary-head > div,
.track-summary-grid > div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 14px 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: transparent;
}

.track-summary-grid > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.track-summary span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.track-summary strong {
  min-width: 0;
  color: var(--white);
  overflow-wrap: anywhere;
}

.track-upload-form .contact-submit {
  color: var(--white);
  border-color: var(--primary-yellow);
}

.track-upload-card {
  padding: 18px;
  border: 1px solid rgba(219, 169, 19, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.track-upload-card h2 {
  margin: 6px 0 0;
  color: var(--white);
  font-size: 1.2rem;
}

.track-file-field {
  position: relative;
  cursor: pointer;
}

.track-file-field input[type="file"] {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  min-height: 100%;
  opacity: 0;
  cursor: pointer;
}

.track-file-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  border: 1px dashed rgba(219, 169, 19, 0.46);
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(219, 169, 19, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.track-file-field:hover .track-file-card,
.track-file-field:focus-within .track-file-card {
  border-color: rgba(219, 169, 19, 0.78);
  background:
    linear-gradient(180deg, rgba(219, 169, 19, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.045);
  transform: translateY(-1px);
}

.track-file-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--primary-yellow);
}

.track-file-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0);
}

.track-file-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.track-upload-form label .track-file-copy,
.track-upload-form label .track-file-copy small,
.track-upload-form label .track-file-copy strong,
.track-upload-form label .track-file-action,
.track-upload-form label .track-file-summary {
  letter-spacing: 0;
  text-transform: none;
}

.track-file-copy strong {
  color: var(--white);
  font-size: 1rem;
}

.track-file-copy small,
.track-file-summary {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  font-weight: 700;
}

.track-file-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(219, 169, 19, 0.18);
  color: var(--primary-yellow);
  font-size: 0.86rem;
  font-weight: 900;
}

.track-file-summary {
  display: block;
  padding-left: 2px;
  overflow-wrap: anywhere;
}

.track-autocomplete-field {
  position: relative;
  min-width: 0;
}

.track-autocomplete-field label {
  display: grid;
  gap: 9px;
}

.track-suggestion-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  gap: 4px;
  max-height: 210px;
  overflow-y: auto;
  border: 1px solid rgba(219, 169, 19, 0.22);
  border-radius: 14px;
  padding: 6px;
  background: rgba(18, 18, 18, 0.98);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.track-suggestion-button {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 10px 11px;
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  transition: background 180ms ease;
}

.track-suggestion-button:hover {
  background: rgba(219, 169, 19, 0.16);
}

.track-upload-form .contact-submit:disabled,
.track-lookup-form .contact-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.track-loading-card,
.track-success-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  min-height: min(520px, 58vh);
  align-content: center;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(219, 169, 19, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(219, 169, 19, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(5, 5, 5, 0.92);
  text-align: center;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition:
    opacity 240ms ease,
    transform 240ms ease,
    border-color 240ms ease;
  outline: 0;
}

.track-loading-card.is-visible,
.track-success-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.track-loading-spinner {
  width: 76px;
  height: 76px;
  border: 3px solid rgba(219, 169, 19, 0.18);
  border-top-color: var(--primary-yellow);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(219, 169, 19, 0.14);
  animation: trackSpin 720ms linear infinite;
}

@keyframes trackSpin {
  to {
    transform: rotate(360deg);
  }
}

.track-success-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(219, 169, 19, 0.34);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(219, 169, 19, 0.96), rgba(189, 139, 8, 0.94)),
    var(--primary-yellow);
  box-shadow: 0 18px 40px rgba(219, 169, 19, 0.18);
}

.track-success-icon img {
  width: 34px;
  height: 34px;
  filter: brightness(0);
}

.track-success-copy {
  display: grid;
  gap: 9px;
  max-width: 560px;
}

.track-success-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.12;
}

.track-success-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.65;
}

.track-success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.track-success-actions .contact-submit {
  min-width: 210px;
}

.contact-submit-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-submit-secondary:hover {
  border-color: rgba(219, 169, 19, 0.48);
  background: rgba(255, 255, 255, 0.09);
}

.omc-card-right img {
  bottom: -80px;
  width: 282px;
}

.transporter-showcase {
  width: min(1140px, calc(100% - 56px));
  padding: 96px 0 150px;
  --transport-scatter: 0;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 36px;
}

.section-title-row img {
  width: 26px;
  height: 26px;
  filter: brightness(0) saturate(100%) invert(64%) sepia(97%) saturate(655%) hue-rotate(3deg) brightness(93%) contrast(89%);
}

.section-title-row h2 {
  margin: 0;
  color: var(--text-white);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
}

.transporter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.32fr;
  grid-template-rows: 250px 320px;
  gap: 26px;
}

.transport-card {
  --card-hover-y: 0px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
  isolation: isolate;
  transform: translate(0, var(--card-hover-y));
  transition:
    transform 160ms ease-out,
    box-shadow 180ms ease,
    filter 180ms ease;
  will-change: transform;
}

.transport-card:hover {
  --card-hover-y: -5px;
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.58), 0 0 32px rgba(219, 169, 19, 0.13);
}

.transport-card:nth-child(1) {
  transform: translate(calc(-28px * var(--transport-scatter)), calc(18px * var(--transport-scatter) + var(--card-hover-y)));
}

.transport-card:nth-child(2) {
  transform: translate(calc(28px * var(--transport-scatter)), calc(18px * var(--transport-scatter) + var(--card-hover-y)));
}

.transport-card:nth-child(3) {
  transform: translate(calc(-24px * var(--transport-scatter)), calc(-18px * var(--transport-scatter) + var(--card-hover-y)));
}

.transport-card:nth-child(4) {
  transform: translate(0, calc(24px * var(--transport-scatter) + var(--card-hover-y)));
}

.transport-card:nth-child(5) {
  transform: translate(calc(24px * var(--transport-scatter)), calc(-18px * var(--transport-scatter) + var(--card-hover-y)));
}

.transport-card-yellow {
  background: var(--primary-yellow);
  overflow: visible;
}

.transport-card-grey {
  background: var(--grey-shade);
  color: var(--black-shade);
}

.transport-card-black {
  background: var(--primary-black);
  color: var(--text-white);
}

.transport-card-wide {
  grid-column: span 2;
  display: grid;
  align-items: center;
  padding-left: 50%;
}

.transport-card-wide h3 {
  position: relative;
  z-index: 2;
  max-width: 250px;
  margin: 0;
  color: var(--primary-black);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.transport-phone-left {
  position: absolute;
  left: 6%;
  bottom: 0;
  width: 230px;
  max-width: none;
  z-index: 3;
  transform: translateY(var(--transport-image-lift));
  transition: transform 460ms cubic-bezier(0.16, 0.9, 0.24, 1);
}

.transport-icon {
  position: absolute;
  right: 19px;
  bottom: 18px;
  width: 24px;
  filter: brightness(0);
}

.transport-card-copy {
  display: grid;
  place-items: center;
  padding: 28px 34px;
  text-align: center;
}

.transport-card-copy h3 {
  max-width: 300px;
  margin: 0;
  font-size: clamp(1.42rem, 2.1vw, 2.05rem);
  font-weight: 800;
  line-height: 1.08;
}

.transport-card-black p {
  position: relative;
  z-index: 2;
  width: 78%;
  margin: 0 auto;
  padding-top: 58px;
  color: var(--text-white);
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
}

.transport-card-black img,
.transport-card-phone img {
  position: absolute;
  left: 50%;
  bottom: -70px;
  width: 238px;
  max-width: none;
  transform: translate(-50%, var(--transport-image-lift));
  transition:
    transform 480ms cubic-bezier(0.16, 0.9, 0.24, 1),
    filter 260ms ease;
  will-change: transform;
}

.js .reveal-on-scroll .transport-card {
  --transport-image-lift: 42px;
}

.js .reveal-on-scroll.is-visible .transport-card {
  --transport-image-lift: 0px;
}

.transport-card-phone img {
  bottom: -76px;
  width: 250px;
}

.transport-card:nth-child(5) img {
  bottom: -64px;
  width: 260px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--primary-yellow);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.why-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 44px;
  align-items: center;
  padding: 28px 0 142px;
}

.why-section::before,
.faq-section::before {
  content: "";
  position: absolute;
  inset: -34px -18px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(219, 169, 19, 0.5), transparent);
  opacity: 0.5;
}

.why-copy h2,
.fleet-strip h2,
.policy-hero h1 {
  margin: 14px 0 18px;
  color: var(--text-white);
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  font-weight: 800;
  line-height: 1.05;
}

.why-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(217, 217, 217, 0.74);
  font-size: 1.05rem;
  line-height: 1.7;
}

.why-visual {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
}

.why-visual::before {
  content: "";
  position: absolute;
  width: min(420px, 70vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(219, 169, 19, 0.18);
  filter: blur(12px);
}

.why-visual img {
  position: relative;
  width: min(560px, 48vw);
  max-width: none;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.48));
  animation: floatTruck 4.4s ease-in-out infinite;
}

.why-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.why-grid article,
.faq-list details,
.policy-content {
  border: 1px solid var(--border-soft);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.why-grid article {
  padding: 28px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.why-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(219, 169, 19, 0.42);
  background: rgba(219, 169, 19, 0.08);
}

.why-grid span {
  color: var(--primary-yellow);
  font-size: 0.84rem;
  font-weight: 800;
}

.why-grid h3 {
  margin: 18px 0 10px;
  color: var(--white);
  font-size: 1.2rem;
}

.why-grid p {
  margin: 0;
  color: rgba(217, 217, 217, 0.7);
  line-height: 1.55;
}

.fleet-strip {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 32px;
  overflow: hidden;
  padding: 30px 42px;
  border-radius: 15px;
  background:
    linear-gradient(90deg, rgba(219, 169, 19, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 28px 80px rgba(0, 0, 0, 0.28);
}

.fleet-strip img {
  width: min(560px, 54vw);
  max-width: none;
  justify-self: center;
  filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.42));
  animation: fleetDrift 5s ease-in-out infinite;
}

.fleet-strip h2 {
  max-width: 480px;
  margin-bottom: 0;
}

.faq-section {
  padding: 138px 0 24px;
}

.faq-list {
  max-width: 900px;
  display: grid;
  gap: 14px;
  margin: 0 auto;
}

.faq-list details {
  padding: 22px 24px;
  transition:
    border-color 200ms ease,
    background 200ms ease;
}

.faq-list details[open] {
  border-color: rgba(219, 169, 19, 0.44);
  background: rgba(219, 169, 19, 0.075);
}

.faq-list summary {
  cursor: pointer;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 800;
}

.faq-list p {
  margin: 14px 0 0;
  color: rgba(217, 217, 217, 0.72);
  line-height: 1.65;
}

.js .reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 460ms ease,
    transform 460ms ease;
}

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

.js .reveal-on-scroll .why-grid article,
.js .reveal-on-scroll .faq-list details,
.js .reveal-on-scroll.footer-panel {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 430ms ease,
    transform 430ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.js .reveal-on-scroll.is-visible .why-grid article,
.js .reveal-on-scroll.is-visible .faq-list details,
.js .reveal-on-scroll.is-visible.footer-panel {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-on-scroll.is-visible .why-grid article:hover {
  transform: translateY(-6px);
}

.js .reveal-on-scroll .transport-card {
  opacity: 0;
  transition:
    opacity 260ms ease,
    transform 160ms ease-out,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.js .reveal-on-scroll.is-visible .transport-card {
  opacity: 1;
}

.js .reveal-on-scroll.is-visible .why-grid article:nth-child(2),
.js .reveal-on-scroll.is-visible .faq-list details:nth-child(2) {
  transition-delay: 55ms;
}

.js .reveal-on-scroll.is-visible .why-grid article:nth-child(3),
.js .reveal-on-scroll.is-visible .faq-list details:nth-child(3) {
  transition-delay: 105ms;
}

.js .reveal-on-scroll.is-visible .faq-list details:nth-child(4) {
  transition-delay: 155ms;
}

@keyframes floatTruck {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 22px 54px rgba(219, 169, 19, 0.12);
  }

  50% {
    transform: scale(1.018);
    box-shadow: 0 26px 62px rgba(219, 169, 19, 0.18);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes panelSweep {
  0%,
  100% {
    transform: translateX(-48%);
  }

  50% {
    transform: translateX(42%);
  }
}

@keyframes fleetDrift {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(12px) translateY(-6px);
  }
}

.site-footer {
  padding: 110px 0 0;
  color: var(--primary-black);
}

.footer-panel {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(150px, 0.55fr) minmax(220px, 0.8fr);
  gap: 54px;
  align-items: start;
  padding: 48px 44px 26px;
  border-radius: 22px 22px 0 0;
  background: var(--primary-yellow);
}

.footer-brand img {
  width: 118px;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 410px;
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 1rem;
  line-height: 1.55;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 8px;
  color: var(--primary-black);
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.98rem;
  line-height: 1.35;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--primary-black);
}

.footer-bottom {
  grid-column: 1 / -1;
  align-self: end;
  padding-top: 34px;
  color: rgba(0, 0, 0, 0.58);
  font-size: 0.88rem;
}

.policy-page {
  background: var(--page-dark);
}

.policy-hero,
.contact-hero {
  padding: 168px 0 54px;
}

.policy-hero p {
  margin: 0;
  color: rgba(217, 217, 217, 0.68);
}

.contact-page {
  background:
    radial-gradient(circle at 78% 10%, rgba(219, 169, 19, 0.12), transparent 19rem),
    linear-gradient(180deg, var(--page-dark) 0%, #050505 100%);
}

.contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
  gap: 42px;
  align-items: center;
  overflow: hidden;
}

.contact-hero::after {
  content: "";
  position: absolute;
  right: 3%;
  bottom: 22%;
  width: min(420px, 42vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(219, 169, 19, 0.16);
  filter: blur(10px);
  z-index: -1;
}

.contact-hero h1 {
  max-width: 720px;
  margin: 14px 0 20px;
  color: var(--primary-yellow);
  font-size: clamp(2.9rem, 5.5vw, 5.6rem);
  font-weight: 800;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.contact-hero p {
  max-width: 590px;
  margin: 0;
  color: rgba(217, 217, 217, 0.74);
  font-size: 1.08rem;
  line-height: 1.72;
}

.contact-hero-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.contact-hero-visual img {
  width: min(560px, 48vw);
  max-width: none;
  filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.48));
  animation: floatTruck 4.4s ease-in-out infinite;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px 0 24px;
}

.contact-form-panel,
.contact-info-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(6, 6, 6, 0.92);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.36);
}

.contact-form-panel::before,
.contact-info-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(219, 169, 19, 0.12), transparent 32%),
    radial-gradient(circle at 82% 16%, rgba(219, 169, 19, 0.12), transparent 14rem);
}

.contact-form-panel {
  padding: clamp(26px, 4vw, 44px);
}

.contact-form-panel h2,
.contact-info-panel h2 {
  position: relative;
  margin: 12px 0 28px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

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

.contact-form-panel label {
  display: grid;
  gap: 9px;
}

.contact-form-panel label span {
  color: rgba(217, 217, 217, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.46);
  color: var(--white);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form-panel input,
.contact-form-panel select {
  min-height: 54px;
  padding: 0 16px;
}

.contact-form-panel textarea {
  resize: vertical;
  min-height: 150px;
  padding: 16px;
}

.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus {
  border-color: rgba(219, 169, 19, 0.72);
  background: rgba(0, 0, 0, 0.62);
  box-shadow: 0 0 0 4px rgba(219, 169, 19, 0.12);
}

.contact-field-wide,
.contact-submit {
  grid-column: 1 / -1;
}

.contact-submit {
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  margin-top: 6px;
  padding: 0 10px 0 22px;
  border: 1.5px solid var(--primary-yellow);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: rgba(219, 169, 19, 0.12);
  box-shadow: 0 0 0 5px rgba(219, 169, 19, 0.08), 0 18px 34px rgba(0, 0, 0, 0.28);
}

.contact-info-panel {
  display: grid;
  align-content: space-between;
  gap: 30px;
  padding: clamp(26px, 3.6vw, 40px);
}

.contact-info-panel > * {
  position: relative;
}

.contact-info-panel p {
  margin: -10px 0 0;
  color: rgba(217, 217, 217, 0.72);
  line-height: 1.65;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods a,
.contact-methods div,
.contact-route-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
}

.contact-methods a,
.contact-methods div {
  display: grid;
  gap: 7px;
  padding: 18px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-methods a:hover {
  transform: translateY(-3px);
  border-color: rgba(219, 169, 19, 0.42);
  background: rgba(219, 169, 19, 0.08);
}

.contact-methods span {
  color: var(--primary-yellow);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-methods strong {
  color: var(--white);
  font-size: 1.02rem;
}

.contact-route-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
}

.contact-route-card img {
  width: 28px;
  filter: brightness(0) saturate(100%) invert(64%) sepia(97%) saturate(655%) hue-rotate(3deg) brightness(93%) contrast(89%);
}

.contact-route-card p {
  margin: 0;
  color: rgba(217, 217, 217, 0.72);
}

.about-page {
  background:
    radial-gradient(circle at 82% 12%, rgba(219, 169, 19, 0.11), transparent 18rem),
    linear-gradient(180deg, var(--page-dark) 0%, #050505 100%);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  padding: 210px 0 28px;
}

.about-intro-card,
.about-summary-card,
.about-list-card,
.about-card-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.024)),
    rgba(6, 6, 6, 0.92);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.32);
}

.about-intro-card,
.about-summary-card,
.about-list-card {
  padding: clamp(28px, 4vw, 44px);
}

.about-intro-card {
  min-height: 430px;
  display: grid;
  align-content: center;
}

.about-intro-card h1 {
  max-width: 710px;
  margin: 16px 0 20px;
  color: var(--primary-yellow);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.06;
}

.about-intro-card p,
.about-summary-card p,
.about-list-card p,
.about-card-grid p {
  color: rgba(217, 217, 217, 0.74);
  font-size: 1.03rem;
  line-height: 1.7;
}

.about-summary-card h2,
.about-list-card h2 {
  margin: 14px 0 16px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.about-card-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-values-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-card-grid article {
  min-height: 220px;
  padding: 28px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.about-values-grid article {
  min-height: 190px;
}

.about-card-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(219, 169, 19, 0.42);
  background: rgba(219, 169, 19, 0.08);
}

.about-card-grid span {
  color: var(--primary-yellow);
  font-size: 0.84rem;
  font-weight: 800;
}

.about-card-grid h3 {
  margin: 20px 0 12px;
  color: var(--white);
  font-size: 1.35rem;
}

.about-card-grid p {
  margin: 0;
}

.about-list-card {
  grid-column: 1 / -1;
}

.policy-content {
  max-width: 920px;
  padding: 44px;
  margin-bottom: 28px;
}

.policy-content h2 {
  margin: 42px 0 14px;
  color: var(--white);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.policy-content p,
.policy-content li {
  color: rgba(217, 217, 217, 0.76);
  font-size: 1rem;
  line-height: 1.72;
}

.policy-content a {
  color: var(--primary-yellow);
}

.policy-content ol,
.policy-content ul {
  padding-left: 22px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .reveal-on-scroll *,
  .reveal-on-scroll.is-visible * {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0ms !important;
  }

  .omc-card img,
  .transport-card-black img,
  .transport-card-phone img {
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 980px) {
  :root {
    --section-width: min(100% - 36px, 1180px);
  }

  .breadcrumb {
    padding-top: 112px;
    margin-bottom: -58px;
  }

  .nav {
    grid-template-columns: 1fr auto auto;
    height: 92px;
  }

  .brand {
    width: 220px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    inset: 92px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    background: rgba(6, 6, 6, 0.96);
    box-shadow: var(--shadow-strong);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 12px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 100vh;
    min-height: 100svh;
    padding: 104px 20px 78px;
  }

  .hero-content {
    padding-left: 0;
    transform: translateY(34px);
  }

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

  .hero-visual {
    min-height: min(44vh, 460px);
    transform: translateY(30px);
  }

  .hero-visual img {
    transform: none;
  }

  .omc-panel {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 0 22px 42px;
  }

  .omc-showcase {
    margin-top: 64px;
    padding-bottom: 96px;
  }

  .omc-title {
    position: relative;
    top: auto;
    left: auto;
    order: 2;
    margin-top: 6px;
    transform: none;
  }

  .omc-card-left,
  .omc-card-center,
  .omc-card-right {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
  }

  .omc-card-left {
    order: 3;
  }

  .omc-card-center {
    order: 4;
  }

  .omc-card-right {
    order: 5;
    opacity: 0.96;
  }

  .omc-panel h2 {
    order: 1;
  }

  .transporter-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 230px 285px 285px;
    grid-auto-rows: auto;
  }

  .transport-card-copy {
    grid-column: span 1;
  }

  .transport-card:nth-child(5) {
    grid-column: span 2;
  }

  .why-section,
  .fleet-strip,
  .contact-hero,
  .contact-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .why-visual {
    min-height: 360px;
  }

  .why-visual img,
  .fleet-strip img {
    width: min(520px, 82vw);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-card-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-panel {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --section-width: min(100% - 28px, 1180px);
  }

  .breadcrumb {
    padding-top: 96px;
    margin-bottom: -42px;
    font-size: 0.78rem;
  }

  body {
    background:
      radial-gradient(circle at 92% 8%, rgba(219, 169, 19, 0.09), transparent 13rem),
      linear-gradient(180deg, #030303 0%, #060606 46%, #030303 100%);
  }

  .site-header.is-scrolled .nav,
  .nav {
    height: 84px;
  }

  .nav {
    gap: 12px;
  }

  .site-header {
    background: rgba(3, 3, 3, 0.88);
    backdrop-filter: blur(16px);
  }

  .nav-links {
    inset: 84px 14px auto;
    max-height: calc(100vh - 106px);
    overflow-y: auto;
    border-radius: 18px;
  }

  .hero {
    min-height: 100svh;
    gap: 26px;
    align-content: center;
    padding: 112px 16px 56px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 9.4vw, 2.72rem);
    line-height: 1.12;
    margin-bottom: 28px;
  }

  .mobile-title-break {
    display: block;
  }

  .contact-mobile-break {
    display: block;
  }

  .about-mobile-break {
    display: block;
  }

  .hero-cta {
    min-height: 50px;
    gap: 13px;
    padding-left: 20px;
    font-size: 1rem;
  }

  .hero-map {
    top: 59%;
    right: -28%;
    left: auto;
    width: 185%;
    min-width: 430px;
    opacity: 0.66;
    filter: saturate(0.74) contrast(1.3) brightness(0.92);
    transform: translateY(-50%);
  }

  .hero-orbit {
    width: min(285px, 76vw);
  }

  .hero-visual {
    min-height: 335px;
    transform: translateY(24px);
  }

  .hero-visual img {
    width: min(235px, 62vw);
  }

  .omc-showcase,
  .transporter-showcase,
  .why-section,
  .fleet-strip,
  .faq-section,
  .site-footer {
    width: var(--section-width);
  }

  .omc-showcase {
    margin-top: 42px;
    padding-bottom: 88px;
  }

  .omc-panel {
    min-height: auto;
    border-radius: 18px 18px 0 0;
    gap: 18px;
    padding: 0 18px 34px;
  }

  .omc-panel h2 {
    padding: 42px 14px 0;
    font-size: 1.45rem;
  }

  .omc-title {
    top: auto;
    white-space: normal;
    text-align: center;
  }

  .omc-card {
    width: min(310px, 88vw);
    height: 410px;
  }

  .omc-card img {
    bottom: -84px;
    width: 230px;
  }

  .omc-card-center {
    width: min(300px, 84vw);
    height: 380px;
  }

  .omc-card-center img {
    bottom: -116px;
    width: 230px;
  }

  .transporter-showcase {
    padding: 84px 0 112px;
  }

  .transporter-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 18px;
  }

  .transport-card-wide {
    grid-column: span 1;
    min-height: 315px;
    padding: 34px 20px 34px 46%;
    overflow: hidden;
  }

  .transport-phone-left {
    left: -13%;
    bottom: -8px;
    width: min(245px, 66vw);
  }

  .transport-card-wide h3 {
    max-width: 190px;
    font-size: clamp(1.3rem, 6vw, 1.65rem);
    justify-self: center;
  }

  .transport-card-copy {
    min-height: 190px;
  }

  .transport-card-black,
  .transport-card-phone {
    min-height: 390px;
  }

  .transport-card-black img,
  .transport-card-phone img {
    bottom: -78px;
    width: 270px;
  }

  .transport-card:nth-child(5) img {
    bottom: -58px;
    width: 285px;
  }

  .transport-card:nth-child(5) {
    grid-column: span 1;
  }

  .why-section {
    gap: 28px;
    padding: 4px 0 104px;
  }

  .why-copy h2,
  .fleet-strip h2,
  .policy-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.08;
  }

  .why-copy p {
    font-size: 1rem;
  }

  .why-visual {
    min-height: 320px;
    overflow: hidden;
  }

  .why-visual img,
  .fleet-strip img {
    width: min(390px, 98vw);
  }

  .fleet-strip {
    min-height: auto;
    padding: 28px 22px 34px;
    gap: 12px;
  }

  .faq-section {
    padding-top: 108px;
  }

  .section-title-row {
    align-items: flex-start;
    margin-bottom: 28px;
    text-align: center;
  }

  .section-title-row h2 {
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .faq-list details {
    padding: 20px;
  }

  .policy-hero {
    padding: 16px 0 24px;
  }

  .policy-page .breadcrumb {
    padding-top: 92px;
    margin-bottom: 12px;
  }

  .contact-hero {
    padding-top: 128px;
    gap: 18px;
  }

  .about-layout {
    padding-top: 170px;
    gap: 18px;
  }

  .about-intro-card {
    min-height: auto;
  }

  .about-intro-card h1 {
    max-width: 320px;
    font-size: clamp(2rem, 8.2vw, 2.48rem);
    line-height: 1.1;
  }

  .about-intro-card p,
  .about-summary-card p,
  .about-list-card p,
  .about-card-grid p {
    max-width: 330px;
  }

  .about-summary-card h2,
  .about-list-card h2 {
    max-width: 310px;
    font-size: clamp(1.75rem, 7.4vw, 2.25rem);
    line-height: 1.12;
  }

  .contact-hero h1 {
    max-width: 330px;
    font-size: clamp(2.05rem, 8.6vw, 2.62rem);
    line-height: 1.12;
  }

  .contact-hero p {
    max-width: 330px;
    font-size: 0.98rem;
  }

  .contact-hero-visual {
    min-height: 260px;
    overflow: hidden;
  }

  .contact-hero-visual img {
    width: min(390px, 102vw);
  }

  .contact-grid {
    gap: 18px;
    padding-top: 8px;
  }

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

  .track-page main {
    padding-top: 104px;
  }

  .track-shell {
    padding: 46px 0 86px;
  }

  .track-lookup-form,
  .track-summary-head,
  .track-summary-grid,
  .track-form-grid {
    grid-template-columns: 1fr;
  }

  .track-file-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .track-file-action {
    grid-column: 1 / -1;
    width: 100%;
  }

  .track-loading-card,
  .track-success-card {
    min-height: 430px;
    padding: 30px 18px;
  }

  .track-success-actions {
    display: grid;
  }

  .track-success-actions .contact-submit {
    min-width: 0;
  }

  .track-suggestion-button {
    width: 100%;
  }

  .contact-submit {
    width: 100%;
  }

  .policy-content {
    padding: 28px 22px;
    margin-top: 0;
    border-radius: 14px;
  }

  .policy-content p,
  .policy-content li {
    font-size: 0.96rem;
  }

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

  .footer-panel {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 440px;
    padding: 34px 24px 24px;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: auto;
  }
}

@media (max-width: 440px) {
  :root {
    --section-width: min(100% - 24px, 1180px);
  }

  .brand {
    width: 174px;
  }

  .hero {
    padding: 94px 16px 70px;
  }

  .hero h1 {
    font-size: clamp(2.16rem, 9.2vw, 2.42rem);
  }

  .transport-card-wide {
    padding-left: 44%;
  }

  .transport-phone-left {
    left: -16%;
    width: 192px;
  }

  .transport-card-wide h3 {
    max-width: 160px;
    font-size: 1.28rem;
  }

  .transport-card-copy h3 {
    font-size: 1.45rem;
  }

  .footer-panel {
    padding-inline: 20px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 2.22rem;
  }

  .hero-visual img {
    width: 215px;
  }

  .hero-orbit {
    width: 260px;
  }

  .transport-card-wide {
    padding-left: 40%;
  }

  .transport-phone-left {
    left: -24%;
    width: 184px;
  }
}
