@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+SC:wght@400;500;600;700;800;900&display=swap");

:root {
  --navy: #0c4a6e;
  --blue: #0284c7;
  --midnight: #bae6fd;
  --ink: #172033;
  --muted: #5f7487;
  --line: #b7d8ea;
  --paper: #ffffff;
  --soft: #eaf7ff;
  --orange: #f07822;
  --gold: #d8a33f;
  --teal: #14b8a6;
  --sky: #0ea5e9;
  --sky-soft: #bae6fd;
  --shadow: 0 18px 50px rgba(2, 132, 199, 0.18);
  --deep-shadow: 0 28px 90px rgba(12, 74, 110, 0.34);
  --font-sans: Inter, "Noto Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;
  --font-display: Inter, "Noto Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;
  --plane-art: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 74'%3E%3Cpath fill='%23ffffff' d='M8 39c31-6 62-8 93-7l45-25c6-4 14 2 9 8l-28 27 45 12c6 2 5 10-2 10l-65-8-35 16c-8 4-16-1-10-8l17-19c-29 2-55 3-78 1-9-1-8-10 1-11Z'/%3E%3Cpath fill='%23d8edf8' d='M28 37c25-3 54-4 83-3l-9 9c-29 0-55 1-79 3-6 0-7-7 1-8Z' opacity='.92'/%3E%3Cpath fill='%2338bdf8' d='M133 14l12-7c6-4 14 2 9 8l-8 8-14-1Z'/%3E%3Cpath fill='%23075985' d='M103 55l33 4-28-10-38 17c-4 2-8 1-10-1l43-20Z' opacity='.18'/%3E%3Ccircle cx='54' cy='37' r='2.8' fill='%23075985' opacity='.55'/%3E%3Ccircle cx='66' cy='36' r='2.8' fill='%23075985' opacity='.55'/%3E%3Ccircle cx='78' cy='35' r='2.8' fill='%23075985' opacity='.55'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' d='M8 47c24 3 51 2 79 0' opacity='.55'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(14, 165, 233, 0.18), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(20, 184, 166, 0.1), transparent 26%),
    var(--paper);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html[lang="zh-CN"] body {
  font-family: "Noto Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", Inter, Arial, sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 84px;
  padding: 12px clamp(18px, 4vw, 58px);
  color: #fff;
  background: rgba(12, 74, 110, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px);
}

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

.brand-logo {
  justify-content: center;
  min-width: 216px;
  height: 56px;
  padding: 8px 18px 9px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 254, 0.95));
  border: 1px solid rgba(186, 230, 253, 0.78);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(3, 54, 82, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand-logo img {
  display: block;
  width: 172px;
  max-height: 40px;
  object-fit: contain;
}

.brand-logo:hover {
  transform: translateY(-1px);
  border-color: rgba(14, 165, 233, 0.72);
  box-shadow: 0 20px 42px rgba(3, 54, 82, 0.24);
}

.prime-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 42px;
  padding: 7px 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.94));
  border: 1px solid rgba(216, 163, 63, 0.45);
  border-radius: 7px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.prime-brand:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 120, 34, 0.7);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 8px;
  font-weight: 800;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 22px);
  flex: 1;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}

.main-nav a:hover {
  color: #fff;
}

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

.lang-btn,
.nav-toggle {
  border: 0;
  cursor: pointer;
}

.lang-btn {
  min-width: 42px;
  min-height: 36px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  border-radius: 6px;
}

.lang-btn.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.quote-btn,
.primary-btn,
.secondary-btn,
.quote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.quote-btn,
.primary-btn,
.quote-form button {
  color: #fff;
  background: var(--orange);
}

.secondary-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
  background: #0c4a6e;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0c4a6e;
  padding: 168px 0 88px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -4%;
  background:
    radial-gradient(circle at 74% 36%, rgba(14, 165, 233, 0.28), transparent 24%),
    linear-gradient(90deg, rgba(12, 74, 110, 0.95), rgba(2, 132, 199, 0.72) 48%, rgba(56, 189, 248, 0.34)),
    url("./assets/hero-logistics.png") center / cover;
  animation: heroDrift 20s ease-in-out infinite alternate;
}

.page-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 32%;
  left: -150px;
  width: 132px;
  height: 56px;
  background: var(--plane-art) center / contain no-repeat;
  opacity: 0.96;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.28)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
  animation: flyAcross 14s linear infinite;
}

.page-hero .section-inner {
  position: relative;
  z-index: 2;
}

.page-hero .section-inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -34px;
  width: min(42vw, 460px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), rgba(240, 120, 34, 0.8), transparent);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.48));
  animation: routePulse 3.6s ease-in-out infinite;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.page-hero p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 500;
  line-height: 1.75;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 45%, rgba(56, 189, 248, 0.28), transparent 25%),
    linear-gradient(90deg, rgba(12, 74, 110, 0.95), rgba(2, 132, 199, 0.66) 46%, rgba(56, 189, 248, 0.22)),
    linear-gradient(0deg, rgba(12, 74, 110, 0.92), rgba(2, 132, 199, 0) 42%);
}

