:root {
  --color-dark: #212124;
  --color-dark-soft: rgba(33, 33, 36, 0.08);
  --color-light: #ffffff;
  --color-light-soft: rgba(255, 255, 255, 0.08);
  --color-light-muted: rgba(255, 255, 255, 0.72);
  --color-text-muted: rgba(33, 33, 36, 0.72);
  --color-accent: #ea2a2a;
  --color-accent-soft: rgba(234, 42, 42, 0.24);
  --shadow-card: 10px 10px 30px rgba(0, 0, 0, 0.07);
  --font-main: "Aeroport", "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Aeroport";
  src:
    url("../fonts/Aeroport-Light.woff2") format("woff2"),
    url("../fonts/Aeroport-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeroport";
  src:
    url("../fonts/Aeroport-LightItalic.woff2") format("woff2"),
    url("../fonts/Aeroport-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Aeroport";
  src:
    url("../fonts/Aeroport.woff2") format("woff2"),
    url("../fonts/Aeroport.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeroport";
  src:
    url("../fonts/Aeroport-Italic.woff2") format("woff2"),
    url("../fonts/Aeroport-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Aeroport";
  src:
    url("../fonts/Aeroport-Medium.woff2") format("woff2"),
    url("../fonts/Aeroport-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeroport";
  src:
    url("../fonts/Aeroport-MediumItalic.woff2") format("woff2"),
    url("../fonts/Aeroport-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Aeroport";
  src:
    url("../fonts/Aeroport-Bold.woff2") format("woff2"),
    url("../fonts/Aeroport-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeroport";
  src:
    url("../fonts/Aeroport-BoldItalic.woff2") format("woff2"),
    url("../fonts/Aeroport-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  height: auto !important;
  min-height: 0 !important;
  margin: 0;
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 400;
  background: var(--color-dark);
  color: var(--color-dark);
  text-rendering: geometricPrecision;
  font-synthesis: none;
  overflow-x: clip;
}

html.menu-open,
body.menu-open {
  overflow: hidden !important;
  overscroll-behavior: none;
  touch-action: none;
}

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

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

button,
input {
  font: inherit;
}

.scroll-top {
  position: fixed;
  right: max(24px, calc((100vw - 1920px) / 2 + 24px));
  bottom: 24px;
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-light);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
  z-index: 900;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  background: #ff3030;
  box-shadow: 0 16px 36px rgba(234, 42, 42, 0.28);
  transform: translateY(-2px) scale(1);
}

.scroll-top:focus-visible {
  outline: 3px solid rgba(234, 42, 42, 0.35);
  outline-offset: 4px;
}

.scroll-top__icon {
  width: 24px;
  height: 24px;
}

.scroll-top__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.menu-open .scroll-top {
  opacity: 0;
  pointer-events: none;
}

.site {
  width: 100%;
  height: auto;
  min-height: 0;
  overflow-x: clip;
}

.page {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow-x: clip;
}

.page__scale {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
}

.site-page {
  width: 1920px;
  background: var(--color-dark);
}

.container {
  width: 1472px;
  margin: 0 auto;
}

.site-header {
  position: relative;
  top: auto;
  z-index: 20;
  height: 80px;
  padding: 16px 0;
  background: var(--color-dark);
  backdrop-filter: none;
}

.header-section {
  height: 80px;
  min-height: 80px;
  background: var(--color-dark);
}

.header-section .site-header {
  position: relative;
  top: auto;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 50%;
  width: var(--scaled-page-width, 1920px);
  max-width: 100vw;
  height: 80px;
  overflow: hidden;
  background: #212124;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -100%);
  transition: transform 220ms ease, opacity 160ms ease;
  z-index: 1000;
  contain: layout paint;
}

.admin-bar .fixed-header {
  top: 32px;
}

.fixed-header.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.fixed-header__scale {
  width: var(--page-base-width, 1920px);
  transform: scale(var(--page-scale, 1));
  transform-origin: top left;
}

.fixed-header .site-header {
  position: relative;
  top: auto;
}

.site-header__inner {
  position: relative;
  height: 48px;
}

.brand {
  display: inline-flex;
  width: 136px;
  height: 48px;
  flex: 0 0 auto;
}

.site-nav,
.footer-nav,
.footer-meta,
.socials,
.site-header__actions {
  display: flex;
  align-items: center;
}

.site-nav,
.footer-nav,
.footer-meta {
  gap: 32px;
}

.site-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.site-nav__link,
.footer-nav__link {
  position: relative;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-light);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
}

.site-nav__link::after,
.footer-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.footer-nav__link:hover::after,
.footer-nav__link:focus-visible::after {
  transform: scaleX(1);
}

.site-header__actions {
  position: absolute;
  top: 0;
  right: 0;
  gap: 12px;
}

.site-header .brand {
  position: absolute;
  top: 0;
  left: 0;
}

.site-header__toggle {
  display: none;
}

.site-header__toggle-close,
.burger-menu {
  display: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  border: 0;
  border-radius: 16px;
  background: var(--color-accent);
  color: var(--color-light);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  transform: translateY(0);
  box-shadow: 0 12px 28px rgba(12, 18, 28, 0);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    opacity 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -130%;
  width: 120%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 48%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-18deg);
  transition: left 320ms ease;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(12, 18, 28, 0.18);
}

.button:hover::before {
  left: 120%;
}

.button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(12, 18, 28, 0.18);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(12, 18, 28, 0.14);
}

.button--muted {
  background: #505759;
}

.button--header-contact {
  min-width: 173px;
}

.button--header-cta {
  min-width: 201px;
}

.button--split {
  justify-content: center;
}

.button--full {
  width: 100%;
}

.button__muted-text {
  color: var(--color-light-muted);
  font-weight: 400;
  letter-spacing: 0;
}

.hero-card,
.stat-card,
.service-card,
.cta-banner,
.steps-card,
.contact-card,
.footer-card,
.transport-card__body,
.trade-card__panel,
.delivery-card__panel {
  transition: box-shadow 220ms ease;
}

.hero-card:hover,
.stat-card:hover,
.service-card:hover,
.cta-banner:hover,
.steps-card:hover,
.contact-card:hover,
.footer-card:hover,
.transport-card:hover .transport-card__body,
.trade-card:hover .trade-card__panel,
.delivery-card:hover .delivery-card__panel {
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.hero-section {
  padding: 60px 0 64px;
}

.hero-card {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: stretch;
  padding: 64px;
  min-height: 560px;
  overflow: hidden;
  border-radius: 48px;
  background: var(--color-light-soft);
}

.hero-card__content,
.hero-card__visual {
  flex: 0 0 auto;
  width: 664px;
}

.hero-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  min-height: 432px;
}

.hero-card__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 664px;
}

.hero-card__title,
.section-title,
.floating-card__title,
.service-card__title,
.trade-card__title,
.cta-banner__title,
.step-card__title,
.contact-card__title {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
}

.hero-card__title {
  color: var(--color-light);
  font-size: 48px;
  line-height: 56px;
}

.hero-card__subtitle,
.section-subtitle,
.floating-card__description,
.service-card__description,
.trade-card__description,
.cta-banner__subtitle,
.step-card__description,
.contact-card__text,
.form-status {
  margin: 0;
  font-family: var(--font-main);
  font-style: normal;
  letter-spacing: 0;
}

.hero-card__subtitle {
  color: var(--color-light-muted);
  font-size: 24px;
  line-height: 32px;
}

.hero-card__button {
  min-width: 297px;
  width: max-content;
}

.hero-card__visual {
    position: relative;
  height: 432px;
}

.hero-card__orbit,
.hero-card__globe {
  display: none;
}

.hero-globe-scene {
  position: absolute;
  top: -46px;
  left: 70px;
  width: 524px;
  height: 524px;
}

.hero-globe-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 338px);
  gap: 40px;
  margin-top: 40px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  min-height: 168px;
  padding: 32px;
  border-radius: 48px;
  background: var(--color-light-soft);
  color: var(--color-light);
  backdrop-filter: blur(12px);
}

.stat-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 8px;
  border-radius: 16px;
  background: var(--color-accent-soft);
}

.stat-card__icon img {
  width: 32px;
  height: 32px;
}

.stat-card__value {
  font-family: var(--font-main);
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  white-space: nowrap;
}

.stat-card__value--split {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
}

.stat-card__suffix {
  font-family: var(--font-main);
  font-size: 40px;
  line-height: 26px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
}

.stat-card__text {
  margin: 0;
  font-family: var(--font-main);
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
}

.main-surface {
  padding-top: 64px;
  background: var(--color-light);
  border-radius: 64px 64px 0 0;
}

.section--trade {
  background: var(--color-light);
}

.section {
  padding: 80px 0 0;
}

.section--first {
  padding-top: 0;
}

.section--transport {
  padding-bottom: 80px;
}

.section--services .section-head {
  align-items: center;
  width: 100%;
}

.section--last {
  padding-bottom: 160px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
}

.section-head--compact {
  margin-bottom: 32px;
}

.section-head--center {
  text-align: center;
}

.section-title {
  font-size: 48px;
  line-height: 56px;
  color: var(--color-dark);
}

.section-title--light {
  color: var(--color-light);
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 24px;
  line-height: 32px;
}

.cards-row {
  display: flex;
  gap: 40px;
}

.cards-row--transport {
  align-items: flex-start;
  height: 392px;
}

