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

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

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

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

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

:root {
  --surface: #ffffff;
  --surface-muted: #f5f8fd;
  --primary: #174485;
  --accent: #3095d0;
  --accent-strong: #3195d0;
  --text: #00053f;
  --shadow: 0 18px 40px rgba(0, 11, 48, 0.12);
  --radius-sm: 10px;
  --radius-md: 15px;
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  background: var(--surface);
}

body.is-locked {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

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

ul,
ol,
p,
h1,
h2,
h3 {
  margin: 0;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.section {
  padding: 60px 0;
}

.section-title {
  color: var(--text);
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.23;
  font-weight: 600;
  margin-bottom: 80px;
}

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

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

.section-subtitle {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  margin-top: 16px;
}

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

.section--blue {
  background: var(--accent);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 30px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out,
    color 0.2s ease-in-out,
    transform 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn--primary {
  color: var(--surface);
  background: var(--primary);
  border-color: var(--primary);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  color: var(--primary);
  background: var(--surface);
  border-color: var(--primary);
}

.btn--secondary {
  color: var(--primary);
  background: var(--surface);
  border-color: var(--primary);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  color: var(--surface);
  background: var(--primary);
  border-color: var(--surface);
}

.btn--small {
  min-height: 45px;
  padding: 0 24px;
  font-size: 14px;
}

.btn--block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.btn--flash::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -85px;
  width: 45px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
  transform: skewX(-45deg);
  animation: button-flash 3s linear infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.2s ease-in-out;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 20px rgba(0, 11, 48, 0.08);
}

.header__inner {
  min-height: 110px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.header__inner--compact {
  min-height: 84px;
}

.brand img {
  width: 100px;
  height: auto;
}

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

.nav--policy {
  justify-content: flex-start;
}

.nav a,
.mobile-menu__nav a {
  position: relative;
  color: var(--primary);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}

.nav a::after,
.mobile-menu__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--accent-strong);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.mobile-menu__nav a:hover::after,
.mobile-menu__nav a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.header__aside {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__aside--policy {
  justify-content: flex-end;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(23, 68, 133, 0.08);
  color: var(--primary);
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.social-link svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(23, 68, 133, 0.16);
  transform: translateY(-1px);
}

.phone-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary);
  color: var(--primary);
  background: var(--surface);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out,
    color 0.2s ease-in-out,
    transform 0.2s ease-in-out;
}

.phone-chip:hover,
.phone-chip:focus-visible {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--surface);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 28px;
  height: 20px;
  padding: 0;
  color: var(--primary);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out, width 0.25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) {
  top: 8px;
}

.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) {
  width: 80%;
  left: 20%;
}

.menu-toggle span:nth-child(4) {
  top: 16px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1),
.menu-toggle[aria-expanded="true"] span:nth-child(4) {
  top: 8px;
  width: 0;
  left: 50%;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  width: 100%;
  left: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  width: 100%;
  left: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid rgba(23, 68, 133, 0.08);
  background: var(--surface);
  box-shadow: 0 18px 35px rgba(0, 11, 48, 0.08);
}

.mobile-menu__inner {
  padding: 24px 0 28px;
}

.mobile-menu__nav {
  display: grid;
  gap: 20px;
}

.mobile-menu__footer {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.phone-chip--mobile {
  width: fit-content;
}

.hero {
  padding: 10px 0 0;
}

.hero__frame {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 52px;
}

.hero__title {
  max-width: 760px;
  color: var(--surface);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.23;
  font-weight: 600;
}

.hero__text {
  max-width: 760px;
  margin-top: 22px;
  color: var(--surface);
  font-size: clamp(18px, 2.6vw, 20px);
  line-height: 1.55;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 60px;
}

.stats {
  padding-top: 60px;
  padding-bottom: 60px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  list-style: none;
  padding: 0;
}

.stat-card {
  text-align: center;
}

.stat-card__value {
  color: var(--primary);
  font-size: clamp(30px, 3vw, 32px);
  line-height: 1.17;
  font-weight: 600;
}

.stat-card__line {
  width: 72px;
  height: 2px;
  border-radius: 999px;
  margin: 18px auto;
  background: var(--primary);
}

.stat-card__label {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
}

.curve {
  position: relative;
  height: 90px;
  overflow: hidden;
  background: var(--surface);
}

.curve::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: var(--accent);
}

.curve--to-blue::after {
  top: 44px;
}

.curve--from-blue::after {
  top: -44px;
}

.about {
  padding-top: 0;
  padding-bottom: 30px;
}

.about__intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: flex-start;
}

.about__copy {
  color: var(--surface);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 300;
}

.advantages {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding-top: 30px;
}

.advantages__media img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.advantages__content .section-title {
  margin-bottom: 45px;
}

.feature-list {
  display: grid;
  gap: 28px;
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: center;
}

.feature-list img {
  width: 70px;
  height: 70px;
}

.feature-list span {
  color: var(--surface);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 500;
}

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