.motion-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.sky-route {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), rgba(240, 120, 34, 0.7), transparent);
  opacity: 0.7;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.45));
}

.route-a {
  top: 28%;
  left: 50%;
  width: 36vw;
  transform: rotate(-12deg);
  animation: routePulse 3.8s ease-in-out infinite;
}

.route-b {
  top: 39%;
  left: 42%;
  width: 44vw;
  transform: rotate(9deg);
  animation: routePulse 4.8s ease-in-out infinite 0.8s;
}

.motion-plane {
  position: absolute;
  top: 24%;
  left: -160px;
  width: 148px;
  height: 62px;
  background: var(--plane-art) center / contain no-repeat;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 14px rgba(255, 255, 255, 0.22));
  transform: rotate(-8deg);
  animation: flyAcross 12s linear infinite;
}

.motion-plane::after {
  content: "";
  position: absolute;
  left: -170px;
  top: 31px;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(216, 237, 248, 0.12), rgba(255, 255, 255, 0.88));
  filter: blur(0.2px);
}

.motion-ship {
  position: absolute;
  right: -180px;
  bottom: 13%;
  width: 180px;
  height: 54px;
  background: linear-gradient(180deg, #38bdf8 0 44%, #ffffff 44% 64%, #075985 64%);
  clip-path: polygon(0 26%, 78% 26%, 100% 52%, 86% 100%, 12% 100%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  animation: sailAcross 18s linear infinite;
}

.motion-ship i {
  position: absolute;
  left: 32px;
  top: -26px;
  width: 78px;
  height: 30px;
  background:
    linear-gradient(90deg, #075985 0 26%, transparent 26% 36%, #075985 36% 62%, transparent 62% 72%, #075985 72%);
}

.water-line {
  position: absolute;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: waterMove 5s linear infinite;
}

.line-one {
  bottom: 12%;
  width: 42vw;
}

.line-two {
  bottom: 9%;
  width: 55vw;
  animation-delay: 1.4s;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: clamp(150px, 19vh, 210px);
  padding-bottom: 72px;
}

.hero-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: min(100%, 560px);
  margin-bottom: 22px;
  padding: 10px 16px 10px 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  box-shadow: var(--deep-shadow);
}

.hero-logo-lockup img {
  width: 190px;
  max-height: 64px;
  object-fit: contain;
}

.hero-logo-lockup span {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 14px;
  padding: 0 10px;
  color: var(--orange);
  background: rgba(240, 120, 34, 0.1);
  border: 1px solid rgba(240, 120, 34, 0.22);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}

html[lang="zh-CN"] .hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 7vw, 5.3rem);
  line-height: 1.08;
}

html[lang="zh-CN"] .page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 5.2vw, 4.6rem);
  line-height: 1.12;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 1.75vw, 1.34rem);
  font-weight: 600;
  line-height: 1.75;
  text-wrap: balance;
}

