:root {
  --promise-indigo: #3c436c;
  --ocean-steel: #5e819e;
  --deep-ink: #16243a;
  --port-teal: #00a6a6;
  --signal-gold: #f2b544;
  --fog-white: #f3f6f7;
  --navy-950: var(--deep-ink);
  --navy-900: var(--deep-ink);
  --navy-800: var(--promise-indigo);
  --blue-700: var(--promise-indigo);
  --blue-600: var(--port-teal);
  --blue-500: var(--port-teal);
  --cyan-400: var(--port-teal);
  --ink: var(--deep-ink);
  --muted: #637181;
  --line: #d9e1e4;
  --surface: var(--fog-white);
  --white: #fff;
  --container: min(1180px, calc(100% - 48px));
  --shadow: 0 18px 50px rgba(22, 36, 58, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "SF Pro Text", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}

img {
  max-width: 100%;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
}

.site-header.scrolled {
  position: fixed;
  animation: header-in 0.35s ease;
}

@keyframes header-in {
  from {
    transform: translateY(-100%);
  }
}

.header-bar {
  height: 36px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 24, 41, 0.22);
}

.site-header.scrolled .header-bar {
  display: none;
}

.header-bar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-bar__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-bar__links a,
.header-bar__links > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.header-system-link {
  color: var(--white);
  font-weight: 600;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.header-system-link:hover {
  opacity: 1;
}

.header-bar__links svg {
  width: 13px;
  height: 13px;
}

.header-bar button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.main-nav {
  height: 86px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.25s, height 0.25s, box-shadow 0.25s;
}

.site-header.scrolled .main-nav {
  height: 74px;
  color: var(--ink);
  border-color: transparent;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(5, 29, 51, 0.09);
  backdrop-filter: blur(16px);
}

.main-nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 44px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  width: 68px;
  height: 56px;
  padding: 4px;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(4, 22, 37, 0.13);
}

.brand__logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__text strong {
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.brand__text small {
  margin-top: 4px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  opacity: 0.68;
}

.desktop-nav {
  height: 100%;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  height: 3px;
  background: var(--cyan-400);
  transition: left 0.25s, right 0.25s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  opacity: 1;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  right: 0;
  left: 0;
}

.nav-system-link {
  margin-left: 18px;
  margin-right: 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.88;
  transition: opacity 0.2s;
}

.nav-system-link:hover {
  opacity: 1;
}

.nav-cta {
  min-width: 146px;
  height: 46px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  background: var(--blue-600);
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--blue-500);
  transform: translateY(-2px);
}

.nav-cta svg {
  width: 17px;
  height: 17px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-slide,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1s ease, transform 7s ease;
}

.hero-slide.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 23, 40, 0.88) 0%, rgba(4, 23, 40, 0.64) 44%, rgba(4, 23, 40, 0.15) 78%),
    linear-gradient(0deg, rgba(4, 23, 40, 0.42), transparent 50%);
}

.hero-grid {
  z-index: 3;
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, black, transparent 76%);
}

.hero__content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 100px;
}

.hero__copy {
  max-width: 730px;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--cyan-400);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.eyebrow--blue {
  color: var(--blue-600);
}

.hero h1 {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(58px, 6.3vw, 88px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: var(--cyan-400);
  font-style: normal;
}

.hero__lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 17px;
  line-height: 1.9;
}

.hero__actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
}

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

.button--primary:hover {
  background: var(--blue-500);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.hero__badge {
  align-self: flex-end;
  width: 190px;
  height: 190px;
  margin-bottom: 130px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 44, 76, 0.56);
  backdrop-filter: blur(16px);
}

.hero__badge span {
  color: var(--cyan-400);
  font-size: 39px;
  font-weight: 800;
}

.hero__badge p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.7;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 48px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, width 0.2s, border-radius 0.2s;
}

.hero-dots button.active {
  width: 34px;
  border-color: var(--cyan-400);
  border-radius: 10px;
  background: var(--cyan-400);
}