.country-card {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  min-height: 116px;
  border-radius: var(--radius-sm);
  background: var(--accent);
}

.country-card img {
  width: 180px;
  height: 116px;
  object-fit: cover;
  flex-shrink: 0;
}

.country-card__name {
  color: var(--surface);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
}

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

.service-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  isolation: isolate;
}

.service-card__image,
.service-card__overlay {
  position: absolute;
  inset: 0;
}

.service-card__image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.45s ease-in-out;
}

.service-card__overlay {
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.5), rgba(0, 0, 0, 0.4));
}

.service-card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
}

.service-card__title {
  color: var(--surface);
  font-size: 22px;
  line-height: 1.23;
  font-weight: 600;
}

.service-card__description {
  max-width: 420px;
  margin-top: 15px;
  color: var(--surface);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
}

.service-card:hover .service-card__image,
.service-card:focus-within .service-card__image {
  transform: scale(1.05);
}

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

.cargo-card {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 3;
  color: var(--surface);
  text-align: left;
  cursor: pointer;
  isolation: isolate;
}

.cargo-card__image,
.cargo-card__overlay {
  position: absolute;
  inset: 0;
}

.cargo-card__image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.45s ease-in-out;
}

.cargo-card__overlay {
  background: rgba(0, 0, 0, 0.5);
}

.cargo-card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.cargo-card__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cargo-card__title {
  max-width: 260px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

.cargo-card__arrow {
  width: 14px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}

.cargo-card__description {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
}

.cargo-card:hover .cargo-card__image,
.cargo-card:focus-visible .cargo-card__image {
  transform: scale(1.05);
}

.workflow-grid {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
}

.workflow-card {
  position: relative;
  padding: 40px 30px 34px;
  border-radius: var(--radius-sm);
  background: var(--accent-strong);
  color: var(--surface);
}

.workflow-card::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--surface);
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}

.workflow-card h3 {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

.workflow-card p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
}

.faq {
  padding-top: 0;
  padding-bottom: 0;
}

.faq .section-title {
  margin-bottom: 80px;
}

.faq-list {
  display: grid;
  gap: 2px;
}

.faq-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 25px 88px 25px 30px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  display: inline-block;
  padding-right: 10px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

.faq-icon {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--surface);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease-in-out;
}

.faq-icon::after {
  width: 2px;
  height: 18px;
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.faq-answer__inner {
  padding: 0 30px 24px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
}

.contacts__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 30px;
}

.contacts__card {
  min-height: 400px;
  padding: 36px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contacts__card .section-title {
  margin-bottom: 30px;
}

.contacts__details {
  color: var(--text);
  font-size: 22px;
  line-height: 1.6;
  font-weight: 300;
  font-style: normal;
}

.contacts__details a {
  display: inline-block;
  border-bottom: 1px solid currentColor;
}

.social-links--contacts {
  margin-top: 30px;
}

.map-card {
  min-height: 400px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  box-shadow: 0 2px 3px rgba(0, 11, 48, 0.25);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}

.site-footer {
  padding: 0 0 10px;
  text-align: center;
}

.site-footer__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 30px;
  list-style: none;
  padding: 16px 10px 0;
}

.site-footer__meta li {
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.site-footer__brand {
  display: flex;
  width: fit-content;
  justify-content: center;
  margin: 30px auto 0;
}

.site-footer__brand img {
  width: 150px;
  height: auto;
}

.site-footer__policy {
  padding-top: 40px;
  padding-bottom: 10px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 300;
  opacity: 0.8;
  text-align: center;
}

.site-footer__policy a {
  border-bottom: 1px solid currentColor;
}

.policy-page {
  padding-top: 24px;
}

.thanks-page {
  padding-top: 60px;
  padding-bottom: 30px;
}

.policy {
  padding-top: 60px;
}

.page-breadcrumbs,
.policy__breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
  color: #858585;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 300;
}

.page-breadcrumbs a,
.policy__breadcrumbs a {
  transition: color 0.2s ease-in-out;
}

.page-breadcrumbs a:hover,
.page-breadcrumbs a:focus-visible,
.policy__breadcrumbs a:hover,
.policy__breadcrumbs a:focus-visible {
  color: #9e9e9e;
}

.page-breadcrumbs--primary {
  color: var(--primary);
}

.page-breadcrumbs--primary a:hover,
.page-breadcrumbs--primary a:focus-visible {
  color: var(--primary);
}

.thanks-page .hero {
  padding-top: 0;
}

.thanks-page .hero__frame,
.thanks-page .hero__content {
  min-height: clamp(420px, 78vh, 700px);
}

.thanks-page .hero__content {
  max-width: 760px;
}

.thanks-page .hero__actions {
  margin-top: 30px;
}