html[lang="zh-CN"] .hero-copy {
  max-width: 600px;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

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

.hero-actions {
  margin-top: 30px;
}

.hero-stats {
  width: min(760px, 100%);
  margin-top: 62px;
}

.hero-stats div {
  min-width: 170px;
  padding: 14px 18px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.brand-strip > div {
  min-height: 142px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(12, 74, 110, 0.98), rgba(2, 132, 199, 0.9)),
    var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brand-strip p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.strip-number {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}

.strip-prime {
  background: #fff !important;
}

.strip-prime img {
  width: 172px;
  max-height: 76px;
  object-fit: contain;
}

.strip-prime p {
  color: var(--muted);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2,
.about-layout h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.05rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

html[lang="zh-CN"] .section-heading h2,
html[lang="zh-CN"] .about-layout h2 {
  line-height: 1.18;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.about-intro-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.about-intro-heading {
  position: sticky;
  top: 118px;
}

.about-intro-heading h2 {
  max-width: 520px;
}

.about-intro-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.about-intro-metrics div {
  min-height: 112px;
  padding: 18px 14px;
  background: linear-gradient(155deg, var(--navy), var(--blue));
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(12, 74, 110, 0.16);
}

.about-intro-metrics strong,
.about-intro-metrics span {
  display: block;
}

.about-intro-metrics strong {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 950;
  line-height: 1;
}

.about-intro-metrics span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.35;
}

.about-intro-content {
  min-width: 0;
}

.about-intro-lead {
  max-width: 820px;
  margin: 0 0 28px;
  color: var(--navy);
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  font-weight: 700;
  line-height: 1.58;
}

.about-story-grid {
  display: grid;
  gap: 2px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-story-grid article {
  display: grid;
  grid-template-columns: 48px minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: clamp(22px, 3vw, 32px);
  background: #fff;
}

.about-story-grid article > span {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 950;
}

.about-story-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.35;
}

.about-story-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.about-mission {
  position: relative;
  margin: 22px 0 0;
  padding: clamp(26px, 4vw, 40px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(14, 165, 233, 0.3), transparent 32%),
    linear-gradient(135deg, #083b5b, #0c4a6e);
  border-radius: 8px;
}

.about-mission::after {
  content: "\"";
  position: absolute;
  right: 22px;
  top: -34px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
}

.about-mission strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 950;
}

.about-mission p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.feature-panel,
.detail-panel,
.network-card,
.certificate-card,
.office-panel {
  background:
    radial-gradient(circle at 92% 0%, rgba(240, 120, 34, 0.08), transparent 30%),
    linear-gradient(180deg, #fff, #f9fbfe);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.08);
}

.feature-panel,
.detail-panel,
.network-card,
.certificate-card,
.office-panel {
  padding: clamp(22px, 3vw, 32px);
}

.feature-panel h3,
.detail-panel h3,
.network-card h3,
.certificate-card h3,
.office-panel h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.18rem, 1.6vw, 1.42rem);
  font-weight: 900;
  line-height: 1.25;
}

.feature-panel h3::before,
.network-card h3::before,
.certificate-card h3::before,
.office-panel h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 999px;
}

.feature-panel p,
.detail-panel p,
.network-card p,
.certificate-card p,
.office-panel p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.service-grid,
.network-grid,
.certificate-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.network-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.service-metric {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.service-metric div {
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(12, 74, 110, 0.96), rgba(2, 132, 199, 0.92)),
    var(--blue);
  border-radius: 8px;
}

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

.service-metric strong {
  font-size: 1.6rem;
  font-weight: 900;
}

.timeline-wide {
  display: grid;
  gap: 16px;
}

.timeline-wide li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline-wide strong {
  color: var(--orange);
}

.office-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.office-panel a {
  display: block;
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-hero {
  position: relative;
  min-height: min(620px, calc(100vh - 84px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.contact-hero-media {
  position: absolute;
  inset: 0;
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.04);
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(14, 165, 233, 0.32), transparent 34%),
    linear-gradient(90deg, rgba(7, 45, 70, 0.92), rgba(7, 45, 70, 0.68) 46%, rgba(7, 45, 70, 0.22));
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(90px, 12vw, 150px) 0 clamp(70px, 9vw, 110px);
}

.contact-hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 20px;
  color: #fff;
  font-size: clamp(3rem, 8vw, 7.4rem);
  font-weight: 950;
  line-height: 0.95;
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.7;
}

.contact-directory-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(14, 165, 233, 0.14), transparent 30%),
    linear-gradient(180deg, #f5fbff, #e0f2fe);
}

.contact-directory-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.contact-directory-head h2 {
  max-width: 680px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  font-weight: 950;
  line-height: 0.98;
  text-align: right;
}

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

.contact-office-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 249, 255, 0.92)),
    #fff;
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 8px;
  box-shadow: 0 22px 44px rgba(12, 74, 110, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-office-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 120, 34, 0.42);
  box-shadow: 0 30px 60px rgba(12, 74, 110, 0.18);
}

.office-code {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--orange);
  background: rgba(240, 120, 34, 0.08);
  border: 1px solid rgba(240, 120, 34, 0.22);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.contact-office-card h3 {
  margin: 28px 0 8px;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 950;
  line-height: 1.2;
}

.contact-office-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 800;
}

.contact-office-card a {
  display: block;
  color: var(--blue);
  font-weight: 950;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-phone {
  margin-top: auto;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
}

.contact-email {
  margin-top: 10px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.contact-map-section {
  background: #fff;
}

.contact-map-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.contact-map-layout h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  font-weight: 950;
  line-height: 1;
}

.contact-map-layout p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-route-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 47, 73, 0.62), rgba(8, 47, 73, 0.62)),
    url("./assets/hero-logistics.png") center / cover;
  border: 1px solid rgba(14, 165, 233, 0.28);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(12, 74, 110, 0.16);
}

.contact-route-card::before,
.contact-route-card::after {
  content: "";
  position: absolute;
  inset: 18% 12% auto 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(186, 230, 253, 0.88), rgba(240, 120, 34, 0.86));
  transform: rotate(-9deg);
}

.contact-route-card::after {
  inset: auto 12% 25% 18%;
  transform: rotate(8deg);
  opacity: 0.74;
}

