:root {
  --red: #ef3a2d;
  --red-deep: #d72c20;
  --ink: #141427;
  --muted: #59606f;
  --line: #e6e7eb;
  --soft: #f7f7f9;
  --footer: #11101f;
  --blue: #3d5f95;
  --surface: rgba(255, 255, 255, 0.88);
  --shadow-soft: 0 20px 60px rgba(18, 18, 32, 0.08);
  --shadow-line: 0 1px 0 rgba(18, 18, 32, 0.06);
  --full-banner-max-height: max(280px, calc(100svh - clamp(150px, 13rem, 240px)));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 249, 0.96)),
    linear-gradient(140deg, transparent 0 54%, rgba(244, 244, 247, 0.92) 54% 70%, transparent 70%),
    #fff;
}

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

button {
  font: inherit;
}

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

.container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  background: #0b0b10;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.topbar-inner,
.topbar-left {
  display: flex;
  align-items: center;
}

.topbar-inner {
  min-height: 30px;
}

.topbar-left {
  gap: 18px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 36px rgba(18, 18, 32, 0.05);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand.has-logo-image {
  gap: 0;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 72% 24%, #ffb9b9 0 12%, transparent 13%),
    radial-gradient(circle at 35% 70%, #b30409 0 26%, transparent 27%),
    conic-gradient(from 190deg, #ea2a2f, #d31218 48%, #9f070b 100%);
}

.brand-mark.has-image {
  background-color: transparent;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 0;
  width: 196px;
  height: 56px;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 10px;
  border-radius: 20px;
  background: #fff;
}

.brand-mark::before {
  top: 10px;
  width: 21px;
  height: 7px;
  transform: rotate(-24deg);
}

.brand-mark::after {
  top: 22px;
  width: 18px;
  height: 6px;
  transform: rotate(18deg);
}

.brand-mark.has-image::before,
.brand-mark.has-image::after {
  display: none;
}

.brand-mark.has-image + .brand-copy {
  display: none;
}

.brand.has-logo-image .brand-copy {
  display: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

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

.brand-copy span {
  font-size: 11px;
  color: #666;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}

.nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.nav a.is-active,
.nav a:hover {
  color: var(--red);
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
}

.header-actions {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(239, 58, 45, 0.2);
}

.btn-outline {
  border-color: #f0d6d6;
  color: var(--red);
  background: #fff;
}

.btn-outline:hover {
  background: #fff6f5;
}

.btn-light {
  background: #fff;
  color: var(--red);
}

.btn.wide {
  min-width: 132px;
}

.page-shell {
  min-height: 60vh;
}

.hero {
  position: relative;
  min-height: clamp(520px, 56vh, 620px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(14, 26, 38, 0.58), rgba(14, 26, 38, 0.14) 40%, rgba(255, 255, 255, 0) 75%),
    linear-gradient(115deg, #5a646c 0 16%, #2d3b46 16% 26%, #4d5660 26% 36%, #adb5bc 36% 53%, #736959 53% 67%, #d7dce0 67% 100%);
}

.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(#679d53, #7bb663);
  clip-path: polygon(0 52%, 100% 22%, 100% 100%, 0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(16, 22, 30, 0.55) 16.5% 17.2%, transparent 17.5% 44%, rgba(255, 255, 255, 0.45) 44.2% 44.8%, transparent 45% 100%),
    linear-gradient(180deg, transparent 0 18%, rgba(15, 20, 27, 0.58) 18.4% 20.3%, transparent 20.5% 100%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 0 82%, #ececec 82% 83%, transparent 83%),
    linear-gradient(90deg, transparent 0 47%, rgba(255, 255, 255, 0.14) 47.4% 57%, transparent 57.3%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 56vh, 620px);
}

.hero-copy {
  color: #fff;
  max-width: 460px;
  padding-top: 70px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
}

.hero-copy p {
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-indicators {
  position: absolute;
  left: 50%;
  bottom: 92px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-indicator {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.hero-indicator.is-active {
  background: #fff;
  transform: scale(1.15);
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: clamp(38px, 2.4vw, 46px);
  height: clamp(38px, 2.4vw, 46px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.hero-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.hero-nav-prev {
  left: clamp(14px, 1.45vw, 28px);
}

.hero-nav-prev::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.hero-nav-next {
  right: clamp(14px, 1.45vw, 28px);
}

.hero-nav-next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.hero-nav:hover,
.hero-nav:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.42);
  outline: none;
}

.hero-media {
  min-height: 0;
  width: min(100%, 1320px);
  margin-right: auto;
  margin-left: auto;
  aspect-ratio: var(--hero-aspect-ratio, 1940 / 810);
  max-height: var(--full-banner-max-height);
  background: #0f1720;
}

.hero-media::before,
.hero-media::after {
  display: none;
}

.hero-media .hero-overlay {
  display: block;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.28) 34%, rgba(0, 0, 0, 0.04) 64%, transparent 100%);
}

.hero-media .hero-inner {
  z-index: 2;
  min-height: 100%;
}

.hero-media .hero-copy {
  display: block;
  max-width: 620px;
  padding-top: 0;
  margin-left: clamp(52px, 7vw, 142px);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}

.hero-media .hero-copy h1 {
  margin-bottom: clamp(16px, 1.15vw, 24px);
  font-size: clamp(36px, 4.15vw, 64px);
}

.hero-media .hero-copy p {
  max-width: 720px;
  font-size: clamp(16px, 1.35vw, 24px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.hero-media .hero-indicators {
  bottom: 6.4%;
  gap: clamp(10px, 0.72vw, 16px);
}

.hero-media .hero-indicator,
.hero-media .hero-indicator.is-active {
  width: clamp(14px, 0.9vw, 18px);
  height: clamp(14px, 0.9vw, 18px);
  background: transparent;
  transform: none;
}

.hero-media .hero-slide {
  display: flex;
  visibility: hidden;
  transition: none;
  background: none;
}

.hero-media .hero-slide-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-media .hero-slide.is-active {
  visibility: visible;
}

.section {
  padding: 84px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.12;
}

.section-services {
  padding: 82px 0 86px;
  background:
    linear-gradient(32deg, rgba(238, 241, 245, 0.44) 0 12%, transparent 12% 48%, rgba(238, 241, 245, 0.5) 48% 60%, transparent 60%),
    linear-gradient(148deg, transparent 0 52%, rgba(244, 246, 249, 0.82) 52% 64%, transparent 64%),
    #f7f8fa;
}

.section-services .container {
  max-width: 1080px;
}

.section-schedule .container,
.news-section .container {
  max-width: 1080px;
}

.section-services .section-heading {
  margin-bottom: 58px;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.service-tab {
  position: relative;
  padding: 12px 0 18px;
  border: 0;
  background: transparent;
  color: #11182c;
  text-align: center;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  cursor: pointer;
}

.service-tab.is-active {
  color: var(--red);
  font-weight: 700;
}

.service-tab.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 68px;
  height: 3px;
  background: var(--red);
  transform: translateX(-50%);
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
  min-height: 324px;
}

.service-media {
  position: relative;
  min-height: 324px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 0;
  background: #cfd6dd;
  box-shadow: var(--shadow-soft);
}

.service-media-image {
  background: #d7dde4;
}

.service-media-photo {
  width: 100%;
  height: 100%;
  min-height: 324px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-panel:hover .service-media-photo {
  transform: scale(1.025);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%, rgba(0, 0, 0, 0.12));
}

.service-media-booking {
  background:
    radial-gradient(circle at 75% 15%, rgba(255, 238, 224, 0.95), transparent 28%),
    linear-gradient(180deg, #e8c4b0 0 10%, #87c3c2 26%, #4a8f91 54%, #173942 100%);
}

.service-media-booking::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #3f807c, #17333b);
}

.service-media-customs {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 214, 161, 0.92), transparent 25%),
    linear-gradient(180deg, #d9c8ba 0 18%, #7e8a99 42%, #524437 100%);
}

.service-media-customs::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 22% 82%, rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, transparent 0 65%, rgba(26, 30, 38, 0.48) 65% 100%);
}

.service-media-warehouse {
  background:
    linear-gradient(180deg, rgba(246, 247, 248, 0.72), rgba(194, 204, 215, 0.14)),
    linear-gradient(135deg, #838f98 0 22%, #a8b6be 22% 48%, #eef3f6 48% 56%, #8e9aa4 56% 100%);
}

.service-media-warehouse::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(40, 44, 52, 0.26), transparent 18% 82%, rgba(255, 255, 255, 0.15)),
    linear-gradient(180deg, transparent 0 60%, rgba(75, 61, 49, 0.32) 60% 100%);
}

.service-illustration {
  position: absolute;
  inset: 0;
}

.service-illustration-booking .ship-main {
  position: absolute;
  left: 19%;
  bottom: 16%;
  width: 48%;
  height: 18%;
  transform: rotate(-17deg);
  background: #d15a35;
  clip-path: polygon(0 18%, 90% 0, 100% 64%, 87% 100%, 7% 92%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.service-illustration-booking .ship-bridge {
  position: absolute;
  left: 44%;
  bottom: 30%;
  width: 11%;
  height: 11%;
  transform: rotate(-17deg);
  background: #f4f6f8;
}

.service-illustration-booking .ship-cargo {
  position: absolute;
  left: 28%;
  bottom: 28%;
  width: 22%;
  height: 6%;
  transform: rotate(-17deg);
  background: #db6d33;
  box-shadow: 0 -20px 0 #ef9453, 0 -40px 0 #4c99a5;
}

.service-illustration-booking .far-ship {
  position: absolute;
  right: 15%;
  top: 25%;
  width: 20%;
  height: 8%;
  background: rgba(189, 81, 47, 0.82);
  clip-path: polygon(0 35%, 84% 0, 100% 70%, 86% 100%, 11% 100%);
}

.service-illustration-customs .port-blocks {
  position: absolute;
  left: 0;
  right: 0;
  top: 20%;
  height: 28%;
  background:
    repeating-linear-gradient(90deg, rgba(122, 63, 47, 0.58) 0 70px, rgba(96, 121, 155, 0.54) 70px 126px, rgba(188, 103, 66, 0.6) 126px 188px);
}

.service-illustration-customs .worker {
  position: absolute;
  right: 17%;
  bottom: 12%;
  width: 26%;
  height: 56%;
}

.service-illustration-customs .worker::before {
  content: "";
  position: absolute;
  left: 32%;
  top: 0;
  width: 34%;
  height: 18%;
  border-radius: 50%;
  background: #f0f0e9;
}

.service-illustration-customs .worker::after {
  content: "";
  position: absolute;
  inset: 16% 18% 0;
  background:
    linear-gradient(90deg, transparent 0 45%, #f1e0b8 45% 55%, transparent 55%),
    linear-gradient(180deg, #e24a32 0 34%, #c5ef76 34% 70%, #44444e 70% 100%);
  clip-path: polygon(34% 0, 72% 0, 100% 100%, 0 100%);
}

.service-illustration-customs .truck-line {
  position: absolute;
  left: 3%;
  bottom: 15%;
  width: 44%;
  height: 18%;
  background:
    radial-gradient(circle at 18% 100%, #3d4147 0 14px, transparent 15px),
    radial-gradient(circle at 78% 100%, #3d4147 0 14px, transparent 15px),
    linear-gradient(90deg, #f1e6d7 0 28%, #e6d4bf 28% 100%);
  clip-path: polygon(0 28%, 84% 10%, 100% 42%, 100% 72%, 0 90%);
}

.service-illustration-warehouse .warehouse-roof {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 34%;
  background:
    repeating-linear-gradient(90deg, rgba(34, 36, 44, 0.72) 0 2px, transparent 2px 70px),
    repeating-linear-gradient(135deg, rgba(34, 36, 44, 0.6) 0 2px, transparent 2px 66px);
}

.service-illustration-warehouse .container-door {
  position: absolute;
  left: 2%;
  bottom: 0;
  width: 26%;
  height: 82%;
  background:
    linear-gradient(90deg, #f3f5f8 0 6%, #cf5964 6% 13%, #ffffff 13% 21%, #cf5964 21% 28%, #ffffff 28% 100%);
}

.service-illustration-warehouse .cargo-pallet {
  position: absolute;
  bottom: 12%;
  width: 22%;
  height: 28%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(180deg, #cb9b64, #aa6f34);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2) inset;
}

.service-illustration-warehouse .cargo-a {
  left: 32%;
}

.service-illustration-warehouse .cargo-b {
  left: 48%;
  height: 24%;
}

.service-illustration-warehouse .cargo-c {
  left: 63%;
  height: 30%;
}

.service-content h3 {
  margin: 0 0 16px;
  font-size: clamp(21px, 2vw, 24px);
  color: var(--red);
}

.service-content p {
  margin: 0;
  color: #222b3c;
  font-size: 16px;
  line-height: 1.95;
}

.service-content {
  min-height: 324px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-link {
  align-self: flex-end;
  margin-top: auto;
  color: var(--red);
  font-size: 16px;
  font-weight: 500;
}

.text-link::after {
  content: " >";
  margin-left: 10px;
}

.service-center-page {
  background: #fff;
}

.service-center-hero {
  position: relative;
  min-height: 0;
  width: min(100%, 1320px);
  margin-right: auto;
  margin-left: auto;
  aspect-ratio: 1983 / 793;
  max-height: var(--full-banner-max-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.service-center-hero::after {
  display: none;
}

.service-center-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-center-hero h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.service-center-list {
  padding: 76px 0 96px;
  background: #fff;
}

.service-center-list-inner {
  max-width: 1080px;
}

.service-center-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  grid-template-areas:
    "label label"
    "media copy";
  gap: 32px 54px;
  align-items: center;
  padding-bottom: 78px;
}

.service-center-item + .service-center-item {
  padding-top: 44px;
  border-top: 1px solid rgba(20, 20, 39, 0.08);
}

.service-center-item.is-reversed {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  grid-template-areas:
    "label label"
    "copy media";
}

.service-center-label {
  grid-area: label;
  color: var(--red);
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 500;
}

.service-center-media {
  grid-area: media;
  position: relative;
  aspect-ratio: 3 / 2;
  min-height: 324px;
  overflow: hidden;
  background: #eef1f4;
  box-shadow: var(--shadow-soft);
}

.service-center-media img,
.service-center-media > .service-media {
  width: 100%;
  height: 100%;
  min-height: 324px;
}

.service-center-media img {
  object-fit: cover;
}

.service-center-media img[class*="service-center-focus"] {
  position: absolute;
  width: 100%;
  height: auto;
  min-height: 0;
  max-width: none;
  object-fit: initial;
}

.service-center-focus-top {
  inset: 0 auto auto 0;
  transform: scale(3);
  transform-origin: top center;
}

.service-center-focus-bottom {
  inset: auto auto 0 0;
  transform: scale(2.8);
  transform-origin: bottom center;
}

.service-center-focus-bottom-left {
  inset: auto auto 0 0;
  transform: scale(2.1);
  transform-origin: bottom left;
}

.service-center-media > .service-media {
  box-shadow: none;
}

.service-center-copy {
  grid-area: copy;
  min-height: 324px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-center-copy h2 {
  margin: 0 0 54px;
  color: #080b18;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.28;
  font-weight: 600;
}

.service-center-copy p {
  margin: 0;
  color: #151b2a;
  font-size: 16px;
  line-height: 2;
}

.service-center-copy .text-link {
  margin-top: auto;
  align-self: flex-end;
}

.service-detail-page {
  background: #fff;
}

.service-detail-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: #fff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 17, 25, 0.3), transparent 62%);
}

.service-detail-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 360px;
}

.service-detail-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1.12;
  font-weight: 700;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.service-detail-hero-full-banner {
  min-height: 0;
  width: min(100%, 1320px);
  margin-right: auto;
  margin-left: auto;
  aspect-ratio: var(--service-detail-hero-ratio, 1925 / 817);
  max-height: var(--full-banner-max-height);
  background-size: contain;
}

.service-detail-hero-full-banner::after {
  display: none;
}

.service-detail-hero-full-banner .service-detail-hero-inner {
  min-height: 100%;
}

.service-detail-section {
  padding: 58px 0 76px;
  background: #fff;
}

.service-detail-inner {
  max-width: 1080px;
}

.service-detail-inner h2 {
  margin: 0 0 34px;
  color: var(--red);
  font-size: clamp(32px, 3vw, 40px);
  line-height: 1.2;
  font-weight: 500;
}

.service-detail-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 32px 54px;
  align-items: start;
}

.service-detail-block + .service-detail-block {
  margin-top: 84px;
}

.service-detail-block.is-reversed {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
}

.service-detail-media {
  position: relative;
  aspect-ratio: 3 / 2;
  min-height: 324px;
  overflow: hidden;
  background: #eef1f4;
  box-shadow: var(--shadow-soft);
}

.service-detail-media img {
  position: absolute;
  width: 100%;
  height: auto;
  min-height: 0;
  max-width: none;
}

.service-detail-focus-bottom {
  inset: auto auto 0 0;
  transform: scale(2.75);
  transform-origin: bottom center;
}

.service-detail-focus-warehouse {
  inset: auto auto 0 0;
  transform: scale(1.65);
  transform-origin: bottom center;
}

.service-detail-fit {
  inset: 0;
  height: 100% !important;
  object-fit: cover;
  transform: none;
}

.service-detail-focus-top {
  inset: 0 auto auto 0;
  transform: scale(3);
  transform-origin: top center;
}

.service-detail-focus-brand-top {
  inset: 0 auto auto 0;
  transform: scale(1.6);
  transform-origin: top center;
}

.service-detail-copy {
  padding-top: 4px;
  color: #11182c;
  font-size: 16px;
  line-height: 2;
}

.service-detail-copy p {
  margin: 0;
}

.service-detail-copy p + p {
  margin-top: 30px;
}

.schedule-table {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.schedule-head,
.schedule-row {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 20px;
  align-items: center;
  padding: 18px 28px;
}

.schedule-head {
  background: #f6f7f9;
  font-weight: 700;
}

.schedule-row {
  border-top: 1px solid var(--line);
  color: #4e6485;
  transition: background-color 180ms ease, color 180ms ease;
}

.schedule-row:hover {
  background: #fff8f7;
  color: var(--red);
}

.schedule-row span:last-child {
  color: #7d7d7d;
}

.section-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.section-split {
  padding: 0;
  margin-top: 0;
}

.section-split .split-grid {
  width: 100%;
  margin: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  min-height: 506px;
  overflow: visible;
  background: #fff;
}

.about-card {
  position: relative;
  min-height: 506px;
  color: #fff;
  overflow: visible;
  background: transparent;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(129, 8, 8, 0.14), transparent 35%),
    repeating-linear-gradient(35deg, rgba(255, 255, 255, 0.05) 0 18px, transparent 18px 42px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(rgba(236, 29, 25, 0.92), rgba(236, 29, 25, 0.92)),
    url("./media/service-brand-bg.jpg") center/cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}

.about-card-inner {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100% - clamp(88px, 16vw, 260px)));
  max-width: 100%;
  margin-left: clamp(52px, 15vw, 260px);
  margin-right: auto;
  padding: clamp(48px, 6vw, 78px) 0 clamp(46px, 5vw, 64px);
}

.about-card h2,
.contact-card h2 {
  margin: 0 0 28px;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.1;
}

.about-card p,
.contact-card p {
  line-height: 1.78;
  font-size: clamp(15px, 1.2vw, 16px);
  overflow-wrap: anywhere;
}

.about-card .btn {
  margin-top: 34px;
  min-width: 108px;
  min-height: 34px;
  padding: 0 14px;
  font-size: 13px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 506px;
  padding: 80px 8vw 70px 92px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 252, 0.98)),
    #fff;
}

.contact-card p {
  max-width: 410px;
  color: #6a6f79;
  margin: 0 0 34px;
}

.contact-card .btn {
  min-width: 108px;
  min-height: 34px;
  padding: 0 14px;
  font-size: 13px;
}

.contact-card .btn.wide {
  width: min(100%, 420px);
}

.news-hero {
  position: relative;
  min-height: 370px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.05)),
    linear-gradient(125deg, #202123 0 9%, #7f7368 10% 26%, #b4bcc4 26% 44%, #ddd1bf 44% 63%, #bcc4ca 63% 78%, #7d7065 78% 100%);
}

.news-hero-has-asset {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(110deg, rgba(112, 84, 62, 0.42) 0 2px, transparent 2px 58px),
    repeating-linear-gradient(15deg, rgba(58, 61, 68, 0.22) 0 2px, transparent 2px 64px);
  mix-blend-mode: multiply;
}

.news-hero::after {
  content: "";
  position: absolute;
  right: -4%;
  bottom: -10%;
  width: 30%;
  height: 98%;
  background:
    radial-gradient(circle at 55% 18%, rgba(251, 226, 201, 0.72), transparent 16%),
    linear-gradient(180deg, rgba(236, 201, 170, 0.2), rgba(61, 42, 26, 0.22));
  clip-path: polygon(42% 0, 64% 0, 100% 100%, 66% 100%);
}

.news-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 370px;
}

.news-hero-copy {
  max-width: 520px;
}

.news-hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.1;
}

.news-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
}

.news-section {
  padding: 84px 0 98px;
}

.news-table {
  border-top: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.news-head,
.news-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px 220px;
  gap: 20px;
  align-items: center;
  min-height: 62px;
  padding: 0 36px;
}

.news-head {
  background: #f5f5f6;
  color: #000;
  font-weight: 700;
}

.news-row {
  border-bottom: 1px solid #efeff1;
  transition: background-color 180ms ease;
}

.news-row:hover {
  background: #fff8f7;
}

.news-title {
  color: var(--blue);
  font-size: 18px;
}

.news-pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pdf-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 36px;
}

.pdf-icon {
  width: 24px;
  height: 28px;
  border-radius: 3px;
  background:
    linear-gradient(135deg, #fff 0 72%, #ffd9d9 72% 100%),
    #fff;
  border: 1px solid #f0d3d3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
}

.pdf-icon::after {
  content: "PDF";
  position: absolute;
  left: 50%;
  top: 53%;
  transform: translate(-50%, -50%);
  color: var(--red);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.news-time {
  color: #767b86;
  text-align: right;
}

.pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding-top: 24px;
  color: #888e99;
  font-size: 14px;
}

.page-chip,
.page-number {
  min-width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-chip {
  border: 1px solid var(--line);
  background: #fff;
}

.page-number.is-active {
  color: #111;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tracking-page {
  background: #f7f7f8;
}

.tracking-hero {
  min-height: 360px;
  background-position: center;
  background-size: cover;
}

.tracking-hero-inner {
  min-height: 360px;
  display: flex;
  align-items: center;
}

.tracking-panel {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.tracking-panel h1 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
  font-weight: 800;
}

.tracking-form {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 110px;
  gap: 0;
  padding: 18px 22px;
  background: #e9eef6;
  box-shadow: 0 22px 60px rgba(7, 17, 30, 0.2);
}

.tracking-select-wrap,
.tracking-input-wrap {
  position: relative;
  display: block;
}

.tracking-select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid #8c95a5;
  border-bottom: 1px solid #8c95a5;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.tracking-form select,
.tracking-form input {
  width: 100%;
  height: 50px;
  border: 0;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  outline: none;
}

.tracking-form select {
  appearance: none;
  padding: 0 42px 0 18px;
  color: #6c7480;
}

.tracking-form input {
  border-left: 1px solid var(--line);
  padding: 0 18px;
}

.tracking-form input::placeholder {
  color: #a6adba;
}

.tracking-submit {
  border: 0;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.tracking-submit:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
}

.tracking-message {
  min-height: 24px;
  margin: 12px 0 0;
  color: #fff;
  font-size: 14px;
}

.tracking-empty {
  min-height: 520px;
  padding: 44px 0 88px;
}

.tracking-result-shell {
  min-height: 160px;
  display: flex;
  align-items: flex-start;
  color: #8a909b;
  font-size: 15px;
}

.tracking-result-card {
  width: min(720px, 100%);
  padding: 24px 28px;
  background: #fff;
  border-left: 4px solid var(--red);
  box-shadow: var(--shadow-soft);
}

.tracking-result-card strong,
.tracking-result-card span {
  display: block;
}

.tracking-result-card strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.about-page {
  background: #fff;
}

.about-page .about-section {
  scroll-margin-top: 110px;
}

.about-hero-page {
  min-height: 360px;
  background-position: center;
  background-size: cover;
}

.about-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.about-tabs a {
  position: relative;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
}

.about-tabs a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.about-tabs a.is-active {
  color: var(--red);
}

.about-tabs a.is-active::after {
  width: 74px;
}

.about-section {
  padding: 82px 0;
}

.about-section-title {
  margin: 0 0 54px;
  color: var(--ink);
  text-align: center;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 800;
}

.about-intro-grid,
.strength-row,
.qualification-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.about-intro-grid img,
.strength-row img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-intro-copy,
.strength-row div {
  color: #25293a;
  font-size: 21px;
  line-height: 1.75;
}

.about-intro-copy p,
.strength-row p {
  margin: 0;
}

.about-intro-copy p + p,
.strength-row p + p {
  margin-top: 28px;
}

.about-timeline {
  width: min(760px, 100%);
  margin: 70px auto 0;
  position: relative;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: calc(50% + 2px);
  width: 3px;
  background: var(--red);
}

.about-timeline-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  min-height: 72px;
}

.about-timeline-row + .about-timeline-row {
  margin-top: 22px;
}

.about-timeline-label {
  justify-self: end;
  min-width: 220px;
  padding: 8px 46px 8px 20px;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
}

.about-timeline-dot {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 13px;
  height: 13px;
  margin-top: 12px;
  border-radius: 50%;
  background: var(--red);
}

.about-timeline-value {
  padding-top: 7px;
  color: #333746;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
}

.about-timeline-value p {
  margin: 0;
}

.branch-section {
  background: #fafafa;
}

.branch-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.branch-card {
  min-height: 176px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.branch-card h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}

.strength-section {
  padding-top: 70px;
  padding-bottom: 74px;
}

.strength-row.is-reversed {
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
}

.about-qualification {
  background: #fff;
}

.qualification-grid {
  align-items: start;
}

.qualification-copy {
  color: #4c5260;
  font-size: 17px;
  line-height: 1.62;
}

.qualification-copy p {
  margin: 0 0 18px;
}

.qualification-copy span,
.qualification-copy strong {
  display: block;
}

.qualification-copy strong {
  margin-top: 4px;
  color: #4a4f5a;
}

.certificate-collage {
  min-height: 0;
  padding: 0;
  background: transparent;
  box-shadow: var(--shadow-soft);
}

.certificate-collage img {
  display: block;
  width: 100%;
  height: auto;
}

.certificate-paper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border: 1px solid rgba(187, 157, 80, 0.4);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 243, 224, 0.84)),
    #fff;
  color: rgba(80, 72, 58, 0.72);
  font-size: 26px;
  font-weight: 800;
}

.certificate-paper-b,
.certificate-paper-d {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(226, 232, 244, 0.8)),
    #fff;
}

.related-company {
  padding-top: 92px;
}

.related-title {
  text-align: left;
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}

.related-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 0;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.related-menu {
  border-right: 2px solid var(--line);
}

.related-menu button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 0 28px;
  border: 0;
  background: transparent;
  font-size: 22px;
  font-weight: 500;
  color: #202333;
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.related-menu button:hover {
  color: var(--red);
  background: #fff4f3;
}

.related-menu button:focus-visible {
  outline: 3px solid rgba(239, 58, 45, 0.28);
  outline-offset: -3px;
}

.related-menu button.is-active {
  position: relative;
  background: var(--red);
  color: #fff;
  font-weight: 700;
}

.related-menu button.is-active:hover {
  background: var(--red);
  color: #fff;
}

.related-menu button.is-active::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 10px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.related-panel {
  min-height: 520px;
  padding: 34px 38px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
    linear-gradient(130deg, transparent 0 54%, rgba(240, 241, 244, 0.72) 54% 72%, transparent 72%);
}

.related-panel-item {
  display: none;
}

.related-panel-item.is-active {
  display: block;
}

.related-overview dl {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 12px 18px;
  margin: 0 0 28px;
  color: #262a38;
  font-size: 17px;
  line-height: 1.55;
}

.related-overview h3,
.related-columns h3,
.related-text-panel h3 {
  margin: 0 0 14px;
  color: var(--ink);
}

.related-overview dt {
  font-weight: 800;
}

.related-overview dd {
  margin: 0;
}

.related-flow {
  position: relative;
  margin: 0;
  padding: 4px 0 6px;
  overflow: hidden;
}

.related-flow::before {
  content: "";
  position: absolute;
  top: -72px;
  right: -110px;
  width: 420px;
  height: 240px;
  background: url("./media/guanyu-9.png?v=hd-20260510") center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.related-flow > * {
  position: relative;
  z-index: 1;
}

.related-flow p,
.related-flow strong {
  margin: 0;
  display: block;
}

.related-flow strong {
  color: var(--red);
  margin-top: 4px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px 70px;
  margin-top: 48px;
}

.flow-step {
  min-height: 188px;
  text-align: center;
}

.flow-step img {
  width: 122px;
  height: 122px;
  margin: 0 auto 22px;
  display: block;
  object-fit: contain;
}

.flow-step p,
.related-columns p {
  margin: 0;
  color: #202333;
  font-size: 20px;
  line-height: 1.42;
}

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

.related-columns p + p {
  margin-top: 8px;
}

.related-text-panel {
  color: #202333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.85;
}

.related-text-panel p {
  margin: 0;
}

.related-text-panel p + p {
  margin-top: 12px;
}

.related-performance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 34px;
}

.related-performance-visual {
  grid-template-columns: minmax(0, 520px);
  align-items: start;
  gap: 24px;
  padding-left: 18px;
}

.related-performance-image {
  display: block;
  width: min(460px, 100%);
  height: auto;
  object-fit: contain;
}

.china-route-map,
.japan-route-map {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(210, 213, 221, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(244, 246, 249, 0.86)),
    #fff;
  overflow: hidden;
}

.china-route-map::before,
.japan-route-map::before {
  content: "";
  position: absolute;
  inset: 42px;
  border: 2px solid rgba(32, 35, 51, 0.14);
  border-radius: 48% 42% 46% 54%;
  transform: rotate(-12deg);
}

.japan-route-map::before {
  inset: 34px 88px;
  border-radius: 58% 34% 60% 30%;
  transform: rotate(18deg);
}

.china-route-map span,
.japan-route-map span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 8px 12px 8px 0;
  color: #202333;
  font-weight: 700;
}

.china-route-map span::before,
.japan-route-map span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.about-contact-section {
  background: #f6f6f7;
}

.office-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.office-list {
  max-height: 560px;
  overflow: auto;
  background: #fff;
  border: 1px solid #f1b4ae;
  box-shadow: 0 18px 44px rgba(28, 35, 48, 0.08);
}

.office-card {
  display: block;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  border-bottom: 1px solid #eee;
  background: #fff;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.office-card:hover {
  background: #fff8f7;
}

.office-card.is-active {
  border: 1px solid var(--red);
  background: #fffafa;
  box-shadow: inset 4px 0 0 var(--red);
}

.office-card strong {
  display: block;
  margin: 0 0 10px;
  font-size: 18px;
}

.office-card span {
  display: block;
  margin: 0 0 8px;
  color: #737987;
  font-size: 14px;
  line-height: 1.55;
}

.office-map {
  position: relative;
  z-index: 0;
  min-height: 560px;
  height: 560px;
  overflow: hidden;
  background: #f4f4f4;
  border: 1px solid #e6eaf0;
  box-shadow: 0 18px 44px rgba(28, 35, 48, 0.08);
}

.office-map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.world-map-toolbar {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 5;
  display: flex;
  gap: 6px;
}

.world-map-toolbar button {
  min-width: 36px;
  height: 34px;
  border: 1px solid rgba(211, 217, 226, 0.9);
  background: rgba(255, 255, 255, 0.94);
  color: #202333;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(28, 35, 48, 0.12);
}

.world-map-toolbar button:hover {
  color: var(--red);
}

.world-map-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: grab;
  background: #9fc4eb;
  touch-action: none;
}

.world-map-viewport.is-dragging {
  cursor: grabbing;
}

.world-map-canvas {
  position: absolute;
  inset: 0;
  transform-origin: 0 0;
  transition: transform 0.18s ease-out;
}

.world-map-viewport.is-dragging .world-map-canvas {
  transition: none;
}

.world-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.map-ocean {
  fill: #9fc4eb;
}

.map-land {
  fill: #f4f0e6;
  stroke: rgba(132, 140, 128, 0.55);
  stroke-width: 2;
}

.map-land-light {
  fill: #f7f4ea;
}

.world-map-label {
  fill: rgba(32, 35, 51, 0.38);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.world-map-city {
  fill: rgba(32, 35, 51, 0.56);
  font-size: 14px;
  font-weight: 800;
}

.world-map-marker {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-16px, -36px);
}

.world-map-marker:hover,
.world-map-marker.is-active {
  z-index: 4;
}

.world-map-pin {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  box-shadow: 0 10px 22px rgba(239, 58, 45, 0.35);
  transform: rotate(-45deg);
  flex: 0 0 auto;
}

.world-map-pin::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #fff;
}

.world-map-marker-label {
  position: relative;
  top: -8px;
  padding: 5px 8px;
  border: 1px solid rgba(203, 209, 218, 0.9);
  background: rgba(255, 255, 255, 0.94);
  color: #596171;
  box-shadow: 0 4px 12px rgba(28, 35, 48, 0.16);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.world-map-marker.is-active .world-map-marker-label {
  color: #202333;
  border-color: rgba(239, 58, 45, 0.55);
}

.world-map-marker.is-active .world-map-pin {
  transform: rotate(-45deg) scale(1.12);
}

.privacy-page {
  background: #f7f8fa;
  padding: 78px 0 96px;
}

.privacy-container {
  width: min(100% - 48px, 1040px);
}

.privacy-header {
  margin: 0 0 28px;
  text-align: center;
}

.privacy-header p {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.privacy-header h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.14;
}

.privacy-header span {
  display: block;
  margin-top: 14px;
  color: #737987;
  font-size: 14px;
}

.privacy-content {
  padding: 48px 56px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(28, 35, 48, 0.08);
  color: #202333;
  font-size: 17px;
  line-height: 1.9;
}

.privacy-content > p {
  margin: 0 0 34px;
}

.privacy-section + .privacy-section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid #edf0f4;
}

.privacy-section h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.45;
}

