:root {
  --navy: #07151a;
  --navy-soft: #0b1f26;
  --ink: #0b2f57;
  --cream: #eaf4fa;
  --paper: #f7fbfe;
  --white: #ffffff;
  --orange: #2f9ed8;
  --orange-bright: #94defe;
  --red: #b51f2a;
  --line: rgba(11, 47, 87, 0.15);
  --muted: #3d4d5c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Lato", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 88px;
  padding: 0 3.75vw;
  color: var(--ink);
  border-bottom: 1px solid rgba(11, 47, 87, 0.13);
  background: rgba(247, 251, 254, 0.94);
  box-shadow: 0 8px 30px rgba(7, 21, 26, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.brand-logo {
  display: block;
  width: auto;
  height: 58px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(11, 47, 87, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  height: min(920px, 100svh);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 13, 22, 0.97) 0%,
      rgba(4, 13, 22, 0.83) 33%,
      rgba(4, 13, 22, 0.22) 72%,
      rgba(4, 13, 22, 0.28) 100%
    ),
    linear-gradient(0deg, rgba(5, 15, 24, 0.62), transparent 40%),
    url("images/hero-logistics.webp") center / cover no-repeat;
  transform: scale(1.015);
  animation: heroReveal 1.3s ease-out both;
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 1000px;
  padding: 115px 5.7vw 100px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.kicker > span {
  width: 38px;
  height: 2px;
  background: var(--orange);
}

.hero h1,
.promise h2,
.section-heading h2,
.customs h2,
.intelligence h2,
.process h2,
.contact h2 {
  margin: 0;
  font-size: clamp(58px, 7.5vw, 118px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.068em;
}

.hero h1 em,
.intelligence h2 em {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-copy {
  max-width: 570px;
  margin: 37px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 39px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: fit-content;
  min-width: 250px;
  padding: 18px 20px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button--primary {
  background: var(--orange);
  color: var(--white);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--orange-bright);
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--large {
  min-width: min(430px, 100%);
  padding: 22px 24px;
  font-size: 13px;
  text-transform: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--orange);
}

.customs-detail-link {
  margin-left: 24px;
  border-color: rgba(11, 47, 87, 0.35);
  color: var(--ink);
}

.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero-side-note {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero-status {
  position: absolute;
  z-index: 2;
  right: 4.5vw;
  bottom: 33px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55dc8a;
  box-shadow: 0 0 0 5px rgba(85, 220, 138, 0.15);
  animation: pulse 2s ease infinite;
}

.section-pad {
  padding: 120px 5.7vw;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 210px;
  color: var(--muted);
}

.section-label span {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
}

.section-label p {
  margin: 0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.section-label--light {
  color: rgba(255, 255, 255, 0.52);
}

.promise {
  background: var(--cream);
}

.promise-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.6fr);
  gap: 9vw;
  margin: 60px 0 100px;
}

.promise h2,
.section-heading h2,
.customs h2,
.process h2 {
  font-size: clamp(44px, 5.3vw, 82px);
  line-height: 0.98;
}

.promise h2 span,
.section-heading h2 span,
.customs h2 span,
.process h2 span,
.contact h2 span {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.promise-detail {
  align-self: end;
  padding-bottom: 5px;
}

.promise-detail p {
  margin: 0 0 19px;
  color: #465661;
  font-size: 14px;
  line-height: 1.75;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-strip article {
  min-height: 145px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.value-strip article:last-child {
  border-right: 0;
}

.value-strip strong {
  display: block;
  margin-bottom: 28px;
  font-size: clamp(28px, 3vw, 45px);
  letter-spacing: -0.05em;
}

.value-strip span {
  display: block;
  max-width: 180px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.services {
  background: var(--navy);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  align-items: end;
  gap: 30px;
  margin-bottom: 68px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.service-card {
  position: relative;
  display: block;
  min-height: 520px;
  overflow: hidden;
  color: inherit;
  background: #112333;
  text-decoration: none;
}

.service-card:focus-visible {
  z-index: 3;
  outline: 3px solid var(--orange);
  outline-offset: -3px;
}

.service-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.3, 1);
}

.service-card:hover .service-image,
.service-card:focus-visible .service-image {
  transform: scale(1.045);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 12, 19, 0.44), transparent 40%),
    linear-gradient(0deg, rgba(3, 11, 18, 0.97), rgba(3, 11, 18, 0.03) 70%);
}

.service-card--graphic {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(47, 158, 216, 0.2),
      transparent 30%
    ),
    #0b1a27;
}

.service-card--graphic .service-overlay {
  background: linear-gradient(0deg, rgba(3, 11, 18, 0.72), transparent 70%);
}

.service-top,
.service-copy {
  position: absolute;
  z-index: 2;
  right: 32px;
  left: 32px;
}

.service-top {
  top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 800;
}

.service-copy {
  bottom: 33px;
}

.service-copy > p {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-copy h3 {
  margin: 0;
  font-size: clamp(31px, 3.2vw, 48px);
  letter-spacing: -0.045em;
}

.service-description {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 14px;
  max-width: 520px;
  margin-top: 23px;
}

.service-description > span {
  height: 1px;
  margin-top: 8px;
  background: var(--orange);
}

.service-description p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.65;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.service-card:hover .service-card-link,
.service-card:focus-visible .service-card-link {
  color: var(--orange);
}

.route-graphic {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
}

.route-graphic::after {
  content: "";
  position: absolute;
  top: 16%;
  left: 28%;
  width: 46%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(255, 255, 255, 0.025),
    0 0 0 84px rgba(255, 255, 255, 0.02);
}

.route-graphic strong {
  position: absolute;
  top: 30%;
  left: 47%;
  z-index: 2;
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(65px, 8vw, 120px);
  letter-spacing: -0.08em;
  transform: translateX(-50%);
}

.route-graphic small {
  position: absolute;
  top: 18%;
  left: 34px;
  color: rgba(255, 255, 255, 0.33);
  font-size: 8px;
  letter-spacing: 0.2em;
}

.route-dot {
  position: absolute;
  z-index: 3;
  width: 8px;
  height: 8px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(47, 158, 216, 0.22);
}

.route-dot--a {
  top: 23%;
  left: 20%;
}

.route-dot--b {
  top: 35%;
  right: 20%;
}

.route-dot--c {
  top: 60%;
  left: 49%;
}

.route-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(47, 158, 216, 0.05));
  transform-origin: left;
}

.route-line--a {
  top: 24%;
  left: 21%;
  width: 59%;
  transform: rotate(10deg);
}

.route-line--b {
  top: 36%;
  left: 49%;
  width: 31%;
  transform: rotate(105deg);
}

.customs {
  background: var(--cream);
}

.customs-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 720px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.customs-content {
  padding: 65px 6vw 65px 5vw;
}

.customs h2 {
  margin-top: 45px;
}

.customs-intro {
  max-width: 600px;
  margin: 29px 0 32px;
  color: #51616d;
  font-size: 14px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 26px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #33444f;
  font-size: 11px;
  line-height: 1.5;
}

.check-list li span {
  color: var(--orange);
  font-weight: 900;
}

.customs-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 55% 35%,
      rgba(47, 158, 216, 0.2),
      transparent 28%
    ),
    linear-gradient(145deg, #0f2638, #06111b 70%);
}

.customs-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
}

.document-card {
  position: absolute;
  width: min(390px, 68%);
  aspect-ratio: 0.76;
  padding: 34px;
  background: #faf8f1;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
}

.document-card--back {
  top: 18%;
  left: 18%;
  opacity: 0.26;
  transform: rotate(-8deg);
}

.document-card--back span {
  color: #1f394c;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.document-card--back i {
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 24px;
  background: #b7c1c7;
}

.document-card--front {
  top: 13%;
  left: 26%;
  transform: rotate(4deg);
}

.document-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 3px solid var(--ink);
}

