:root {
  --blue: #045cb7;
  --deep: #05264a;
  --ink: #102235;
  --muted: #68788a;
  --soft: #f3f7fb;
  --line: #dce7ef;
  --white: #ffffff;
  --teal: #0a8f84;
  --orange: #ff8a00;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  height: 78px;
  padding: 0 clamp(24px, 5vw, 72px);
  border-bottom: 1px solid rgba(220, 231, 239, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(5, 38, 74, 0.16);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(16px, 2vw, 26px);
  color: #34485d;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.region-switch {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #34485d;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.region-switch a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  transition: color 180ms ease, background 180ms ease;
}

.region-switch a:hover,
.region-switch a[aria-current="page"] {
  color: var(--blue);
  background: rgba(4, 92, 183, 0.08);
}

.region-switch span {
  width: 1px;
  height: 18px;
  background: var(--line);
}

.lang-toggle,
.login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

.login-link {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.42fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  min-height: 680px;
  padding: clamp(76px, 9vw, 116px) clamp(24px, 5vw, 72px) 72px;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(5, 38, 74, 0.92), rgba(5, 38, 74, 0.62) 48%, rgba(5, 38, 74, 0.2)),
    url("https://images.unsplash.com/photo-1542296332-2e4473faf563?auto=format&fit=crop&w=1900&q=84") center / cover;
}

.campaign-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 760px;
  padding: 108px clamp(26px, 6vw, 116px) 178px;
  color: #ffffff;
  background: #051e39;
}

.campaign-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 38, 74, 0.96), rgba(5, 38, 74, 0.72) 50%, rgba(5, 38, 74, 0.38)),
    linear-gradient(180deg, rgba(5, 38, 74, 0.08), rgba(5, 38, 74, 0.42)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 78px);
  content: "";
  animation: heroGridDrift 14s ease-in-out infinite alternate;
}

.campaign-copy,
.hero-search-dock {
  position: relative;
  z-index: 2;
}

.campaign-copy {
  width: min(640px, 100%);
  max-width: 640px;
  animation: heroCopyIn 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(5, 38, 74, 0.12), rgba(5, 38, 74, 0.18)),
    url("https://images.unsplash.com/photo-1542296332-2e4473faf563?auto=format&fit=crop&w=1900&q=84") center / cover;
  opacity: 0.92;
  transform: scale(1.02);
  animation: heroVideoMove 18s ease-in-out infinite alternate;
}

.campaign-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  margin-bottom: 36px;
  padding: 8px 22px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

.mini-logo {
  display: grid;
  width: 44px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #078b81;
  font-weight: 950;
}

.campaign-brand strong {
  color: #102235;
  font-size: 18px;
}

.campaign-brand em {
  color: #4e6377;
  font-style: normal;
  font-weight: 800;
}

.campaign-kicker {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: #078b81;
  font-weight: 900;
}

.hero.campaign-hero h1 {
  max-width: 640px;
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(44px, 4.4vw, 66px);
  font-weight: 900;
  line-height: 1.08;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero.campaign-hero h1 span {
  display: block;
  animation: titleRise 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero.campaign-hero h1 span:nth-child(2) {
  animation-delay: 90ms;
}

.hero.campaign-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 650;
  line-height: 1.65;
  animation: titleRise 820ms cubic-bezier(0.22, 1, 0.36, 1) 160ms both;
}

.promo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.promo-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 6px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  font-weight: 900;
}

.promo-row b {
  color: #8ee5ff;
}