.privacy-section p {
  margin: 0;
}

.privacy-section p + p {
  margin-top: 12px;
}

.privacy-section ol {
  margin: 12px 0 0;
  padding-left: 1.45em;
}

.privacy-section li + li {
  margin-top: 8px;
}

.placeholder-page {
  padding: 120px 0;
}

.placeholder-card {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 44px;
  box-shadow: var(--shadow-soft);
}

.placeholder-card h1 {
  margin: 0 0 14px;
  font-size: 38px;
}

.placeholder-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-modal.is-open {
  display: flex;
}

.login-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 24, 0.52);
  backdrop-filter: blur(4px);
}

.login-modal-panel {
  position: relative;
  width: min(420px, 100%);
  background: #fff;
  padding: 34px 34px 30px;
  box-shadow: 0 24px 70px rgba(12, 12, 24, 0.22);
}

.login-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #7b808c;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.login-modal-panel h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

.login-modal-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.login-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 72px;
  max-width: 1096px;
  padding: 112px 0 96px;
}

.brand-footer .brand-copy strong,
.brand-footer .brand-copy span {
  color: #fff;
}

.footer-brand {
  max-width: 420px;
}

.brand-footer .brand-mark.has-image {
  width: 220px;
  height: 56px;
}

.footer-phone {
  display: inline-block;
  margin: 42px 0 20px;
  font-size: 22px;
  font-weight: 700;
}

