:root {
  --navy-950: #071326;
  --navy-900: #0b1830;
  --navy-850: #10203c;
  --navy-800: #132746;
  --graphite: #263140;
  --ink: #111b2a;
  --muted: #647083;
  --line: #dce2e9;
  --line-dark: rgba(255, 255, 255, .13);
  --paper: #ffffff;
  --tint: #f3f5f7;
  --tint-warm: #f6f3ed;
  --gold: #b89958;
  --gold-light: #d6bf8b;
  --gold-pale: #efe6d2;
  --red: #a73332;
  --success: #287258;
  --shadow-sm: 0 8px 24px rgba(7, 19, 38, .07);
  --shadow-md: 0 20px 55px rgba(7, 19, 38, .12);
  --shadow-lg: 0 28px 80px rgba(2, 10, 24, .24);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1220px;
  --header-height: 80px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  color: var(--paper);
  background: var(--red);
}

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

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

.section {
  padding: 112px 0;
}

.section-dark {
  color: var(--paper);
  background: var(--navy-950);
}

.section-tint {
  background: var(--tint);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--navy-950);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

.page-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #806b3d;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 27px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-light {
  color: var(--gold-light);
}

.text-gold {
  color: var(--gold-light);
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading h2,
.trade-copy h2,
.rv-copy h2,
.details-intro h2,
.inquiry-copy h2 {
  margin-bottom: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, .75fr);
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  max-width: 500px;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 17px;
}

.centered-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading h2 {
  margin-bottom: 18px;
}

.centered-heading > p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.section-lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: .015em;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

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

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

.button-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 13px;
}

.button-gold {
  color: var(--navy-950);
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 10px 30px rgba(184, 153, 88, .15);
}

.button-gold:hover {
  background: #e2cc9a;
  border-color: #e2cc9a;
  box-shadow: 0 14px 36px rgba(184, 153, 88, .25);
}

.button-navy {
  color: var(--paper);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.button-navy:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
}

.button-ghost {
  color: var(--paper);
  background: rgba(255, 255, 255, .03);
  border-color: rgba(255, 255, 255, .28);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .5);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  color: var(--paper);
  background: rgba(7, 19, 38, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(16px);
}

.header-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

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

.brand-mark {
  width: 40px;
  color: #f5f7fb;
}

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

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .09em;
}

.brand-copy em {
  color: var(--gold-light);
  font-style: normal;
}

.brand-copy small {
  margin-top: 6px;
  color: rgba(255, 255, 255, .52);
  font-size: 8px;
  letter-spacing: .16em;
}

.desktop-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(15px, 1.8vw, 28px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 29px 0 26px;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--transition);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

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

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

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

.language-switcher {
  display: flex;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 4px;
}

.language-switcher button {
  min-width: 32px;
  height: 30px;
  padding: 0 7px;
  color: rgba(255, 255, 255, .6);
  background: transparent;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
  transition: color var(--transition), background var(--transition);
}

.language-switcher button:hover {
  color: var(--paper);
}

.language-switcher button[aria-pressed="true"] {
  color: var(--navy-950);
  background: var(--gold-light);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 1px;
  margin: 5px auto;
  background: var(--paper);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 99;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100dvh - var(--header-height));
  padding: 30px 24px 44px;
  overflow-y: auto;
  color: var(--paper);
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.mobile-menu nav {
  display: flex;
  max-width: 560px;
  margin: 0 auto;
  flex-direction: column;
}

.mobile-menu nav > a:not(.button) {
  padding: 15px 4px;
  color: rgba(255, 255, 255, .84);
  border-bottom: 1px solid var(--line-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.mobile-menu .button {
  margin-top: 28px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 730px;
  padding: 92px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 22%, rgba(37, 76, 127, .32), transparent 35%),
    linear-gradient(120deg, var(--navy-950), #0c1b34 70%, #081428);
}

.hero::before {
  position: absolute;
  top: 0;
  right: calc(50% - 600px);
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(255, 255, 255, .13), transparent);
  content: "";
}

.hero::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to left, #000, transparent);
}

.hero-glow {
  position: absolute;
  top: -240px;
  right: -200px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(184, 153, 88, .14);
  border-radius: 50%;
}

.hero-glow::before,
.hero-glow::after {
  position: absolute;
  inset: 100px;
  border: 1px solid rgba(184, 153, 88, .1);
  border-radius: 50%;
  content: "";
}

.hero-glow::after {
  inset: 200px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 510px;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  align-items: center;
  gap: 66px;
}