.policy__card {
  padding: 40px;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.policy__title {
  margin-bottom: 30px;
}

.policy__text {
  display: grid;
  gap: 20px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 300;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  padding: 40px 45px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

.modal.is-open .modal__dialog {
  transform: translateY(0);
  opacity: 1;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.modal__close svg {
  width: 24px;
  height: 24px;
  margin: 8px;
}

.modal__close:hover,
.modal__close:focus-visible {
  background: rgba(23, 68, 133, 0.08);
  color: var(--primary);
}

.modal__header {
  margin-bottom: 24px;
  text-align: center;
}

.modal__title {
  color: var(--text);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.23;
  font-weight: 600;
}

.modal__description {
  margin-top: 11px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
}

.lead-form {
  display: grid;
  gap: 20px;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

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

.form-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid var(--text);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: transparent;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-field input::placeholder {
  color: rgba(0, 5, 63, 0.5);
}

.form-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(23, 68, 133, 0.12);
}

.form-field.has-error input {
  border-color: #b3261e;
  box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.12);
}

.form-error {
  min-height: 18px;
  color: #b3261e;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
}

.lead-form__message {
  min-height: 24px;
  color: var(--primary);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.lead-form__message.is-error {
  color: #b3261e;
}

.lead-form__note {
  color: #000000;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
  text-align: center;
}

.lead-form__note a {
  text-decoration: underline;
}

@keyframes button-flash {
  0% {
    transform: translateX(0) skewX(-45deg);
  }

  20% {
    transform: translateX(720px) skewX(-45deg);
  }

  100% {
    transform: translateX(720px) skewX(-45deg);
  }
}

@media (max-width: 1200px) {
  body {
    font-size: 16px;
  }

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

  .hero__content {
    padding: 52px 40px;
  }

  .policy__text {
    font-size: 18px;
  }
}

@media (max-width: 980px) {
  .header__inner:not(.header__inner--compact) {
    min-height: 84px;
    grid-template-columns: 1fr;
    justify-items: center;
    position: relative;
  }

  .nav,
  .header__aside {
    display: none;
  }

  .nav--policy,
  .header__aside--policy {
    display: flex;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .header__inner:not(.header__inner--compact) .brand {
    justify-self: center;
  }

  .stats__grid,
  .about__intro,
  .advantages,
  .contacts__grid {
    grid-template-columns: 1fr;
  }

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

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

  .section-title {
    margin-bottom: 45px;
  }

  .faq .section-title {
    margin-bottom: 45px;
  }

  .about__copy,
  .workflow-card p,
  .faq-answer__inner {
    font-size: 16px;
  }

  .contacts__details {
    font-size: 20px;
  }

  .curve {
    height: 80px;
  }

  .curve--to-blue::after {
    top: 40px;
  }

  .curve--from-blue::after {
    top: -40px;
  }
}

@media (max-width: 760px) {
  .hero__frame,
  .hero__content {
    min-height: 460px;
  }

  .hero__content {
    padding: 40px 24px;
  }

  .hero__actions {
    margin-top: 36px;
  }

  .nav--policy {
    display: none;
  }

  .header__aside--policy {
    display: flex;
  }

  .country-grid,
  .service-grid,
  .cargo-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .country-card {
    gap: 18px;
  }

  .country-card img {
    width: 150px;
  }

  .contacts__card {
    min-height: auto;
  }

  .map-card iframe {
    height: 320px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 90px;
  }

  body {
    font-size: 14px;
  }

  .section {
    padding: 60px 0;
  }

  .btn {
    min-height: 50px;
    padding: 0 24px;
    font-size: 16px;
  }

  .btn--small {
    min-height: 45px;
    font-size: 14px;
  }

  .hero__frame,
  .hero__content {
    min-height: 420px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__text,
  .feature-list span {
    font-size: 18px;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-list li {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }

  .feature-list img {
    width: 56px;
    height: 56px;
  }

  .service-card__content,
  .cargo-card__content {
    padding: 24px 20px;
  }

  .service-card__title {
    font-size: 18px;
  }

  .service-card__description,
  .cargo-card__description {
    font-size: 14px;
  }

  .cargo-card__title,
  .workflow-card h3,
  .faq-question span:first-child {
    font-size: 18px;
  }

  .contacts__card {
    padding: 30px 20px;
  }

  .contacts__details {
    font-size: 20px;
  }

  .modal {
    padding: 0;
  }

  .modal__dialog {
    width: 100%;
    min-height: 100vh;
    padding: 68px 20px 24px;
    border-radius: 0;
  }

  .modal__close {
    top: 12px;
    right: 12px;
  }

  .policy__breadcrumbs {
    margin-bottom: 40px;
  }

  .policy__card {
    padding: 24px 20px;
  }

  .policy__text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .country-card {
    min-height: 100px;
  }

  .country-card img {
    width: 128px;
    height: 100px;
  }

  .country-card__name,
  .contacts__details {
    font-size: 18px;
  }

  .faq-question {
    padding: 20px 64px 20px 20px;
  }

  .faq-answer__inner {
    padding: 0 20px 20px;
  }

  .faq-icon {
    right: 12px;
  }

  .site-footer__meta {
    gap: 20px;
  }
}
