@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0d0f2b;
  --navy-soft: #171a3d;
  --purple: #6b5fd4;
  --blue: #4a7fd4;
  --lavender: #a89fe8;
  --paper: #f8f9fd;
  --paper-deep: #f0f2f9;
  --ink: #0d0f2b;
  --muted: #5d627e;
  --line: rgba(13, 15, 43, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --white: #fff;
  --success: #225f4b;
  --danger: #9b3131;
  --content: min(1180px, calc(100vw - 48px));
  --header-height: 89px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Source Han Sans SC",
    "Noto Sans SC",
    "PingFang SC",
    "Microsoft YaHei",
    Arial,
    sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 70;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--navy), var(--purple), var(--blue));
  content: "";
  pointer-events: none;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  min-height: var(--header-height);
  padding-top: 7px;
  color: var(--navy);
  background: rgba(248, 249, 253, 0.96);
  border-bottom: 1px solid rgba(13, 15, 43, 0.1);
  box-shadow: 0 10px 30px rgba(13, 15, 43, 0.06);
  backdrop-filter: blur(14px);
}

.site-header-home {
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0, rgba(107, 95, 212, 0.2), transparent 38%),
    linear-gradient(90deg, rgba(13, 15, 43, 0.98), rgba(23, 26, 61, 0.98) 50%, rgba(13, 15, 43, 0.98));
  border-bottom-color: rgba(74, 127, 212, 0.5);
  box-shadow: 0 10px 28px rgba(7, 9, 30, 0.2);
  backdrop-filter: none;
}

.header-inner {
  width: 100%;
  min-height: calc(var(--header-height) - 7px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(28px, 3.9vw, 80px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  text-decoration: none;
}

.brand-logo {
  width: clamp(180px, 13vw, 210px);
  height: auto;
  object-fit: contain;
  object-position: center;
}

.desktop-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}

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

.desktop-nav a,
.header-company-link,
.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current="page"],
.header-company-link:hover,
.header-company-link:focus-visible,
.header-company-link[aria-current="page"] {
  color: var(--purple);
  border-bottom-color: var(--purple);
}

.site-header-home .desktop-nav a:hover,
.site-header-home .desktop-nav a:focus-visible,
.site-header-home .desktop-nav a[aria-current="page"],
.site-header-home .header-company-link:hover,
.site-header-home .header-company-link:focus-visible,
.site-header-home .header-company-link[aria-current="page"] {
  color: #ded9ff;
  border-bottom-color: var(--lavender);
}

.header-cta {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--white);
  background: var(--purple);
  border-color: var(--purple);
}

.site-header-home .header-cta {
  color: var(--white);
  background: rgba(13, 15, 43, 0.18);
  border-color: rgba(255, 255, 255, 0.58);
}

.site-header-home .header-cta:hover,
.site-header-home .header-cta:focus-visible {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(13, 15, 43, 0.34);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

.site-header-home .mobile-menu-button {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
}

.mobile-menu-icon,
.mobile-menu-icon::before,
.mobile-menu-icon::after {
  display: block;
  width: 20px;
  height: 1px;
  margin: 0 auto;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease;
}

.mobile-menu-icon::before {
  transform: translateY(-6px);
}

.mobile-menu-icon::after {
  transform: translateY(5px);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: end;
  overflow: clip;
  color: var(--white);
  background: var(--navy);
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
  overflow: hidden;
  background: var(--navy);
}

.hero-media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 39, 0.24), rgba(10, 12, 39, 0.93)),
    linear-gradient(90deg, rgba(10, 12, 39, 0.42), transparent 72%);
  content: "";
}

.hero-media img {
  position: absolute;
  z-index: 0;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  object-position: var(--hero-position, 50% 50%);
  opacity: 0;
  filter: saturate(0.86) contrast(1.04);
  transform: scale(1.03);
  animation: hero-media-cycle 21s linear infinite;
  will-change: opacity, transform;
}

.hero-media-video {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--navy);
}

.hero-media img:nth-child(2) {
  animation-delay: -14s;
}

.hero-media img:nth-child(3) {
  animation-delay: -7s;
}