.document-head span {
  color: var(--orange);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.document-head small {
  color: #75818a;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.document-row {
  display: flex;
  justify-content: space-between;
  margin-top: 34px;
  padding-bottom: 14px;
  border-bottom: 1px solid #b9c0c4;
}

.document-row span {
  color: #7b858b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.document-row strong {
  color: var(--ink);
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.document-row .approved {
  color: #168850;
}

.barcode {
  width: 72%;
  height: 53px;
  margin-top: 38px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0 2px,
    transparent 2px 5px,
    var(--ink) 5px 6px,
    transparent 6px 10px
  );
}

.customs-stamp {
  position: absolute;
  z-index: 3;
  right: 8%;
  bottom: 9%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 135px;
  height: 135px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  background: rgba(6, 17, 27, 0.92);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transform: rotate(-9deg);
}

.customs-stamp span,
.customs-stamp small {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.customs-stamp strong {
  margin: 6px 0;
  font-size: 22px;
  letter-spacing: 0.08em;
}

.intelligence {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  min-height: 780px;
  overflow: hidden;
  background: #06131e;
  color: var(--white);
}

.intelligence::after {
  content: "INTELLIGENCE";
  position: absolute;
  right: -23px;
  bottom: -10px;
  color: rgba(255, 255, 255, 0.022);
  font-size: 11vw;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.intelligence-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-left: 3vw;
}

.kicker--orange {
  color: var(--orange);
}

.intelligence h2 {
  font-size: clamp(50px, 6vw, 92px);
  line-height: 0.91;
}

.intelligence-content > p:not(.kicker) {
  max-width: 590px;
  margin: 32px 0 29px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
  line-height: 1.8;
}

.intelligence-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.intelligence-tags span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.71);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link--light {
  margin-top: 2px;
}

.intelligence-orbit {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(37vw, 540px);
  aspect-ratio: 1;
  margin-left: 2vw;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(47, 158, 216, 0.85);
}

.orbit--one {
  width: 100%;
  height: 100%;
  animation: orbit 18s linear infinite;
}

.orbit--two {
  width: 71%;
  height: 71%;
  animation: orbit 12s linear infinite reverse;
}

.orbit--three {
  width: 43%;
  height: 43%;
  animation: orbit 8s linear infinite;
}

.orbit-core {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(47, 158, 216, 0.55);
  border-radius: 50%;
  color: var(--orange);
  background: rgba(47, 158, 216, 0.09);
  font-family: Georgia, serif;
  font-size: 43px;
  box-shadow: 0 0 80px rgba(47, 158, 216, 0.14);
}

.industries {
  background: var(--cream);
}

.section-heading--split {
  grid-template-columns: 0.5fr 1.1fr 0.55fr;
  align-items: end;
}

.section-heading--split > p {
  margin: 0;
  color: #51616d;
  font-size: 13px;
  line-height: 1.75;
}

.industry-list {
  border-top: 1px solid var(--line);
}

.industry-list article {
  display: grid;
  grid-template-columns: 0.25fr 1fr auto;
  align-items: center;
  min-height: 105px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}

.industry-list article:hover {
  padding-right: 30px;
  padding-left: 30px;
  color: var(--white);
  background: var(--ink);
}

.industry-list article > span:first-child {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.industry-list article > span:last-child {
  color: var(--orange);
  font-size: 21px;
}

.industry-list h3 {
  margin: 0;
  font-size: clamp(21px, 2.6vw, 35px);
  letter-spacing: -0.035em;
}

.process {
  background: var(--navy-soft);
  color: var(--white);
}

.process-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr;
  align-items: end;
  gap: 10vw;
  margin: 52px 0 75px;
}

.process-heading > p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.75;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.process-grid article {
  position: relative;
  min-height: 315px;
  padding: 27px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article > span:first-child {
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  font-weight: 800;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 38px 0 47px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--orange);
  font-size: 21px;
}

.process-grid h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.65;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  min-height: 620px;
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
}