.hero-copy {
  padding-bottom: 28px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 25px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(48px, 5.6vw, 76px);
  font-weight: 500;
  line-height: .99;
  letter-spacing: -.045em;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 655px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
}

.trust-check {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(214, 191, 139, .4);
  border-radius: 50%;
  font-size: 9px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-photo {
  position: absolute;
  inset: 6px 0 34px 52px;
  overflow: hidden;
  background-color: #172b48;
  background-image:
    linear-gradient(180deg, rgba(7, 19, 38, .02), rgba(7, 19, 38, .66)),
    linear-gradient(120deg, rgba(7, 19, 38, .06), rgba(7, 19, 38, .27)),
    url("assets/images/hero-trade.webp");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-lg);
  clip-path: polygon(8% 0, 100% 0, 100% 91%, 89% 100%, 0 100%, 0 10%);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(184, 153, 88, .13), transparent 40%);
  content: "";
}

.route-card,
.registration-card {
  position: absolute;
  z-index: 2;
  background: rgba(12, 29, 53, .91);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.route-card {
  top: 48px;
  left: 0;
  width: 274px;
  padding: 19px 21px;
}

.route-card > p {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.route-line {
  display: flex;
  align-items: center;
}

.route-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--gold-light);
  border: 2px solid var(--navy-900);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold-light);
}

.route-path {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 0 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}

.route-path::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  height: 100%;
  background: var(--gold-light);
  content: "";
}

.route-cities {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 9px;
}

.route-cities strong {
  font-size: 10px;
  font-weight: 600;
}

.route-cities strong:last-child {
  text-align: right;
}

.registration-card {
  right: -15px;
  bottom: 9px;
  display: flex;
  width: 300px;
  padding: 18px 20px;
  flex-direction: column;
}

.registration-card > span {
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.registration-card strong {
  font-size: 14px;
  font-weight: 600;
}

.registration-card small {
  margin-top: 6px;
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  letter-spacing: .08em;
}

.hero-bottom {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 36px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-bottom > p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.hero-tags span:not(:last-child)::after {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 0 3px 30px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

/* Trust facts */
.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

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

.trust-strip-grid > div {
  display: flex;
  min-height: 130px;
  align-items: center;
  gap: 20px;
  padding: 24px 35px;
  border-right: 1px solid var(--line);
}

.trust-strip-grid > div:first-child {
  padding-left: 0;
}

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

.trust-strip-grid > div > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.trust-strip-grid p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.trust-strip-grid strong {
  color: var(--navy-950);
  font-size: 15px;
}

.trust-strip-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

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

.sector-card {
  position: relative;
  display: flex;
  min-height: 350px;
  padding: 36px;
  flex-direction: column;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.sector-card:hover {
  z-index: 2;
  background: #fbfcfd;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.sector-card-featured::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.sector-index {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #a0a9b4;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .13em;
}

.line-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 33px;
  place-items: center;
  color: var(--gold);
  background: var(--tint-warm);
  border-radius: 50%;
}

.line-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sector-card h3 {
  margin-bottom: 13px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
}

.sector-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.sector-card > a:not(.button) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--navy-900);
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .04em;
}

.sector-card > a:not(.button) span:last-child {
  color: var(--gold);
  font-size: 18px;
}

.sector-card-dark {
  justify-content: flex-end;
  color: var(--paper);
  background: var(--navy-900);
  border-color: var(--navy-900);
  overflow: hidden;
}

.sector-card-dark::before {
  position: absolute;
  top: -70px;
  right: -65px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(184, 153, 88, .27);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 42px rgba(184, 153, 88, .035), 0 0 0 84px rgba(184, 153, 88, .025);
}

.sector-card-dark:hover {
  background: var(--navy-800);
}

.sector-card-dark .card-kicker {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.sector-card-dark h3 {
  color: var(--paper);
  font-size: 28px;
}

.sector-card-dark p:not(.card-kicker) {
  color: rgba(255, 255, 255, .62);
}

.sector-card-dark .button {
  align-self: flex-start;
  margin-top: auto;
}

/* Trade */
.trade-grid {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(480px, 1.16fr);
  align-items: center;
  gap: 100px;
}

.trade-copy h2 {
  margin-bottom: 25px;
}

.trade-copy > .section-lead {
  margin-bottom: 38px;
}

.service-list {
  border-top: 1px solid #ced5dd;
}

.service-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid #ced5dd;
}

.service-list article > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.service-list h3 {
  margin-bottom: 5px;
  color: var(--navy-950);
  font-size: 15px;
  font-weight: 700;
}

.service-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.corridor-panel {
  position: relative;
  min-height: 590px;
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 12%, rgba(91, 126, 168, .24), transparent 30%),
    linear-gradient(145deg, #102542, var(--navy-950));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.corridor-panel::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
}

.corridor-top {
  position: relative;
  z-index: 2;
  padding: 46px 50px 0;
}

.corridor-top p {
  margin-bottom: 13px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .18em;
}

.corridor-top strong {
  display: block;
  max-width: 390px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.2;
}

.corridor-map {
  position: relative;
  height: 290px;
  margin: 30px 30px 0;
}

.corridor-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: var(--gold-light);
}