@keyframes hero-media-cycle {
  0%,
  28% {
    opacity: 1;
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  33%,
  95% {
    opacity: 0;
    transform: scale(1.1) translate3d(-1.2%, -0.6%, 0);
  }

  100% {
    opacity: 1;
    transform: scale(1.03) translate3d(0, 0, 0);
  }
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(168, 159, 232, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.34) 0 1px, transparent 2px),
    radial-gradient(circle at 55% 12%, rgba(74, 127, 212, 0.28), transparent 24%);
  background-size: 170px 170px, 230px 230px, 100% 100%;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -15%;
  bottom: -22%;
  left: -15%;
  height: 52%;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(107, 95, 212, 0.52), transparent 58%),
    linear-gradient(180deg, transparent, rgba(13, 15, 43, 0.85));
  filter: blur(18px);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  padding: 100px 0 74px;
}

.hero-media-credit {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - var(--content)) / 2));
  bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.hero-media-credit:hover,
.hero-media-credit:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--purple);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-section .eyebrow,
.page-hero .eyebrow {
  color: #c8c2ff;
}

.hero-title {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
}

.hero-subtitle {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.8;
  text-wrap: pretty;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--navy);
  border-radius: 1px;
  color: var(--white);
  background: var(--navy);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  color: var(--navy);
  background: transparent;
}

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

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: transparent;
}

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

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.button:disabled {
  opacity: 0.56;
  cursor: wait;
}

.trust-strip {
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid var(--line-light);
}

.trust-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 126px;
  padding: 28px 24px;
  border-right: 1px solid var(--line-light);
}

.trust-item:first-child {
  border-left: 1px solid var(--line-light);
}

.trust-index {
  display: block;
  margin-bottom: 7px;
  color: var(--lavender);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.trust-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.trust-item span:last-child {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.section {
  padding: 108px 0;
}

.section-compact {
  padding: 72px 0;
}

.section-inner {
  width: var(--content);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 54px;
}

.section-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.036em;
  text-wrap: balance;
}

.section-lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.dark-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.dark-section::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.74;
  background:
    radial-gradient(circle at 16% 22%, rgba(168, 159, 232, 0.27) 0 1px, transparent 1.7px),
    radial-gradient(circle at 78% 70%, rgba(74, 127, 212, 0.32) 0 1px, transparent 1.8px);
  background-size: 190px 190px, 270px 270px;
  content: "";
}

.dark-section .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 310px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: var(--purple);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
}

.service-card h3 {
  margin: 58px 0 18px;
  font-size: 25px;
  font-weight: 550;
  line-height: 1.35;
}

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

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.route-card {
  overflow: hidden;
  color: var(--white);
  background: #171a38;
}

.route-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #23264c;
}

.route-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.02);
  transition: transform 0.55s ease;
}

.route-card:hover .route-media img {
  transform: scale(1.025);
}

.route-credit {
  position: absolute;
  right: 12px;
  bottom: 9px;
  padding: 3px 7px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(8, 9, 25, 0.66);
  font-size: 10px;
  letter-spacing: 0.02em;
}

.route-body {
  padding: 34px;
}

.route-label {
  margin: 0 0 12px;
  color: #c8c2ff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.route-body h3 {
  margin: 0;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 520;
  letter-spacing: -0.025em;
}

.route-body p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.route-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  margin-top: 26px;
  color: var(--white);
  font-weight: 600;
  text-underline-offset: 5px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.process-step {
  min-height: 330px;
  padding: 30px 28px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.process-step .step-index {
  color: var(--lavender);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
}

.process-step h3 {
  margin: 72px 0 16px;
  font-size: 22px;
  font-weight: 550;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

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

.plain-card {
  padding: 28px;
  background: var(--white);
  border-top: 2px solid var(--navy);
}

.plain-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 600;
}

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

.closing {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #111331;
}

.closing-inner {
  width: var(--content);
  min-height: 480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.72fr);
  gap: 64px;
  align-items: center;
}

.closing h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 5.2vw, 70px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.closing-copy {
  padding-left: 36px;
  border-left: 1px solid var(--line-light);
}

.closing-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero {
  color: var(--white);
  background: var(--navy);
}

.page-hero-inner {
  width: var(--content);
  margin: 0 auto;
  padding: 88px 0 72px;
}