.hero-search-dock {
  position: absolute;
  right: clamp(26px, 5vw, 72px);
  bottom: 28px;
  left: clamp(26px, 5vw, 72px);
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border-radius: 999px;
  background: rgba(4, 116, 151, 0.94);
  box-shadow: 0 24px 50px rgba(3, 31, 54, 0.34);
  animation: dockFloat 5.8s ease-in-out infinite, dockIn 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.dock-input {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 0 26px;
  border-radius: 999px;
  background: #fff;
}

.search-icon {
  width: 28px;
  height: 28px;
  border: 3px solid #8a969f;
  border-radius: 50%;
}

.search-icon::after {
  display: block;
  width: 14px;
  height: 3px;
  margin: 20px 0 0 20px;
  border-radius: 999px;
  background: #8a969f;
  transform: rotate(45deg);
  content: "";
}

.dock-input input {
  min-height: 50px;
  border: 0;
  box-shadow: none;
}

.dock-button {
  min-width: 170px;
  min-height: 64px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #f8b51b;
  font: inherit;
  font-size: 22px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.dock-button:hover {
  transform: translateY(-2px);
  background: #ffc43b;
  box-shadow: 0 14px 24px rgba(248, 181, 27, 0.28);
}

.hero-search-dock a {
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  white-space: nowrap;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-search-dock a:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.hero-search-dock p,
.hero-search-dock [data-tracking-result] {
  display: none;
}

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

.eyebrow,
.section-title span,
.contact-cta span {
  display: inline-block;
  margin-bottom: 14px;
  color: #79d8ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 760;
  line-height: 1.04;
}

.hero p {
  max-width: 760px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

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

.button.light {
  color: var(--blue);
  background: var(--white);
}

.track-panel {
  padding: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  color: var(--ink);
}

.track-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.track-title span {
  color: var(--blue);
  font-weight: 900;
}

.track-title strong {
  font-size: 24px;
}

.track-panel label,
.tracking-search-panel label {
  display: block;
  margin-bottom: 10px;
  color: #3d5167;
  font-weight: 800;
}

.track-row,
.tracking-search-panel div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

input[type="search"] {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  outline: none;
}

input[type="search"]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(4, 92, 183, 0.12);
}

.track-panel p {
  margin: 14px 0 0;
  color: var(--muted);
}

.hero-service-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.hero-service-links a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.hero-service-links a::before {
  grid-row: 1 / 3;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.hero-service-links strong {
  color: var(--ink);
}

.hero-service-links span {
  color: var(--muted);
  font-size: 14px;
}

.mini-result {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mini-result article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding: 14px;
  border-radius: 12px;
  background: var(--soft);
}

.mini-result strong {
  color: var(--ink);
}

.mini-result span {
  color: var(--blue);
  font-weight: 800;
}

.mini-result small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.utility-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.utility-strip a {
  min-height: 112px;
  padding: 26px clamp(20px, 4vw, 46px);
  border-right: 1px solid var(--line);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.utility-strip a:hover {
  z-index: 1;
  background: #f8fbff;
  box-shadow: 0 18px 36px rgba(5, 38, 74, 0.1);
  transform: translateY(-4px);
}

.utility-strip strong,
.utility-strip span {
  display: block;
}

.utility-strip strong {
  color: var(--ink);
  font-size: 22px;
}

.utility-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: clamp(70px, 9vw, 112px) clamp(24px, 5vw, 72px);
}

.section-title {
  margin-bottom: 34px;
}

.section-title span {
  color: var(--blue);
}

.section-title h2,
.contact-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 680;
  line-height: 1.08;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: var(--soft);
}

.metrics article {
  min-height: 150px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.metrics strong {
  display: block;
  color: var(--blue);
  font-size: 38px;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

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

.why-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.why-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(5, 38, 74, 0.12);
}

.why-grid img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.why-grid div {
  padding: 24px;
}

.why-grid h3,
.solution-grid h3,
.product-grid h3,
.notice-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 23px;
}

.why-grid p,
.solution-grid p,
.product-grid p,
.notice-grid p {
  margin: 0;
  color: var(--muted);
}

.network-section,
.services-section,
.tracking-section,
.customer-section {
  background: var(--soft);
}

.network-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: 28px;
}

.network-map-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(8, 91, 138, 0.18);
  background:
    radial-gradient(circle at 78% 22%, rgba(253, 181, 21, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4f9fc 45%, #e9f4f8 100%);
  box-shadow: 0 24px 70px rgba(5, 38, 74, 0.1);
  animation: mapCardGlow 7s ease-in-out infinite alternate;
}

.australia-map {
  position: absolute;
  inset: 24px;
}

.australia-map img {
  position: absolute;
  left: 12%;
  top: 8%;
  width: 76%;
  height: 82%;
  object-fit: contain;
  filter: brightness(0.78) saturate(0.9) drop-shadow(0 18px 26px rgba(5, 38, 74, 0.18));
  animation: mapBreath 8s ease-in-out infinite;
}

.route-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-route {
  fill: none;
  stroke: var(--orange);
  stroke-dasharray: 10 12;
  stroke-linecap: round;
  stroke-width: 4;
  filter: drop-shadow(0 0 8px rgba(245, 164, 0, 0.42));
  animation: routeFlow 2.4s linear infinite;
}

.route-b { animation-delay: -0.7s; }
.route-c { animation-delay: -1.3s; }
.route-d { animation-delay: -1.9s; }

.map-title {
  position: absolute;
  left: 42%;
  top: 42%;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: 0.04em;
  transform: translate(-50%, -50%);
}

.map-origin,
.city-pin {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.24);
}

.map-origin {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--blue);
}

.city-pin::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(253, 181, 21, 0.18);
  content: "";
  animation: pinPulse 2.6s ease-out infinite;
}