.contact-dot {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #fff;
  background: rgba(14, 165, 233, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  font-size: 0.82rem;
  font-weight: 950;
}

.contact-dot-shanghai {
  left: 15%;
  top: 28%;
}

.contact-dot-wuhan {
  left: 30%;
  bottom: 30%;
}

.contact-dot-bangkok {
  right: 22%;
  top: 34%;
}

.contact-dot-jakarta {
  right: 13%;
  bottom: 22%;
}

.subnav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.subnav-row a {
  padding: 10px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: 0.01em;
  backdrop-filter: blur(12px);
}

.subnav-row a:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.intro-band,
.alt-section {
  background:
    linear-gradient(180deg, #f4fbff, #dff2fb);
}

.advantage-grid,
.project-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.advantage-grid article,
.project-card,
.contact-grid article,
.quote-panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(15, 143, 140, 0.08), transparent 28%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.08);
}

.project-card,
.feature-panel,
.detail-panel,
.network-card,
.certificate-card,
.office-panel,
.contact-grid article,
.quote-panel {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-card:hover,
.feature-panel:hover,
.network-card:hover,
.certificate-card:hover,
.office-panel:hover,
.contact-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 120, 34, 0.35);
  box-shadow: var(--shadow);
}

.advantage-grid article {
  padding: 26px;
}

.icon {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 34px;
  padding: 0 9px;
  color: #fff;
  background: var(--blue);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 800;
}

.advantage-grid h2,
.project-card h3,
.contact-grid h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.28;
}

.advantage-grid p,
.project-card p,
.contact-grid p,
.about-layout p,
.tab-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.business-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

.business-showcase {
  background:
    radial-gradient(circle at 8% 0%, rgba(14, 165, 233, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff, #f4fbff);
}

.business-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
  padding: clamp(22px, 4vw, 38px);
  background:
    radial-gradient(circle at 94% 8%, rgba(14, 165, 233, 0.16), transparent 24%),
    linear-gradient(180deg, #fff, #f3fbff);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.business-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}

.business-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.45rem, 4.6vw, 4.45rem);
  font-weight: 900;
  line-height: 1.04;
  text-wrap: balance;
}

.business-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.business-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.business-tags span {
  padding: 9px 13px;
  color: var(--navy);
  background: #d7eefb;
  border: 1px solid rgba(2, 132, 199, 0.12);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 900;
}

.business-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sky-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.business-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.business-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(12, 74, 110, 0.72), transparent 48%),
    linear-gradient(90deg, rgba(12, 74, 110, 0.2), transparent 46%);
}

.business-metrics {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.business-metrics div {
  min-height: 84px;
  padding: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.business-metrics strong,
.business-metrics span {
  display: block;
}

.business-metrics strong {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.business-metrics span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.25;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.process-flow li {
  position: relative;
  min-height: 112px;
  padding: 18px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(2, 132, 199, 0.16);
}

.process-flow li::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -38px;
  width: 98px;
  height: 98px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.process-flow span,
.process-flow strong {
  position: relative;
  z-index: 1;
  display: block;
}

.process-flow span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
}

.process-flow strong {
  margin-top: 18px;
  font-size: 1rem;
  font-weight: 900;
}

.network-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  align-items: stretch;
}

.network-layout .map-board {
  min-height: 430px;
}

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

.tab-list {
  display: grid;
  gap: 10px;
}

.tab-btn {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  color: var(--ink);
  text-align: left;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.25;
}

.tab-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  border-color: var(--navy);
}

.tab-panel {
  min-height: 430px;
  padding: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(circle at 90% 12%, rgba(14, 165, 233, 0.18), transparent 24%),
    linear-gradient(135deg, #fff, #edf8fd);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tab-panel h3 {
  max-width: 820px;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.7vw, 2.28rem);
  font-weight: 900;
  line-height: 1.14;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.tags span {
  padding: 8px 12px;
  color: var(--navy);
  background: #d7eefb;
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.86rem;
}

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

.process li {
  min-height: 64px;
  padding: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--sky), var(--navy));
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.35;
}

.text-link {
  color: var(--orange);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 50%;
}

.map-board,
.map-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background:
    linear-gradient(rgba(2, 132, 199, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 132, 199, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 26% 50%, rgba(14, 165, 233, 0.22), transparent 25%),
    radial-gradient(circle at 74% 62%, rgba(20, 184, 166, 0.18), transparent 28%),
    linear-gradient(145deg, #f8fcff, #d9effb);
  background-size: 34px 34px, 34px 34px, auto, auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.route {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sky), transparent);
  transform-origin: left center;
}

.route-one {
  top: 42%;
  left: 24%;
  width: 54%;
  transform: rotate(-10deg);
}

.route-two {
  top: 58%;
  left: 38%;
  width: 38%;
  transform: rotate(14deg);
}

.pin,
.map-dot {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  color: #fff;
  background: var(--navy);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(14, 165, 233, 0.2);
}

.china { left: 67%; top: 45%; }
.hungary { left: 26%; top: 30%; }
.thailand { left: 58%; top: 63%; }
.indonesia { left: 70%; top: 75%; }

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