.cards-row + .cards-row {
  margin-top: 40px;
}

.cards-row--transport + .cards-row--transport {
  margin-top: 0;
}

.floating-card,
.trade-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floating-card--wide {
  width: 586px;
}

.floating-card--narrow {
  width: 404px;
}

.floating-card--wide-right {
  width: 585px;
}

.floating-card--transport-air {
  width: 586px;
}

.floating-card--transport-auto {
  width: 404px;
}

.floating-card--transport-rail {
  width: 402px;
}

.floating-card--transport-sea {
  width: 403px;
}

.floating-card--transport-express {
  width: 404px;
}

.floating-card--transport-multimodal {
  width: 585px;
}

.floating-card--delivery {
  width: 464px;
  flex: 0 0 auto;
}

.floating-card__visual,
.trade-card__visual {
    position: relative;
  z-index: 2;
  width: 389px;
  height: 240px;
  margin-bottom: -200px;
  filter: drop-shadow(var(--shadow-card));
  overflow: visible;
}

.floating-card__visual img,
.trade-card__visual img {
  position: absolute;
  max-width: none;
}

.floating-card__panel,
.trade-card__panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  min-height: 352px;
  padding: 245px 32px 32px;
  border-radius: 48px;
  background: var(--color-dark-soft);
}

.floating-card__panel--delivery {
  min-height: 456px;
  justify-content: space-between;
}

.trade-card__panel {
  min-height: 360px;
  padding-top: 272px;
}

.trade-card__panel--large {
  min-height: 336px;
  padding-top: 272px;
}

.floating-card__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.floating-card__title,
.service-card__title,
.trade-card__title,
.step-card__title,
.contact-card__title {
  color: var(--color-dark);
  font-size: 32px;
  line-height: 32px;
}

.floating-card__description,
.service-card__description,
.trade-card__description,
.step-card__description,
.contact-card__text {
  color: var(--color-text-muted);
  font-size: 20px;
  line-height: 24px;
}

.floating-card__date {
  font-family: var(--font-main);
  color: var(--color-dark);
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
}

.floating-card--transport-air .floating-card__visual img {
  top: -51px;
  left: 18px;
  width: 377px;
  height: 342px;
}

.floating-card--transport-air .floating-card__copy {
  width: 522px;
}

.floating-card--transport-auto .floating-card__visual img {
  top: -41px;
  left: 17px;
  width: 352px;
  height: 352px;
}

.floating-card--transport-auto .floating-card__copy {
  width: 340px;
}

.floating-card--transport-rail .floating-card__visual img {
  top: -34px;
  left: 34px;
  width: 323px;
  height: 323px;
}

.floating-card--transport-rail .floating-card__copy {
  width: 338px;
}

.floating-card--transport-sea .floating-card__visual img {
  top: -45px;
  left: 30px;
  width: 330px;
  height: 330px;
}

.floating-card--transport-sea .floating-card__copy {
  width: 339px;
}

.floating-card--transport-express .floating-card__visual img {
  top: -11px;
  left: 64px;
  width: 261px;
  height: 261px;
}

.floating-card--transport-express .floating-card__copy {
  width: 340px;
}

.floating-card--transport-multimodal .floating-card__visual img {
  top: -36px;
  left: 28px;
  width: 334px;
  height: 334px;
}

.floating-card--transport-multimodal .floating-card__copy {
  width: 521px;
}

.transport-grid {
  width: 1472px;
  height: 784px;
  display: flex;
  flex-direction: column;
}

.transport-row {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 392px;
}

.transport-card {
  position: relative;
  height: 392px;
  flex: 0 0 auto;
}

.transport-card--air {
  width: 586px;
}

.transport-card--auto {
  width: 404px;
}

.transport-card--rail {
  width: 402px;
}

.transport-card--sea {
  width: 403px;
}

.transport-card--express {
  width: 404px;
}

.transport-card--multimodal {
  width: 585px;
}

.transport-card__image {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 389px;
  height: 240px;
  filter: drop-shadow(var(--shadow-card));
  overflow: hidden;
}

.transport-card__image img {
  position: absolute;
  max-width: none;
}

.transport-card--air .transport-card__image {
  left: 98.5px;
}

.transport-card--auto .transport-card__image {
  left: 7.5px;
}

.transport-card--rail .transport-card__image {
  left: 6.5px;
}

.transport-card--sea .transport-card__image {
  left: 7px;
}

.transport-card--express .transport-card__image {
  left: 7.5px;
}

.transport-card--multimodal .transport-card__image {
  top: -32px;
  left: -36px;
  width: 657px;
  height: 300px;
  overflow: visible;
}

.transport-card__body {
  position: absolute;
  top: 40px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 352px;
  padding: 245px 32px 32px;
  border-radius: 48px;
  background: rgba(33, 33, 36, 0.08);
  z-index: 1;
}

.transport-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  text-align: center;
}

.transport-card__content--air {
  width: 522px;
  height: 120px;
}

.transport-card__content--auto {
  width: 340px;
}

.transport-card__content--rail {
  width: 338px;
}

.transport-card__content--sea {
  width: 339px;
}

.transport-card__content--express {
  width: 340px;
}

.transport-card__content--multimodal {
  width: 521px;
  height: 120px;
}

.transport-card__title {
  width: 100%;
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-dark);
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
}

.transport-card__description {
  width: 100%;
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text-muted);
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
}

.transport-card__accent {
  color: var(--color-dark);
  font-family: var(--font-main);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}

.transport-card--air .transport-card__image img {
  top: -51px;
  left: 18px;
  width: 377px;
  height: 342px;
}

.transport-card--auto .transport-card__image img {
  top: -41px;
  left: 17px;
  width: 352px;
  height: 352px;
}

.transport-card--rail .transport-card__image img {
  top: -34px;
  left: 34px;
  width: 323px;
  height: 323px;
}

.transport-card--sea .transport-card__image img {
  top: -45px;
  left: 30px;
  width: 330px;
  height: 330px;
}

.transport-card--express .transport-card__image img {
  top: -11px;
  left: 64px;
  width: 261px;
  height: 261px;
}

.transport-card--multimodal .transport-card__image img {
  top: 30px;
  left: 0;
  width: 100%;
  height: 90%;
  object-fit: contain;
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(2, 716px);
  gap: 40px;
}

.service-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 168px;
  min-height: 168px;
  padding: 32px;
  border-radius: 48px;
  background: var(--color-dark-soft);
  backdrop-filter: blur(12px);
}

.service-card__icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 12px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-accent-soft);
  flex: 0 0 auto;
}

.service-card__icon-box img {
  width: 48px;
  height: 48px;
}

.service-card__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 auto;
  min-width: 0;
}

.service-card__description {
  width: 100%;
}

.service-card__description--nowrap {
  white-space: nowrap;
}

.section--services .service-card {
  backdrop-filter: none;
}

.section--services .service-card__copy {
  justify-content: center;
}

.section--services .service-card__title--nowrap {
  white-space: nowrap;
}

.section--trade .section-head {
  align-items: center;
  width: 100%;
}

.trade-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 1472px;
}

.trade-row {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.trade-card {
  position: relative;
  display: block;
  flex: 0 0 auto;
}

.trade-row--top .trade-card {
  width: 464px;
  height: 400px;
}

.trade-row--bottom .trade-card {
  width: 716px;
  height: 376px;
}

.trade-card__decor {
  position: absolute;
  top: 51px;
  left: 127px;
  z-index: 3;
  width: 61.569px;
  height: 68.434px;
  transform: rotate(-28.82deg);
}

.trade-card__visual {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 389px;
  height: 240px;
  margin-bottom: 0;
  overflow: visible;
  filter: drop-shadow(var(--shadow-card));
  transform: translateX(-50%);
}

.trade-card__visual img {
  position: absolute;
  max-width: none;
}

.trade-card__panel {
  position: absolute;
  top: 40px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 0;
  padding: 245px 32px 32px;
  border-radius: 48px;
}

.trade-card__panel--buyout,
.trade-card__panel--sourcing,
.trade-card__panel--inspection {
  height: 360px;
}

.trade-card__panel--consolidation,
.trade-card__panel--fulfillment {
  height: 336px;
}

.trade-card__panel--buyout {
  background: rgba(255, 106, 0, 0.32);
}

.trade-card__panel--sourcing {
  background: rgba(105, 21, 234, 0.32);
}

.trade-card__panel--inspection {
  background: rgba(0, 225, 255, 0.32);
}

.trade-card__panel--consolidation {
  background: rgba(70, 209, 42, 0.32);
}

.trade-card__panel--fulfillment {
  background: rgba(42, 109, 209, 0.32);
}

.trade-card__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  text-align: center;
}

.trade-card__copy--top {
  width: 411px;
}

.trade-card__copy--bottom {
  width: 100%;
}

.trade-card__title,
.trade-card__description {
  width: 100%;
}

.trade-card__visual--buyout img {
  top: -67.992px;
  left: 7.352px;
  width: 374.257px;
  height: 374.328px;
}

.trade-card__visual--sourcing img {
  top: -52.536px;
  left: 19.722px;
  width: 323.492px;
  height: 323.544px;
}

.trade-card__visual--inspection img {
  inset: 0;
  width: 389px;
  height: 240px;
  object-fit: fill;
}

.trade-card__visual--consolidation img {
  top: -102.696px;
  left: 13.382px;
  width: 373.051px;
  height: 438.696px;
  transform: scaleX(-1);
}