.origin-china { left: 7%; top: 20%; }
.darwin { left: 43%; top: 13%; }
.perth { left: 20%; top: 55%; }
.fremantle { left: 17%; top: 64%; }
.brisbane { right: 15%; top: 43%; }
.sydney { right: 12%; top: 61%; }
.melbourne { right: 21%; bottom: 17%; }
.adelaide { left: 56%; bottom: 26%; }
.tasmania { right: 32%; bottom: 5%; }
}

.network-list {
  display: grid;
  gap: 14px;
}

.network-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.network-list article:hover {
  border-color: rgba(4, 92, 183, 0.26);
  box-shadow: 0 18px 40px rgba(5, 38, 74, 0.1);
  transform: translateX(4px);
}

.network-list strong {
  display: block;
  color: var(--blue);
  font-size: 26px;
}

.network-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.solution-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  height: 640px;
  min-height: 0;
  border-radius: 28px;
  background:
    linear-gradient(rgba(4, 21, 34, 0.68), rgba(4, 21, 34, 0.7)),
    url("https://images.unsplash.com/photo-1605745341112-85968b19335b?auto=format&fit=crop&w=1800&q=82") center / cover;
  box-shadow: 0 28px 80px rgba(5, 38, 74, 0.18);
}

.solution-showcase article {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: #ffffff;
  cursor: pointer;
  text-align: center;
  transition: transform 220ms ease, background 220ms ease;
}

.solution-showcase article:nth-child(4n) {
  border-right: 0;
}

.solution-showcase article:nth-child(n + 5) {
  border-bottom: 0;
}

.solution-showcase article::before {
  position: absolute;
  inset: 0;
  background: rgba(5, 16, 24, 0.1);
  content: "";
  transition: background 0.2s ease;
}

.solution-showcase article::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.2), transparent 28%);
  opacity: 0;
  transition: opacity 180ms ease;
  content: "";
}

.solution-showcase article:hover,
.solution-showcase article:focus,
.solution-showcase article.is-active {
  align-items: flex-start;
  justify-content: center;
  background: rgba(0, 142, 134, 0.86);
  text-align: left;
}

.solution-showcase article:hover::before,
.solution-showcase article:focus::before,
.solution-showcase article.is-active::before {
  background: linear-gradient(180deg, rgba(6, 156, 147, 0.18), rgba(4, 116, 132, 0.18));
}

.solution-showcase article:hover::after,
.solution-showcase article:focus::after,
.solution-showcase article.is-active::after {
  opacity: 1;
}

.solution-showcase article:hover .solution-icon,
.solution-showcase article:focus .solution-icon,
.solution-showcase article.is-active .solution-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-color: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  transform: translateY(-4px) scale(1.04);
}

.solution-showcase article:hover h3,
.solution-showcase article:focus h3,
.solution-showcase article.is-active h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.3vw, 34px);
}