.hero-index {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.hero-index span {
  font-size: 17px;
  font-weight: 800;
}

.hero-index i {
  width: 62px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-index b {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.stats {
  position: relative;
  z-index: 6;
  margin-top: -1px;
  color: var(--white);
  background: var(--navy-900);
}

.stats__grid {
  min-height: 154px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  position: relative;
  padding: 32px 34px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.stat strong {
  min-width: 82px;
  color: var(--white);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat sup {
  color: var(--cyan-400);
  font-size: 20px;
  font-weight: 700;
  vertical-align: top;
}

.stat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  padding: 118px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 120px;
  align-items: start;
}

.section-heading h2,
.section-top h2,
.network h2,
.contact h2 {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(39px, 4vw, 56px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.about__content {
  padding-top: 45px;
}

.about__lead {
  margin: 0;
  color: #425367;
  font-size: 18px;
  line-height: 2;
}

.about__features {
  margin: 42px 0 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.about__features > div {
  min-width: 0;
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 17px;
  border-bottom: 1px solid var(--line);
}

.about__features > div:nth-child(even) {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

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

.about__features svg {
  width: 40px;
  height: 40px;
  color: var(--blue-600);
}

.about__features span {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about__features strong {
  font-size: 16px;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 700;
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}

.text-link:hover svg {
  transform: translateX(5px);
}

.services {
  background: var(--surface);
}

.operations {
  background: var(--white);
}

.route-hero { position: relative; min-height: 620px; padding: 190px 0 100px; overflow: hidden; color: var(--white); background: var(--navy-950); }
.route-hero > img, .route-hero::after { position: absolute; inset: 0; }
.route-hero > img { width: 100%; height: 100%; object-fit: cover; }
.route-hero::after { content: ""; background: linear-gradient(90deg, rgba(4,23,40,.92), rgba(4,23,40,.55) 62%, rgba(4,23,40,.25)); }
.route-hero__content { position: relative; z-index: 2; max-width: 780px; }
.route-hero h1 { margin: 0; font-size: clamp(46px, 5.5vw, 76px); line-height: 1.15; }
.route-hero__lead { max-width: 680px; margin: 26px 0 36px; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.9; }
.route-intro, .route-process, .route-faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.route-copy p, .route-copy li, .route-faq p { color: var(--muted); line-height: 1.9; }
.destination-grid, .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.destination-grid span, .process-grid article { padding: 20px; border: 1px solid var(--line); background: var(--white); }
.process-grid article span { color: var(--blue-600); font-size: 12px; font-weight: 800; }
.process-grid h3 { margin: 16px 0 10px; font-size: 17px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.route-cta { padding: 70px 0; color: var(--white); background: var(--navy-900); }
.route-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.route-cta h2 { margin: 0 0 12px; font-size: 34px; }
.route-cta p { margin: 0; color: rgba(255,255,255,.65); }
.route-scenes { background: var(--surface); }
.route-scenes__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; }
.route-scenes figure { height: 360px; margin: 0; position: relative; overflow: hidden; background: var(--navy-900); }
.route-scenes img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease; }
.route-scenes figure:hover img { transform: scale(1.025); }
.route-scenes figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 20px; color: var(--white); font-weight: 700; background: linear-gradient(transparent, rgba(4,23,40,.9)); }
.image-credit { margin: 14px 0 0; color: var(--muted); font-size: 11px; text-align: right; }

.query-page { background: var(--surface); }
.query-hero { padding: 160px 0 68px; color: var(--white); background: var(--navy-900); }
.query-hero h1 { max-width: 800px; margin: 0; font-size: 48px; line-height: 1.2; }
.query-hero > .container > p:last-child { max-width: 680px; margin: 24px 0 0; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.8; }
.query-layout { max-width: 960px; }
.query-tool { padding: 38px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.query-tool__heading { margin-bottom: 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.query-tool__heading h2 { margin: 0; font-size: 30px; }
.query-tool__heading > span { color: var(--blue-600); font-size: 12px; font-weight: 700; }
.query-tool form { display: grid; grid-template-columns: .8fr 1.2fr auto; gap: 14px; align-items: end; }
.query-tool label { min-width: 0; display: flex; flex-direction: column; gap: 9px; }
.query-tool label > span { font-size: 13px; font-weight: 700; }
.query-tool input, .query-tool select { width: 100%; height: 54px; padding: 0 14px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: var(--white); outline: 0; }
.query-tool input:focus, .query-tool select:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(8,116,209,.1); }
.query-tool .button { white-space: nowrap; }
.query-tool__note { margin: 20px 0 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.query-result { margin-top: 42px; padding: 38px; border-left: 4px solid var(--blue-600); background: var(--white); box-shadow: var(--shadow); outline: 0; }
.query-result__header { margin-bottom: 25px; display: flex; justify-content: space-between; }
.query-result__header small { color: var(--blue-600); font-size: 12px; font-weight: 700; }
.query-result__header h2 { margin: 7px 0 0; font-size: 30px; letter-spacing: 0; }
.query-result__message { max-width: 700px; margin: 0 0 24px; color: var(--muted); line-height: 1.8; }
.query-result__links { display: flex; flex-wrap: wrap; gap: 12px; }
.query-result__grid { margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.query-result__grid > div { min-width: 0; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.query-result__grid dt { color: var(--muted); font-size: 11px; }
.query-result__grid dd { margin: 7px 0 0; overflow-wrap: anywhere; font-size: 16px; font-weight: 700; }
.query-history { margin-top: 30px; }
.query-history h3 { margin: 0 0 14px; font-size: 18px; }
.query-history__table-wrap { overflow-x: auto; border: 1px solid var(--line); }
.query-history table { width: 100%; min-width: 900px; border-collapse: collapse; font-size: 12px; }
.query-history th,
.query-history td { padding: 12px 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.query-history th:last-child,
.query-history td:last-child { border-right: 0; }
.query-history tbody tr:last-child td { border-bottom: 0; }
.query-history th { background: var(--surface); color: var(--muted); font-size: 11px; white-space: nowrap; }
.query-result__source { margin: 18px 0 0; color: var(--muted); font-size: 11px; }
.captcha-panel { max-width: 580px; }
.captcha-panel h3 { margin: 0 0 10px; font-size: 20px; }
.captcha-panel__prompt { margin: 0 0 16px; color: var(--ink); font-size: 16px; font-weight: 700; }
.captcha-image { width: 100%; max-width: 500px; aspect-ratio: 5 / 3; position: relative; display: block; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 0; background: var(--surface); cursor: crosshair; }
.captcha-image img { width: 100%; height: 100%; display: block; object-fit: fill; pointer-events: none; user-select: none; }
.captcha-image__markers { position: absolute; inset: 0; pointer-events: none; }
.captcha-image__markers > span { width: 28px; height: 28px; position: absolute; display: grid; place-items: center; transform: translate(-50%, -50%); border: 2px solid var(--white); border-radius: 50%; color: var(--white); background: var(--blue-600); box-shadow: 0 1px 5px rgba(4,23,40,.45); font-size: 12px; font-weight: 800; }
.captcha-panel__actions { min-height: 42px; margin: 10px 0 14px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.captcha-panel__progress { color: var(--muted); font-size: 12px; }
.captcha-reset { padding: 8px 0; border: 0; color: var(--blue-600); background: transparent; cursor: pointer; font: inherit; font-size: 13px; font-weight: 700; }
.captcha-reset:disabled { opacity: .45; cursor: default; }
.captcha-submit { min-width: 150px; }
.captcha-panel__feedback { margin: 14px 0 0; color: var(--muted); font-size: 13px; }
.dcb-captcha__form { display: grid; grid-template-columns: auto minmax(150px, 220px) auto; align-items: center; gap: 12px; }
.dcb-captcha__image { width: 153px; height: 78px; display: block; border: 1px solid var(--line); background: var(--white); image-rendering: auto; }
.dcb-captcha__form input { width: 100%; height: 54px; padding: 0 14px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: var(--white); font-size: 18px; letter-spacing: 0; text-transform: uppercase; outline: 0; }
.dcb-captcha__form input:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(8,116,209,.1); }
.dcb-captcha__footer { min-height: 34px; margin-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.dcb-captcha__footer .captcha-panel__feedback { margin: 0; white-space: pre-line; }

.operations__grid {
  height: 620px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.operations__item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--navy-900);
}

.operations__item--large {
  grid-row: 1 / -1;
}

.operations__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.operations__item:hover img {
  transform: scale(1.025);
}

.operations__item figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  background: rgba(5, 29, 51, 0.9);
  backdrop-filter: blur(10px);
}

.operations__item figcaption strong {
  flex: 0 0 auto;
  font-size: 18px;
}

.operations__item figcaption span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.6;
  text-align: right;
}

.section-top {
  margin-bottom: 56px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 80px;
}

.section-top > p {
  max-width: 500px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d8e2ea;
  border: 1px solid #d8e2ea;
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  transition: transform 0.3s, box-shadow 0.3s, z-index 0.3s;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(7, 40, 68, 0.15);
}

.service-card__number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #a9b8c5;
  font-size: 12px;
  font-weight: 700;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-top: 45px;
  color: var(--blue-600);
  stroke-width: 1.35;
}

.service-card h3 {
  margin: 25px 0 14px;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 23px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.service-card > a {
  margin-top: auto;
  padding-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 700;
}

.service-card > a svg {
  width: 18px;
  height: 18px;
}

.service-card--image {
  min-height: 440px;
  padding: 0;
  color: var(--white);
}

.service-card--image > img,
.service-card__shade,
.service-card__content {
  position: absolute;
  inset: 0;
}

.service-card--image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s;
}

.service-card--image:hover > img {
  transform: scale(1.06);
}

.service-card__shade {
  background: linear-gradient(0deg, rgba(4, 27, 46, 0.92), rgba(4, 27, 46, 0.08) 80%);
}

.service-card__content {
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.service-card--image .service-card__number {
  color: rgba(255, 255, 255, 0.7);
}

.service-card--image .service-card__icon {
  margin-top: auto;
  color: var(--cyan-400);
}

.service-card--image h3 {
  margin: 18px 0 10px;
}

.service-card--image p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card--image a {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: var(--white);
  transition: color 0.2s, background 0.2s;
}

.service-card--image a:hover {
  color: var(--navy-900);
  background: var(--white);
}

.network {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.network__image,
.network__overlay,
.network__pattern {
  position: absolute;
  inset: 0;
}

.network__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.network__overlay {
  background:
    linear-gradient(90deg, rgba(5, 28, 49, 0.98) 0%, rgba(5, 28, 49, 0.86) 47%, rgba(5, 28, 49, 0.44)),
    linear-gradient(rgba(5, 28, 49, 0.3), rgba(5, 28, 49, 0.65));
}

.network__pattern {
  opacity: 0.16;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: linear-gradient(90deg, transparent 36%, black);
}

.network__content {
  position: relative;
  z-index: 2;
  min-height: 690px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.network__copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 15px;
  line-height: 1.95;
}

.network__routes {
  position: relative;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.network__routes::before,
.network__routes::after {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.network__routes::after {
  inset: 28%;
}

.route {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.route i {
  width: 10px;
  height: 10px;
  border: 2px solid var(--cyan-400);
  border-radius: 50%;
  background: var(--navy-900);
  box-shadow: 0 0 0 7px rgba(70, 201, 232, 0.13);
}

.route--1 {
  top: 48%;
  left: 62%;
  color: var(--white);
}

.route--2 {
  top: 38%;
  left: 8%;
}

.route--3 {
  top: 20%;
  right: 22%;
}

.route--4 {
  right: 9%;
  bottom: 27%;
}

.route--5 {
  right: 4%;
  bottom: 48%;
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.industry-card {
  position: relative;
  min-height: 430px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.3s, box-shadow 0.3s, color 0.3s, background 0.3s;
}

.industry-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border: 32px solid rgba(8, 116, 209, 0.05);
  border-radius: 50%;
}

.industry-card:hover,
.industry-card--accent {
  color: var(--white);
  border-color: var(--navy-900);
  background: var(--navy-900);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.industry-card > span {
  position: absolute;
  top: 30px;
  right: 32px;
  color: #afbbc6;
  font-size: 12px;
  font-weight: 700;
}

.industry-card__icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  font-size: 18px;
  font-weight: 800;
  border: 1px solid #bcd1e3;
  border-radius: 50%;
  transition: color 0.3s, border-color 0.3s;
}

.industry-card:hover .industry-card__icon,
.industry-card--accent .industry-card__icon {
  color: var(--cyan-400);
  border-color: rgba(70, 201, 232, 0.58);
}

.industry-card h3 {
  margin: 48px 0 16px;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 24px;
}

.industry-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  transition: color 0.3s;
}

.industry-card:hover p,
.industry-card--accent p {
  color: rgba(255, 255, 255, 0.65);
}

.industry-card ul {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.industry-card li {
  padding: 7px 10px;
  color: #52677a;
  font-size: 11px;
  background: #edf3f7;
  transition: color 0.3s, background 0.3s;
}

.industry-card:hover li,
.industry-card--accent li {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.1);
}

.faq {
  background: var(--surface);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
  align-items: start;
}

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

.faq__list details {
  border-bottom: 1px solid var(--line);
}

.faq__list summary {
  min-height: 76px;
  padding: 20px 44px 20px 0;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

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

.faq__list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--blue-600);
  font-size: 20px;
  font-weight: 400;
}

.faq__list details[open] summary::after {
  content: "-";
}

.faq__list details > p {
  max-width: 720px;
  margin: -4px 44px 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.contact {
  padding-top: 0;
}

.contact__panel {
  position: relative;
  min-height: 620px;
  padding: 76px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 45, 78, 0.98), rgba(7, 32, 54, 0.98)),
    url("./assets/warehouse.webp") center/cover;
}

.contact__panel::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(70, 201, 232, 0.06);
  border-radius: 50%;
}

.contact__copy,
.quote-form {
  position: relative;
  z-index: 1;
}

.contact__copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 28px 0 40px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.9;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__details a,
.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact__details svg {
  width: 24px;
  height: 24px;
  color: var(--cyan-400);
}

.contact__details span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__details small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.contact__details strong {
  font-size: 15px;
}

.wechat-contact {
  margin-top: 28px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wechat-contact img {
  width: 124px;
  height: auto;
  flex: 0 0 auto;
  display: block;
  border: 5px solid var(--white);
  border-radius: 4px;
  background: var(--white);
}

.wechat-contact div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wechat-contact small {
  color: var(--cyan-400);
  font-size: 11px;
  font-weight: 700;
}

.wechat-contact strong {
  font-size: 18px;
}

.wechat-contact p {
  max-width: 250px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.7;
}

.quote-form {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(2, 18, 31, 0.24);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.quote-form label {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-form label > span {
  color: #42566b;
  font-size: 12px;
  font-weight: 600;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: #f8fafb;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.quote-form input {
  height: 48px;
  padding: 0 14px;
}

.quote-form textarea {
  padding: 13px 14px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(22, 136, 237, 0.1);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #9aa8b5;
}

.button--dark {
  width: 100%;
  color: var(--white);
  border: 0;
  background: var(--navy-900);
}

.button--dark:hover {
  background: var(--blue-700);
}

.form-note {
  margin: 12px 0 0;
  color: #9aa7b3;
  font-size: 10px;
  text-align: center;
}

.inquiry-result {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid #dbe5ed;
  background: #f4f8fb;
}

.inquiry-result[hidden] {
  display: none;
}

.inquiry-result:focus {
  outline: 3px solid rgba(22, 136, 237, 0.16);
  outline-offset: 2px;
}

.inquiry-result h3 {
  margin: 0;
  font-size: 18px;
}

.inquiry-result > p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.inquiry-result__email {
  width: 100%;
  min-height: 46px;
  color: var(--white);
  background: var(--blue-600);
}

.inquiry-result__copy {
  width: 100%;
  min-height: 44px;
  margin-top: 10px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font-weight: 700;
}

.inquiry-result__copy:hover {
  border-color: var(--blue-500);
  color: var(--blue-600);
}

.inquiry-result__wechat {
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.inquiry-result__wechat img {
  width: 112px;
  height: auto;
  flex: 0 0 auto;
  border: 4px solid var(--white);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(5, 29, 51, 0.1);
}

.inquiry-result__wechat span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.inquiry-result__wechat strong {
  font-size: 15px;
}

.inquiry-result__wechat small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.site-footer {
  color: rgba(255, 255, 255, 0.67);
  background: #041522;
}

.footer__top {
  padding: 72px 0 58px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.brand--light {
  color: var(--white);
}

.footer__brand > p {
  max-width: 300px;
  margin: 26px 0 0;
  font-size: 13px;
  line-height: 1.8;
}

.footer__links {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.5fr;
  gap: 60px;
}

.footer__links > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer__links h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 14px;
}

.footer__links a,
.footer__links p {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--cyan-400);
}

.footer__contact p {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 10px;
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--cyan-400);
}

.footer__bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
}

.footer__bottom a {
  color: inherit;
}

.footer__bottom a:hover {
  color: var(--cyan-400);
}

.footer__compact-links {
  padding: 38px 0 30px;
}

.footer__compact-links > div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__compact-links h3 {
  margin: 0 12px 0 0;
  color: var(--white);
  font-size: 14px;
}

.footer__compact-links a {
  font-size: 12px;
  transition: color 0.2s;
}

.footer__compact-links a:hover {
  color: var(--cyan-400);
}

.toast {
  position: fixed;
  z-index: 50;
  right: 28px;
  bottom: 28px;
  width: min(360px, calc(100% - 40px));
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast strong {
  font-size: 14px;
}

.toast span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root {
    --container: min(100% - 40px, 980px);
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .nav-cta {
    display: none;
  }

  .hero__badge {
    display: none;
  }

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

  .stat:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .stat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .about__grid {
    gap: 70px;
  }

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

  .network__content {
    grid-template-columns: 1fr 0.9fr;
    gap: 50px;
  }

  .contact__panel {
    padding: 55px;
    gap: 48px;
  }

  .footer__top {
    grid-template-columns: 0.6fr 1.4fr;
    gap: 60px;
  }

  .footer__links {
    gap: 36px;
  }

  .destination-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .route-scenes__grid { grid-template-columns: repeat(2, 1fr); }
  .route-scenes figure:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root {
    --container: calc(100% - 32px);
  }

  body.menu-open {
    overflow: hidden;
  }

  .header-bar,
  .desktop-nav,
  .nav-system-link {
    display: none;
  }

  .site-header,
  .site-header.scrolled {
    position: fixed;
  }

  .main-nav,
  .site-header.scrolled .main-nav {
    height: 70px;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(4, 22, 37, 0.88);
    box-shadow: none;
    backdrop-filter: blur(16px);
  }

  .main-nav__inner {
    justify-content: space-between;
  }

  .brand__logo {
    width: 56px;
    height: 46px;
  }

  .brand__text strong {
    font-size: 17px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: grid;
    place-items: center;
    color: var(--white);
    background: transparent;
  }

  .menu-toggle .close-icon {
    display: none;
  }

  .menu-open .menu-toggle .menu-icon {
    display: none;
  }

  .menu-open .menu-toggle .close-icon {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    inset: 70px 0 0;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 0;
    color: var(--white);
    background: rgba(4, 22, 37, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  }

  .menu-open .mobile-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 19px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
  }

  .hero {
    min-height: 720px;
    height: 88vh;
  }

  .hero__content {
    padding-top: 70px;
  }

  .hero h1 {
    font-size: clamp(45px, 12vw, 68px);
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 260px;
  }

  .hero-controls {
    bottom: 28px;
  }

  .section {
    padding: 88px 0;
  }

  .about__grid,
  .network__content,
  .faq__grid,
  .contact__panel {
    grid-template-columns: 1fr;
  }

  .about__grid {
    gap: 20px;
  }

  .faq__grid {
    gap: 34px;
  }

  .about__content {
    padding-top: 10px;
  }

  .section-top {
    align-items: start;
    flex-direction: column;
    gap: 22px;
  }

  .network__content {
    padding: 80px 0;
  }

  .network__routes {
    height: 360px;
  }

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

  .industry-card {
    min-height: 380px;
  }

  .contact {
    padding-top: 0;
  }

  .contact__panel {
    width: 100%;
    padding: 64px 28px;
    gap: 45px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__links {
    grid-template-columns: repeat(3, 1fr);
  }

  .route-intro, .route-process, .route-faq { grid-template-columns: 1fr; gap: 34px; }
  .route-cta__inner { align-items: flex-start; flex-direction: column; }
  .query-tool form { grid-template-columns: 1fr 1fr; }
  .query-tool form .button { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .destination-grid, .process-grid, .route-scenes__grid { grid-template-columns: 1fr; }
  .route-scenes figure, .route-scenes figure:last-child { height: 280px; grid-column: auto; }
  .route-hero { min-height: 580px; padding-top: 150px; }
  .route-hero h1 { font-size: 42px; }
  .query-hero { padding: 130px 0 58px; }
  .query-hero h1 { font-size: 40px; }
  .query-tool { padding: 26px 20px; }
  .query-tool form { grid-template-columns: 1fr; }
  .query-tool form .button { grid-column: auto; }
  .query-tool__heading { align-items: flex-start; flex-direction: column; }
  .query-result { padding: 26px 20px; }
  .query-result__grid { grid-template-columns: 1fr; }
  .query-result__links { align-items: stretch; flex-direction: column; }
  .captcha-submit { width: 100%; }
  .dcb-captcha__form { grid-template-columns: 1fr; }
  .dcb-captcha__image { width: 153px; height: 78px; }
  .dcb-captcha__form .button { width: 100%; }
  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(4, 23, 40, 0.9), rgba(4, 23, 40, 0.55));
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero__lead {
    line-height: 1.75;
  }

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

  .stat {
    padding: 25px 16px;
    align-items: start;
    flex-direction: column;
    gap: 9px;
  }

  .stat strong {
    font-size: 35px;
  }

  .section-heading h2,
  .section-top h2,
  .network h2,
  .contact h2 {
    font-size: 36px;
  }

  .about__lead {
    font-size: 16px;
  }

  .about__features {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about__features > div,
  .about__features > div:nth-child(even) {
    padding: 20px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .about__features > div:last-child {
    border-bottom: 0;
  }

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

  .operations__grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .operations__item,
  .operations__item--large {
    min-height: 280px;
    grid-row: auto;
  }

  .operations__item--large {
    min-height: 420px;
  }

  .operations__item figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .operations__item figcaption span {
    text-align: left;
  }

  .service-card,
  .service-card--image {
    min-height: 380px;
  }

  .network__routes {
    height: 300px;
  }

  .route--2 {
    left: 1%;
  }

  .route--3 {
    top: 14%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-form {
    padding: 25px 20px;
  }

  .wechat-contact {
    align-items: flex-start;
  }

  .wechat-contact img {
    width: 116px;
  }

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

  .footer__contact {
    grid-column: 1 / -1;
    margin-top: 20px;
  }

  .footer__bottom {
    padding: 20px 0;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .footer__compact-links > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@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;
  }
}

/* 2026 VI system */
*,
*::before,
*::after {
  letter-spacing: 0 !important;
}

body {
  font-family: Inter, "Alibaba PuHuiTi 3.0", "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.header-bar {
  height: 32px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(22, 36, 58, 0.54);
}

.header-bar__inner {
  height: 32px;
}

.header-bar__inner > span {
  color: var(--signal-gold);
  font-weight: 700;
}

.main-nav,
.site-header.scrolled .main-nav {
  height: 82px;
}

.site-header.scrolled .main-nav {
  color: var(--deep-ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.brand {
  min-width: 218px;
  gap: 12px;
}

.brand__logo {
  width: 62px;
  height: 50px;
  padding: 5px;
  display: grid;
  place-items: center;
  overflow: visible;
  border-radius: 4px;
  background: var(--fog-white);
}

.brand__logo img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: static;
  object-fit: contain;
  clip-path: none;
  transform: none;
}

.brand__text {
  gap: 1px;
}

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

.brand__text small {
  font-size: 9px;
  font-weight: 700;
}

.brand__text > span {
  color: var(--ocean-steel);
  font-size: 9px;
}

.site-header:not(.scrolled) .brand__text > span,
.brand--light .brand__text > span {
  color: rgba(255, 255, 255, 0.7);
}

.desktop-nav {
  gap: 24px;
}

.desktop-nav a {
  font-size: 13px;
}

.desktop-nav a::after {
  background: var(--port-teal);
}

.nav-system-link {
  color: inherit;
  border-color: currentColor;
}

.nav-system-link:hover {
  color: var(--port-teal);
  border-color: var(--port-teal);
  background: transparent;
}

.nav-cta,
.button--primary,
.inquiry-result__email {
  color: var(--white);
  background: var(--port-teal);
}

.nav-cta:hover,
.button--primary:hover,
.inquiry-result__email:hover {
  color: var(--deep-ink);
  background: var(--signal-gold);
}

.button {
  min-height: 48px;
  border-radius: 4px;
}

.hero {
  height: 86svh;
  min-height: 690px;
  max-height: 820px;
  background: var(--deep-ink);
}

.hero-slide img {
  object-position: center 46%;
}

.hero-overlay {
  background: rgba(22, 36, 58, 0.72);
}

.hero-grid,
.hero__badge,
.hero-controls {
  display: none;
}

.hero__content {
  min-height: 100%;
  padding-top: 114px;
  grid-template-columns: 8fr 4fr;
}

.hero__copy {
  max-width: 790px;
}

.eyebrow {
  gap: 12px;
  color: var(--port-teal);
  font-size: 11px;
}

.eyebrow::before {
  width: 32px;
  background: var(--signal-gold);
}

.eyebrow--blue {
  color: var(--promise-indigo);
}

.hero h1 {
  max-width: 760px;
  margin-top: 24px;
  font-size: 68px;
  line-height: 1.14;
}

.hero__lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.75;
}

.hero__proof {
  margin: 30px 0 0;
  padding-left: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 3px solid var(--signal-gold);
}

.hero__proof strong {
  color: var(--white);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 27px;
}

.hero__proof span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.55;
}

.hero__actions {
  margin-top: 34px;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.56);
}

.stats {
  color: var(--deep-ink);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.stats__grid {
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  min-height: 148px;
  padding: 30px 34px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-top: 4px solid var(--promise-indigo);
}

.stat + .stat {
  border-left-color: var(--line);
}

.stat--teal {
  border-top-color: var(--port-teal);
}

.stat--gold {
  border-top-color: var(--signal-gold);
}

.stat strong {
  color: var(--deep-ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 42px;
}

.stat sup {
  color: var(--promise-indigo);
  font-size: 13px;
}

.stat p {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 108px 0;
}

.section-heading h2,
.section-top h2,
.network h2,
.contact h2,
.expertise h2,
.digital h2 {
  font-size: 44px;
  line-height: 1.28;
}

.about__grid {
  grid-template-columns: 5fr 7fr;
  gap: 90px;
}

.about__lead {
  font-size: 17px;
  line-height: 2;
}

.about__features {
  margin-top: 38px;
}

.about__features > div {
  min-height: 100px;
}

.about__features svg {
  color: var(--port-teal);
}

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

.services__grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 380px;
  padding: 30px;
  border-top: 4px solid var(--ocean-steel);
  border-radius: 4px;
  box-shadow: none;
}

.service-card:hover {
  border-color: var(--port-teal);
  transform: translateY(-4px);
}

.service-card--accent,
.service-card--accent:hover {
  color: var(--white);
  border-color: var(--signal-gold);
  background: var(--deep-ink);
}

.service-card--accent p,
.service-card--accent .service-card__number {
  color: rgba(255, 255, 255, 0.7);
}

.service-card--accent a,
.service-card--accent .service-card__icon {
  color: var(--signal-gold);
}

.service-card__icon {
  color: var(--port-teal);
}

.expertise {
  padding: 0;
  background: var(--white);
}

.expertise__grid {
  width: 100%;
  max-width: 1440px;
  display: grid;
  grid-template-columns: 7fr 5fr;
}

.expertise__image {
  min-height: 690px;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--fog-white);
}

.expertise__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
}

.expertise__image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 18px;
  color: var(--white);
  background: rgba(22, 36, 58, 0.86);
  font-size: 10px;
}

.expertise__copy {
  padding: 78px 70px;
}

.expertise__lead {
  margin: 26px 0 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.expertise__list {
  margin-bottom: 30px;
  border-top: 1px solid var(--line);
}

.expertise__list > div {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 34px 100px 1fr;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

.expertise__list span {
  color: var(--port-teal);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
}

.expertise__list strong {
  font-size: 14px;
}

.expertise__list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.expertise .button--dark {
  width: auto;
  background: var(--promise-indigo);
}

.digital {
  color: var(--white);
  background: var(--deep-ink);
}

.digital__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  gap: 80px;
}

.digital__copy > p:not(.eyebrow) {
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.9;
}

.digital__copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.digital__copy li {
  padding: 13px 0 13px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.digital__copy li::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 19px;
  left: 0;
  background: var(--port-teal);
  transform: rotate(45deg);
}

.digital-board {
  min-height: 430px;
  border-radius: 4px;
  color: var(--deep-ink);
  background: var(--white);
}

.digital-board__head {
  min-height: 64px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
}

.digital-board__head strong {
  padding: 8px 12px;
  border-radius: 3px;
  color: var(--deep-ink);
  background: var(--signal-gold);
  font-family: inherit;
  font-size: 11px;
}

.digital-board__body {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 28px;
}

.digital-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.digital-timeline li {
  min-height: 60px;
  padding-left: 34px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
}

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

.digital-timeline li:last-child::before {
  display: none;
}

.digital-timeline li > span {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 3px;
  left: 4px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.digital-timeline li.complete > span,
.digital-timeline li.current > span {
  border-color: var(--port-teal);
  background: var(--port-teal);
}

.digital-timeline li.current > span {
  box-shadow: 0 0 0 5px rgba(0, 166, 166, 0.14);
}

.digital-timeline li.complete::before,
.digital-timeline li.current::before {
  background: var(--port-teal);
}

.digital-timeline strong {
  color: var(--deep-ink);
  font-size: 13px;
}

.digital-timeline time {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.digital-board__aside {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--fog-white);
}

.digital-board__aside small {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 10px;
}

.digital-board__aside strong {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 24px;
}

.digital-board__aside .teal {
  margin-top: 8px;
  color: var(--port-teal);
}

.digital-board__aside p {
  margin: 24px 0 0;
  font-size: 12px;
}

.digital-board__aside span {
  margin-top: auto;
  color: var(--muted);
  font-size: 11px;
}

.network {
  min-height: 620px;
}

.network__overlay,
.route-hero::after {
  background: rgba(22, 36, 58, 0.78);
}

.network__pattern {
  display: none;
}

.network__content {
  min-height: 620px;
  grid-template-columns: 7fr 5fr;
}

.network__routes,
.network__routes::before,
.network__routes::after {
  border: 0;
  border-radius: 0;
}

.network__routes {
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.network__routes::before,
.network__routes::after {
  display: none;
}

.route {
  min-height: 96px;
  padding: 22px;
  position: static;
  color: var(--white);
  background: rgba(22, 36, 58, 0.84);
  font-size: 13px;
}

.route i {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 0;
  background: var(--port-teal);
  box-shadow: none;
  transform: rotate(45deg);
}

.route--3 i {
  background: var(--signal-gold);
}

.industry-card {
  min-height: 390px;
  border-radius: 4px;
}

.industry-card::after {
  display: none;
}

.industry-card:hover,
.industry-card--accent {
  background: var(--promise-indigo);
}

.industry-card__icon {
  border-radius: 4px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.values {
  background: var(--fog-white);
}

.values__grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-item {
  min-height: 300px;
  padding: 30px 0;
  border-top: 4px solid var(--ocean-steel);
}

.value-item--primary {
  border-top-color: var(--port-teal);
}

.value-item:nth-child(3) {
  border-top-color: var(--signal-gold);
}

.value-item span {
  color: var(--promise-indigo);
  font-size: 11px;
  font-weight: 700;
}

.value-item h3 {
  max-width: 330px;
  margin: 34px 0 18px;
  font-size: 23px;
  line-height: 1.5;
}

.value-item p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.faq {
  background: var(--white);
}

.faq__list summary::after {
  color: var(--port-teal);
}

.contact__panel {
  border-radius: 4px;
  background: var(--promise-indigo);
}

.contact__panel::before {
  display: none;
}

.contact__details svg,
.wechat-contact small,
.footer__contact svg {
  color: var(--port-teal);
}

.quote-form,
.inquiry-result,
.query-tool,
.query-result {
  border-radius: 4px;
}

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

.button--dark:hover {
  background: var(--promise-indigo);
}

.site-footer {
  background: var(--deep-ink);
}

.route-hero {
  min-height: 610px;
  background: var(--deep-ink);
}

.route-hero h1,
.query-hero h1 {
  font-size: 54px;
}

.route-hero__proof {
  margin: -10px 0 30px;
  padding-left: 14px;
  border-left: 3px solid var(--signal-gold);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.route-footer__brand {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.route-footer__brand span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.route-scenes figure,
.destination-grid span,
.process-grid article,
.query-tool,
.query-result {
  border-radius: 4px;
}

.query-hero {
  background: var(--deep-ink);
}

.query-hub-section {
  padding-top: 74px;
  background: var(--fog-white);
}

.query-hub-heading {
  margin-bottom: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
}

.query-hub-heading h2 {
  margin: 12px 0 0;
  font-size: 38px;
  line-height: 1.25;
}

.query-hub-heading > p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.query-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.query-choice-card {
  height: 470px;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  color: var(--white);
  background: var(--deep-ink);
  isolation: isolate;
}

.query-choice-card > img,
.query-choice-card__shade,
.query-choice-card__content {
  position: absolute;
  inset: 0;
}

.query-choice-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.query-choice-card__shade {
  z-index: 1;
  background: rgba(22, 36, 58, 0.76);
}

.query-choice-card__content {
  z-index: 2;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.query-choice-card__number {
  position: absolute;
  top: 34px;
  right: 36px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
}

.query-choice-card__type {
  color: var(--port-teal);
  font-size: 11px;
  font-weight: 700;
}

.query-choice-card h2 {
  margin: 14px 0 12px;
  font-size: 34px;
  line-height: 1.2;
}

.query-choice-card p {
  max-width: 430px;
  margin: 0;
  padding-right: 66px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.85;
}

.query-choice-card__action {
  width: 46px;
  height: 46px;
  position: absolute;
  right: 36px;
  bottom: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: color 0.2s, background 0.2s;
}

.query-choice-card__action svg {
  width: 19px;
  height: 19px;
}

.query-choice-card:hover > img {
  transform: scale(1.035);
}

.query-choice-card:hover .query-choice-card__action {
  color: var(--deep-ink);
  background: var(--signal-gold);
}

.query-choice-card:focus-visible {
  outline: 3px solid var(--port-teal);
  outline-offset: 4px;
}

.official-query-back {
  color: var(--port-teal);
  font-size: 13px;
  font-weight: 700;
}

.customs-filing-section {
  padding-top: 74px;
  background: var(--fog-white);
}

.customs-filing-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.customs-filing-heading h2 {
  margin: 12px 0 16px;
  font-size: 38px;
  line-height: 1.25;
}

.customs-filing-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.customs-filing-frame-shell {
  width: 100%;
  max-width: 960px;
  position: relative;
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.customs-filing-frame-bar {
  min-height: 54px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--deep-ink);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.customs-filing-status {
  color: var(--port-teal);
  font-size: 12px;
  font-weight: 600;
}

.customs-filing-frame-loading {
  position: absolute;
  z-index: 2;
  top: 55px;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.96);
  font-size: 14px;
}

.customs-filing-frame-loading[hidden] {
  display: none;
}

.customs-filing-spinner {
  width: 28px;
  height: 28px;
  display: block;
  border: 3px solid rgba(0, 166, 166, 0.18);
  border-top-color: var(--port-teal);
  border-radius: 50%;
  animation: customs-filing-spin 0.8s linear infinite;
}

@keyframes customs-filing-spin {
  to {
    transform: rotate(360deg);
  }
}

.customs-filing-frame-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}

.customs-filing-frame-shell iframe {
  width: 100%;
  min-width: 0;
  height: 920px;
  display: block;
  border: 0;
  background: var(--white);
}

.customs-filing-note {
  max-width: 960px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.hs-code-query-form {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto 0;
}

.hs-code-query-form > label:first-child {
  display: block;
  margin-bottom: 9px;
  color: var(--deep-ink);
  font-size: 13px;
  font-weight: 700;
}

.hs-code-query-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.hs-code-query-row input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--deep-ink);
  background: var(--white);
  outline: 0;
  font: inherit;
}

.hs-code-query-row input:focus {
  border-color: var(--port-teal);
  box-shadow: 0 0 0 3px rgba(0, 166, 166, 0.12);
}

.hs-code-query-row .button {
  min-height: 54px;
  white-space: nowrap;
}

.hs-code-query-option {
  width: fit-content;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
}

.hs-code-query-option input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--port-teal);
}

.hs-code-results {
  width: 100%;
  max-width: 1000px;
  margin: 34px auto 0;
  padding: 30px;
  scroll-margin-top: 110px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: var(--shadow);
  outline: 0;
}

.hs-code-results[hidden] {
  display: none;
}

.hs-code-results__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.hs-code-results__heading h2 {
  margin: 10px 0 0;
  font-size: 30px;
}

.hs-code-results__page-count {
  color: var(--port-teal);
  font-size: 12px;
  font-weight: 700;
}

.hs-code-results__summary,
.hs-code-results__message {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.hs-code-results--loading {
  min-height: 190px;
  display: grid;
  align-content: center;
}

.hs-code-results--error {
  border-left: 4px solid #b53b3b;
}

.hs-code-results__table {
  margin-top: 24px;
  border-top: 1px solid var(--deep-ink);
}

.hs-code-result-row {
  min-height: 74px;
  padding: 15px 12px;
  display: grid;
  grid-template-columns: 120px minmax(240px, 2fr) 90px 100px 90px 90px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.hs-code-result-row--header {
  min-height: 48px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: var(--muted);
  background: var(--fog-white);
  font-size: 11px;
  font-weight: 700;
}

.hs-code-result-row__cell {
  min-width: 0;
  color: var(--deep-ink);
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 1.65;
}

.hs-code-result-row__code {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}

.hs-code-result-row__code-button {
  min-height: 32px;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  border: 0;
  color: var(--promise-indigo);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.hs-code-result-row__code-button strong {
  color: var(--promise-indigo);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
}

.hs-code-result-row__code-button:hover strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hs-code-result-row__code-button:focus-visible {
  outline: 2px solid var(--port-teal);
  outline-offset: 3px;
}

.hs-code-result-row__code-button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.hs-code-result-row__expired {
  color: #b53b3b;
  font-size: 10px;
  font-weight: 700;
}

.hs-code-result-row__name small {
  margin-top: 3px;
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.hs-code-pagination {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.hs-code-pagination > span {
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
}

.hs-code-pagination .button {
  min-width: 92px;
  min-height: 42px;
  padding: 0 16px;
}

.hs-code-pagination .button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.hs-code-detail-dialog {
  width: min(1040px, calc(100% - 48px));
  max-width: none;
  max-height: calc(100dvh - 48px);
  margin: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--deep-ink);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(10, 21, 36, 0.28);
}

.hs-code-detail-dialog::backdrop {
  background: rgba(10, 21, 36, 0.68);
}

.hs-code-detail-dialog__shell {
  height: min(820px, calc(100dvh - 48px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.hs-code-detail-dialog__header {
  padding: 28px 32px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.hs-code-detail-dialog__header h2 {
  margin: 9px 0 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 30px;
}

.hs-code-detail-dialog__header p {
  min-height: 20px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hs-code-detail-dialog__close {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--deep-ink);
  background: var(--white);
  cursor: pointer;
}

.hs-code-detail-dialog__close:hover,
.hs-code-detail-dialog__close:focus-visible {
  color: var(--white);
  background: var(--promise-indigo);
}

.hs-code-detail-dialog__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.hs-code-detail-dialog__body {
  min-height: 0;
  padding: 0 32px 32px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.hs-code-detail-dialog__body--loading,
.hs-code-detail-dialog__body--error {
  padding: 32px;
  display: grid;
  align-content: center;
}

.hs-code-detail-dialog__message {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hs-code-detail-dialog__body--error .hs-code-detail-dialog__message {
  color: #b53b3b;
}

.hs-code-detail-section {
  padding-top: 28px;
}

.hs-code-detail-section h3 {
  margin: 0;
  font-size: 17px;
}

.hs-code-detail-section__rows {
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid var(--deep-ink);
}

.hs-code-detail-section--compact .hs-code-detail-section__rows {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hs-code-detail-section__rows > div {
  min-width: 0;
  min-height: 48px;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.hs-code-detail-section--compact .hs-code-detail-section__rows > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.hs-code-detail-section__rows dt,
.hs-code-detail-section__rows dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  line-height: 1.65;
}

.hs-code-detail-section__rows dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.hs-code-detail-section__rows dd {
  color: var(--deep-ink);
  font-size: 12px;
}

.hs-code-detail-dialog__note {
  margin: 0;
  padding: 14px 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--fog-white);
  font-size: 11px;
  line-height: 1.6;
}

.query-result {
  border-left-color: var(--port-teal);
}

.query-result__header small,
.query-tool__heading > span,
.captcha-reset {
  color: var(--port-teal);
}

@media (min-width: 1001px) {
  .customs-filing-frame-viewport {
    overflow-x: hidden;
  }

  .customs-filing-frame-shell iframe {
    width: 1120px;
    min-width: 1120px;
  }
}

@media (max-width: 1180px) {
  .brand {
    min-width: 188px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .nav-system-link {
    display: none;
  }

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

  .query-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expertise__copy {
    padding: 64px 46px;
  }
}

@media (max-width: 820px) {
  .main-nav,
  .site-header.scrolled .main-nav {
    height: 70px;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(22, 36, 58, 0.96);
  }

  .brand {
    min-width: 0;
  }

  .brand__logo {
    width: 54px;
    height: 44px;
    padding: 4px;
  }

  .brand__logo img {
    width: 100%;
    height: 100%;
  }

  .brand__text > span {
    display: none;
  }

  .mobile-nav {
    background: rgba(22, 36, 58, 0.99);
  }

  .hero {
    height: 86svh;
    min-height: 650px;
    max-height: 760px;
  }

  .hero__content {
    padding-top: 90px;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 50px;
  }

  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat {
    min-height: 170px;
    padding: 24px 18px;
  }

  .about__grid,
  .expertise__grid,
  .digital__grid,
  .network__content {
    grid-template-columns: 1fr;
  }

  .expertise__image {
    min-height: 480px;
  }

  .expertise__copy {
    padding: 64px 28px;
  }

  .digital__grid {
    gap: 50px;
  }

  .network__content {
    min-height: auto;
  }

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

  .query-hub-heading,
  .customs-filing-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .query-choice-grid {
    grid-template-columns: 1fr;
  }

  .query-choice-card {
    height: 390px;
  }

  .customs-filing-frame-shell iframe {
    height: 940px;
  }

  .hs-code-result-row--header {
    display: none;
  }

  .hs-code-result-row {
    padding: 18px 14px;
    grid-template-columns: 100px minmax(0, 1fr);
    align-items: start;
    gap: 10px 14px;
  }

  .hs-code-result-row__cell {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
  }

  .hs-code-result-row__cell::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
  }

  .hs-code-result-row__code {
    align-items: start;
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .hs-code-result-row__code-button,
  .hs-code-result-row__code .hs-code-result-row__expired {
    grid-column: 2;
  }

  .hs-code-result-row__name small {
    grid-column: 2;
  }

  .hs-code-detail-section--compact .hs-code-detail-section__rows {
    grid-template-columns: minmax(0, 1fr);
  }

  .hs-code-detail-section--compact .hs-code-detail-section__rows > div:nth-child(odd) {
    border-right: 0;
  }

  .route-footer__brand {
    padding: 28px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .value-item {
    min-height: 0;
  }
}

@media (max-width: 580px) {
  .hero {
    min-height: 670px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero__lead {
    font-size: 14px;
  }

  .hero__proof {
    margin-top: 24px;
  }

  .hero__proof strong {
    font-size: 23px;
  }

  .hero__actions {
    max-width: none;
  }

  .stats__grid,
  .services__grid,
  .values__grid {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 112px;
    padding: 22px 20px;
  }

  .stat + .stat {
    border-left: 0;
    border-top-width: 4px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .section-top h2,
  .network h2,
  .contact h2,
  .expertise h2,
  .digital h2 {
    font-size: 34px;
  }

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

  .expertise__image {
    min-height: 360px;
  }

  .expertise__list > div {
    grid-template-columns: 30px 1fr;
  }

  .expertise__list p {
    grid-column: 2;
  }

  .digital-board__body {
    grid-template-columns: 1fr;
  }

  .digital-board__aside {
    min-height: 220px;
  }

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

  .route {
    min-height: 70px;
  }

  .route-hero h1,
  .query-hero h1 {
    font-size: 38px;
  }

  .query-hub-section,
  .customs-filing-section {
    padding-top: 58px;
  }

  .query-hub-heading h2,
  .customs-filing-heading h2 {
    font-size: 31px;
  }

  .query-choice-card {
    height: 350px;
  }

  .query-choice-card__content {
    padding: 28px 24px;
  }

  .query-choice-card__number {
    top: 26px;
    right: 24px;
  }

  .query-choice-card h2 {
    font-size: 29px;
  }

  .query-choice-card p {
    padding-right: 54px;
    font-size: 13px;
  }

  .query-choice-card__action {
    right: 24px;
    bottom: 28px;
    width: 42px;
    height: 42px;
  }

  .customs-filing-frame-shell {
    margin-top: 28px;
  }

  .hs-code-query-row {
    grid-template-columns: 1fr;
  }

  .hs-code-query-row .button {
    width: 100%;
    justify-content: center;
  }

  .hs-code-results {
    margin-top: 28px;
    padding: 22px 16px;
  }

  .hs-code-results__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hs-code-results__heading h2 {
    font-size: 26px;
  }

  .hs-code-result-row {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .hs-code-result-row__code {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .hs-code-pagination {
    justify-content: space-between;
  }

  .hs-code-detail-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
  }

  .hs-code-detail-dialog__shell {
    height: calc(100dvh - 16px);
  }

  .hs-code-detail-dialog__header {
    padding: 22px 18px 18px;
    gap: 14px;
  }

  .hs-code-detail-dialog__header h2 {
    font-size: 24px;
  }

  .hs-code-detail-dialog__close {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .hs-code-detail-dialog__body {
    padding: 0 18px 24px;
  }

  .hs-code-detail-dialog__body--loading,
  .hs-code-detail-dialog__body--error {
    padding: 24px 18px;
  }

  .hs-code-detail-section__rows > div {
    padding-right: 4px;
    padding-left: 4px;
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 10px;
  }

  .hs-code-detail-dialog__note {
    padding: 12px 18px;
  }

  .customs-filing-frame-bar {
    min-height: 52px;
    padding: 0 14px;
  }

  .customs-filing-frame-shell iframe {
    min-width: 960px;
    height: 1100px;
  }

  .contact__panel {
    border-radius: 0;
  }
}

/* Ningbo HaiGang EDI account access */
.button--outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button--outline:hover {
  color: var(--blue-600);
  border-color: var(--blue-600);
}

.ningbo-auth { margin-top: 22px; padding: 38px; border-top: 3px solid var(--blue-600); background: var(--white); box-shadow: var(--shadow); }
.ningbo-auth[hidden] { display: none; }
.ningbo-auth__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.ningbo-auth__header h2 { margin: 10px 0 0; font-size: 29px; line-height: 1.25; }
.ningbo-auth__badge { flex: 0 0 auto; padding: 7px 10px; color: var(--blue-600); border: 1px solid rgba(8,116,209,.3); font-size: 11px; font-weight: 800; }
.ningbo-auth__disclosure { max-width: 760px; margin: 18px 0 28px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.ningbo-auth__tabs { display: flex; border-bottom: 1px solid var(--line); }
.ningbo-auth__tab { min-height: 48px; padding: 0 22px; border: 0; border-bottom: 2px solid transparent; color: var(--muted); background: transparent; cursor: pointer; font: inherit; font-size: 14px; font-weight: 800; }
.ningbo-auth__tab:hover, .ningbo-auth__tab.is-active { color: var(--blue-600); border-bottom-color: var(--blue-600); }
.ningbo-auth__tab:focus-visible { outline: 3px solid rgba(8,116,209,.18); outline-offset: -3px; }
.ningbo-auth__panel { padding-top: 28px; }
.ningbo-auth__panel[hidden] { display: none; }
.ningbo-auth__form { margin: 0; }
.ningbo-auth__fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 20px; }
.ningbo-auth__fields label, .ningbo-slider-field { min-width: 0; display: flex; flex-direction: column; gap: 9px; }
.ningbo-auth__fields label > span, .ningbo-slider-field legend { color: var(--ink); font-size: 13px; font-weight: 700; }
.ningbo-auth__fields input:not([type="range"]), .ningbo-auth__fields select { width: 100%; height: 52px; padding: 0 14px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: var(--white); font: inherit; outline: 0; }
.ningbo-auth__fields input:not([type="range"]):focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(8,116,209,.1); }
.ningbo-auth__field--wide, .ningbo-slider-field { grid-column: 1 / -1; }
.ningbo-captcha-input, .ningbo-sms-input { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
.ningbo-captcha-image { width: 142px; height: 52px; padding: 0; overflow: hidden; border: 1px solid var(--line); border-left: 0; background: var(--surface); cursor: pointer; }
.ningbo-captcha-image img { width: 100%; height: 100%; display: block; object-fit: fill; }
.ningbo-sms-input { gap: 10px; }
.ningbo-sms-input .button { min-width: 126px; height: 52px; padding: 0 16px; }
.ningbo-slider-field { margin: 0; padding: 0; border: 0; }
.ningbo-slider-field legend { margin-bottom: 9px; padding: 0; }
.ningbo-slider-stage { width: min(100%, 400px); aspect-ratio: 10 / 3; position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.ningbo-slider-stage__background { width: 100%; height: 100%; display: block; object-fit: fill; }
.ningbo-slider-stage__piece { width: 7.5%; height: 25%; position: absolute; top: 0; left: 0; object-fit: fill; pointer-events: none; filter: drop-shadow(0 1px 2px rgba(4,23,40,.45)); }
.ningbo-slider-control { width: min(100%, 400px); display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 14px; }
.ningbo-slider-control input[type="range"] { width: 100%; accent-color: var(--blue-600); }
.ningbo-captcha-refresh { padding: 7px 0; border: 0; color: var(--blue-600); background: transparent; cursor: pointer; font: inherit; font-size: 12px; font-weight: 800; }
.ningbo-slider-field small { color: var(--muted); font-size: 12px; line-height: 1.6; }
.ningbo-agreement { margin-top: 20px; display: flex; align-items: flex-start; gap: 10px; color: var(--muted); cursor: pointer; font-size: 12px; line-height: 1.7; }
.ningbo-agreement input { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--blue-600); }
.ningbo-auth__actions { margin-top: 24px; display: flex; align-items: center; gap: 18px; }
.ningbo-auth__actions .button { width: auto; min-width: 190px; flex: 0 0 auto; }
.ningbo-auth__feedback { color: var(--muted); font-size: 13px; line-height: 1.6; }
.ningbo-auth__feedback.is-error { color: #b42318; }
.ningbo-session { min-height: 76px; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 22px; border: 1px solid var(--line); background: var(--surface); }
.ningbo-session[hidden] { display: none; }
.ningbo-session > div { display: flex; flex-direction: column; gap: 6px; }
.ningbo-session strong { color: var(--ink); font-size: 16px; }
.ningbo-session span { color: var(--muted); font-size: 12px; }
.ningbo-session .button { min-width: 120px; }

@media (max-width: 580px) {
  .ningbo-auth { padding: 28px 20px; }
  .ningbo-auth__header { flex-direction: column; gap: 14px; }
  .ningbo-auth__header h2 { font-size: 25px; }
  .ningbo-auth__fields { grid-template-columns: 1fr; }
  .ningbo-auth__field--wide, .ningbo-slider-field { grid-column: auto; }
  .ningbo-auth__tab { flex: 1 1 50%; padding: 0 10px; }
  .ningbo-captcha-input { grid-template-columns: minmax(0, 1fr) 118px; }
  .ningbo-captcha-image { width: 118px; }
  .ningbo-sms-input { grid-template-columns: minmax(0, 1fr) 112px; gap: 8px; }
  .ningbo-sms-input .button { min-width: 0; padding: 0 8px; font-size: 12px; }
  .ningbo-auth__actions { align-items: stretch; flex-direction: column; }
  .ningbo-auth__actions .button { width: 100%; min-width: 0; }
  .ningbo-session { align-items: stretch; flex-direction: column; }
  .ningbo-session .button { width: 100%; }
}

/* Shipping schedule, tracking, and port-code query */
.shipping-query-section { padding-top: 74px; background: var(--surface); }
.shipping-query-layout { max-width: 1120px; }
.shipping-query-heading { margin-bottom: 28px; }
.shipping-query-tabs { display: flex; flex-wrap: wrap; gap: 0; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.shipping-query-tab { min-height: 48px; padding: 0 24px; border: 0; border-bottom: 2px solid transparent; color: var(--muted); background: transparent; font-size: 14px; font-weight: 700; cursor: pointer; }
.shipping-query-tab:hover, .shipping-query-tab.is-active { color: var(--blue-600); border-bottom-color: var(--blue-600); }
.shipping-query-panel { margin-top: 0; }
.shipping-query-panel form { grid-template-columns: repeat(3, minmax(0, 1fr)) auto; }
#port-search-form { grid-template-columns: minmax(0, 1fr) auto; }
.shipping-query-result { margin-top: 24px; }
.shipping-port-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.shipping-port-list__item { min-width: 0; padding: 16px 18px; display: flex; align-items: baseline; gap: 12px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.shipping-port-list__item strong { color: var(--blue-600); font-size: 14px; letter-spacing: .04em; }
.shipping-port-list__item span { overflow-wrap: anywhere; color: var(--muted); font-size: 13px; }
.shipping-query-response { max-width: none; }
.shipping-route-list, .shipping-event-list { display: grid; gap: 12px; }
.shipping-route-item, .shipping-event-item { padding: 18px; border: 1px solid var(--line); background: var(--white); }
.shipping-route-item__top, .shipping-event-item__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.shipping-route-item__top strong, .shipping-event-item__top strong { color: var(--ink); font-size: 16px; }
.shipping-route-item__top span, .shipping-event-item__top span { color: var(--blue-600); font-size: 12px; font-weight: 700; }
.shipping-route-item p, .shipping-event-item p { margin: 9px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

@media (min-width: 1101px) {
  .query-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .shipping-query-section { padding-top: 58px; }
  .shipping-query-panel form, #port-search-form { grid-template-columns: 1fr; }
  .shipping-query-panel form .button { grid-column: auto; }
  .shipping-query-tab { flex: 1 1 33%; padding: 0 10px; font-size: 13px; }
  .shipping-port-list { grid-template-columns: 1fr; }
  .shipping-route-item__top, .shipping-event-item__top { align-items: flex-start; flex-direction: column; gap: 5px; }
}