.contact::before {
  content: "A";
  position: absolute;
  top: -34%;
  right: -2%;
  color: rgba(255, 255, 255, 0.07);
  font-family: Georgia, serif;
  font-size: 54vw;
  line-height: 1;
}

.contact-grid {
  opacity: 0.17;
  mask-image: none;
}

.contact-copy,
.contact-actions {
  position: relative;
  z-index: 2;
}

.contact-copy > p {
  margin: 0 0 27px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.contact h2 {
  font-size: clamp(64px, 8.6vw, 132px);
}

.contact h2 span {
  color: var(--ink);
}

.contact-actions {
  justify-self: end;
  width: min(100%, 460px);
}

.contact-actions > p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.72;
}

.contact .button--primary {
  color: var(--white);
  background: var(--ink);
}

.contact-phone {
  display: inline-block;
  margin-top: 21px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  min-height: 650px;
  padding: 0;
  overflow: hidden;
  background: #edf5fb;
}

.location-map {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background:
    linear-gradient(rgba(11, 47, 87, 0.08), rgba(11, 47, 87, 0.08)), #dce9f2;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 650px;
  border: 0;
  filter: grayscale(0.18) saturate(0.85) contrast(1.03);
}

.location-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset -1px 0 rgba(11, 47, 87, 0.12);
}