.solution-showcase article:hover p,
.solution-showcase article:focus p,
.solution-showcase article.is-active p {
  display: block;
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.62;
}

.solution-showcase article:hover a,
.solution-showcase article:focus a,
.solution-showcase article.is-active a {
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--orange);
  font-weight: 900;
}

.solution-showcase article:focus-visible {
  outline: 4px solid rgba(253, 181, 21, 0.8);
  outline-offset: -6px;
}

.solution-showcase .solution-icon,
.solution-showcase h3,
.solution-showcase p,
.solution-showcase a {
  position: relative;
  z-index: 1;
}

.solution-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  color: #ffc33a;
  font-size: 20px;
  font-weight: 950;
  transition: transform 220ms ease, border-color 220ms ease, color 220ms ease;
}

.solution-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-showcase h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.18;
}

.solution-showcase p,
.solution-showcase a {
  display: none;
}

.solution-showcase .featured {
  align-items: flex-start;
  justify-content: center;
  background: rgba(0, 142, 134, 0.86);
  text-align: left;
}

.solution-showcase .featured::before {
  background: linear-gradient(180deg, rgba(6, 156, 147, 0.18), rgba(4, 116, 132, 0.18));
}

.solution-showcase .featured .solution-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-color: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  font-size: 16px;
}

.solution-showcase .featured h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.3vw, 34px);
}

.solution-showcase .featured p {
  display: block;
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.62;
}

.solution-showcase .featured a {
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--orange);
  font-weight: 900;
}

.product-grid,
.tools-grid,
.notice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-grid article,
.notice-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-grid article {
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
}

.product-grid article:hover,
.notice-grid article:hover {
  border-color: rgba(4, 92, 183, 0.24);
  box-shadow: 0 18px 42px rgba(5, 38, 74, 0.1);
  transform: translateY(-4px);
}

.product-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-weight: 900;
}

.tools-section {
  background: var(--deep);
}

.tools-section .section-title h2 {
  color: var(--white);
}

.tools-section .section-title span {
  color: #8bd7ff;
}

.tools-grid a {
  min-height: 150px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.tools-grid a:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.tools-grid strong,
.tools-grid span {
  display: block;
}

.tools-grid strong {
  font-size: 24px;
}

.tools-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.tracking-search-panel {
  max-width: 940px;
  margin-bottom: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.tracking-search-panel:focus-within {
  box-shadow: 0 18px 44px rgba(4, 92, 183, 0.12);
  transform: translateY(-2px);
}

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

.tracking-guide article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tracking-guide article:hover {
  border-color: rgba(4, 92, 183, 0.24);
  box-shadow: 0 18px 42px rgba(5, 38, 74, 0.1);
  transform: translateY(-4px);
}

.tracking-guide span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-weight: 900;
}

.tracking-guide strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 23px;
}

.tracking-guide p {
  margin: 0;
  color: var(--muted);
}

.waybill-result {
  margin-bottom: 22px;
}

.tracking-empty {
  margin-bottom: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--muted);
  background: var(--white);
  font-weight: 800;
}

.tracking-empty.is-error,
.hero-search-dock p.is-error {
  color: #b42318;
}

.waybill-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.waybill-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.waybill-head h3 {
  margin: 0 0 4px;
  font-size: clamp(28px, 4vw, 42px);
}

.waybill-head p {
  margin: 0;
  font-weight: 900;
}

.signed-badge {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  color: #08756d;
  background: #dff6f0;
  font-weight: 900;
}

.waybill-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.waybill-meta span {
  color: var(--muted);
  font-weight: 800;
}

.waybill-meta strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0 0 0 36px;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 9px;
  width: 2px;
  background: var(--line);
  content: "";
}

.timeline li {
  position: relative;
}

.timeline li::before {
  position: absolute;
  left: -35px;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 4px solid #dff6f0;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.timeline time {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.timeline strong {
  display: block;
  margin: 4px 0;
  font-size: 20px;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--ink);
  background: #eaf3f8;
  font-weight: 900;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.status {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  color: #08756d;
  background: #dff6f0;
  font-weight: 900;
}

