
/*
:root {
  --black: #1F3F3E;
  --white: #ffffff;
  --gold: #D5E1B3;
  --gold-soft: #E6EFCC;
  --gold-dark: #B8C788;
  --text-light: #FAFAFA;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-muted-gold: rgba(213, 225, 179, 0.88);
  --line: rgba(213, 225, 179, 0.28);
  --line-gold: rgba(213, 225, 179, 0.40);
  --shadow-gold: 0 20px 60px rgba(213, 225, 179, 0.20);
  --shadow-dark: 0 20px 60px rgba(31, 63, 62, 0.58);
}
*/



:root {
  --black: #000000;
  --white: #ffffff;
  --gold: #FFD700;
  --gold-soft: #FFE066;
  --gold-dark: #D4B000;
  --text-light: #fafafa;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-muted-gold: rgba(0, 0, 0, 0.65);
  --line: rgba(255, 215, 0, 0.25);
  --line-gold: rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 20px 60px rgba(255, 215, 0, 0.15);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  scroll-snap-type: none;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

html, body {
  overscroll-behavior-y: contain;
}

body {
  color: var(--text-light);
  background: var(--black);
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans SC",
    "Segoe UI",
    Arial,
    sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; letter-spacing: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-full {
  height: 100svh;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 0;
  box-sizing: border-box;
}

@supports not (height: 100svh) {
  .section-full { height: 100vh; }
}

.section-black { background: var(--black); color: var(--text-light); }
.section-gold { background: var(--gold); color: var(--black); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 10px 4vw;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.18);
  transition: min-height 240ms ease, padding 240ms ease, background 240ms ease, border-color 240ms ease;
}

.site-header.is-compact {
  min-height: 44px;
  padding: 6px 4vw;
  background: rgba(0, 0, 0, 0.95);
  border-bottom-color: rgba(255, 215, 0, 0.35);
}

.site-header.is-compact .brand-mark {
  width: 28px;
  height: 28px;
  font-size: 10px;
}

.site-header.is-compact .brand-name {
  font-size: 13px;
}

.site-header.is-compact .brand-sub {
  display: none;
}

.site-header.is-compact .site-nav {
  gap: 18px;
  font-size: 12px;
}

.site-header.is-compact .lang-toggle {
  min-height: 30px;
  padding: 4px 10px;
  font-size: 11px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  transition: gap 240ms ease;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--black);
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: width 240ms ease, height 240ms ease, font-size 240ms ease;
}

.brand strong {
  display: block;
  color: var(--gold);
  font-size: 15px;
  line-height: 1.15;
  font-weight: 800;
  transition: font-size 240ms ease;
}

.brand small {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 215, 0, 0.85);
  font-size: 13px;
  font-weight: 600;
  transition: gap 240ms ease, font-size 240ms ease;
}

.site-nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2.5px auto;
  background: var(--gold);
  border-radius: 999px;
}

.hero {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88)),
    url("./assets/hero-logistics.png") center / cover no-repeat;
  padding-left: 6vw;
  padding-right: 6vw;
}

.hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-gold .eyebrow {
  color: var(--black);
  opacity: 0.75;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.5px;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(22px, 3.1vw, 38px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.section-black h2 { color: var(--gold); }
.section-gold h2 { color: var(--black); }

h3 {
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
}

.section-black h3 { color: var(--gold); }
.section-gold h3 { color: var(--black); }

.hero-copy {
  max-width: 660px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 20px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:hover, .btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.btn-secondary {
  color: var(--gold);
  background: transparent;
  border-color: var(--gold);
}

.btn-secondary:hover, .btn-secondary:focus-visible {
  background: rgba(255, 215, 0, 0.08);
}

.section-wrap {
  width: min(1200px, 88vw);
  margin: 0 auto;
}

.section-heading { margin-bottom: 20px; }

.section-heading p:not(.eyebrow) {
  max-width: 580px;
  font-size: 13px;
  line-height: 1.7;
}

.section-black .section-heading p:not(.eyebrow) { color: var(--text-muted); }
.section-gold .section-heading p:not(.eyebrow) { color: var(--text-muted-gold); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-card {
  padding: 16px 16px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.service-card:hover {
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.04);
  transform: translateY(-2px);
}

.service-card p,
.advantage-copy p,
.advantage-list p,
.process-list span,
.about-card p,
.footer-inner p {
  font-size: 12px;
  line-height: 1.6;
}

.section-black .service-card p,
.section-black .advantage-copy p,
.section-black .advantage-list p,
.section-black .process-list span,
.section-black .about-card p {
  color: var(--text-muted);
}

.section-gold .advantage-copy p,
.section-gold .advantage-list p,
.section-gold .process-list span,
.section-gold .about-card p {
  color: rgba(0, 0, 0, 0.72);
}

.card-index {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 2px;
}

.section-gold .card-index { color: var(--black); opacity: 0.8; }

.advantage-band {
  width: min(1200px, 88vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.advantage-list {
  display: grid;
  gap: 8px;
  max-width: 640px;
}

.advantage-list div {
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
}

.advantage-list span {
  display: inline-block;
  margin-bottom: 2px;
  color: var(--black);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
}

.advantage-list strong {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 900;
  color: var(--black);
}

.route-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  max-width: 1200px;
}

.section-gold .route-table {
  border-color: var(--line-gold);
  background: rgba(255, 255, 255, 0.45);
}

.route-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 1px;
  background: var(--line);
}

.section-gold .route-row { background: var(--line-gold); }

.route-row span {
  min-height: 44px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--text-light);
  font-size: 12px;
}

.section-gold .route-row span {
  background: var(--gold);
  color: var(--black);
}

.route-head span {
  min-height: 36px;
  color: var(--black);
  background: var(--gold);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-gold .route-head span {
  background: var(--black);
  color: var(--gold);
}

.route-row:not(.route-head) span:first-child { font-weight: 700; }

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  padding: 14px 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  counter-increment: step;
  transition: transform 200ms ease, background 200ms ease;
}

.process-list li:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.25);
}

.process-list li::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 12px;
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.55;
}

.process-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-card {
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.about-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.06);
}

.about-num {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.footer-section {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: left;
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  gap: 16px;
  min-height: 210px;
  padding: 28px clamp(20px, 5vw, 60px) 18px;
  background: var(--black);
  color: var(--gold);
  box-sizing: border-box;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.footer-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--black);
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 10px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.5px;
  flex: 0 0 auto;
}

.footer-logo strong {
  display: block;
  font-size: 15px;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 1px;
}

.footer-logo p {
  margin: 0;
  color: rgba(255, 215, 0, 0.75);
  font-size: 11px;
}

.footer-filing-link {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.5px;
  transition: color 160ms ease;
  white-space: nowrap;
}

.footer-filing-link:hover {
  color: var(--gold-soft);
  outline: none;
}

.footer-filing-icon {
  width: 14px;
  height: 14px;
  margin-right: 4px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  min-height: 24px;
  color: rgba(255, 215, 0, 0.68);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
  flex-wrap: wrap;
}

.footer-police-placeholder {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  white-space: nowrap;
}

.footer-media-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 160px));
  justify-content: center;
  gap: 10px;
  width: min(680px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.footer-media-list:empty {
  display: none;
}

.footer-media-item {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 7px;
  min-height: 0;
  padding: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 215, 0, 0.07);
  border: 1px solid rgba(255, 215, 0, 0.22);
  border-radius: 8px;
}

.footer-media-item.is-text-only {
  align-content: center;
}

.footer-media-img {
  display: block;
  width: 100%;
  max-height: 104px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
}

.footer-media-text {
  margin: 0;
  color: rgba(255, 215, 0, 0.76);
  font-size: 10.5px;
  line-height: 1.45;
  text-align: center;
  overflow-wrap: anywhere;
}

.footer-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  background: transparent;
  transition: background 160ms ease, color 160ms ease;
  flex: 0 0 auto;
}

.footer-top:hover, .footer-top:focus-visible {
  background: var(--gold);
  color: var(--black);
  outline: none;
}

.footer-reviews {
  position: absolute;
  top: 44px;
  right: 0;
  bottom: 250px;
  left: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(22px, 5vh, 44px);
  pointer-events: none;
  overflow: hidden;
}

.review-row {
  position: relative;
  width: 100%;
  overflow: hidden;
  will-change: transform;
}

.review-row-track {
  display: inline-flex;
  gap: 32px;
  flex-shrink: 0;
  white-space: nowrap;
}

.review-card {
  flex: 0 0 auto;
  width: max-content;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 999px;
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(2px);
  white-space: nowrap;
}

.review-card-text {
  display: inline;
}