.projects-horizontal-section {
  overflow: hidden;
}

.projects-horizontal-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.projects-horizontal-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.8vw, 3.05rem);
  font-weight: 900;
  line-height: 1.12;
  text-wrap: balance;
}

.projects-horizontal {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 390px);
  grid-template-columns: none;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 4px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) rgba(2, 132, 199, 0.12);
}

.projects-horizontal::-webkit-scrollbar {
  height: 10px;
}

.projects-horizontal::-webkit-scrollbar-track {
  background: rgba(2, 132, 199, 0.1);
  border-radius: 999px;
}

.projects-horizontal::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--blue), var(--sky));
  border-radius: 999px;
}

.projects-horizontal .project-card {
  min-height: 430px;
  scroll-snap-align: start;
}

.projects-horizontal .project-visual {
  height: 240px;
}

.project-card {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 4%, rgba(240, 120, 34, 0.08), transparent 25%),
    #fff;
}

.project-card h3,
.project-card p {
  padding: 0 20px;
}

.project-card p {
  padding-bottom: 22px;
}

.project-visual {
  height: 210px;
  background-color: #dbe3ee;
  background-size: cover;
  background-position: center;
  position: relative;
}

.container-visual {
  background-image: linear-gradient(135deg, rgba(12, 74, 110, 0.2), rgba(14, 165, 233, 0.14)), url("./assets/project-multi.png");
}

.machinery-visual {
  background-image: linear-gradient(135deg, rgba(12, 74, 110, 0.18), rgba(14, 165, 233, 0.14)), url("./assets/project-machinery.png");
}

.auto-visual {
  background-image: linear-gradient(135deg, rgba(12, 74, 110, 0.2), rgba(20, 184, 166, 0.12)), url("./assets/project-auto.png");
}

.furniture-visual {
  background-image: linear-gradient(135deg, rgba(12, 74, 110, 0.16), rgba(14, 165, 233, 0.14)), url("./assets/project-furniture.png");
}

.project-visual-special {
  background-image: linear-gradient(135deg, rgba(12, 74, 110, 0.22), rgba(20, 184, 166, 0.12)), url("./assets/project-special.png");
}

.factory-visual {
  background-image: linear-gradient(135deg, rgba(12, 74, 110, 0.22), rgba(14, 165, 233, 0.14)), url("./assets/project-factory.png");
}

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

.logo-grid span {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 18px;
  color: #7a8595;
  background: linear-gradient(180deg, #fff, #f0f9ff);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.logo-grid img {
  display: block;
  max-width: 78%;
  max-height: 54px;
  object-fit: contain;
}

.partner-logo-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(14, 165, 233, 0.13), transparent 32%),
    linear-gradient(180deg, #f5fbff, #fff);
}

.partner-logo-grid {
  gap: 18px;
}

.partner-logo-grid span {
  min-height: 136px;
  padding: 24px;
  background:
    radial-gradient(circle at 92% 8%, rgba(14, 165, 233, 0.08), transparent 34%),
    #fff;
  box-shadow: 0 14px 32px rgba(12, 74, 110, 0.08);
}

.partner-logo-grid img {
  max-width: 88%;
  max-height: 82px;
  filter: saturate(0.92) contrast(1.04);
}

@keyframes heroDrift {
  from { transform: scale(1.04) translateX(-0.5%); }
  to { transform: scale(1.08) translateX(0.8%); }
}