.map-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(5, 14, 22, 0.86);
  box-shadow: 0 16px 36px rgba(5, 14, 22, 0.2);
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  backdrop-filter: blur(12px);
}

.map-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #66d48e;
  box-shadow: 0 0 0 5px rgba(102, 212, 142, 0.14);
}

.location-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 6vw;
}

.location-content h2 {
  margin: 44px 0 30px;
  color: var(--ink);
  font-size: clamp(52px, 5.6vw, 88px);
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.location-content h2 span {
  color: var(--blue);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.location-address {
  margin: 0;
  color: rgba(11, 47, 87, 0.74);
  font-size: 15px;
  line-height: 1.75;
}

.location-address strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
}

.location-links {
  display: grid;
  gap: 11px;
  margin-top: 36px;
}

.location-link {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 10px 18px 10px 11px;
  border: 1px solid rgba(11, 47, 87, 0.16);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.location-link:hover {
  border-color: var(--blue);
  background: var(--white);
  color: var(--blue);
  transform: translateX(4px);
}

.location-link-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.location-link-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-link-arrow {
  color: var(--blue);
  font-size: 16px;
}

.calculator-page {
  background: #edf5fb;
}

.calculator-page main {
  min-height: 100vh;
}

.calculator-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  padding: 170px 7vw 95px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 38%,
      rgba(47, 158, 216, 0.2),
      transparent 34%
    ),
    linear-gradient(118deg, #050e16 0%, #07151a 52%, #0b2f57 100%);
  color: var(--white);
}

.calculator-hero::after {
  content: "A";
  position: absolute;
  right: -1.5vw;
  bottom: -28%;
  color: rgba(255, 255, 255, 0.035);
  font-family: Georgia, serif;
  font-size: min(52vw, 690px);
  line-height: 1;
}

.calculator-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(148, 222, 254, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 222, 254, 0.2) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, #000, transparent 86%);
}

.calculator-hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
}