.trade-card__visual--fulfillment img {
  inset: 0;
  width: 389px;
  height: 240px;
  object-fit: cover;
}

.heavy-icon {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  transform: rotate(180deg) scaleY(-1);
  overflow: hidden;
  border-radius: 4px;
}

.heavy-icon span {
  position: absolute;
  display: block;
  width: 48px;
  height: 6px;
  transform: rotate(45deg);
}

.heavy-icon span:nth-child(1) { left: -4px; top: -2px; background: #fff; }
.heavy-icon span:nth-child(2) { left: 4px; top: -12px; background: #fff; }
.heavy-icon span:nth-child(3) { left: 2px; top: -6px; background: var(--color-accent); }
.heavy-icon span:nth-child(4) { left: 12px; top: -14px; height: 7px; background: var(--color-accent); }
.heavy-icon span:nth-child(5) { left: -7px; top: 2px; background: var(--color-accent); }
.heavy-icon span:nth-child(6) { left: -18px; top: 10px; height: 8px; background: var(--color-accent); }
.heavy-icon span:nth-child(7) { left: -13px; top: 5px; background: #fff; }

.trade-card {
  width: 464px;
}

.trade-card--large {
  width: 716px;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 64px;
  border-radius: 48px;
  background-color: var(--color-dark);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cta-banner--custom {
  min-height: 392px;
  background-image: url("../img/cta-custom-bg.webp");
}

.cta-banner--calc {
  background-image: url("../img/cta-calc-bg.webp");
}

.cta-banner__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 682px;
}

.cta-banner__content--wide {
  width: 720px;
}

.cta-banner__title {
  color: var(--color-light);
  font-size: 48px;
  line-height: 56px;
}

.cta-banner__subtitle {
  color: var(--color-light-muted);
  font-size: 24px;
  line-height: 32px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cf7-form-slot,
.cf7-form-slot .wpcf7 {
  width: 100%;
}

.cf7-form-slot .wpcf7-form.lead-form p {
  display: contents;
  margin: 0;
}

.cf7-form-slot .wpcf7-form-control-wrap {
  display: block;
}

.cf7-form-slot .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: var(--color-red);
  font-size: 13px;
  line-height: 16px;
}

.cf7-form-slot .wpcf7-response-output {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--color-light);
  font-size: 14px;
  line-height: 20px;
}

.cf7-form-slot .wpcf7-spinner {
  margin: 0 0 0 12px;
}

.lead-form__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-form__fields--compact {
  width: 362px;
}

.lead-form__grid {
  display: grid;
  gap: 16px;
}

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

.lead-form__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lead-form__checks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input {
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(120, 120, 128, 0.16);
  border-radius: 12px;
  background: var(--color-light);
  color: rgba(33, 33, 36, 0.72);
  font-size: 16px;
  line-height: 24px;
}

.input.is-invalid,
.wpcf7-form-control-wrap.is-invalid .input {
  border-color: var(--color-red);
  background: #fff4f4;
}

.logica-field-error {
  display: block;
  margin-top: 6px;
  color: var(--color-red);
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
}

.logica-field-error--check {
  margin: -8px 0 0 32px;
}

.check-row {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-light);
  font-family: var(--font-main);
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  cursor: pointer;
}

.check-row__input {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  width: 20px;
  height: 20px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

.check-row__box {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  background: transparent;
  flex: 0 0 auto;
}

.check-row.is-invalid .check-row__box {
  border-color: var(--color-red);
}

.check-row__input:checked + .check-row__box {
  border-color: transparent;
  background: url("../img/checkbox.svg") center/contain no-repeat;
}

.check-row--cf7 .wpcf7-form-control-wrap,
.check-row--cf7 .wpcf7-form-control,
.check-row--cf7 .wpcf7-list-item,
.check-row--cf7 .wpcf7-list-item label {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  width: 20px;
  height: 20px;
  margin: 0;
}

.check-row--cf7 .check-row__native input,
.check-row--cf7 .wpcf7-list-item input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 20px;
  height: 20px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.check-row--cf7 .wpcf7-list-item-label {
  display: none;
}

.check-row--cf7:has(input:checked) .check-row__box {
  border-color: transparent;
  background: url("../img/checkbox.svg") center/contain no-repeat;
}

.check-row__input:focus-visible + .check-row__box {
  outline: 2px solid rgba(255, 255, 255, 0.64);
  outline-offset: 3px;
}

.check-row__label a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.check-row--privacy {
  align-items: flex-start;
  max-width: 100%;
  white-space: normal;
}

.check-row--privacy .check-row__input {
  top: 0;
  transform: none;
}

.check-row--privacy .check-row__label {
  max-width: calc(100% - 32px);
}

.section--cta-custom .cta-banner__content {
  width: 682px;
}

.section--cta-custom .cta-banner__title,
.section--cta-custom .cta-banner__subtitle {
  width: 100%;
}

.section--cta-custom .lead-form--compact {
  width: 560px;
  gap: 24px;
}

.section--cta-custom .lead-form__fields--compact {
  width: 362px;
}

.section--cta-custom .button {
  margin-top: 8px;
  align-self: flex-start;
}

.section--calc .cta-banner {
  display: flex;
  align-items: center;
  min-height: 368px;
  padding: 64px 0 64px 64px;
}

.section--calc .cta-banner__content--wide {
  width: 682px;
}

.section--calc .lead-form--calc {
  gap: 24px;
  width: 682px;
}

.section--calc .lead-form__fields--calc {
  gap: 16px;
  width: 682px;
}

.section--calc .lead-form__checks--calc {
  gap: 12px;
}

.section--calc .check-row {
  width: max-content;
  letter-spacing: -0.33px;
  white-space: nowrap;
}

.section--calc .check-row--privacy {
  width: 682px;
  white-space: normal;
}

.section--calc .button {
  align-self: flex-start;
  padding: 12px;
}

.form-status {
  min-height: 20px;
  color: var(--color-light-muted);
  font-size: 16px;
  line-height: 20px;
}

.section--steps .section-head {
  align-items: center;
  width: 100%;
}

.steps-layout {
  display: flex;
  flex-direction: column;
  gap: 33px;
  width: 1472px;
}

.steps-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.steps-progress__item {
  position: relative;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
}

.steps-progress__base {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(217, 217, 214, 0.64);
  border-radius: 50%;
}

.steps-progress__item--4 .steps-progress__base {
  border-width: 1px;
  border-color: #505759;
}

.steps-progress__accent {
  position: absolute;
  display: block;
  pointer-events: none;
}

.steps-progress__item--1 .steps-progress__accent {
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
}

.steps-progress__item--2 .steps-progress__accent {
  top: 0;
  right: 0;
  width: 32px;
  height: 64px;
}

.steps-progress__item--3 .steps-progress__accent,
.steps-progress__item--4 .steps-progress__accent {
  inset: 0;
  width: 64px;
  height: 64px;
}

.steps-progress__number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: var(--font-main);
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
}

.steps-progress__connector {
  width: 262px;
  height: 2px;
  background: url("../img/decor-step-line.svg") center/contain no-repeat;
  flex: 0 0 auto;
}

.steps-cards {
  display: grid;
  grid-template-columns: repeat(4, 338px);
  gap: 40px;
  width: 100%;
}

.steps-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 0;
  min-height: 160px;
  padding: 32px;
  border-radius: 32px;
  background: rgba(33, 33, 36, 0.08);
  text-align: center;
  overflow: hidden;
}

.steps-card__title {
  width: 100%;
  margin: 0;
  color: #000;
  font-family: var(--font-main);
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
}

.steps-card__description {
  width: 100%;
  margin: 0;
  color: rgba(33, 33, 36, 0.72);
  font-family: var(--font-main);
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
}

.section--delivery .section-head {
  align-items: center;
  width: 100%;
}

.delivery-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 1473px;
}

.delivery-card {
  position: relative;
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
  width: 464px;
  min-width: 0;
  padding-bottom: 200px;
}

.delivery-card__visual {
  position: relative;
  z-index: 2;
  width: 389px;
  height: 240px;
  margin-bottom: -200px;
  overflow: visible;
  filter: drop-shadow(var(--shadow-card));
}

.delivery-card__visual img {
  position: absolute;
  max-width: none;
}

.delivery-card__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 456px;
  margin-bottom: -200px;
  padding: 245px 32px 32px;
  border-radius: 48px;
  background: rgba(33, 33, 36, 0.08);
}

.delivery-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 411px;
}

.delivery-card__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  text-align: center;
}

.delivery-card__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.delivery-card__title,
.delivery-card__description,
.delivery-card__date {
  width: 100%;
  margin: 0;
  font-family: var(--font-main);
  font-style: normal;
  letter-spacing: 0;
}

.delivery-card__title,
.delivery-card__date {
  color: var(--color-dark);
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
}

.delivery-card__description {
  color: rgba(33, 33, 36, 0.72);
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}

.delivery-card__visual--auto img {
  top: -47.688px;
  left: 10.386px;
  width: 365.429px;
  height: 365.476px;
}

.delivery-card__visual--fast-auto img {
  top: -29px;
  left: 45.511px;
  width: 298.023px;
  height: 298px;
}

.delivery-card__visual--air img {
  top: -56.472px;
  left: 11.942px;
  width: 389px;
  height: 352.94px;
}

.footer-section {
  background: var(--color-dark);
}