.page-title {
  max-width: 980px;
  margin: 0;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.page-intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.breadcrumb a {
  text-underline-offset: 4px;
}

.route-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.72fr);
  gap: 54px;
  align-items: start;
}

.route-detail-media {
  position: relative;
}

.route-detail-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.detail-panel {
  padding: 34px;
  background: var(--white);
  border-top: 3px solid var(--purple);
}

.detail-panel h2,
.detail-copy h2 {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 550;
}

.detail-panel p,
.detail-copy p {
  color: var(--muted);
}

.detail-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding: 14px 0 14px 26px;
  border-top: 1px solid var(--line);
}

.detail-list li::before {
  position: absolute;
  top: 25px;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--purple);
  transform: rotate(45deg);
  content: "";
}

.fact-list {
  margin: 26px 0 0;
  padding: 0;
}

.fact-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.fact-list dt {
  color: var(--muted);
}

.fact-list dd {
  margin: 0;
  font-weight: 600;
}

.legal-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: 62px;
  align-items: start;
}

.legal-aside,
.contact-aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.legal-aside p,
.contact-aside p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.legal-nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-nav a {
  display: flex;
  min-height: 46px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--purple);
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin: 54px 0 14px;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy h3 {
  margin: 30px 0 10px;
  font-size: 19px;
}

.legal-copy p,
.legal-copy li {
  color: #414258;
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 22px;
}

.legal-copy li + li {
  margin-top: 8px;
}

.legal-note {
  margin: 26px 0;
  padding: 20px 22px;
  color: #3c3d54;
  background: var(--paper-deep);
  border-left: 2px solid var(--purple);
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.company-fact {
  min-height: 126px;
  padding: 24px;
  background: var(--white);
}

.company-fact span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 13px;
}

.company-fact strong {
  font-size: 17px;
  font-weight: 600;
}

.contact-form {
  padding: 36px;
  background: var(--white);
  border-top: 3px solid var(--purple);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
}

.optional {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #c9c7c0;
  border-radius: 0;
  color: var(--ink);
  background: var(--paper-strong, #fff);
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(107, 95, 212, 0.22);
  border-color: var(--purple);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 22px 0;
  color: var(--muted);
  font-size: 13px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--purple);
}

.consent a {
  color: var(--ink);
  text-underline-offset: 3px;
}

.form-status {
  min-height: 28px;
  margin: 16px 0 0;
  font-size: 14px;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.contact-channel {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.contact-channel h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

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

.contact-channel p + p {
  margin-top: 8px;
}

.contact-channel a {
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 300px));
  gap: 22px;
}

.qr-card {
  padding: 24px;
  color: var(--ink);
  background: var(--white);
}

.qr-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.qr-card h3 {
  margin: 18px 0 4px;
  font-size: 18px;
}

.qr-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.noscript-content {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: 80px 0;
}

.noscript-content img {
  width: min(280px, 80vw);
  margin-bottom: 40px;
}

.noscript-content h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.15;
}

.static-page {
  min-height: 100vh;
  background: var(--paper);
}

.static-header {
  padding-top: 7px;
  color: var(--navy);
  background: rgba(248, 249, 253, 0.96);
  border-bottom: 1px solid rgba(13, 15, 43, 0.1);
}

.static-header-inner {
  width: var(--content);
  min-height: calc(var(--header-height) - 7px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.static-header img {
  width: clamp(180px, 13vw, 210px);
  height: auto;
}

.static-header nav {
  display: flex;
  gap: 22px;
}

.static-header a {
  color: var(--navy);
}

.static-main {
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  padding: 74px 0 96px;
}

.static-main > h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.static-lead {
  max-width: 760px;
  margin: 24px 0 54px;
  color: var(--muted);
  font-size: 17px;
}

.static-card {
  padding: 30px;
  background: var(--white);
  border-top: 3px solid var(--purple);
}

.static-card + .static-card {
  margin-top: 20px;
}

.static-card h2 {
  margin-top: 0;
}

.static-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.static-contact-grid .qr-card {
  border: 1px solid var(--line);
}

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

.static-email-list a {
  overflow-wrap: anywhere;
}

.static-footer {
  padding: 28px 16px;
  color: var(--muted);
  background: #f4f3ef;
  border-top: 1px solid rgba(13, 15, 43, 0.12);
  text-align: center;
  font-size: 13px;
}

.credit-list {
  display: grid;
  gap: 18px;
}

.credit-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 22px;
  background: var(--white);
}

.credit-item img {
  width: 160px;
  height: 110px;
  object-fit: cover;
}

.credit-item h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

.credit-item p {
  margin: 4px 0;
  color: var(--muted);
  font-size: 14px;
}

.credit-item a {
  text-underline-offset: 3px;
}

.site-footer {
  color: var(--navy);
  background: #f4f3ef;
  border-top: 1px solid rgba(13, 15, 43, 0.12);
}

.footer-main {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) 1fr 1fr;
  gap: 56px;
  padding: 62px 0 48px;
}