.corridor-map .map-river {
  fill: none;
  stroke: rgba(104, 155, 206, .22);
  stroke-width: 55;
}

.corridor-map .map-route {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 2;
  stroke-dasharray: 7 7;
}

.map-label {
  position: absolute;
  color: rgba(255, 255, 255, .06);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 108px;
  font-weight: 700;
}

.map-label-cn {
  bottom: 20px;
  left: 2px;
}

.map-label-ru {
  top: -12px;
  right: 5px;
}

.corridor-note {
  position: relative;
  z-index: 2;
  display: flex;
  margin: 0 50px;
  align-items: flex-start;
  gap: 16px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.corridor-note > span {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  flex: 0 0 auto;
  background: var(--red);
  border-radius: 50%;
}

.corridor-note p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.corridor-note strong {
  font-size: 13px;
}

.corridor-note small {
  max-width: 440px;
  margin-top: 5px;
  color: rgba(255, 255, 255, .53);
  font-size: 11px;
  line-height: 1.6;
}

/* RV */
.rv-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  align-items: center;
  gap: 90px;
}

.rv-media {
  position: relative;
  min-height: 570px;
}

.rv-media::before {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 46%;
  height: 43%;
  background-image: radial-gradient(#b3bac3 1px, transparent 1px);
  background-size: 14px 14px;
  content: "";
  opacity: .47;
}

.rv-photo {
  position: absolute;
  inset: 20px 0 0 20px;
  background-color: #d8dde1;
  background-image:
    linear-gradient(180deg, rgba(6, 21, 40, .02), rgba(6, 21, 40, .28)),
    url("assets/images/rv-corridor.webp");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-md);
  clip-path: polygon(0 0, 91% 0, 100% 10%, 100% 100%, 9% 100%, 0 90%);
}