.contacts-section {
  position: relative;
  padding: 64px 0 80px;
  background: var(--color-light);
  overflow: hidden;
  isolation: isolate;
}

.contacts-section .section-head {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 48px;
}

.contacts-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 64px 64px 0 0;
  background: var(--color-dark);
  z-index: 0;
}

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

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 724px);
  grid-template-rows: 328px 160px;
  gap: 24px;
  width: 1472px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  height: 160px;
  padding: 32px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  overflow: hidden;
}

.contact-card--large {
  height: 328px;
}

.contact-card__title {
  color: var(--color-light);
  width: 100%;
  margin: 0;
  font-family: var(--font-main);
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
}

.contact-card__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-light-muted);
  width: 100%;
  font-family: var(--font-main);
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  font-style: normal;
  letter-spacing: 0;
}

.contact-card__text-block {
  margin: 0;
}

.contact-card__text-block + .contact-card__text-block {
  margin-top: 24px;
}

.contact-card__text a {
  color: inherit;
  text-decoration: none;
}

.footer-section {
  padding: 0 0 32px;
}

.footer-section .container {
  width: 1473px;
}

.footer-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-light);
  overflow: hidden;
}

.footer-card__top,
.footer-card__bottom {
  display: flex;
  align-items: center;
  width: 100%;
}

.footer-card__top {
  position: relative;
  justify-content: center;
  height: 64px;
  min-height: 64px;
}

.footer-card__bottom {
  justify-content: space-between;
  align-items: flex-end;
  min-height: 48px;
}

.footer-brand {
  position: absolute;
  top: 0;
  left: 0;
  width: 136px;
  height: 48px;
}

.footer-brand img {
  width: 136px;
  height: 48px;
  max-width: none;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  white-space: nowrap;
}

.footer-nav__link {
  color: var(--color-light);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
}

.footer-nav__link:visited {
  color: var(--color-light);
}