.compliance-band {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 34px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(110deg, var(--deep), var(--blue));
}

.compliance-band span {
  color: #bde9ff;
  font-weight: 900;
}

.compliance-band h2 {
  margin: 10px 0 0;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
}

.compliance-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  margin-inline: calc(clamp(24px, 5vw, 72px) * -1);
  padding: 12px 0;
}

.logo-marquee::before,
.logo-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(60px, 10vw, 150px);
  content: "";
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--soft), transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--soft), transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: logoScroll 34s linear infinite;
}

.logo-track.reverse {
  animation-direction: reverse;
  animation-duration: 38s;
}

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

.logo-pill {
  display: grid;
  min-width: 220px;
  height: 82px;
  place-items: center;
  padding: 0 30px;
  border-radius: 999px;
  color: #30343b;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(5, 38, 74, 0.09);
  font-size: 25px;
  font-weight: 760;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.logo-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(5, 38, 74, 0.14);
}

.mark-blue { color: #1593cf; font-weight: 900; }
.mark-serif { font-weight: 400; }
.mark-red { color: #ec1b3c; font-weight: 900; }
.mark-dark { color: #111; font-size: 22px; font-weight: 900; }
.mark-spaced { color: #222; font-size: 20px; font-weight: 500; letter-spacing: 0.16em; }
.mark-orange { color: #ff7900; font-weight: 900; }
.mark-navy { color: #064879; font-size: 29px; font-weight: 900; }
.mark-black { color: #000; font-size: 26px; letter-spacing: 0.14em; }
.mark-gold { color: #bda563; font-style: italic; font-weight: 400; }
.mark-heavy { color: #000; font-size: 30px; font-weight: 950; font-style: italic; }
.mark-thin { color: #111; font-weight: 300; letter-spacing: 0.14em; }
.mark-red-circle { min-width: 82px; width: 82px; color: #fff; background: #ef123f; font-weight: 900; }
.mark-sky { color: #149add; font-size: 32px; font-weight: 900; }
.mark-orange-text { color: #f05f1d; font-size: 28px; font-weight: 950; }
.mark-silver { color: #4b4d52; font-size: 32px; font-style: italic; text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.12); }

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(64px, 8vw, 96px) clamp(24px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(5, 38, 74, 0.94), rgba(5, 38, 74, 0.62)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1600&q=82") center / cover;
}

.contact-cta h2,
.contact-cta p {
  color: var(--white);
}

.contact-cta p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) 1fr;
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  padding: 48px clamp(24px, 8vw, 132px);
  color: rgba(255, 255, 255, 0.72);
  background: #0b3478;
}

.site-footer strong {
  color: var(--white);
  font-size: 20px;
}

.site-footer p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 700;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
}

.footer-policy-links a {
  position: relative;
  padding: 0 16px;
  color: var(--white);
  font-weight: 850;
}

.footer-policy-links a:first-child {
  padding-left: 0;
}

.footer-policy-links a + a::before {
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.75);
  content: "|";
}

.footer-quick {
  display: inline-flex;
  margin-top: 14px;
  color: #ffffff;
  font-weight: 900;
}

.subpage-main {
  background: #ffffff;
}

.subpage-hero {
  position: relative;
  min-height: 210px;
  background:
    linear-gradient(90deg, rgba(8, 35, 78, 0.18), rgba(8, 35, 78, 0.04)),
    url("https://images.unsplash.com/photo-1569154941061-e231b4725ef1?auto=format&fit=crop&w=1900&q=82") center 42% / cover;
}

.subpage-title-panel {
  position: absolute;
  left: clamp(24px, 6vw, 72px);
  bottom: 0;
  width: min(520px, calc(100% - 48px));
  padding: 34px 54px;
  color: #ffffff;
  background: rgba(23, 59, 130, 0.9);
}

.subpage-title-panel h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.08;
}

.subpage-title-panel p {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

.subpage-content {
  padding: clamp(72px, 8vw, 112px) clamp(24px, 6vw, 72px);
  color: #8a949c;
  font-size: 18px;
  line-height: 1.85;
}

.subpage-content .content-kicker {
  margin: 0 0 12px;
  color: #8a949c;
  font-size: 18px;
}

.subpage-content h2 {
  margin: 42px 0 20px;
  color: #7d878e;
  font-size: 19px;
  font-weight: 900;
}

.subpage-content p {
  max-width: 1780px;
  margin: 0 0 18px;
}

.service-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 44px;
}

.service-actions a {
  display: block;
  min-height: 150px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: #f7fbfd;
}

.motion-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
}

.motion-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-actions strong,
.service-actions span {
  display: block;
}

.service-actions strong {
  color: var(--blue);
  font-size: 24px;
}

.service-actions span {
  margin-top: 10px;
  color: var(--muted);
}

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

@keyframes routeFlow {
  to {
    stroke-dashoffset: -44;
  }
}

@keyframes heroVideoMove {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-18px, 10px, 0);
  }
}

@keyframes heroGridDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 0 0, 0 0, 78px 0;
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dockIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dockFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

@keyframes pinPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 181, 21, 0.36);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(253, 181, 21, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(253, 181, 21, 0);
  }
}

@keyframes mapBreath {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.018);
  }
}

@keyframes mapCardGlow {
  from {
    box-shadow: 0 24px 70px rgba(5, 38, 74, 0.1);
  }
  to {
    box-shadow: 0 26px 76px rgba(4, 92, 183, 0.18);
  }
}

@media (max-width: 1100px) {
  .site-nav {
    display: none;
  }

  .hero,
  .campaign-hero,
  .network-layout,
  .compliance-band {
    grid-template-columns: 1fr;
  }

  .campaign-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-bottom: 190px;
  }

  .hero-search-dock {
    grid-template-columns: 1fr auto;
    border-radius: 28px;
  }

  .hero-search-dock a {
    font-size: 18px;
  }

  .metrics,
  .why-grid,
  .product-grid,
  .tracking-guide,
  .tools-grid,
  .notice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
    height: 920px;
  }

  .solution-showcase article:nth-child(2n) {
    border-right: 0;
  }

  .solution-showcase article:nth-child(n + 5) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  }

  .solution-showcase article:nth-child(n + 7) {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: auto;
    padding-block: 14px;
  }

  .brand small,
  .login-link {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .region-switch {
    font-size: 12px;
  }

  .region-switch a {
    padding: 0 10px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 60px;
  }

  .campaign-hero {
    padding-top: 72px;
    padding-bottom: 240px;
  }

  .campaign-brand {
    display: none;
  }

  .hero.campaign-hero h1 {
    max-width: 92vw;
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.12;
  }

  .hero.campaign-hero p {
    max-width: 92vw;
    font-size: 17px;
    line-height: 1.7;
  }

  .promo-row {
    gap: 10px;
  }

  .hero-search-dock {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .dock-input {
    min-height: 58px;
  }

  .dock-button {
    width: 100%;
  }

  .track-row,
  .tracking-search-panel div,
  .utility-strip,
  .metrics,
  .why-grid,
  .product-grid,
  .tracking-guide,
  .tools-grid,
  .notice-grid,
  .waybill-meta {
    grid-template-columns: 1fr;
  }

  .solution-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
    min-height: auto;
    border-radius: 22px;
  }

  .solution-showcase article {
    min-height: 220px;
    border-right: 0;
  }

  .solution-showcase article:nth-child(n) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  }

  .solution-showcase article:last-child {
    border-bottom: 0;
  }

  .logo-pill {
    min-width: 170px;
    height: 68px;
    font-size: 21px;
  }

  .hero-actions,
  .contact-cta,
  .site-footer,
  .waybill-head {
    display: block;
  }

  .button {
    width: 100%;
    margin-bottom: 10px;
  }

  .contact-cta .button,
  .footer-policy-links {
    margin-top: 20px;
  }

  .footer-policy-links a {
    padding-block: 6px;
  }

  .subpage-title-panel {
    left: 0;
    width: 100%;
    padding: 28px 24px;
  }

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

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

  .motion-item {
    opacity: 1;
    transform: none;
  }
}