.rv-badge {
  position: absolute;
  right: -24px;
  bottom: -24px;
  display: flex;
  width: 180px;
  height: 118px;
  padding: 24px;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--paper);
  background: var(--navy-900);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.rv-badge span {
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.rv-badge strong {
  margin-top: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

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

.rv-copy .section-lead {
  margin-bottom: 30px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin-bottom: 34px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--graphite);
  font-size: 14px;
}

.check-list li > span:first-child {
  display: grid;
  width: 21px;
  height: 21px;
  margin-top: 2px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: 50%;
  font-size: 10px;
}

/* About */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-pattern {
  position: absolute;
  top: -190px;
  right: -190px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(184, 153, 88, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(184, 153, 88, .018), 0 0 0 160px rgba(184, 153, 88, .012);
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.light-heading h2 {
  color: var(--paper);
}

.light-heading > p {
  color: rgba(255, 255, 255, .57);
}

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

.advantage-grid article {
  min-height: 220px;
  padding: 32px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.advantage-grid article > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.advantage-grid h3 {
  margin: 42px 0 10px;
  color: var(--paper);
  font-size: 16px;
  font-weight: 650;
}

.advantage-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
  line-height: 1.65;
}

/* Process */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-grid::before {
  position: absolute;
  top: 53px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-grid li {
  position: relative;
  padding: 0 28px;
  text-align: center;
}

.process-number {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.process-dot {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  margin: 0 auto 32px;
  background: var(--paper);
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 7px var(--paper);
}

.process-grid h3 {
  margin-bottom: 9px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 20px;
  font-weight: 500;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Company information */
.details-grid {
  display: grid;
  grid-template-columns: minmax(300px, .73fr) minmax(560px, 1.27fr);
  align-items: center;
  gap: 90px;
}

.details-intro h2 {
  margin-bottom: 25px;
}

.details-intro > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
}

.download-note {
  display: block;
  max-width: 300px;
  margin-top: 11px;
  color: #7b8592;
  font-size: 11px;
}

.company-card {
  background: var(--paper);
  border: 1px solid #d8dee5;
  box-shadow: var(--shadow-md);
}

.company-card-head {
  display: grid;
  min-height: 108px;
  padding: 25px 28px;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 18px;
  color: var(--paper);
  background: var(--navy-900);
}

.mini-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
}

.company-card-head > div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.company-card-head strong {
  overflow: hidden;
  font-family: "Songti SC", Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-card-head div > span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  color: #bfe6d5;
  background: rgba(45, 132, 95, .18);
  border: 1px solid rgba(80, 177, 137, .26);
  border-radius: 100px;
  font-size: 9px;
  font-weight: 650;
}

.status-pill i {
  width: 5px;
  height: 5px;
  background: #71cca6;
  border-radius: 50%;
}

.company-data {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
}

.company-data > div {
  min-height: 96px;
  padding: 20px 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-data > div:nth-child(even) {
  border-right: 0;
}

.company-data > div:last-child {
  grid-column: 1 / -1;
}

.company-data dt {
  margin-bottom: 7px;
  color: #89929f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.company-data dd {
  margin: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 17px;
  overflow-wrap: anywhere;
}

.business-scope {
  padding: 22px 27px 26px;
  background: #fafbfc;
}

.business-scope p {
  margin-bottom: 12px;
  color: #89929f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.business-scope ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.business-scope li {
  padding: 7px 10px;
  color: var(--graphite);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 10px;
}

/* Inquiry */
.inquiry-section {
  position: relative;
  color: var(--paper);
  background:
    radial-gradient(circle at 8% 10%, rgba(45, 89, 139, .28), transparent 30%),
    var(--navy-950);
  overflow: hidden;
}

.inquiry-section::after {
  position: absolute;
  right: -220px;
  bottom: -300px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(184, 153, 88, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(184, 153, 88, .015), 0 0 0 180px rgba(184, 153, 88, .01);
  content: "";
}

.inquiry-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .63fr) minmax(600px, 1.37fr);
  align-items: start;
  gap: 88px;
}

.inquiry-copy {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.inquiry-copy h2 {
  margin-bottom: 24px;
  color: var(--paper);
}

.inquiry-copy > p:not(.eyebrow):not(.inquiry-disclaimer) {
  color: rgba(255, 255, 255, .62);
  font-size: 16px;
}

.inquiry-direct {
  display: flex;
  margin-top: 38px;
  padding-top: 25px;
  flex-direction: column;
  border-top: 1px solid var(--line-dark);
}

.inquiry-direct > span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.inquiry-direct a {
  color: var(--gold-light);
  font-size: 17px;
  font-weight: 600;
}

.inquiry-disclaimer {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .38);
  font-size: 11px;
  line-height: 1.6;
}

.inquiry-form {
  padding: 44px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

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

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

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

.field label {
  margin-bottom: 7px;
  color: var(--graphite);
  font-size: 11px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #f9fafb;
  border: 1px solid #d5dbe2;
  border-radius: 3px;
  outline: 0;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field input,
.field select {
  height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 118px;
  padding: 12px 14px;
  resize: vertical;
}

.field select {
  appearance: none;
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, #788492 50%), linear-gradient(135deg, #788492 50%, transparent 50%);
  background-position: calc(100% - 17px) 21px, calc(100% - 12px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa2ad;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #abb4bf;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--paper);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 153, 88, .15);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--red);
}

.field-error {
  min-height: 16px;
  margin-top: 4px;
  color: var(--red);
  font-size: 10px;
  line-height: 1.3;
}

.consent-row {
  display: grid;
  margin-top: 21px;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  cursor: default;
  font-size: 11px;
  line-height: 1.55;
}

.consent-row label {
  cursor: pointer;
}

.consent-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.custom-check {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: #f8f9fa;
  border: 1px solid #cbd2db;
  border-radius: 2px;
}

.consent-row input:focus-visible + .custom-check {
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
}

.consent-row input:checked + .custom-check {
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.consent-row input:checked + .custom-check::after {
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
  content: "";
  transform: rotate(42deg);
}

.text-button {
  display: inline;
  padding: 0;
  color: var(--navy-900);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--navy-900);
  cursor: pointer;
  font-weight: 650;
}

.consent-error {
  display: block;
  margin-left: 28px;
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.form-hint {
  margin: 10px 0 0;
  color: #89929d;
  font-size: 10px;
  text-align: center;
}

/* Contacts and footer */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 150px;
  padding: 29px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  z-index: 1;
  color: var(--paper);
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.contact-card > span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-card:hover > span {
  color: rgba(255, 255, 255, .53);
}

.contact-card strong {
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 500;
  text-overflow: ellipsis;
}

.contact-card i {
  position: absolute;
  top: 24px;
  right: 26px;
  color: var(--gold);
  font-size: 18px;
  font-style: normal;
}

.messenger-row {
  display: flex;
  margin-top: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 26px;
  background: var(--tint);
}

.messenger-row > p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.messenger-row > p span {
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 700;
}

.messenger-row > p small {
  color: var(--muted);
  font-size: 10px;
}

.messenger-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.messenger-buttons a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  transition: border-color var(--transition), transform var(--transition);
}

.messenger-buttons a:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.messenger-icon {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: var(--paper);
  background: var(--navy-900);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 750;
}

.site-footer {
  color: rgba(255, 255, 255, .6);
  background: #050e1d;
}

.footer-main {
  display: grid;
  padding: 72px 0 55px;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 65px;
}

.brand-footer {
  color: var(--paper);
}

.footer-brand > p {
  max-width: 330px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .43);
  font-size: 12px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-column > strong {
  margin-bottom: 10px;
  color: var(--paper);
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column button,
.footer-column > span {
  width: fit-content;
  padding: 0;
  color: rgba(255, 255, 255, .5);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  line-height: 1.65;
  text-align: left;
  transition: color var(--transition);
}

.footer-column a:hover,
.footer-column button:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .35);
  font-size: 9px;
  letter-spacing: .03em;
}

/* Dialog and toast */
.privacy-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: min(86vh, 820px);
  padding: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}

.privacy-dialog::backdrop {
  background: rgba(4, 12, 25, .78);
  backdrop-filter: blur(5px);
}

.dialog-panel {
  max-height: min(86vh, 820px);
  padding: 34px;
  background: var(--paper);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.dialog-head .eyebrow {
  margin-bottom: 8px;
}

.dialog-head h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 30px;
  font-weight: 500;
}

.dialog-close {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-950);
  background: var(--tint);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.privacy-content {
  padding: 25px 0 7px;
  color: var(--muted);
  font-size: 13px;
}

.privacy-content h3 {
  margin: 23px 0 6px;
  color: var(--navy-950);
  font-size: 14px;
}

.privacy-content a {
  color: var(--navy-900);
  border-bottom: 1px solid var(--gold);
}

.legal-warning {
  margin: 26px 0 22px;
  padding: 17px 19px;
  color: #6c5e3d;
  background: #fbf7ed;
  border-left: 3px solid var(--gold);
}

.legal-warning strong {
  color: #5c4d2d;
  font-size: 12px;
}

.legal-warning p {
  margin: 4px 0 0;
  font-size: 11px;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  width: min(390px, calc(100% - 44px));
  padding: 16px 18px;
  color: var(--paper);
  background: var(--navy-900);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  box-shadow: var(--shadow-lg);
  font-size: 12px;
}

.toast.is-visible {
  animation: toast-in 180ms ease-out both;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.noscript {
  position: fixed;
  z-index: 400;
  right: 16px;
  bottom: 16px;
  max-width: 420px;
  padding: 15px 18px;
  color: var(--paper);
  background: var(--red);
  box-shadow: var(--shadow-lg);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 36px;
  }

  .hero-photo {
    left: 35px;
  }

  .registration-card {
    right: 0;
  }

  .trade-grid,
  .rv-grid,
  .details-grid {
    gap: 55px;
  }

  .inquiry-grid {
    grid-template-columns: minmax(250px, .55fr) minmax(540px, 1.45fr);
    gap: 55px;
  }
}

@media (max-width: 960px) {
  .section {
    padding: 88px 0;
  }

  .hero {
    padding-top: 70px;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-photo {
    inset: 6px 5% 35px 9%;
  }

  .route-card {
    left: 3%;
  }

  .registration-card {
    right: 3%;
  }

  .hero-bottom {
    margin-top: 40px;
  }

  .trust-strip-grid > div {
    padding: 20px;
  }

  .trust-strip-grid > div:first-child {
    padding-left: 0;
  }

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

  .trade-grid,
  .rv-grid,
  .details-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  .trade-copy,
  .rv-copy,
  .details-intro,
  .inquiry-copy {
    max-width: 720px;
  }

  .corridor-panel {
    min-height: 540px;
  }

  .rv-grid {
    gap: 70px;
  }

  .rv-media {
    width: min(100%, 700px);
  }

  .rv-copy {
    order: -1;
  }

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

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

  .process-grid::before {
    display: none;
  }

  .process-grid li {
    padding-inline: 35px;
  }

  .process-dot {
    margin-bottom: 22px;
  }

  .details-intro .download-note {
    max-width: 420px;
  }

  .inquiry-copy {
    position: static;
  }

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

  .contact-card {
    min-height: 120px;
  }

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

  .footer-column:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .header-cta {
    display: none;
  }

  .brand-mark {
    width: 35px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .language-switcher button {
    min-width: 29px;
    padding: 0 5px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid {
    min-height: 0;
  }

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

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

  .hero-visual {
    min-height: 390px;
  }

  .hero-photo {
    inset: 0 0 38px 6%;
  }

  .route-card {
    top: 29px;
    left: 0;
    width: 240px;
  }

  .registration-card {
    right: 0;
    width: 250px;
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 25px 0;
  }

  .hero-tags {
    gap: 8px 15px;
  }

  .hero-tags span:not(:last-child)::after {
    margin-left: 15px;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid > div,
  .trust-strip-grid > div:first-child {
    min-height: 98px;
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .split-heading > p {
    font-size: 15px;
  }

  .section-heading h2,
  .trade-copy h2,
  .rv-copy h2,
  .details-intro h2,
  .inquiry-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

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

  .sector-card {
    min-height: 320px;
    padding: 30px;
  }

  .corridor-panel {
    min-height: 500px;
  }

  .corridor-top {
    padding: 35px 30px 0;
  }

  .corridor-map {
    height: 260px;
    margin-inline: 15px;
  }

  .corridor-note {
    margin-inline: 30px;
  }

  .rv-media {
    min-height: 450px;
  }

  .rv-photo {
    inset: 12px 0 0 0;
  }

  .rv-badge {
    right: 0;
  }

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

  .advantage-grid article {
    min-height: 190px;
  }

  .advantage-grid h3 {
    margin-top: 28px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .process-grid li {
    display: grid;
    padding: 0;
    grid-template-columns: 46px 1fr;
    text-align: left;
  }

  .process-number {
    grid-row: 1 / 4;
    margin: 0;
  }

  .process-dot {
    display: none;
  }

  .process-grid h3 {
    margin: 0 0 7px;
  }

  .process-grid p {
    grid-column: 2;
  }

  .company-card-head {
    grid-template-columns: 45px 1fr;
    padding: 22px;
  }

  .mini-mark {
    width: 45px;
    height: 45px;
  }

  .status-pill {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .company-data {
    grid-template-columns: 1fr;
  }

  .company-data > div,
  .company-data > div:nth-child(even) {
    border-right: 0;
  }

  .company-data > div:last-child {
    grid-column: auto;
  }

  .inquiry-form {
    padding: 28px 22px;
  }

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

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

  .messenger-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 25px;
  }

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

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

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

  .dialog-panel {
    padding: 25px 20px;
  }

  .dialog-head h2 {
    font-size: 25px;
  }
}

@media (max-width: 440px) {
  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 32px;
  }

  .header-shell {
    gap: 10px;
  }

  .header-actions {
    gap: 7px;
  }

  .language-switcher button {
    min-width: 26px;
    height: 28px;
    padding: 0 3px;
    font-size: 9px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

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

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 345px;
  }

  .route-card {
    width: 215px;
    padding: 15px;
  }

  .registration-card {
    width: 222px;
    padding: 14px 15px;
  }

  .registration-card strong {
    font-size: 12px;
  }

  .rv-media {
    min-height: 380px;
  }

  .rv-badge {
    width: 150px;
    height: 100px;
    padding: 18px;
  }

  .messenger-buttons {
    width: 100%;
  }

  .messenger-buttons a {
    flex: 1 0 45%;
  }
}

@media (max-width: 370px) {
  .brand-copy em {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .page-progress,
  .hero-actions,
  .inquiry-section,
  .messenger-row,
  .site-footer,
  .toast {
    display: none !important;
  }

  .section,
  .hero {
    padding: 40px 0;
    break-inside: avoid;
  }

  .hero {
    min-height: 0;
    color: #000;
    background: #fff;
  }

  .hero h1,
  .hero-lead {
    color: #000;
  }
}