.socials--footer {
  position: absolute;
  top: 8px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.socials--footer .socials__link {
  display: inline-flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.socials--footer .socials__link img {
  display: block;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.socials--footer .socials__link:hover img,
.socials--footer .socials__link:focus-visible img {
  opacity: 0.8;
  transition: opacity 220ms ease;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--color-light-muted);
  white-space: nowrap;
}

.footer-meta a {
  color: var(--color-light-muted);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
}

.footer-meta a:visited {
  color: var(--color-light-muted);
}

.footer-dev {
  display: flex;
  flex: 0 0 188.108px;
  justify-content: flex-end;
  align-items: flex-end;
  width: 188.108px;
  height: 48px;
  overflow: hidden;
}

.footer-shake {
  display: block;
  width: 188.108px;
  min-width: 188.108px;
  max-width: 188.108px;
  height: 48px;
  min-height: 48px;
  object-fit: contain;
  object-position: right bottom;
}

.footer-dev picture {
  display: block;
  width: 188.108px;
  height: 48px;
}

@media (max-width: 768px) {
  body {
    overflow-x: clip;
  }

  .page {
    max-width: 390px;
    overflow-x: clip;
  }

  .site-page {
    width: 390px;
    overflow-x: clip;
  }

  .container,
  .footer-section .container {
    width: 100%;
    max-width: 358px;
  }

  .main-surface,
  .contacts-section,
  .footer-section,
  .hero-card,
  .stat-card,
  .service-card,
  .transport-card,
  .trade-card,
  .delivery-card,
  .steps-card,
  .cta-banner,
  .contact-card,
  .footer-card {
    max-width: 100%;
  }

  .hero-card__content,
  .hero-card__copy,
  .service-card__copy,
  .transport-card__content,
  .trade-card__copy,
  .delivery-card__content,
  .contact-card__text,
  .footer-meta,
  .footer-nav,
  .lead-form,
  .lead-form__fields,
  .lead-form__checks {
    min-width: 0;
  }

  .site-header {
    position: relative;
    top: 0;
    padding: 16px 0;
    background: var(--color-dark);
    backdrop-filter: none;
    z-index: 40;
  }

  .site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    height: 48px;
    z-index: 2;
  }

  .site-header .brand {
    position: static;
    width: 136px;
    height: 48px;
  }

  .site-header__toggle {
    display: inline-flex;
    position: relative;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .site-header__toggle-close {
    display: block;
    width: 40px;
    height: 40px;
    opacity: 0;
    transition: opacity 220ms ease;
  }

  .site-header__toggle span {
    position: absolute;
    left: 4.167px;
    width: 31.667px;
    height: 3.333px;
    background: var(--color-accent);
    transition: transform 220ms ease, opacity 220ms ease, top 220ms ease;
  }

  .site-header__toggle span:nth-child(1) {
    top: 10px;
  }

  .site-header__toggle span:nth-child(2) {
    top: 18.33px;
  }

  .site-header__toggle span:nth-child(3) {
    top: 26.67px;
  }

  .site-header--menu-open .site-header__toggle span:nth-child(1) {
    opacity: 0;
  }

  .site-header--menu-open .site-header__toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header--menu-open .site-header__toggle span:nth-child(3) {
    opacity: 0;
  }

  .site-header--menu-open .site-header__toggle-close {
    opacity: 1;
  }

  .site-nav--desktop,
  .site-header__actions--desktop {
    display: none;
  }

  .burger-menu {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    flex-direction: column;
    width: 390px;
    height: 100dvh;
    padding: 133px 16px 32px;
    background: var(--color-dark);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 320ms ease, opacity 220ms ease;
    z-index: 79;
  }

  .burger-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
    margin: 0;
    padding: 0;
    white-space: nowrap;
  }

  .burger-menu__link {
    position: relative;
    color: var(--color-light);
    font-family: var(--font-main);
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0;
  }

  .burger-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: auto;
  }

  .burger-menu__button {
    width: 100%;
    white-space: nowrap;
    text-align: center;
  }

  .site-header--menu-open .burger-menu {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-header--menu-open {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 390px;
    height: 100dvh;
    padding: 16px 0 0;
    background: var(--color-dark);
    backdrop-filter: none;
    overflow: hidden;
    z-index: 80;
  }

  .site-header--menu-open .site-header__inner {
    position: relative;
    flex: 0 0 48px;
    padding: 0 16px;
    z-index: 81;
  }

  .lead-form .button,
  .cta-banner .button,
  .contact-card .button,
  .delivery-card .button {
    text-align: center;
  }

  .lead-form .button--split,
  .cta-banner .button--split,
  .contact-card .button--split,
  .delivery-card .button--split {
    flex-wrap: wrap;
  }

  .hero-section {
    padding: 24px 0 32px;
  }

  .hero-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    width: 100%;
    min-height: 608px;
    border-radius: 32px;
    overflow: hidden;
  }

  .hero-card__content,
  .hero-card__visual,
  .hero-card__copy {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
  }

  .hero-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
    min-height: 0;
  }

  .hero-card__copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .hero-card__title {
    width: 100%;
    font-size: 32px;
    line-height: 32px;
    white-space: normal;
  }

  .hero-card__subtitle {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    white-space: normal;
  }

  .hero-card__subtitle br {
    display: none;
  }

  .hero-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
  }

  .hero-card__button span {
    white-space: nowrap;
  }

  .hero-card__visual {
    position: relative;
    height: 208px;
    min-height: 208px;
  }

  .hero-globe-scene {
    top: -22px;
    left: 34px;
    width: 290px;
    height: 290px;
  }

  .stats-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
    width: 100%;
  }

  .stat-card {
    width: 100%;
    min-height: 0;
    padding: 24px;
    border-radius: 32px;
  }

  .stat-card__top {
    width: 100%;
    gap: 16px;
  }

  .stat-card__icon {
    width: 32px;
    height: 32px;
    padding: 5.333px;
    border-radius: 10.667px;
  }

  .stat-card__icon img {
    width: 21.333px;
    height: 21.333px;
  }

  .stat-card__value,
  .stat-card__suffix {
    font-size: 32px;
    line-height: 32px;
  }

  .stat-card__suffix {
    line-height: 24px;
  }

  .stat-card__text {
    font-size: 16px;
    line-height: 20px;
    white-space: normal;
  }

  .stat-card__text br {
    display: none;
  }

  .main-surface {
    padding-top: 32px;
    border-radius: 32px 32px 0 0;
  }

  .section {
    padding-top: 48px;
  }

  .section--first {
    padding-top: 0;
  }

  .section--calc {
    padding-bottom: 0;
  }

  .section-head {
    gap: 8px;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 32px;
    line-height: 40px;
  }

  .section-subtitle {
    font-size: 20px;
    line-height: 28px;
  }

  .service-columns,
  .service-column {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contacts-grid {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 24px;
  }

  .service-card {
    gap: 16px;
    min-height: 0;
    height: auto;
    padding: 24px;
    border-radius: 32px;
  }

  .service-card__icon-box {
    width: 48px;
    height: 48px;
    padding: 8px;
    border-radius: 16px;
  }

  .service-card__icon-box img {
    width: 32px;
    height: 32px;
  }

  .service-card__copy {
    gap: 12px;
  }

  .service-card__description--nowrap,
  .section--services .service-card__title--nowrap {
    white-space: normal;
  }

  .service-card__title,
  .trade-card__title,
  .delivery-card__title,
  .contact-card__title {
    font-size: 24px;
    line-height: 32px;
  }

  .service-card__description,
  .trade-card__description,
  .delivery-card__description {
    font-size: 16px;
    line-height: 20px;
  }

  .transport-grid,
  .trade-grid,
  .delivery-grid {
    width: 100%;
    gap: 16px;
  }

  .transport-row,
  .trade-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    height: auto;
  }

  .transport-card,
  .transport-card--air,
  .transport-card--auto,
  .transport-card--rail,
  .transport-card--sea,
  .transport-card--express,
  .transport-card--multimodal,
  .trade-row--top .trade-card,
  .trade-row--bottom .trade-card,
  .trade-card,
  .trade-card--large {
    width: 100%;
  }

  .transport-card {
    height: auto;
    min-height: 360px;
  }

  .transport-card__image {
    top: 0;
    left: 50%;
    width: 326px;
    height: 164px;
    transform: translateX(-50%);
  }

  .transport-card__image img {
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    transform: none !important;
    left: 0 !important;
    top: 0 !important;
  }

  .transport-card__body {
    top: 24px;
    height: auto;
    min-height: 336px;
    justify-content: flex-start;
    padding: 180px 24px 24px;
    border-radius: 32px;
  }

  .transport-card__title {
    font-size: 28px;
    line-height: 28px;
  }

  .transport-card__description,
  .transport-card__accent {
    font-size: 16px;
    line-height: 20px;
  }

  .trade-card__decor {
    display: none;
  }

  .trade-card__visual {
    top: 0;
    left: 50%;
    width: 326px;
    height: 164px;
    transform: translateX(-50%);
  }

  .trade-card__visual img {
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    transform: none !important;
    left: 0 !important;
    top: 0 !important;
  }

  .trade-card__panel {
    top: 24px;
    min-height: 0;
    height: auto;
    padding: 180px 24px 24px;
    border-radius: 32px;
  }

  .trade-card__panel--buyout,
  .trade-card__panel--sourcing,
  .trade-card__panel--inspection,
  .trade-card__panel--consolidation,
  .trade-card__panel--fulfillment {
    height: auto;
    min-height: 282px;
  }

  .trade-card__copy {
    gap: 16px;
  }

  .section--trade .section-head {
    width: 358px;
    min-height: 160px;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .section--trade .container {
    width: 390px;
    max-width: none;
    margin-left: -16px;
    margin-right: -16px;
  }

  .section--trade .section-title {
    font-size: 32px;
    line-height: 32px;
  }

  .section--trade .section-subtitle {
    font-size: 20px;
    line-height: 28px;
  }

  .section--trade .trade-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    width: 390px;
    margin-left: 0;
    padding-left: 16px;
    padding-right: 16px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .section--trade .trade-grid::-webkit-scrollbar {
    display: none;
  }

  .section--trade .trade-row {
    display: contents;
  }

  .section--trade .trade-card,
  .section--trade .trade-card--large,
  .section--trade .trade-row--top .trade-card,
  .section--trade .trade-row--bottom .trade-card {
    flex: 0 0 326px;
    width: 326px;
    height: 373px;
    scroll-snap-align: start;
  }

  .section--trade .trade-card__visual {
    top: 0;
    left: 0;
    width: 326px;
    height: 201px;
    transform: none;
  }

  .section--trade .trade-card__panel {
    top: 37px;
    width: 326px;
    height: 336px;
    min-height: 336px;
    justify-content: flex-start;
    padding: 180px 24px 24px;
    border-radius: 32px;
  }

  .section--trade .trade-card__panel--buyout,
  .section--trade .trade-card__panel--sourcing,
  .section--trade .trade-card__panel--inspection,
  .section--trade .trade-card__panel--consolidation,
  .section--trade .trade-card__panel--fulfillment {
    height: 336px;
    min-height: 336px;
  }

  .section--trade .trade-card__copy,
  .section--trade .trade-card__copy--top,
  .section--trade .trade-card__copy--bottom {
    width: 278px;
    margin: 0 auto;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .section--trade .trade-card__title {
    font-size: 28px;
    line-height: 28px;
  }

  .section--trade .trade-card__description {
    font-size: 16px;
    line-height: 20px;
  }

  .section--trade .trade-card__visual--buyout img {
    top: -56.95px !important;
    left: 6.16px !important;
    width: 313.65px !important;
    height: 313.50px !important;
    object-fit: initial;
  }

  .section--trade .trade-card__visual--sourcing img {
    top: -24px !important;
    left: 26px !important;
    width: 274px !important;
    height: 274px !important;
    object-fit: initial;
  }

  .section--trade .trade-card__visual--inspection img {
    inset: 0;
    width: 326px !important;
    height: 201px !important;
    object-fit: fill;
  }

  .section--trade .trade-card__visual--consolidation img,
  .section--trade .trade-card__visual--fulfillment img {
    object-fit: contain;
  }

  .section--cta-custom .container {
    width: 358px;
  }

  .section--cta-custom .cta-banner {
    min-height: 504px;
    padding: 24px;
    border-radius: 32px;
    background-position: center;
    background-size: cover;
  }

  .section--cta-custom .cta-banner__content {
    width: 100%;
    gap: 24px;
  }

  .section--cta-custom .cta-banner__title {
    width: 100%;
    font-size: 32px;
    line-height: 40px;
  }

  .section--cta-custom .cta-banner__subtitle {
    width: 100%;
    font-size: 20px;
    line-height: 28px;
  }

  .section--cta-custom .lead-form--compact {
    width: 100%;
    gap: 32px;
  }

  .section--cta-custom .lead-form__fields--compact {
    width: 100%;
    gap: 16px;
  }

  .section--cta-custom .input {
    height: 48px;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 16px;
  }

  .section--cta-custom .check-row {
    align-items: center;
    gap: 12px;
    width: 100%;
    white-space: normal;
  }

  .section--cta-custom .check-row__label {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -0.33px;
  }

  .section--cta-custom .button {
    width: 100%;
    margin-top: 0;
    align-self: stretch;
    justify-content: center;
  }

  .section--cta-custom .form-status {
    min-height: 0;
  }

  .section--calc .container {
    width: 358px;
  }

  .section--calc .cta-banner {
    min-height: 776px;
    padding: 24px;
    border-radius: 32px;
    align-items: flex-start;
    background-position: center;
    background-size: cover;
  }

  .section--calc .cta-banner__content,
  .section--calc .cta-banner__content--wide {
    width: 100%;
    gap: 24px;
  }

  .section--calc .cta-banner__title {
    width: 100%;
    font-size: 32px;
    line-height: 40px;
  }

  .section--calc .lead-form--calc {
    width: 100%;
    gap: 32px;
  }

  .section--calc .lead-form__fields--calc {
    width: 100%;
    gap: 24px;
  }

  .section--calc .lead-form__grid,
  .section--calc .lead-form__grid--2,
  .section--calc .lead-form__grid--3 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .section--calc .input {
    height: 48px;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 16px;
  }

  .section--calc .lead-form__checks--calc {
    gap: 12px;
  }

  .section--calc .check-row {
    align-items: center;
    gap: 12px;
    width: 100%;
    letter-spacing: -0.33px;
    white-space: normal;
  }

  .section--calc .check-row__label {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -0.33px;
  }

  .section--calc .button {
    width: 100%;
    align-self: stretch;
    justify-content: center;
    padding: 12px;
  }

  .section--calc .form-status {
    min-height: 0;
  }

  .cta-banner {
    padding: 24px;
    border-radius: 32px;
  }

  .cta-banner__title {
    font-size: 32px;
    line-height: 32px;
  }

  .cta-banner__subtitle {
    font-size: 20px;
    line-height: 28px;
  }

  .input {
    min-height: 48px;
    border-radius: 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .check-row {
    align-items: flex-start;
    width: 100%;
    white-space: normal;
  }

  .check-row__label {
    font-size: 16px;
    line-height: 20px;
  }

  .steps-layout {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    width: 358px;
  }

  .steps-progress {
    display: flex;
    flex: 0 0 64px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 64px;
  }

  .steps-progress__connector {
    width: 2px;
    height: 96px;
    background: rgba(217, 217, 214, 0.64);
    transform: none;
  }

  .section--steps .section-head {
    width: 100%;
    min-height: 104px;
    margin-bottom: 16px;
  }

  .section--steps .section-title {
    font-size: 32px;
    line-height: 40px;
  }

  .section--steps .section-subtitle {
    font-size: 20px;
    line-height: 28px;
  }

  .steps-cards {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
    width: 270px;
  }

  .steps-card {
    width: 270px;
    min-height: 160px;
    padding: 32px;
    border-radius: 32px;
  }

  .steps-card__title {
    width: 100%;
    font-size: 24px;
    line-height: 24px;
  }

  .steps-card__description {
    width: 100%;
    font-size: 16px;
    line-height: 20px;
  }

  .delivery-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .delivery-card {
    width: 100%;
    padding-bottom: 140px;
  }

  .delivery-card__visual {
    width: 260px;
    height: 164px;
    margin-bottom: -140px;
  }

  .delivery-card__visual img {
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    left: 0 !important;
    top: 0 !important;
  }

  .delivery-card__panel {
    height: 292px;
    margin-bottom: -140px;
    padding: 180px 24px 24px;
    border-radius: 32px;
  }

  .delivery-card__content {
    gap: 24px;
    width: 100%;
  }

  .delivery-card__date {
    font-size: 24px;
    line-height: 24px;
  }

  .contacts-section {
    padding: 32px 0;
    border-radius: 32px 32px 0 0;
  }

  .contacts-section .section-head {
    margin-bottom: 48px;
  }

  .contact-card,
  .contact-card--large {
    gap: 16px;
    height: auto;
    padding: 24px;
    border-radius: 32px;
    overflow: visible;
  }

  .contact-card__text {
    font-size: 20px;
    line-height: 24px;
    word-break: break-word;
  }

  .footer-section {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .footer-card {
    width: 100%;
    gap: 32px;
    min-height: 524px;
    padding: 24px;
    border-radius: 48px;
  }

  .footer-card__top,
  .footer-card__bottom,
  .footer-nav,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer-card__top,
  .footer-card__bottom,
  .footer-nav,
  .footer-meta {
    gap: 32px;
  }

  .footer-card__top {
    position: static;
    height: auto;
    min-height: 0;
    width: 100%;
  }

  .footer-card__bottom {
    min-height: 0;
    width: 100%;
  }

  .footer-nav,
  .footer-meta {
    white-space: normal;
  }

  .footer-brand,
  .socials--footer {
    position: static;
  }

  .footer-brand {
    width: 136px;
    height: 48px;
  }

  .footer-brand img {
    width: 136px;
    height: 48px;
  }

  .footer-nav {
    gap: 32px;
    justify-content: flex-start;
    width: 100%;
  }

  .footer-nav__link {
    font-size: 16px;
    line-height: 24px;
  }

  .socials--footer {
    gap: 16px;
    width: 100%;
  }

  .socials--footer .socials__link {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .footer-meta {
    gap: 32px;
    width: 100%;
  }

  .footer-meta a {
    display: block;
    font-size: 16px;
    line-height: 20px;
  }

  .footer-meta a:first-child {
    max-width: 248px;
  }

  .footer-dev {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .main-surface {
    padding-top: 0;
  }

  .main-surface > .section {
    box-sizing: border-box;
    overflow: visible;
  }

  .section--first {
    height: 848px;
    padding-top: 80px;
  }

  .section--delivery {
    height: 800px;
    padding-top: 80px;
  }

  .section--services {
    height: 888px;
    padding-top: 80px;
  }

  .section--transport {
    height: 1072px;
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .section--calc {
    height: 848px;
    padding-top: 80px;
    padding-bottom: 0;
  }

  .section--steps {
    height: 593px;
    padding-top: 80px;
  }

  .section--cta-custom {
    height: 708px;
    padding-top: 80px;
  }

  .section--trade {
    height: 1080px;
    padding-top: 80px;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    min-width: 0;
    overflow-x: clip;
  }

  body.menu-open {
    overflow: hidden;
  }

  .page {
    max-width: none;
    overflow-x: clip;
  }

  .page__scale {
    width: 390px;
    transform-origin: top left;
  }

  .site-page {
    width: 390px;
    max-width: 390px;
    overflow-x: clip;
    background: var(--color-dark);
  }

  [data-aos],
  [data-aos][data-aos],
  [data-aos][data-aos][data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .container,
  .footer-section .container {
    width: 358px;
    max-width: 358px;
    margin-right: auto;
    margin-left: auto;
  }

  .header-section {
    height: 80px;
    min-height: 80px;
    background: var(--color-dark);
  }

  .site-header {
    position: relative;
    top: auto;
    width: 100%;
    height: 80px;
    padding: 16px 0;
    background: var(--color-dark);
    border-radius: 0;
    backdrop-filter: none;
    z-index: 80;
  }

  .site-header__inner {
    position: relative;
    display: flex;
    width: 358px;
    height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    margin: 0 auto;
    padding: 0;
    z-index: 82;
  }

  .site-header .brand {
    position: static;
    display: block;
    flex: 0 0 136px;
    width: 136px;
    height: 48px;
  }

  .site-header .brand img {
    width: 136px;
    height: 48px;
    object-fit: contain;
  }

  .site-nav--desktop,
  .site-header__actions--desktop {
    display: none;
  }

  .site-header__toggle {
    position: relative;
    display: inline-flex;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 83;
  }

  .site-header__toggle span {
    position: absolute;
    left: 4.167px;
    display: block;
    width: 31.667px;
    height: 3.333px;
    background: var(--color-accent);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-header__toggle span:nth-child(1) {
    top: 10px;
  }

  .site-header__toggle span:nth-child(2) {
    top: 18.333px;
  }

  .site-header__toggle span:nth-child(3) {
    top: 26.667px;
  }

  .site-header__toggle-close {
    position: absolute;
    inset: 0;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 0;
    transition: opacity 220ms ease;
  }

  .site-header--menu-open {
    position: fixed;
    top: 0;
    left: 0;
    width: 390px;
    height: 80px;
    min-height: 80px;
    padding: 16px 0;
    overflow: visible;
    background: var(--color-dark);
    z-index: 90;
  }

  .site-header--menu-open .site-header__inner {
    flex: 0 0 48px;
    width: 358px;
    height: 48px;
    margin: 0 auto;
    padding: 0;
  }

  .site-header--menu-open .site-header__toggle span {
    opacity: 0;
  }

  .site-header--menu-open .site-header__toggle-close {
    opacity: 1;
  }

  .burger-menu {
    position: fixed;
    inset: 0 auto auto 0;
    display: flex;
    flex-direction: column;
    width: 390px;
    height: 100dvh;
    padding: 133px 16px 32px;
    background: var(--color-dark);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 320ms ease, opacity 220ms ease;
    z-index: 81;
  }

  .site-header--menu-open .burger-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .burger-menu__nav {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
    width: 358px;
    margin: 0;
    padding: 0;
  }

  .burger-menu__link {
    color: var(--color-light);
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
  }

  .burger-menu__actions {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 12px;
    width: 358px;
    margin-top: auto;
  }

  .burger-menu__button {
    display: flex;
    width: 358px;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    white-space: nowrap;
  }

  .hero-section {
    padding: 24px 0 40px;
    background: var(--color-dark);
  }

  .hero-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 358px;
    height: 608px;
    min-height: 608px;
    padding: 24px;
    overflow: hidden;
    border-radius: 32px;
    background: var(--color-light-soft);
  }

  .hero-card__content {
    display: flex;
    flex: 0 0 336px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
    width: 310px;
    height: 336px;
    min-width: 0;
  }

  .hero-card__copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 310px;
    min-width: 0;
  }

  .hero-card__title {
    width: 310px;
    margin: 0;
    color: var(--color-light);
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0;
    white-space: normal;
  }

  .hero-card__subtitle {
    width: 310px;
    margin: 0;
    color: var(--color-light-muted);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
    white-space: normal;
  }

  .hero-card__subtitle br {
    display: none;
  }

  .hero-card__button {
    display: flex;
    width: 310px;
    min-width: 310px;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    overflow: hidden;
    border-radius: 16px;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
  }

  .hero-card__button span {
    white-space: nowrap;
  }

  .hero-card__visual {
    position: relative;
    flex: 0 0 208px;
    width: 310px;
    height: 208px;
    min-height: 208px;
    overflow: visible;
  }

  .hero-globe-scene {
    top: -22px;
    left: 32px;
    width: 246px;
    height: 246px;
  }

  .stats-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 24px;
    width: 358px;
    margin-top: 24px;
  }

  .stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 358px;
    min-height: 108px;
    padding: 24px;
    border-radius: 32px;
  }

  .stat-card__top {
    gap: 16px;
    height: 32px;
  }

  .stat-card__icon {
    width: 32px;
    height: 32px;
    padding: 5.333px;
    border-radius: 10.667px;
  }

  .stat-card__icon img {
    width: 21.333px;
    height: 21.333px;
  }

  .stat-card__value,
  .stat-card__suffix {
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0;
  }

  .stat-card__suffix {
    line-height: 24px;
  }

  .stat-card__text {
    width: 310px;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0;
  }

  .stat-card__text br {
    display: none;
  }

  .main-surface {
    padding-top: 32px;
    overflow-x: clip;
    border-radius: 32px 32px 0 0;
    background: var(--color-light);
  }

  .section {
    padding-top: 56px;
    padding-bottom: 0;
  }

  .section--first {
    padding-top: 0;
  }

  .section--first .section-title {
    line-height: 32px;
  }

  .section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 358px;
    margin: 0 auto 16px;
    text-align: center;
  }

  .section-title {
    width: 100%;
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0;
  }

  .section-subtitle {
    width: 100%;
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0;
  }

  .service-columns,
  .service-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 358px;
  }

  .service-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    width: 358px;
    height: auto;
    padding: 24px;
    border-radius: 32px;
  }

  .service-card__icon-box {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    padding: 6.667px;
    border-radius: 13.333px;
  }

  .service-card__icon-box img,
  .heavy-icon {
    width: 26.667px;
    height: 26.667px;
  }

  .service-card__copy {
    display: flex;
    flex: 0 0 246px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 246px;
    min-width: 0;
    text-align: left;
  }

  .service-card__title,
  .contact-card__title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0;
  }

  .service-card__title {
    line-height: 24px;
  }

  .service-card__description {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
  }

  .service-card__description--nowrap,
  .section--services .service-card__title--nowrap {
    white-space: normal;
  }

  .section--delivery .container,
  .section--transport .container,
  .section--trade .container {
    width: 390px;
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }

  .section--delivery .section-head,
  .section--transport .section-head,
  .section--trade .section-head {
    width: 358px;
  }

  .section--delivery .section-head {
    min-height: 100px;
  }

  .section--transport .section-head {
    min-height: 96px;
  }

  .section--trade .section-head {
    min-height: 160px;
  }

  .section--delivery .section-title,
  .section--services .section-title,
  .section--transport .section-title,
  .section--trade .section-title {
    line-height: 32px;
  }

  .delivery-grid,
  .transport-grid,
  .trade-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    width: 390px;
    margin: 0;
    padding: 0 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-left: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .delivery-grid::-webkit-scrollbar,
  .transport-grid::-webkit-scrollbar,
  .trade-grid::-webkit-scrollbar {
    display: none;
  }

  .transport-row,
  .trade-row {
    display: contents;
  }

  .delivery-grid {
    height: 441px;
  }

  .transport-grid,
  .trade-grid {
    height: 373px;
  }

  .delivery-card,
  .transport-card,
  .transport-card--air,
  .transport-card--auto,
  .transport-card--rail,
  .transport-card--sea,
  .transport-card--express,
  .transport-card--multimodal,
  .trade-card,
  .trade-card--large,
  .trade-row--top .trade-card,
  .trade-row--bottom .trade-card {
    position: relative;
    flex: 0 0 326px;
    width: 326px;
    max-width: 326px;
    padding: 0;
    scroll-snap-align: start;
  }

  .delivery-card {
    height: 441px;
  }

  .transport-card,
  .trade-card,
  .trade-card--large,
  .trade-row--top .trade-card,
  .trade-row--bottom .trade-card {
    height: 373px;
    min-height: 373px;
  }

  .delivery-card__visual,
  .transport-card__image,
  .trade-card__visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 326px;
    height: 201px;
    margin: 0;
    overflow: visible;
    transform: none;
    z-index: 2;
  }

  .section--transport .transport-card__image,
  .section--transport .transport-card--air .transport-card__image,
  .section--transport .transport-card--auto .transport-card__image,
  .section--transport .transport-card--rail .transport-card__image,
  .section--transport .transport-card--sea .transport-card__image,
  .section--transport .transport-card--express .transport-card__image,
  .section--transport .transport-card--multimodal .transport-card__image {
    top: 0;
    left: 0;
    width: 326px;
    height: 201px;
    transform: none;
  }

  .delivery-card__visual img,
  .transport-card__image img,
  .trade-card__visual img {
    position: absolute;
    inset: 0;
    width: 326px !important;
    height: 201px !important;
    max-width: none;
    object-fit: contain;
    transform: none !important;
  }

  .section--delivery .delivery-card__visual--auto img {
    top: -39.94px !important;
    left: 8.7px !important;
    width: 306.28px !important;
    height: 306.08px !important;
    object-fit: fill;
  }

  .section--delivery .delivery-card__visual--fast-auto img {
    top: -24.28px !important;
    left: 38.14px !important;
    width: 249.75px !important;
    height: 249.58px !important;
    object-fit: fill;
  }

  .section--delivery .delivery-card__visual--air img {
    top: -47.3px !important;
    left: 10px !important;
    width: 326px !important;
    height: 295.59px !important;
    object-fit: fill;
  }

  .section--transport .transport-card--air .transport-card__image img,
  .section--transport .transport-card--rail .transport-card__image img,
  .section--transport .transport-card--sea .transport-card__image img,
  .section--transport .transport-card--express .transport-card__image img,
  .section--transport .transport-card--multimodal .transport-card__image img {
    top: -42.71px !important;
    left: 15.06px !important;
    width: 315.89px !important;
    height: 286.43px !important;
    object-fit: fill;
  }

  .section--transport .transport-card--auto .transport-card__image img {
    top: -34.27px !important;
    left: 14.41px !important;
    width: 294.83px !important;
    height: 294.85px !important;
    object-fit: fill;
  }

  .delivery-card__panel,
  .transport-card__body,
  .trade-card__panel,
  .trade-card__panel--buyout,
  .trade-card__panel--sourcing,
  .trade-card__panel--inspection,
  .trade-card__panel--consolidation,
  .trade-card__panel--fulfillment {
    position: absolute;
    left: 0;
    width: 326px;
    margin: 0;
    border-radius: 32px;
    z-index: 1;
  }

  .delivery-card__panel {
    top: 37px;
    height: 404px;
    padding: 180px 24px 24px;
  }

  .transport-card__body,
  .trade-card__panel,
  .trade-card__panel--buyout,
  .trade-card__panel--sourcing,
  .trade-card__panel--inspection,
  .trade-card__panel--consolidation,
  .trade-card__panel--fulfillment {
    top: 37px;
    height: 336px;
    min-height: 336px;
    padding: 180px 24px 24px;
  }

  .delivery-card__content,
  .transport-card__content,
  .trade-card__copy,
  .trade-card__copy--top,
  .trade-card__copy--bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 278px;
    min-width: 0;
    margin: 0 auto;
    text-align: center;
  }

  .transport-card__content,
  .trade-card__copy,
  .trade-card__copy--top,
  .trade-card__copy--bottom {
    gap: 16px;
  }

  .delivery-card__copy,
  .delivery-card__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 278px;
    text-align: center;
  }

  .delivery-card__title,
  .transport-card__title,
  .trade-card__title {
    width: 278px;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0;
    text-align: center;
  }

  .delivery-card__description,
  .transport-card__description,
  .transport-card__accent,
  .trade-card__description {
    width: 278px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
  }

  .transport-card__accent {
    display: inline;
    font-weight: 700;
    font-style: italic;
  }

  .delivery-card__date {
    width: 278px;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
  }

  .delivery-card .button {
    display: flex;
    width: 278px;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
  }

  .trade-card__decor {
    display: none;
  }

  .section--trade .trade-card__visual--buyout img {
    top: -42px !important;
    left: 18px !important;
    width: 290px !important;
    height: 290px !important;
  }

  .section--trade .trade-card__visual--sourcing img {
    top: -18px !important;
    left: 38px !important;
    width: 250px !important;
    height: 250px !important;
  }

  .section--trade .trade-card__visual--inspection img,
  .section--trade .trade-card__visual--consolidation img,
  .section--trade .trade-card__visual--fulfillment img {
    object-fit: contain;
  }

  .section--calc {
    padding-top: 21px;
  }

  .section--transport {
    padding-top: 56px;
  }

  .section--calc .container,
  .section--cta-custom .container {
    width: 358px;
    max-width: 358px;
  }

  .cta-banner,
  .section--calc .cta-banner,
  .section--cta-custom .cta-banner {
    display: flex;
    align-items: flex-start;
    width: 358px;
    padding: 24px;
    border-radius: 32px;
    background:
      radial-gradient(114.48% 72.46% at 91.34% 93.26%, rgba(234, 42, 42, 0.62) 0%, rgba(78, 31, 36, 0.58) 41.5%, rgba(33, 33, 36, 0) 74%),
      radial-gradient(72.36% 42.18% at 0% 0%, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 62%),
      linear-gradient(180deg, #212124 0%, #211f22 100%);
  }

  .section--calc .cta-banner {
    height: auto;
    min-height: 0;
  }

  .section--cta-custom .cta-banner {
    height: auto;
    min-height: 0;
  }

  .cta-banner__content,
  .cta-banner__content--wide,
  .section--calc .cta-banner__content,
  .section--calc .cta-banner__content--wide,
  .section--cta-custom .cta-banner__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 310px;
    min-width: 0;
  }

  .section--calc .cta-banner__title,
  .section--cta-custom .cta-banner__title {
    width: 310px;
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0;
  }

  .section--cta-custom .cta-banner__subtitle {
    width: 310px;
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0;
  }

  .lead-form,
  .lead-form--calc,
  .lead-form--compact {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 310px;
    min-width: 0;
  }

  .lead-form__fields,
  .lead-form__fields--calc,
  .lead-form__fields--compact {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 310px;
  }

  .section--calc .lead-form__fields--calc {
    gap: 16px;
  }

  .lead-form__fields--compact {
    gap: 16px;
  }

  .lead-form__grid,
  .lead-form__grid--2,
  .lead-form__grid--3 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 310px;
  }

  .input {
    width: 310px;
    height: 40px;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
  }

  .section--calc .input,
  .section--cta-custom .input {
    height: 40px;
    min-height: 40px;
    padding: 8px 16px;
  }

  .lead-form__checks,
  .lead-form__checks--calc {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 310px;
  }

  .check-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 310px;
    white-space: normal;
  }

  .section--calc .check-row,
  .section--cta-custom .check-row {
    width: 310px;
  }

  .section--calc .check-row--privacy,
  .section--cta-custom .check-row--privacy {
    align-items: flex-start;
  }

  .check-row__label {
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.33px;
  }

  .lead-form .button,
  .section--calc .button,
  .section--cta-custom .button {
    display: flex;
    width: 310px;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
  }

  .form-status {
    min-height: 0;
  }

  .section--steps .section-head {
    min-height: 104px;
  }

  .steps-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    width: 358px;
    height: 744px;
  }

  .steps-progress {
    display: flex;
    flex: 0 0 64px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 64px;
    height: 640px;
  }

  .steps-progress__item {
    width: 64px;
    height: 64px;
  }

  .steps-progress__connector {
    width: 2px;
    height: 96px;
    background: rgba(217, 217, 214, 0.64);
    transform: none;
  }

  .steps-cards {
    display: flex;
    flex: 0 0 270px;
    flex-direction: column;
    gap: 24px;
    width: 270px;
    height: 744px;
  }

  .steps-card {
    width: 270px;
    height: 168px;
    min-height: 168px;
    padding: 32px;
    border-radius: 32px;
  }

  .steps-card__title {
    width: 206px;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
  }

  .steps-card__description {
    width: 206px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
  }

  .section--trade {
    padding-bottom: 56px;
  }

  .contacts-section {
    padding: 32px 0;
    overflow-x: clip;
    border-radius: 32px 32px 0 0;
    background: var(--color-dark);
  }

  .contacts-section .section-head {
    margin-bottom: 48px;
  }

  .contacts-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 358px;
  }

  .contact-card,
  .contact-card--large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 358px;
    height: auto;
    padding: 24px;
    overflow: visible;
    border-radius: 32px;
    text-align: center;
  }

  .contact-card:nth-child(1) {
    min-height: 384px;
  }

  .contact-card:nth-child(2) {
    min-height: 432px;
  }

  .contact-card:nth-child(3) {
    min-height: 144px;
  }

  .contact-card:nth-child(4) {
    min-height: 168px;
  }

  .contact-card__title {
    width: 310px;
    color: var(--color-light);
  }

  .contact-card__text {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 310px;
    min-width: 0;
    color: var(--color-light-muted);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .contact-card__text-block {
    margin: 0;
  }

  .contact-card__text a {
    color: inherit;
    text-decoration: none;
  }

  .footer-section {
    padding: 0 0 32px;
    overflow-x: clip;
    background: var(--color-dark);
  }

  .footer-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 358px;
    min-height: 604px;
    padding: 24px;
    border-radius: 48px;
  }

  .footer-card__top,
  .footer-card__bottom {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
    width: 310px;
    height: auto;
    min-height: 0;
  }

  .footer-brand,
  .footer-brand img {
    position: static;
    width: 136px;
    height: 48px;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 310px;
    white-space: normal;
  }

  .footer-nav__link {
    color: var(--color-light);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
  }

  .socials--footer {
    position: static;
    display: flex;
    gap: 16px;
    width: 310px;
  }

  .socials--footer .socials__link {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .socials--footer .socials__link img {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }

  .footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 310px;
    color: var(--color-light);
    white-space: normal;
  }

  .footer-meta a {
    display: block;
    max-width: 310px;
    color: var(--color-light);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-decoration: none;
  }

  .footer-dev {
    display: flex !important;
    flex: 0 0 96px;
    align-self: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    width: 188.5px;
    height: 96px;
    min-height: 96px;
    max-height: 96px;
    margin-top: 0;
    pointer-events: auto;
  }

  .footer-dev picture {
    width: 188.5px;
    height: 48px;
  }

  .footer-shake {
    display: block;
    width: 188.5px;
    min-width: 188.5px;
    max-width: 188.5px;
    height: 48px;
    object-fit: contain;
    object-position: left top;
  }
}