.calculator-hero h1 {
  margin: 30px 0 28px;
  font-size: clamp(62px, 8vw, 118px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.calculator-hero h1 em {
  color: var(--orange-bright);
  font-family: Georgia, serif;
  font-weight: 400;
}

.calculator-hero-content > p:not(.kicker) {
  max-width: 640px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

.calculator-area {
  padding: 82px 5.7vw 110px;
  scroll-margin-top: 96px;
}

.calculator-area .apexdc {
  width: min(1440px, 100%);
}

.calculator-unavailable {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 38px;
  border: 1px solid rgba(11, 47, 87, 0.16);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(11, 47, 87, 0.1);
  color: var(--ink);
}

.calculator-unavailable strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
}

.calculator-unavailable p {
  color: var(--muted);
  line-height: 1.7;
}

.calculator-unavailable a {
  display: inline-block;
  margin-top: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-weight: 800;
}

footer {
  padding: 70px 5.7vw 24px;
  background: #050e16;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 0.8fr 1fr;
  gap: 6vw;
  padding-bottom: 65px;
}

.brand--footer {
  align-self: start;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.brand-logo--footer {
  height: 72px;
  max-width: 100%;
}

.footer-main > p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.7;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.5;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(85, 220, 138, 0.14);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(85, 220, 138, 0);
  }
}

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

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-right: 60px;
  }

  .mobile-menu {
    position: absolute;
    top: 22px;
    right: 3.75vw;
    display: block;
  }

  .mobile-menu summary {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 25px;
    height: 2px;
    margin-left: auto;
    background: var(--ink);
    transition: transform 0.2s ease;
  }

  .mobile-menu summary span:last-child {
    width: 17px;
  }

  .mobile-menu[open] summary span:first-child {
    background: var(--white);
    transform: translateY(4px) rotate(45deg);
  }

  .mobile-menu[open] summary span:last-child {
    width: 25px;
    background: var(--white);
    transform: translateY(-5px) rotate(-45deg);
  }

  .mobile-menu nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: min(390px, 88vw);
    height: 100vh;
    padding: 120px 40px 40px;
    background: var(--navy);
    color: var(--white);
    box-shadow: -20px 0 70px rgba(0, 0, 0, 0.35);
  }

  .mobile-menu nav a {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 21px;
    font-weight: 700;
  }

  .promise-copy,
  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .promise-detail {
    max-width: 680px;
  }

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

  .customs-visual {
    min-height: 600px;
  }

  .intelligence {
    grid-template-columns: 0.8fr 1.2fr;
  }

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

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .process-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

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

  .location-content {
    padding: 74px 5vw;
  }

  .calculator-hero {
    min-height: 600px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 74px;
    padding: 0 20px;
  }

  .brand-logo {
    height: 47px;
  }

  .brand-logo--footer {
    height: 64px;
  }

  .header-cta {
    display: none;
  }

  .customs-detail-link {
    display: flex;
    width: fit-content;
    margin: 18px 0 0;
  }

  .mobile-menu {
    top: 16px;
    right: 18px;
  }

  .hero {
    min-height: 740px;
    height: 100svh;
  }

  .hero-media {
    background:
      linear-gradient(
        90deg,
        rgba(4, 13, 22, 0.95) 0%,
        rgba(4, 13, 22, 0.73) 68%,
        rgba(4, 13, 22, 0.42)
      ),
      linear-gradient(0deg, rgba(5, 15, 24, 0.68), transparent 40%),
      url("images/hero-logistics.webp") 62% center / cover no-repeat;
  }

  .hero-content {
    justify-content: flex-end;
    padding: 120px 21px 106px;
  }

  .hero h1 {
    font-size: clamp(51px, 16vw, 72px);
    line-height: 0.91;
  }

  .hero-copy {
    max-width: 92%;
    margin-top: 28px;
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    margin-top: 28px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero-side-note,
  .hero-status {
    display: none;
  }

  .section-pad {
    padding: 82px 20px;
  }

  .promise-copy {
    margin: 44px 0 65px;
  }

  .promise h2,
  .section-heading h2,
  .customs h2,
  .process h2 {
    font-size: 43px;
  }

  .value-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-strip article:nth-child(2) {
    border-right: 0;
  }

  .value-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    margin-bottom: 45px;
  }

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

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

  .service-top,
  .service-copy {
    right: 21px;
    left: 21px;
  }

  .customs {
    padding-right: 0;
    padding-left: 0;
  }

  .customs-panel {
    border-right: 0;
    border-left: 0;
  }

  .customs-content {
    padding: 48px 20px 60px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .customs-visual {
    min-height: 470px;
  }

  .document-card {
    width: 69%;
    padding: 24px;
  }

  .document-card--back {
    top: 14%;
    left: 12%;
  }

  .document-card--front {
    top: 10%;
    left: 22%;
  }

  .document-row {
    margin-top: 22px;
  }

  .barcode {
    margin-top: 25px;
  }

  .customs-stamp {
    right: 5%;
    width: 105px;
    height: 105px;
  }

  .intelligence {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .intelligence-orbit {
    order: 2;
    width: 88vw;
    margin: 78px 0 -29%;
  }

  .intelligence-content {
    order: 1;
    padding: 0;
  }

  .intelligence h2 {
    font-size: 49px;
  }

  .industry-list article {
    grid-template-columns: 48px 1fr auto;
    min-height: 86px;
    padding: 0 5px;
  }

  .industry-list h3 {
    font-size: 21px;
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 54px;
  }

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

  .process-grid article {
    min-height: auto;
    padding: 25px 18px 35px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .process-icon {
    margin: 28px 0;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 60px;
    min-height: 690px;
  }

  .contact h2 {
    font-size: 71px;
  }

  .contact-actions {
    justify-self: start;
  }

  .location {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .location-content {
    order: 1;
    padding: 72px 20px;
  }

  .location-content h2 {
    margin-top: 36px;
    font-size: 56px;
  }

  .location-map {
    order: 2;
    min-height: 430px;
  }

  .location-map iframe {
    min-height: 430px;
  }

  .map-tag {
    bottom: 18px;
    left: 18px;
  }

  .calculator-hero {
    min-height: 590px;
    padding: 140px 20px 75px;
  }

  .calculator-hero h1 {
    font-size: 59px;
  }

  .calculator-hero-content > p:not(.kicker) {
    font-size: 14px;
  }

  .calculator-area {
    padding: 56px 14px 78px;
  }

  footer {
    padding: 58px 20px 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 9px;
  }
}

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

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