.footer-brand p {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.footer-links {
  display: flex;
  justify-self: center;
  justify-content: center;
  gap: 46px;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
}

.footer-links a:hover {
  color: #fff;
}

.footer-spacer {
  min-height: 1px;
}

.footer-bottom {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 1080px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-panel,
  .split-grid,
  .service-center-item,
  .service-center-item.is-reversed {
    grid-template-columns: 1fr;
  }

  .service-center-item,
  .service-center-item.is-reversed {
    grid-template-areas:
      "label"
      "media"
      "copy";
    gap: 24px;
  }

  .service-center-copy {
    min-height: auto;
  }

  .service-center-copy h2 {
    margin-bottom: 24px;
  }

  .service-detail-block,
  .service-detail-block.is-reversed {
    grid-template-columns: 1fr;
  }

  .service-detail-block.is-reversed .service-detail-media {
    order: -1;
  }

  .about-card {
    clip-path: none;
  }

  .about-card::before {
    clip-path: none;
  }

  .about-card-inner {
    max-width: 100%;
    margin-left: 0;
    padding: 52px 28px;
  }

  .contact-card {
    padding: 48px 28px 54px;
  }

  .news-head,
  .news-row {
    grid-template-columns: minmax(0, 1fr) 120px 170px;
    padding: 0 20px;
  }

  .tracking-form {
    grid-template-columns: 220px minmax(0, 1fr) 104px;
  }

  .about-intro-grid,
  .strength-row,
  .strength-row.is-reversed,
  .qualification-grid,
  .related-layout,
  .office-layout {
    grid-template-columns: 1fr;
  }

  .strength-row.is-reversed img {
    order: -1;
  }

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

  .about-timeline::before {
    left: 22px;
  }

  .about-timeline-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }

  .about-timeline-label {
    grid-column: 2;
    justify-self: start;
  }

  .about-timeline-dot {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .about-timeline-value {
    grid-column: 2;
  }

  .related-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .related-menu button {
    min-height: 58px;
    font-size: 18px;
  }

  .related-menu button.is-active::after {
    display: none;
  }

  .related-performance {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 72px 0 64px;
    text-align: left;
  }

  .footer-links {
    grid-column: auto;
    justify-self: auto;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  :root {
    --full-banner-max-height: max(220px, calc(100svh - 10rem));
  }

  .container {
    width: min(100% - 28px, 1320px);
  }

  .header {
    position: static;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .hero-inner {
    min-height: 460px;
  }

  .hero-media,
  .hero-media .hero-inner {
    min-height: 0;
  }

  .hero-indicators {
    bottom: 72px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-copy h1,
  .section-heading h2,
  .about-card h2,
  .contact-card h2,
  .news-hero-copy h1,
  .service-center-hero h1,
  .service-detail-hero h1,
  .tracking-panel h1,
  .about-section-title {
    font-size: 36px;
  }

  .tracking-hero,
  .tracking-hero-inner {
    min-height: 330px;
  }

  .tracking-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .tracking-form select,
  .tracking-form input,
  .tracking-submit {
    height: 48px;
  }

  .tracking-form input {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .tracking-empty {
    min-height: 320px;
  }

  .about-hero-page {
    min-height: 260px;
  }

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

  .about-tabs a {
    min-height: 48px;
    font-size: 18px;
  }

  .about-section {
    padding: 56px 0;
  }

  .about-section-title {
    margin-bottom: 32px;
  }

  .privacy-page {
    padding: 52px 0 68px;
  }

  .privacy-container {
    width: min(100% - 28px, 1040px);
  }

  .privacy-content {
    padding: 28px 22px;
    font-size: 16px;
  }

  .about-intro-copy,
  .strength-row div {
    font-size: 17px;
  }

  .about-timeline-label {
    min-width: 0;
    width: 100%;
    padding-right: 36px;
  }

  .branch-grid,
  .flow-grid,
  .related-columns {
    grid-template-columns: 1fr;
  }

  .related-title {
    text-align: center;
  }

  .related-panel {
    padding: 26px 20px;
  }

  .related-overview dl {
    grid-template-columns: 1fr;
  }

  .related-menu {
    grid-template-columns: 1fr;
  }

  .related-text-panel {
    font-size: 17px;
  }

  .china-route-map,
  .japan-route-map {
    min-height: 220px;
  }

  .office-map {
    height: 360px;
    min-height: 360px;
  }

  .service-tabs,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-tabs {
    gap: 0;
  }

  .service-tab {
    text-align: left;
    padding: 14px 0;
  }

  .service-tab.is-active::after {
    left: 0;
    transform: none;
    width: 64px;
  }

  .service-panel {
    gap: 24px;
  }

  .service-media {
    min-height: 280px;
  }

  .service-media-photo {
    min-height: 280px;
  }

  .service-content p {
    font-size: 16px;
    line-height: 1.9;
  }

  .service-content {
    min-height: auto;
  }

  .service-center-hero,
  .service-center-hero-inner {
    min-height: 0;
  }

  .service-center-list {
    padding: 52px 0 68px;
  }

  .service-center-item {
    padding-bottom: 56px;
  }

  .service-center-item + .service-center-item {
    padding-top: 34px;
  }

  .service-center-label {
    font-size: 28px;
  }

  .service-center-media,
  .service-center-media img,
  .service-center-media > .service-media {
    min-height: 260px;
  }

  .service-center-copy .text-link {
    align-self: flex-start;
    margin-top: 28px;
  }

  .service-detail-hero,
  .service-detail-hero-inner {
    min-height: 300px;
  }

  .service-detail-hero-full-banner,
  .service-detail-hero-full-banner .service-detail-hero-inner {
    min-height: 0;
  }

  .service-detail-section {
    padding: 46px 0 62px;
  }

  .service-detail-inner h2 {
    margin-bottom: 24px;
    font-size: 30px;
  }

  .service-detail-block {
    gap: 24px;
  }

  .service-detail-block + .service-detail-block {
    margin-top: 54px;
  }

  .service-detail-media {
    min-height: 260px;
  }

  .schedule-head,
  .schedule-row,
  .news-head,
  .news-row {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 18px;
  }

  .news-title {
    font-size: 16px;
  }

  .news-time {
    text-align: left;
  }

  .pagination {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-inner,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .split-grid {
    min-height: auto;
  }

  .about-card,
  .contact-card {
    min-height: auto;
  }
}