.mobile-slider-dots {
  display: none;
}

.legal-section {
  padding: 64px 0 96px;
  background: var(--color-light);
}

.legal-document {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px;
  border-radius: 48px;
  background: #f7f7f7;
  color: var(--color-dark);
}

.legal-document h1 {
  margin: 0 0 40px;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 0;
}

.legal-document h2 {
  margin: 40px 0 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0;
}

.legal-document p,
.legal-document li {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document ul {
  margin: 0 0 24px;
  padding-left: 28px;
}

.legal-document a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cc-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 30px;
  background: #ffffff;
  border-radius: 30px;
  gap: 25px;
  z-index: 2147483647;
  box-shadow: 0 0 6px rgba(23, 23, 23, 0.07);
  display: flex;
  align-items: center;
  color: #111827;
  font-family: var(--font-main);
}

.cc-banner__text {
  width: 100%;
  max-width: 385px;
  margin: 0;
  color: #111827;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
}

.cc-banner__row {
  display: flex;
  width: auto;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.cc-btn {
  padding: 8px 20px;
  border: 0;
  border-radius: 36px;
  background: var(--color-accent);
  color: var(--color-light);
  font-size: 13.3333px;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  transition: background-color 200ms ease, opacity 200ms ease;
}

.cc-btn:hover {
  border-color: #c91d1d;
  background: #c91d1d;
}

.cc-btn:focus-visible,
.cc-x:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.cc-x {
  position: absolute;
  top: 10px;
  right: 12px;
  display: none;
  margin: 0;
  padding: 1px 6px;
  border: 0;
  background: transparent;
  color: #999999;
  font-size: 24px;
  line-height: normal;
  cursor: pointer;
}

.cc-x:hover {
  color: #6b7280;
}

.cc-hide {
  display: none !important;
}

@media (prefers-reduced-motion: no-preference) {
  .cc-banner {
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .cc-banner[data-anim="in"] {
    opacity: 1;
    transform: translateY(0);
  }

  .cc-banner[data-anim="out"] {
    opacity: 0;
    transform: translateY(8px);
  }
}

@media (max-width: 768px) {
  .legal-section {
    padding: 32px 0;
    background: var(--color-light);
  }

  .legal-document {
    width: 358px;
    padding: 24px;
    border-radius: 32px;
  }

  .legal-document h1 {
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 40px;
  }

  .legal-document h2 {
    margin: 32px 0 12px;
    font-size: 24px;
    line-height: 32px;
  }

  .legal-document p,
  .legal-document li {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 750px) {
  .cc-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cc-banner__text {
    font-size: 14px;
  }

  .cc-banner__row {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .cc-banner {
    right: 39px;
    gap: 15px;
    padding: 15px;
    border-radius: 20px;
    max-width: 50%;
    transform: translateY(15px) translateX(35px) scale(1);
  }

  .cc-banner[data-anim="in"] {
    transform: translateY(15px) translateX(35px) scale(1);
  }
}

@media (max-width: 480px) {
  .cc-banner {
    right: 10px;
    gap: 15px;
    padding: 15px;
    border-radius: 20px;
    max-width: 268px;
    transform: translateY(15px) translateX(35px) scale(0.75);
  }

  .cc-banner[data-anim="in"] {
    transform: translateY(15px) translateX(35px) scale(0.75);
  }

  .cc-x {
    top: 8px;
    right: 8px;
    font-size: 22px;
  }

  .fixed-header {
    height: 80px;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    border-width: 2px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  }

  .scroll-top__icon {
    width: 22px;
    height: 22px;
  }

  .admin-bar .fixed-header {
    top: 46px;
  }

  .site-header,
  .site-header--menu-open {
    background: #212124;
  }

  .contacts-section {
    background: var(--color-light);
    border-radius: 48px 48px 0 0;
  }

  .contacts-section::before {
    border-radius: 48px 48px 0 0;
  }

  .mobile-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 358px;
    height: 10px;
    margin: 16px auto 0;
  }

  .mobile-slider-dots__button {
    display: block;
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(33, 33, 36, 0.24);
    cursor: pointer;
    transition: background-color 220ms ease;
  }

  .mobile-slider-dots__button.is-active {
    width: 10px;
    background: var(--color-accent);
  }

  .footer-card__bottom {
    flex: 1 1 auto;
  }

  .footer-dev {
    margin-top: auto;
    align-self: flex-start;
  }

  .section--transport .transport-card--multimodal .transport-card__image img {
    top: -10px !important;
    left: -16px !important;
    width: 358px !important;
    height: auto !important;
    object-fit: contain;
  }

  .site-header--menu-open {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 80px;
    min-height: 80px;
    padding: 16px 0;
    overflow: visible;
    background: #212124;
    z-index: 2001;
  }

  .site-header--menu-open .site-header__inner {
    position: fixed;
    top: 16px;
    left: 50%;
    width: 358px;
    height: 48px;
    margin: 0;
    padding: 0;
    transform: translateX(-50%);
    z-index: 2002;
  }

  .admin-bar .site-header--menu-open .site-header__inner {
    top: 62px;
  }

  .burger-menu--global {
    position: fixed !important;
    top: 0 !important;
    right: auto !important;
    bottom: auto !important;
    left: 100vw !important;
    display: flex !important;
    flex-direction: column;
    width: 100vw !important;
    max-width: none !important;
    height: 100vh !important;
    height: 100dvh !important;
    padding: 16px calc((100vw - 358px) / 2) 32px !important;
    background: #212124 !important;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none !important;
    transition: left 320ms ease, opacity 220ms ease;
    z-index: 2000;
  }

  .burger-menu--global.is-open {
    left: 0 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .burger-menu--global .burger-menu__head {
    display: flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: space-between;
    width: 358px;
    height: 48px;
    margin: 0 0 69px;
  }

  .burger-menu--global .brand {
    display: block;
    width: 136px;
    height: 48px;
  }

  .burger-menu--global .brand img {
    width: 136px;
    height: 48px;
    object-fit: contain;
  }

  .burger-menu__close {
    display: flex;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .burger-menu__close img {
    width: 40px;
    height: 40px;
  }

  .burger-menu__nav,
  .burger-menu__actions {
    width: 358px;
  }
}

@media (max-width: 390px) {
  .burger-menu--global {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .burger-menu--global .burger-menu__head,
  .burger-menu__nav,
  .burger-menu__actions {
    width: 100%;
  }
}