.review-row-track {
  will-change: transform;
  transform: translateX(0);
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.lang-wrap { position: relative; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 4px 10px;
  background: transparent;
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.lang-toggle:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: var(--gold);
}

.lang-caret {
  width: 14px;
  height: 14px;
  transition: transform 160ms ease;
}

.lang-wrap.is-open .lang-caret { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  flex-direction: column;
  min-width: 150px;
  background: #0a0a0a;
  border: 1px solid var(--gold);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  z-index: 60;
}

.lang-wrap.is-open .lang-dropdown { display: flex; }

.lang-option {
  display: block;
  width: 100%;
  padding: 10px 14px;
  color: var(--text-light);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.lang-option:last-child { border-bottom: none; }

.lang-option:hover, .lang-option:focus-visible {
  background: var(--gold);
  color: var(--black);
  outline: none;
}

.lang-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.lang-modal.is-visible { pointer-events: auto; }

.lang-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 260ms ease;
}

.lang-modal.is-visible .lang-mask { opacity: 1; }

.lang-modal-box {
  position: relative;
  width: min(520px, 92vw);
  padding: 40px 32px 34px;
  background: var(--black);
  border: 2px solid var(--gold);
  border-radius: 14px;
  text-align: center;
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 260ms ease;
  box-shadow: 0 30px 80px rgba(255, 215, 0, 0.15), 0 30px 100px rgba(0, 0, 0, 0.8);
}

.lang-modal.is-visible .lang-modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lang-modal-hint {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
}

.lang-modal-title {
  margin: 0 0 28px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.lang-modal-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.lang-modal-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 12px 8px;
  color: var(--text-light);
  background: transparent;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, color 160ms ease;
}

.lang-modal-btn:hover, .lang-modal-btn:focus-visible {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
  outline: none;
  box-shadow: var(--shadow-gold);
}

.lang-modal-label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.lang-modal-sub {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  opacity: 0.75;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 2fr); }
  .about-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  html { scroll-snap-type: none; }
  html, body { touch-action: pan-y; overscroll-behavior-y: contain; }

  .section-full {
    height: auto;
    min-height: 100svh;
    padding-top: 72px;
    padding-bottom: 32px;
    overflow: visible;
    display: block;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .footer-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box;
  }

  .footer-section .footer-inner {
    margin-top: auto;
    min-height: 244px;
    padding: 28px 6vw calc(22px + env(safe-area-inset-bottom, 0px));
  }

  .footer-reviews {
    top: 56px;
    bottom: 286px;
    gap: 24px;
  }

  .footer-media-list {
    grid-template-columns: repeat(auto-fit, minmax(108px, 144px));
    gap: 10px;
  }

  .footer-media-img {
    max-height: 96px;
  }

  @supports not (min-height: 100svh) {
    .section-full { min-height: 100vh; }
    .footer-section { min-height: 100vh; }
  }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: repeat(3, 1fr); }

  .advantage-band { grid-template-columns: 1fr; gap: 22px; }
  .advantage-list { max-width: none; }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100svh;
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .hero .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero .eyebrow {
    margin-right: auto;
    margin-left: auto;
  }
  .hero .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }
  .hero .hero-actions {
    justify-content: center;
  }

  .site-header { min-height: 56px; padding: 8px 4vw; }
  .site-header.is-compact { min-height: 44px; padding: 6px 4vw; }

  .brand-mark { width: 32px; height: 32px; font-size: 10px; }
  .brand strong { font-size: 14px; }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100svh;
    max-height: 100svh;
    width: min(300px, 78vw);
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: calc(68px + env(safe-area-inset-top, 0px)) 20px 24px;
    background: rgba(0, 0, 0, 0.985);
    border-right: 1px solid rgba(255, 215, 0, 0.18);
    transform: translateX(-100%);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 55;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  @supports not (height: 100svh) {
    .site-nav { height: 100vh; max-height: 100vh; }
  }
  .site-nav.is-open {
    transform: translateX(0);
  }
  .site-nav a {
    padding: 16px 4px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gold);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: color 160ms ease, padding-left 160ms ease;
  }
  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--gold-soft);
    padding-left: 12px;
    outline: none;
  }
  .site-nav .lang-wrap {
    margin-top: 16px;
  }
  .site-nav .lang-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 42px;
    height: 42px;
    padding: 6px;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    transition: background 160ms ease, border-color 160ms ease;
  }
  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    margin: 0;
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 160ms ease, top 240ms cubic-bezier(0.22, 1, 0.36, 1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .menu-toggle span:nth-of-type(1) { top: 12px; }
  .menu-toggle span:nth-of-type(2) { top: 19px; opacity: 1; }
  .menu-toggle span:nth-of-type(3) { top: 26px; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(1) {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    top: 19px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .lang-wrap { margin-top: 8px; }

  .route-table { border-radius: 10px; background: transparent; border: none; max-width: none; }
  .route-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    background: transparent;
    margin-bottom: 14px;
  }
  .route-row:last-child { margin-bottom: 0; }
  .route-row span {
    min-height: 0;
    padding: 10px 14px;
    border-radius: 6px;
    display: block;
  }
  .section-gold .route-row span { background: rgba(255, 255, 255, 0.8); }
  .route-head { display: none; }
  .route-row:not(.route-head) span:first-child {
    font-size: 14px;
    font-weight: 800;
    border: 1px solid var(--line);
  }
  .route-row:not(.route-head) span + span {
    font-size: 13px;
    color: var(--text-muted);
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
  .route-row:not(.route-head) span + span + span {
    font-size: 13px;
    color: var(--text-muted);
    border: 1px solid var(--line);
  }
  .section-gold .route-row:not(.route-head) span:first-child { color: var(--black); border-color: rgba(0,0,0,0.3); background: rgba(255,255,255,0.9); }
  .section-gold .route-row:not(.route-head) span + span,
  .section-gold .route-row:not(.route-head) span + span + span { color: rgba(0,0,0,0.8); }

  .lang-modal-options { grid-template-columns: 1fr; }
  .lang-modal-btn {
    min-height: 64px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 14px;
    padding: 12px 18px;
  }
  .lang-modal-sub { margin-bottom: 0; }

  .section-wrap { width: min(1200px, 92vw); }
  .hero { padding-left: 5vw; padding-right: 5vw; }
  .hero-copy { font-size: 14px; margin-bottom: 18px; }
  .section-heading { margin-bottom: 22px; }
  .section-heading p:not(.eyebrow) { font-size: 13px; }

  .footer-main { flex-direction: row; align-items: center; justify-content: space-between; gap: 16px; }
  .footer-logo { min-width: 0; }
  .footer-logo strong { font-size: 15px; }
  .footer-mark { width: 40px; height: 40px; font-size: 11px; }
  .footer-top { width: auto; justify-content: center; align-self: center; padding: 7px 16px; }

  .footer-filing-link {
    font-size: 10px;
  }

  .footer-legal {
    gap: 10px 16px;
    min-height: 28px;
    padding-top: 6px;
    font-size: 10px;
  }

  .review-card {
    padding: 12px 18px;
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .section-full { padding-top: 68px; padding-bottom: 28px; }
  .footer-section { padding-top: 0; padding-bottom: 0; }
  .footer-section .footer-inner {
    min-height: 270px;
    gap: 16px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-top { margin-left: 0; }
  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-align: left;
  }
  .footer-reviews {
    top: 52px;
    bottom: 314px;
    gap: 18px;
  }

  .footer-media-list {
    grid-template-columns: repeat(auto-fit, minmax(104px, 136px));
  }

  .review-card {
    padding: 10px 16px;
    font-size: 13px;
  }

  .service-grid { grid-template-columns: 1fr; gap: 10px; }
  .process-list { grid-template-columns: 1fr; gap: 10px; }
  .about-grid { grid-template-columns: 1fr; gap: 10px; }

  .brand strong { font-size: 13px; }
  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
  .hero {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  h1 { font-size: clamp(26px, 8vw, 40px); }
  h2 { font-size: clamp(20px, 6vw, 30px); }
  h3 { font-size: 15px; }
  .eyebrow { font-size: 10px; letter-spacing: 1.5px; }

  .hero-actions .btn { width: 100%; min-height: 44px; padding: 10px 16px; font-size: 14px; }

  .advantage-list strong { font-size: 14px; }
  .advantage-list p,
  .service-card p,
  .process-list span,
  .about-card p { font-size: 13px; line-height: 1.7; }

  .service-card, .about-card, .process-list li, .advantage-list div { padding: 16px; }

  .lang-modal-box { padding: 32px 20px 26px; }
  .lang-modal-title { font-size: 20px; margin-bottom: 22px; }
}