.footer-brand img {
  width: min(208px, 100%);
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 430px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 5px;
}

.footer-links a {
  display: flex;
  min-height: 40px;
  align-items: center;
  color: rgba(13, 15, 43, 0.72);
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.beian-link {
  color: inherit;
  text-decoration: none;
}

.beian-link:hover,
.beian-link:focus-visible {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  width: var(--content);
  margin: 0 auto;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid rgba(13, 15, 43, 0.12);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

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

:focus-visible {
  outline: 3px solid var(--lavender);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  :root {
    --content: min(100% - 36px, 860px);
  }

  .header-inner {
    grid-template-columns: minmax(190px, 1fr) auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: 39;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    padding: 22px 18px 40px;
    background: rgba(13, 15, 43, 0.985);
  }

  .mobile-nav.open {
    display: grid;
    align-content: start;
  }

  .mobile-nav a {
    display: flex;
    min-height: 56px;
    align-items: center;
    color: var(--white);
    border-bottom: 1px solid var(--line-light);
    text-decoration: none;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

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

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

  .closing-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 82px 0;
  }

  .closing-copy {
    padding: 24px 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .route-detail-grid {
    grid-template-columns: 1fr;
  }

  .legal-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .legal-aside,
  .contact-aside {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1.3fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --content: calc(100vw - 32px);
    --header-height: 70px;
  }

  .header-inner {
    min-height: var(--header-height);
    gap: 12px;
  }

  .brand-logo {
    width: 154px;
  }

  .static-header img {
    width: 154px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-inner {
    padding: 84px 0 44px;
  }

  .hero-media-credit {
    right: 20px;
    bottom: 14px;
  }

  .hero-title {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-actions .button,
  .button-row .button {
    width: 100%;
  }

  .trust-grid,
  .service-grid,
  .route-grid,
  .process-grid,
  .plain-grid,
  .qr-grid,
  .static-contact-grid,
  .company-facts,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child {
    min-height: auto;
    padding: 22px 18px;
    border-left: 1px solid var(--line-light);
  }

  .section {
    padding: 78px 0;
  }

  .section-compact {
    padding: 58px 0;
  }

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

  .section-title {
    font-size: 36px;
  }

  .section-lead {
    font-size: 16px;
  }

  .service-card {
    min-height: auto;
    padding: 26px 22px 30px;
  }

  .service-card h3 {
    margin-top: 32px;
  }

  .route-body {
    padding: 26px 22px 30px;
  }

  .process-step {
    min-height: auto;
    padding: 25px 22px 30px;
  }

  .process-step h3 {
    margin-top: 34px;
  }

  .page-hero-inner {
    padding: 62px 0 50px;
  }

  .page-title {
    font-size: 40px;
  }

  .route-detail-media img {
    min-height: 270px;
  }

  .detail-panel,
  .contact-form {
    padding: 26px 20px;
  }

  .fact-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .form-field.full {
    grid-column: auto;
  }

  .credit-item {
    grid-template-columns: 1fr;
  }

  .credit-item img {
    width: 100%;
    height: 190px;
  }

  .footer-main {
    gap: 32px;
    padding: 50px 0 38px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    min-height: 86px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .static-header-inner {
    min-height: 86px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .static-header nav {
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 13px;
  }
}

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

  .hero-media img {
    opacity: 0;
    transform: none;
    animation: none !important;
  }

  .hero-media img:first-child {
    opacity: 1;
  }

  .hero-media-video {
    display: none;
  }
}