@keyframes flyAcross {
  0% { transform: translateX(0) translateY(0) rotate(-8deg); opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { transform: translateX(calc(100vw + 220px)) translateY(58px) rotate(-4deg); opacity: 0; }
}

@keyframes sailAcross {
  0% { transform: translateX(0); opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { transform: translateX(calc(-100vw - 260px)); opacity: 0; }
}

@keyframes routePulse {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 0.9; }
}

@keyframes waterMove {
  from { transform: translateX(0); opacity: 0.15; }
  50% { opacity: 0.8; }
  to { transform: translateX(-22vw); opacity: 0.15; }
}

.logo-grid span:hover {
  color: var(--orange);
  border-color: rgba(240, 120, 34, 0.45);
}

.about-section {
  color: #fff;
  background: linear-gradient(135deg, #0c4a6e, #0284c7);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 46px;
  align-items: center;
}

.about-layout h2,
.about-layout p {
  color: #fff;
}

.about-layout p {
  color: rgba(255, 255, 255, 0.76);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-grid {
  grid-template-columns: repeat(4, 1fr);
}

.contact-grid article {
  padding: 22px;
}

.contact-grid a {
  display: block;
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.quote-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-top: 24px;
  padding: 24px;
}

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

.quote-form h3,
.quote-form .wide,
.quote-form button {
  grid-column: 1 / -1;
}

.quote-form h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.6rem;
}

.quote-form label span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form button {
  border: 0;
  cursor: pointer;
}

.dot-shanghai { left: 63%; top: 35%; }
.dot-wuhan { left: 55%; top: 44%; }
.dot-bangkok { left: 52%; top: 62%; }
.dot-jakarta { left: 65%; top: 76%; }

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 26px clamp(18px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 14% 0%, rgba(56, 189, 248, 0.26), transparent 28%),
    #0c4a6e;
}

.site-footer p {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .site-header {
    gap: 14px;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 16px;
    background: rgba(6, 26, 52, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
  }

  .main-nav.is-open {
    display: grid;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .header-actions {
    gap: 4px;
  }

  .quote-btn {
    display: none;
  }

  .advantage-grid,
  .contact-grid,
  .logo-grid,
  .brand-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-layout,
  .about-layout,
  .about-intro-layout,
  .quote-panel,
  .split-layout,
  .business-hero-card,
  .network-layout,
  .contact-map-layout {
    grid-template-columns: 1fr;
  }

  .about-intro-heading {
    position: static;
  }

  .about-intro-metrics {
    max-width: 620px;
  }

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

  .contact-directory-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-directory-head h2 {
    text-align: left;
  }

  .business-copy {
    min-height: auto;
  }

  .business-visual,
  .business-visual img {
    min-height: 360px;
  }

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

  .tab-btn {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    min-width: 158px;
    height: 50px;
    padding: 7px 12px;
  }

  .brand-logo img {
    width: 134px;
    max-height: 36px;
  }

  .prime-brand {
    display: none;
  }

  .brand small {
    display: none;
  }

  .main-nav {
    top: 70px;
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: 92vh;
  }

  .page-hero {
    padding: 126px 0 68px;
  }

  .page-hero .section-inner::after {
    width: 86vw;
    bottom: -24px;
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding-top: 126px;
  }

  .hero-logo-lockup {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-logo-lockup img {
    width: 160px;
  }

  .motion-plane {
    width: 104px;
    height: 44px;
  }

  .motion-ship {
    width: 128px;
    height: 42px;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-stats div {
    flex: 1 1 100%;
  }

  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .advantage-grid,
  .project-grid,
  .contact-grid,
  .logo-grid,
  .brand-strip,
  .quote-form,
  .process,
  .process-flow,
  .tab-list,
  .service-grid,
  .network-grid,
  .certificate-grid,
  .industry-grid,
  .service-metric,
  .office-list,
  .contact-card-grid,
  .timeline-wide li {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: 82vh;
  }

  .contact-hero-copy {
    width: min(100% - 28px, 1120px);
    padding: 130px 0 64px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4.8rem);
  }

  .contact-office-card {
    min-height: 230px;
  }

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

  .about-intro-metrics div {
    min-height: 0;
  }

  .about-story-grid article {
    grid-template-columns: 38px 1fr;
  }

  .about-story-grid article p {
    grid-column: 2;
  }

  .contact-route-card {
    min-height: 310px;
  }

  .contact-dot {
    font-size: 0.74rem;
  }

  .projects-horizontal {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: 1fr;
    overflow: visible;
    padding-bottom: 0;
  }

  .projects-horizontal .project-card {
    min-height: 0;
  }

  .business-hero-card {
    padding: 18px;
  }

  .business-copy h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .business-metrics {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin: -84px 14px 14px;
  }

  .business-visual {
    min-height: 300px;
  }

  .business-visual img {
    min-height: 300px;
  }

  .process-flow li {
    min-height: 92px;
  }

  .tab-panel {
    min-height: 0;
  }

  .map-board,
  .map-card {
    min-height: 260px;
  }
}

/* Product Design full-site refinement */
:root {
  --navy: #073b5c;
  --blue: #087aa9;
  --sky: #20a9df;
  --sky-soft: #d9f1fb;
  --midnight: #062f49;
  --ink: #102c3d;
  --muted: #617986;
  --line: #d4e4eb;
  --soft: #f3f9fc;
  --orange: #f47a25;
  --gold: #d8a33f;
  --teal: #168c91;
  --shadow: 0 20px 48px rgba(7, 59, 92, 0.12);
  --deep-shadow: 0 34px 90px rgba(4, 43, 68, 0.28);
}

body {
  color: var(--ink);
  background: #fff;
}

.site-header {
  min-height: 78px;
  padding: 10px clamp(18px, 4vw, 56px);
  gap: 18px;
  background: rgba(5, 49, 76, 0.93);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 34px rgba(2, 28, 45, 0.18);
  backdrop-filter: blur(18px) saturate(130%);
}

.brand {
  min-width: 190px;
}

.brand-logo {
  min-width: 184px;
  height: 50px;
  padding: 7px 14px;
  background: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 20px rgba(1, 24, 39, 0.14);
}

.brand-logo img {
  width: 148px;
  max-height: 38px;
}

.prime-brand {
  width: 104px;
  height: 38px;
  background: #fff;
  box-shadow: none;
}

.main-nav {
  gap: clamp(10px, 1.5vw, 20px);
  font-size: 0.86rem;
}

.main-nav a {
  position: relative;
  padding: 11px 2px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

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

.main-nav a:hover,
.main-nav a.is-current {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.is-current::after {
  transform: scaleX(1);
}

.lang-btn {
  min-width: 38px;
  min-height: 34px;
  padding: 0 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.lang-btn.is-active {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.section {
  padding: clamp(76px, 8vw, 116px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
}

.section-heading {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-heading h2,
.about-layout h2 {
  max-width: 900px;
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.8vw, 5rem);
  line-height: 1.02;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero {
  min-height: 570px;
  display: flex;
  align-items: flex-end;
  padding: 154px 0 84px;
  background-image:
    linear-gradient(90deg, rgba(4, 38, 61, 0.92), rgba(5, 67, 101, 0.7) 52%, rgba(6, 73, 106, 0.32)),
    url("./assets/hero-logistics.png");
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  background:
    linear-gradient(180deg, rgba(5, 49, 76, 0.14), rgba(5, 49, 76, 0.3)),
    linear-gradient(90deg, rgba(32, 169, 223, 0.08), transparent 50%);
}

.page-hero::after {
  opacity: 0.34;
}

.page-hero .section-inner::after {
  width: min(520px, 46vw);
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 255, 255, 0.08));
}

.page-hero h1 {
  max-width: 960px;
  margin: 14px 0 20px;
  font-size: clamp(3.25rem, 7.5vw, 7.25rem);
  line-height: 0.94;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.7;
}

.hero {
  min-height: 820px;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 34, 54, 0.94), rgba(4, 53, 80, 0.62) 50%, rgba(5, 64, 91, 0.18)),
    linear-gradient(180deg, rgba(3, 34, 54, 0.08), rgba(3, 34, 54, 0.48));
}

.hero-content {
  width: min(1180px, calc(100% - 48px));
  padding-top: 152px;
  padding-bottom: 70px;
}

.hero-logo-lockup {
  max-width: 510px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.hero-logo-lockup img {
  width: 190px;
  max-height: 76px;
}

.hero-logo-lockup span {
  max-width: 250px;
}

.hero-content > .eyebrow {
  display: table;
  margin-top: 20px;
}

.hero h1 {
  max-width: 920px;
  margin: 18px 0;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.9;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.secondary-btn {
  min-height: 48px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.secondary-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.hero-stats {
  width: min(720px, 100%);
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats div {
  padding: 22px 26px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-stats strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.62);
}

.intro-band,
.alt-section,
.contact-directory-section {
  background: var(--soft);
}

.brand-strip {
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brand-strip > div {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.brand-strip > div:last-child {
  border-right: 0;
}

.strip-number {
  color: var(--navy);
}

.tab-list {
  gap: 0;
  padding: 5px;
  background: #e7f2f7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tab-btn {
  border-radius: 6px;
}

.tab-btn.is-active {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(7, 59, 92, 0.18);
}

.tab-panel,
.feature-panel,
.detail-panel,
.network-card,
.certificate-card,
.office-panel,
.contact-grid article,
.quote-panel {
  border-color: var(--line);
  box-shadow: 0 14px 32px rgba(7, 59, 92, 0.07);
}

.feature-panel:hover,
.network-card:hover,
.certificate-card:hover,
.office-panel:hover,
.contact-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.project-grid {
  gap: 20px;
}

.project-card {
  overflow: hidden;
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 16px 38px rgba(7, 59, 92, 0.08);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.project-visual {
  filter: saturate(0.9) contrast(1.03);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.project-card:hover .project-visual {
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.03);
}

.project-card h3 {
  margin: 22px 24px 8px;
  font-size: 1.2rem;
}

.project-card p {
  margin: 0 24px 26px;
}

.logo-grid span,
.partner-logo-grid span {
  min-height: 128px;
  background: #fff;
  border-color: var(--line);
  box-shadow: none;
}

.logo-grid span:hover,
.partner-logo-grid span:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 122, 169, 0.36);
  box-shadow: 0 14px 30px rgba(7, 59, 92, 0.09);
}

.about-section {
  background:
    linear-gradient(100deg, rgba(5, 49, 76, 0.97), rgba(7, 91, 126, 0.92)),
    url("./assets/hero-logistics.png") center / cover;
}

.contact-section {
  background: #fff;
}

.contact-grid article {
  min-height: 220px;
  padding: 28px;
}

.contact-grid a {
  overflow-wrap: anywhere;
}

.business-hero-card {
  padding: 0;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--deep-shadow);
}

.business-copy {
  padding: clamp(34px, 5vw, 66px);
}

.business-copy h2 {
  max-width: 680px;
  font-size: clamp(2.8rem, 5.8vw, 6rem);
  line-height: 0.98;
}

.business-tags span {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.business-visual::after {
  background: linear-gradient(90deg, rgba(7, 59, 92, 0.4), transparent 48%);
}

.business-metrics {
  right: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.business-metrics strong {
  color: var(--navy);
}

.process-flow li {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 10px 24px rgba(7, 59, 92, 0.06);
}

.network-card {
  background: #fff;
}

.projects-horizontal {
  grid-auto-columns: minmax(330px, 380px);
  gap: 20px;
}

.projects-horizontal .project-card {
  min-height: 420px;
}

.projects-horizontal .project-visual {
  height: 238px;
}

.partner-logo-section {
  background: #fff;
}

.about-intro-lead {
  color: var(--ink);
}

.about-story-grid {
  background: var(--line);
}

.about-story-grid article {
  background: #fff;
}

.about-mission {
  background:
    radial-gradient(circle at 90% 10%, rgba(32, 169, 223, 0.24), transparent 34%),
    var(--navy);
  box-shadow: var(--shadow);
}

.timeline-wide li {
  border-color: var(--line);
  box-shadow: 0 10px 24px rgba(7, 59, 92, 0.05);
}

.contact-hero {
  min-height: 680px;
}

.contact-hero::after {
  background:
    linear-gradient(90deg, rgba(3, 35, 55, 0.94), rgba(4, 61, 89, 0.64) 54%, rgba(4, 61, 89, 0.2)),
    linear-gradient(180deg, rgba(3, 35, 55, 0.04), rgba(3, 35, 55, 0.3));
}

.contact-hero-copy h1 {
  max-width: 880px;
  font-size: clamp(3.5rem, 7.5vw, 7.5rem);
}

.contact-directory-head h2 {
  font-size: clamp(2.5rem, 5vw, 5.2rem);
}

.contact-office-card {
  min-height: 300px;
  border-color: var(--line);
  box-shadow: 0 14px 32px rgba(7, 59, 92, 0.08);
}

.contact-office-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.office-code {
  color: var(--navy);
  background: var(--sky-soft);
  border-color: rgba(8, 122, 169, 0.16);
}

.contact-route-card {
  box-shadow: var(--shadow);
}

.site-footer {
  min-height: 110px;
  padding: 30px clamp(24px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.72);
  background: #042f49;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  color: #fff;
  font-weight: 800;
}

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

@media (max-width: 1040px) {
  .main-nav {
    top: 78px;
    background: rgba(4, 47, 73, 0.98);
  }

  .brand-strip > div:nth-child(2) {
    border-right: 0;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    min-width: 148px;
    height: 46px;
    padding: 6px 10px;
  }

  .brand-logo img {
    width: 124px;
  }

  .header-actions {
    position: absolute !important;
    z-index: 3;
    top: 18px;
    right: 66px !important;
    margin: 0;
    gap: 2px;
  }

  .nav-toggle {
    display: block !important;
    position: absolute !important;
    z-index: 4;
    top: 13px;
    right: 14px !important;
    margin: 0;
  }

  .header-actions .lang-btn.is-active {
    display: none;
  }

  .lang-btn {
    min-width: 32px;
    min-height: 32px;
    padding: 0 6px;
    font-size: 0.72rem;
  }

  .main-nav {
    top: 68px;
  }

  .section {
    padding: 64px 0;
  }

  .section-inner,
  .hero-content,
  .contact-hero-copy {
    width: min(100% - 32px, 1180px);
  }

  .page-hero {
    min-height: 520px;
    padding: 126px 0 64px;
  }

  .page-hero .section-inner {
    width: calc(100% - 32px) !important;
    max-width: none;
    margin-right: 16px;
    margin-left: 16px;
    overflow: hidden;
  }

  .page-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.55rem, 11.5vw, 3.2rem);
    line-height: 1;
    overflow-wrap: anywhere;
    text-wrap: wrap;
    hyphens: auto;
  }

  .page-hero p:not(.eyebrow) {
    width: 100%;
    max-width: 320px !important;
    white-space: normal !important;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .section-heading h2,
  .about-layout h2,
  .contact-directory-head h2,
  .contact-map-layout h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .hero {
    min-height: 760px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 13.5vw, 3.7rem);
    line-height: 0.94;
  }

  .hero-logo-lockup {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
  }

  .hero-logo-lockup img {
    width: 158px;
  }

  .hero-content > .eyebrow {
    display: block;
    max-width: 100%;
    margin-top: 18px;
    white-space: normal;
    line-height: 1.45;
  }

  .brand-strip > div {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .contact-hero {
    min-height: 620px;
  }

  .contact-directory-head h2 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
