@charset "UTF-8";
/* ========================================
   1. СБРОС СТИЛЕЙ (Modern CSS Reset)
   ======================================== */
/* Box-sizing для всех элементов */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внешние отступы у основных элементов */
html,
body,
div,
span,
applet,
object,
iframe,
h1, h2, h3, h4, h5, h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* Убираем бордеры у изображений внутри ссылок */
img {
  border-style: none;
}

/* Убираем подчеркивание у ссылок по умолчанию */
a {
  text-decoration: none;
  color: inherit;
}

/* Убираем выделение текста при нажатии на кнопки */
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

/* Убираем контур у фокуса (будет добавлен вручную для доступности) */
*:focus {
  outline: none;
}

@font-face {
  font-family: "MontserratAlternates";
  src: url("/fonts/MontserratAlternates/MontserratAlternates-ExtraBold.ttf");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "MontserratAlternates";
  src: url("/fonts/MontserratAlternates/MontserratAlternates-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
/* ================================================================
   2. БАЗОВЫЕ СТИЛИ ДОКУМЕНТА
   ================================================================ */
/* Корневой элемент */
:root {
  /* Базовый размер шрифта для расчёта rem */
  font-size: 16px;
  /* Цвета скроллбара */
}

/* Стили скроллбара (Webkit) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 9999px;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

::-webkit-scrollbar-thumb:hover {
  background: #e5e7eb;
}

/* Стили скроллбара (Firefox) */
* {
  scrollbar-width: thin;
  scrollbar-color: #d1d5db #f3f4f6;
}

/* HTML и BODY */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "MontserratAlternates", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #f9fafb;
  background-color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ================================================================
   3. ТИПОГРАФИКА
   ================================================================ */
/* Заголовки */
h1, h2, h3, h4, h5, h6 {
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #f9fafb;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.125rem, 1.75vw, 1.5rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

/* Параграфы */
p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #f9fafb;
}

/* Ссылки */
a {
  color: #FEB83A;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1), background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

a:hover {
  color: #fea911;
}

a:focus,
a:focus-visible,
a:active {
  outline: none;
  box-shadow: none;
}

/* Списки */
ul,
ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #f9fafb;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

li {
  margin-bottom: 0.25rem;
}

/* Цитаты */
blockquote {
  border-left: 4px solid #FEB83A;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background-color: #f3f4f6;
  border-radius: 0.375rem;
  font-style: italic;
  color: #f9fafb;
}

/* Код и предформатированный текст */
code {
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  background-color: #f3f4f6;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
  color: #FEB83A;
}

pre {
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  background-color: #f3f4f6;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin-bottom: 1rem;
  line-height: 1.6;
}

pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* Выделенный текст */
mark {
  background-color: #fef3c7;
  color: #f9fafb;
  padding: 0 0.125rem;
  border-radius: 0.25rem;
}

/* ================================================================
   4. ИЗОБРАЖЕНИЯ И МЕДИА
   ================================================================ */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Фигуры с подписями */
figure {
  margin: 1.5rem 0;
}

figcaption {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
  text-align: center;
}

/* Видео */
iframe,
embed,
object,
video {
  max-width: 100%;
  vertical-align: middle;
}

/* Адаптивный видеоконтейнер 16:9 */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ================================================================
   5. ТАБЛИЦЫ
   ================================================================ */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #f9fafb;
}

table caption {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: left;
  color: #f9fafb;
}

thead {
  background-color: #f3f4f6;
}

thead th {
  font-weight: 700;
  text-align: left;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid #d1d5db;
  color: #f9fafb;
}

tbody tr {
  border-bottom: 1px solid #e5e7eb;
}

tbody tr:last-child {
  border-bottom: none;
}

tbody tr:hover {
  background-color: #e5e7eb;
}

tbody td {
  padding: 0.5rem 1rem;
  vertical-align: top;
}

tfoot {
  background-color: #f3f4f6;
  font-weight: 600;
}

tfoot td {
  padding: 0.5rem 1rem;
  border-top: 2px solid #d1d5db;
}

/* Стрипинг таблицы */
tbody tr:nth-child(even) {
  background-color: #f9fafb;
}

/* ================================================================
   6. ФОРМЫ
   ================================================================ */
/* Общие стили для форм */
form {
  margin-bottom: 1.5rem;
}

/* Группы полей */
.form-group {
  margin-bottom: 1rem;
}

/* Метки */
label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #f9fafb;
  margin-bottom: 0.25rem;
}

/* Инпуты, текстареа, селекты */
input,
textarea,
select {
  font-family: "MontserratAlternates", sans-serif;
  font-size: 1rem;
  color: #f9fafb;
  background-color: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 1.5rem;
  padding: 0.75rem 2rem;
  width: 100%;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.5;
}

/* Состояния инпутов */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #FEB83A;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
  background-color: #000;
}

input:hover,
textarea:hover,
select:hover {
  border-color: #e5e7eb;
}

/* Плейсхолдеры */
::placeholder {
  color: #6b7280;
  opacity: 1;
}

/* Текстареа */
textarea {
  min-height: 120px;
  resize: vertical;
}

/* Чекбоксы и радиокнопки */
input[type=checkbox],
input[type=radio] {
  width: auto;
  height: auto;
  margin-right: 0.25rem;
  cursor: pointer;
}

/* Кнопки */
button,
[type=button],
[type=reset],
[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "MontserratAlternates", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  background-color: #FEB83A;
  border: none;
  border-radius: 1.5rem;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover,
[type=button]:hover,
[type=reset]:hover,
[type=submit]:hover {
  background-color: #fea911;
}

button:focus,
[type=button]:focus,
[type=reset]:focus,
[type=submit]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #d1d5db;
  transform: none;
}

/* ================================================================
   7. КОНТЕЙНЕРЫ И МАКЕТ
   ================================================================ */
/* Стандартный контейнер */
.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

/* Узкий контейнер для текста */
.container-narrow {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Контейнер на всю ширину */
.container-fluid {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Секции */
.section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.section-sm {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section-lg {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Сетка (базовая) */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Флекс-контейнеры */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* ================================================================
   11. АНИМАЦИИ
   ================================================================ */
/* Появление с затуханием */
.fade-in {
  animation: fadeIn 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Вращение */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Пульсация */
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
/* Отскок */
.animate-bounce {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
/* Скрытие элемента визуально, но доступен для скрин-ридеров */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  position: relative;
  z-index: 30;
  background-color: #000;
}
.header__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.header__logo {
  display: inline-flex;
  align-items: center;
  font-size: clamp(1.125rem, 1.75vw, 1.5rem);
  font-weight: 800;
  color: #f9fafb;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1), background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header__logo span {
  color: #FEB83A;
}
.header .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 1rem;
  background-color: #FEB83A;
  color: #000;
  border: none;
  border-radius: 1.5rem;
  font-family: "MontserratAlternates", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.header .button:hover {
  background-color: #fea911;
  color: #000;
}
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  padding: 0.375rem;
  background-color: transparent;
  border: none;
  transition: transform 100ms cubic-bezier(0.4, 0, 0.2, 1), background-color 0s;
}
.header__hamburger:hover {
  background-color: transparent;
}
.header__hamburger:hover .header__hamburger-line {
  background-color: #FEB83A;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.header__hamburger-line {
  display: block;
  width: 36px;
  height: 2px;
  background-color: #f9fafb;
  border-radius: 9999px;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header .header__hamburger:hover,
.header .header__mobile-close:hover {
  background: none;
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  z-index: 50;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid #FEB83A;
  border-top: none;
  border-radius: 0 0 1rem 1rem;
}
.header__mobile-menu.is-open {
  transform: translateY(0);
}

.header__mobile-menu-content {
  padding: 1rem 0 2rem;
}

.header__mobile-close {
  position: absolute;
  top: 50%;
  right: clamp(1rem, 5vw, 3rem);
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  color: #9ca3af;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header__mobile-close::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 2px 100%, 100% 2px;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(45deg);
}
.header__mobile-close:hover {
  background: none;
  color: #FEB83A;
}
.header__mobile-close:focus, .header__mobile-close:active {
  outline: none;
  box-shadow: none;
}

.header__mobile-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem clamp(1rem, 5vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.header__mobile-logo {
  font-size: clamp(1.125rem, 1.75vw, 1.5rem);
  font-weight: 800;
  color: #f9fafb;
  text-decoration: none;
}
.header__mobile-logo span {
  color: #FEB83A;
}

.header__mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

.header__mobile-link {
  display: block;
  width: 100%;
  text-align: center;
  font-size: clamp(1.125rem, 3vw, clamp(1.125rem, 1.75vw, 1.5rem));
  font-weight: 600;
  color: #f9fafb;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 100ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header__mobile-link:last-child {
  border-bottom: none;
}
.header__mobile-link:hover {
  color: #FEB83A;
}

.header__mobile-contacts {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  padding: 0 clamp(1rem, 5vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.header__mobile-phone {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #FEB83A;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1), background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header__mobile-phone:hover {
  color: #fea911;
}

.header__mobile-cta {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 0 clamp(1rem, 5vw, 3rem);
  display: flex;
  justify-content: center;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__content .button {
    display: none;
  }
}
@media (max-width: 639px) {
  .header__mobile-link {
    font-size: 1.125rem;
    padding: 0.5rem 0;
  }
  .header__mobile-contacts {
    justify-content: center;
  }
  .header__mobile-phone {
    font-size: 1.125rem;
  }
}
.main-block {
  background-color: #000;
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 5vw, 6rem) 0 5rem;
}

.main-block__title {
  font-family: "MontserratAlternates", sans-serif;
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
  color: #f9fafb;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 1;
}

.main-block__title-accent {
  color: #FEB83A;
  font-weight: 700;
}

.main-block__lower {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  position: relative;
  z-index: 1;
}

.main-block__description {
  grid-column: 8/11;
  text-align: right;
  font-size: 1rem;
  line-height: 1.75;
  color: #f9fafb;
  margin-bottom: 1.5rem;
}

.main-block__cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  background-color: #FEB83A;
  color: #000;
  font-family: "MontserratAlternates", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.main-block__cta:hover {
  background-color: #fea911;
  transform: translateY(-2px);
}

.main-block__truck {
  grid-column: 1/-1;
  position: relative;
}
.main-block__truck img {
  display: block;
  width: 70%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.main-block__ghost {
  position: absolute;
  bottom: -0.3em;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(4rem, 13vw, 12rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  line-height: 0.85;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.achievements {
  margin: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3.5rem 0;
}

.achievements__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.achievement {
  padding: 1rem;
  position: relative;
}
.achievement + .achievement::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.achievement__number {
  font-family: "MontserratAlternates", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #FEB83A;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.achievement__label {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #f9fafb;
  max-width: 180px;
  margin: 0 auto;
}

.how-section {
  margin: 5rem 0;
  padding: 3.5rem 0;
}

.how-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.how-section__title {
  font-family: "MontserratAlternates", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #f9fafb;
  margin: 0;
}

@media (max-width: 1023px) {
  .main-block__description {
    grid-column: 7/11;
    font-size: 15px;
  }
}
@media (max-width: 1279px) {
  .main-block {
    padding: 3rem 0 4rem;
  }
  .main-block__stats {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .main-block {
    padding: 3rem 0 3.5rem;
  }
  .main-block__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
  }
  .main-block__description {
    font-size: 1rem;
    max-width: 90%;
  }
  .main-block__truck img {
    width: 85%;
    max-height: 350px;
  }
  .achievements {
    margin: 3rem 0;
    padding: 2rem 0;
  }
  .achievement__number {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  .how-section {
    margin: 4rem 0;
  }
}
@media (max-width: 639px) {
  .main-block__description {
    grid-column: 2/12;
    text-align: center;
  }
  .main-block__ghost {
    -webkit-text-stroke-width: 0.5px;
    opacity: 0.6;
  }
  .main-block {
    padding: 2rem 0 3rem;
  }
  .main-block__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 0.75rem;
    text-align: center;
  }
  .main-block__description {
    font-size: 0.875rem;
    max-width: 100%;
    text-align: center;
  }
  .main-block__description br {
    display: none;
  }
  .main-block__truck img {
    width: 100%;
    max-height: 250px;
  }
  .achievements {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
  }
  .achievements__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .achievement + .achievement::before {
    display: none;
  }
  .achievement + .achievement {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .how-section {
    margin: 3rem 0;
  }
  .steps__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.service-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(1.125rem, 1.75vw, 1.5rem);
  gap: 2.5rem;
  margin: 5rem 0;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.service-block__ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.round {
  width: 120px;
  height: 120px;
  background-color: #FEB83A;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.round span {
  color: #000000;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  transform: rotate(-30deg);
  margin: 0 auto;
}

.service-block__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border: 1px solid #FEB83A;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #FEB83A;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.service-block__desk {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  text-align: center;
}

.serv-items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
}

.serv-item {
  font-size: clamp(0.875rem, 3vw, 1.5rem);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  color: #f9fafb;
  text-decoration: none;
}
.serv-item:focus, .serv-item:focus-visible {
  outline: none;
  box-shadow: none;
}

.serv-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.serv-item__desc {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 400;
  line-height: 1;
}

.serv-item__text {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 600;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0, 0, 0.2, 1);
}

.serv-item:hover .serv-item__text {
  color: #FEB83A;
  transform: translateX(8px);
}

.serv-item--featured .serv-item__text {
  color: #FEB83A;
}

.serv-item__thumb {
  width: 90px;
  height: 56px;
  flex-shrink: 0;
  overflow: hidden;
}
.serv-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(254, 184, 58, 0.25));
}

.serv-item__num {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 2.5rem;
  color: #FEB83A;
}

.serv-item__text {
  display: flex;
  align-items: center;
}

.serv-item__arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}

@media (min-width: 0) and (max-width: 639px) {
  .round {
    width: 80px;
    height: 80px;
  }
  .serv-item__arrow img {
    width: 30px;
  }
}
@media (max-width: 767px) {
  .service-block {
    gap: 1.5rem;
    margin: 4rem 0;
  }
  .service-block__desk {
    font-size: clamp(1.125rem, 1.75vw, 1.5rem);
  }
  .round {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 639px) {
  .service-block {
    gap: 1rem;
    margin: 3rem 0;
  }
  .service-block__desk {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
  }
  .serv-item {
    padding: 1rem 0;
    gap: 0.5rem;
  }
  .serv-item__desc,
  .serv-item__thumb {
    display: none;
  }
  .service-block__ghost {
    -webkit-text-stroke-width: 0.5px;
  }
}
.cta__box-fon {
  background-color: #0a0a0a;
  background-image: linear-gradient(rgba(254, 184, 58, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(254, 184, 58, 0.035) 1px, transparent 1px), radial-gradient(ellipse 75% 100% at 0% 100%, rgba(254, 184, 58, 0.13) 0%, transparent 60%), radial-gradient(ellipse 55% 75% at 100% 0%, rgba(254, 184, 58, 0.08) 0%, transparent 60%);
  background-size: 48px 48px, 48px 48px, 100% 100%, 100% 100%;
  border: 1px solid rgba(254, 184, 58, 0.18);
  padding: 4rem 0;
  margin: 5rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  width: 90%;
  margin: 0 auto;
}

.cta__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.cta__header {
  font-family: "MontserratAlternates", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.cta__description {
  font-family: "MontserratAlternates", sans-serif;
  font-size: 1.125rem;
  color: #f9fafb;
  max-width: 340px;
}

.cta__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
  width: 320px;
}

.cta__form-header {
  font-family: "MontserratAlternates", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 0.125rem;
}

.cta__form-header span {
  color: #FEB83A;
}

.cta__form-phone {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.cta__form-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.75;
}

.cta__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  width: 100%;
}
.cta__form-wrapper input[type=tel] {
  background: rgba(255, 255, 255, 0.06);
  color: #f9fafb;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cta__form-wrapper input[type=tel]::placeholder {
  color: #6b7280;
}
.cta__form-wrapper input[type=tel]:focus {
  border-color: #FEB83A;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.cta__form-btn {
  width: 100%;
  padding: 0.5rem 1rem;
  background: #FEB83A;
  color: #000;
  border: none;
  border-radius: 0.375rem;
  font-family: "MontserratAlternates", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: background 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0, 0, 0.2, 1);
  box-sizing: border-box;
}
.cta__form-btn:hover {
  background: #fea911;
  transform: translateY(-1px);
}
.cta__form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.cta-links {
  margin: 5rem 0;
}

.cta-links__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.cta-links__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border: 1px solid #FEB83A;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #FEB83A;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  flex-shrink: 0;
}

.cta-links__label {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 400;
}

.cta-links__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #f9fafb;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1), background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-links__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-links__item:hover .cta-links__name {
  color: #FEB83A;
}
.cta-links__item:hover .cta-links__arrow {
  transform: translateX(8px);
  color: #FEB83A;
}

.cta-links__meta {
  font-size: 0.875rem;
  color: #6b7280;
  width: 220px;
  flex-shrink: 0;
  line-height: 1.75;
}

.cta-links__action {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.cta-links__name {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  font-family: "MontserratAlternates", sans-serif;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-links__arrow {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1;
  transition: transform 200ms cubic-bezier(0, 0, 0.2, 1), color 200ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .cta {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .cta__description {
    width: 100%;
  }
}
@media (max-width: 639px) {
  .cta__box-fon {
    padding: 2.5rem 0;
    margin: 3rem 0;
    background-size: cover;
  }
  .cta__header {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
  }
  .cta__form-phone {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
  }
}
@media (max-width: 767px) {
  .cta-links__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .cta-links__meta {
    width: auto;
  }
}
@media (max-width: 639px) {
  .cta-links {
    margin: 3rem 0;
  }
  .cta-links__meta {
    display: none;
  }
  .cta-links__name {
    font-size: clamp(1.1rem, 6vw, 1.6rem);
  }
}
.advantages {
  margin: 5rem 0;
  padding: 3.5rem 0;
}
.advantages__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.advantages__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.advantages__item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.advantages__number {
  font-family: "MontserratAlternates", sans-serif;
  font-size: clamp(5rem, 8vw, 7rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(254, 184, 58, 0.15);
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}
.advantages__text {
  flex: 1;
}
.advantages__text h3 {
  font-family: "MontserratAlternates", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 0.5rem;
  color: #f9fafb;
}
.advantages__text p {
  font-family: "MontserratAlternates", sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #f9fafb;
  line-height: 1.6;
}
.advantages__image {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.advantages__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1279px) {
  .advantages__content {
    gap: 2.5rem;
  }
  .advantages__item {
    gap: 1.25rem;
  }
}
@media (max-width: 767px) {
  .advantages {
    margin: 4rem 0;
  }
  .advantages__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .advantages__list {
    gap: 1.5rem;
  }
  .advantages__item {
    gap: 0.75rem;
  }
  .advantages__image {
    max-height: 400px;
  }
}
@media (max-width: 639px) {
  .advantages {
    margin: 3rem 0;
  }
  .advantages__list {
    gap: 1.5rem;
  }
  .advantages__item {
    align-items: stretch;
    gap: 2rem;
  }
  .advantages__number {
    display: flex;
    align-items: center;
  }
  .advantages__text h3 {
    margin-bottom: 0.5rem;
  }
  .advantages__image {
    max-height: 300px;
  }
}
.testimonials {
  margin: 5rem 0;
  padding: 3.5rem 0;
}

.testimonials__heading {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: #f9fafb;
  text-align: center;
  margin-bottom: 2rem;
}

.testimonials__wrapper {
  position: relative;
}

.testimonials__slider {
  overflow: hidden;
  border-radius: 0.75rem;
}

.testimonials__track {
  display: flex;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials__slide {
  min-width: 100%;
  padding: 2.5rem 1.5rem;
}

.testimonials__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonials__text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #f9fafb;
  margin-bottom: 1.5rem;
}

.testimonials__author {
  font-family: "MontserratAlternates", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #FEB83A;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.testimonials__arrow {
  padding: 0;
  border: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: color 200ms cubic-bezier(0, 0, 0.2, 1), transform 200ms cubic-bezier(0, 0, 0.2, 1);
}
.testimonials__arrow:focus, .testimonials__arrow:focus-visible {
  outline: none;
  box-shadow: none;
}
.testimonials__arrow:hover {
  background: transparent;
  color: #FEB83A;
  transform: scale(1.2);
}
.testimonials__arrow--prev {
  transform: scaleX(-1);
}
.testimonials__arrow--prev:hover {
  transform: scaleX(-1) scale(1.2);
}

.testimonials__dots {
  display: flex;
  gap: 0.375rem;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d1d5db;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonials__dot--active {
  background-color: #FEB83A;
  transform: scale(1.2);
}
.testimonials__dot:hover {
  background-color: #FEB83A;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 4rem 0;
  }
  .testimonials__slide {
    padding: 2rem 1rem;
  }
  .testimonials__text {
    font-size: 1rem;
  }
}
@media (max-width: 639px) {
  .testimonials {
    margin: 3rem 0;
  }
  .testimonials__slide {
    padding: 2rem 1rem;
  }
  .testimonials__text {
    font-size: 1rem;
  }
  .testimonials__arrow svg {
    width: 24px;
  }
}
.faq {
  margin: 5rem 0;
  padding: 3.5rem 0;
}

.faq__wrapper {
  background-color: #0a0a0b;
  border-radius: 1rem;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.faq__title {
  font-family: "MontserratAlternates", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 2.5rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  font-family: "MontserratAlternates", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.375rem);
  font-weight: 500;
  color: #f9fafb;
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #FEB83A;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 1rem;
}
.faq__question::after {
  content: "";
  display: block;
  flex-shrink: 0;
  margin-left: auto;
  width: 2rem;
  height: 2rem;
  background-image: linear-gradient(#FEB83A, #FEB83A), linear-gradient(#FEB83A, #FEB83A);
  background-size: 2px 100%, 100% 2px;
  background-position: center center;
  background-repeat: no-repeat;
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__question:hover {
  color: #FEB83A;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 1000px;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__answer > * {
  padding: 0 0 1.25rem 2rem;
}
.faq__answer p {
  font-size: 1rem;
  line-height: 1.75;
  color: #6b7280;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .faq__title {
    font-size: clamp(1.125rem, 1.75vw, 1.5rem);
  }
  .faq__question {
    font-size: 1rem;
  }
}
@media (max-width: 639px) {
  .faq {
    margin: 3rem 0;
  }
  .faq__wrapper {
    padding: 2rem;
  }
  .faq__title {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 1.5rem;
  }
  .faq__question {
    font-size: 1rem;
    padding: 1rem 0;
  }
  .faq__answer {
    padding-left: 1.5rem;
  }
}
.modal__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1), visibility 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.modal__overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 50;
  background-color: #111827;
  border-radius: 1rem;
  padding: 2.5rem;
  width: 90%;
  max-width: 480px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1), visibility 300ms cubic-bezier(0.4, 0, 0.2, 1), transform 300ms cubic-bezier(0, 0, 0.2, 1);
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: clamp(1.125rem, 1.75vw, 1.5rem);
  line-height: 1;
  padding: 0.25rem;
  cursor: pointer;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.modal__close:hover {
  color: #f9fafb;
  background: none;
}

.modal__title {
  font-family: "MontserratAlternates", sans-serif;
  font-size: clamp(1.125rem, 1.75vw, 1.5rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0;
}

.modal__input {
  font-family: "MontserratAlternates", sans-serif;
  font-size: 1rem;
  color: #f9fafb;
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 1.5rem;
  padding: 0.75rem 2rem;
  width: 100%;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.modal__input::placeholder {
  color: #6b7280;
}
.modal__input:focus {
  outline: none;
  border-color: #FEB83A;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.modal__submit {
  font-family: "MontserratAlternates", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  background-color: #FEB83A;
  border: none;
  border-radius: 1.5rem;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.modal__submit:hover {
  background-color: #fea911;
}
.modal__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.notification {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background-color: #10b981;
  color: #fff;
  font-family: "MontserratAlternates", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 300ms cubic-bezier(0, 0, 0.2, 1), transform 300ms cubic-bezier(0, 0, 0.2, 1);
}
.notification.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 639px) {
  .modal {
    width: 95%;
    padding: 1.5rem 1rem;
  }
  .notification {
    right: 0.5rem;
    left: 0.5rem;
    transform: translateY(-100%);
  }
  .notification.is-visible {
    transform: translateY(0);
  }
}
.footer {
  background-color: #0a0a0b;
  padding: 3rem 0 1.5rem;
  margin-top: 5rem;
}

.footer__content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__logo {
  font-family: "MontserratAlternates", sans-serif;
  font-size: clamp(1.125rem, 1.75vw, 1.5rem);
  font-weight: 800;
  color: #f9fafb;
  text-decoration: none;
}
.footer__logo span {
  color: #FEB83A;
}

.footer__nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer__nav-link {
  font-size: 1rem;
  color: #6b7280;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1), background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__nav-link:hover {
  color: #FEB83A;
}

.footer__info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.footer__phone {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f9fafb;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1), background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__phone:hover {
  color: #FEB83A;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__social:hover {
  border-color: #FEB83A;
  color: #FEB83A;
}
.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__bottom {
  padding-top: 1rem;
}

.footer__copy {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .footer__nav {
    grid-column: 1/-1;
    order: 3;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .footer__info {
    align-items: flex-end;
  }
}
@media (max-width: 639px) {
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .footer__logo {
    justify-self: center;
  }
  .footer__nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .footer__info {
    align-items: center;
  }
}
@media (max-width: 639px) {
  .cta-links__meta {
    display: none;
  }
  .cta-links__item {
    padding: 1.25rem 0;
  }
  .cta-links__name {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
  }
}
.breadcrumb {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.125rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #6b7280;
}
.breadcrumb__item:not(:last-child)::after {
  content: "›";
  font-size: 1rem;
  color: #6b7280;
  flex-shrink: 0;
  margin-left: 0.125rem;
}
.breadcrumb__item:last-child {
  color: #f9fafb;
  font-weight: 500;
}

.breadcrumb__link {
  color: #6b7280;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1), background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.breadcrumb__link:hover {
  color: #FEB83A;
}

@media (max-width: 639px) {
  .breadcrumb__list {
    font-size: 0.75rem;
  }
}
.page-hero {
  padding: 3.5rem 0 2.5rem;
}
.page-hero .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.page-hero__content {
  flex: 1 1 auto;
  max-width: 680px;
}

.page-hero__map {
  flex: 0 0 auto;
  width: clamp(300px, 44vw, 560px);
  align-self: center;
  opacity: 1;
  pointer-events: none;
  user-select: none;
}
.page-hero__map svg {
  width: 100%;
  height: auto;
  display: block;
}

.page-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FEB83A;
  margin-bottom: 0.75rem;
}

.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #f9fafb;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-hero__title-accent {
  color: #FEB83A;
}

.page-hero__description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.page-hero__btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #FEB83A;
  color: #000;
  font-family: "MontserratAlternates", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  border-radius: 1.5rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.page-hero__btn:hover {
  background-color: #fea911;
  color: #000;
  transform: translateY(-2px);
}

.service-features {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-features__title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 2rem;
}

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

.feature-card {
  background-color: #0a0a0b;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  border-color: rgba(254, 184, 58, 0.35);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  background-color: rgba(254, 184, 58, 0.15);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #FEB83A;
  flex-shrink: 0;
}

.feature-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.375rem;
}

.feature-card__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #6b7280;
  margin-bottom: 0;
}

.steps {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.steps__title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 2rem;
  text-align: center;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 0.75rem;
  overflow: hidden;
  counter-reset: step-counter;
}

.step {
  counter-increment: step-counter;
  position: relative;
  padding: 2rem 1.5rem;
  background: #000;
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: background 200ms cubic-bezier(0.4, 0, 0.2, 1), border-left-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.step::after {
  content: counter(step-counter, decimal-leading-zero);
  position: absolute;
  right: -0.05em;
  bottom: -0.3em;
  font-family: "MontserratAlternates", sans-serif;
  font-size: clamp(5rem, 8vw, 7rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(254, 184, 58, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: -webkit-text-stroke-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.step:hover {
  background: rgba(254, 184, 58, 0.025);
  border-left-color: #FEB83A;
}
.step:hover::after {
  -webkit-text-stroke-color: rgba(254, 184, 58, 0.22);
}

.step__number {
  display: block;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  font-size: clamp(0.875rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #FEB83A;
  letter-spacing: 0;
  margin-bottom: 1rem;
  flex-shrink: unset;
  position: relative;
  z-index: 1;
}

.step__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.375rem;
  position: relative;
  z-index: 1;
}

.step__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #6b7280;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.tariffs {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tariffs__title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 0.5rem;
}

.tariffs__note {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.tariffs__table {
  width: 100%;
  border-collapse: collapse;
  background: #0a0a0b;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tariffs__table th {
  background: #FEB83A;
  color: #0a0a0b;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  padding: 0.75rem 1.25rem;
  text-align: center;
  border-bottom: none;
}

.tariffs__table td {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  color: #e5e7eb;
  background: #111214;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}

.tariffs__table tr:nth-child(even) td {
  background: #0d0e10;
}

.tariffs__table tr:last-child td {
  border-bottom: none;
}

.tariffs__table td:first-child {
  color: #f9fafb;
  font-weight: 400;
}

.tariffs__price {
  display: inline-block;
  background: rgba(254, 184, 58, 0.12);
  color: #FEB83A;
  font-weight: 400;
  white-space: nowrap;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(254, 184, 58, 0.3);
}

.tariffs__cta {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.tariffs__cta a {
  color: #FEB83A;
  text-decoration: none;
}
.tariffs__cta a:hover {
  text-decoration: underline;
}

.service-intro {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3.5rem;
}

.service-intro__heading {
  grid-column: 1/-1;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 0;
}

.service-intro__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #f9fafb;
}
.service-intro__text p {
  margin-bottom: 0.75rem;
}
.service-intro__text p:last-child {
  margin-bottom: 0;
}
.service-intro__text strong {
  color: #f9fafb;
  font-weight: 600;
}

.service-intro__facts {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: 1rem;
}

.service-intro__fact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(254, 184, 58, 0.06);
  border-radius: 0.5rem;
  border-left: 3px solid #FEB83A;
  font-size: 0.875rem;
  color: #f9fafb;
  line-height: 1.3;
}
.service-intro__fact span {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FEB83A;
  white-space: nowrap;
  min-width: 110px;
}

.service-cargo {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-cargo__title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 2rem;
}

.service-cargo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.cargo-item {
  padding: 1.25rem;
  background: #0a0a0b;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid #FEB83A;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cargo-item:hover {
  transform: translateY(-2px);
  border-color: rgba(254, 184, 58, 0.4);
}

.cargo-item__title {
  font-size: 1rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.375rem;
}

.cargo-item__text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #6b7280;
  margin-bottom: 0;
}

.service-cities {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-cities__title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 0.5rem;
}

.service-cities__intro {
  font-size: 1rem;
  line-height: 1.75;
  color: #f9fafb;
  margin-bottom: 2rem;
  max-width: 720px;
}

.service-cities__blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.city-block {
  padding: 1rem;
  background: #0a0a0b;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.city-block:hover {
  border-color: rgba(254, 184, 58, 0.3);
  transform: translateY(-2px);
}

a.city-block {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.city-block__name {
  font-size: 1rem;
  font-weight: 600;
  color: #FEB83A;
  margin-bottom: 0.375rem;
}

.city-block__text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #6b7280;
  margin-bottom: 0;
}

.service-cities__other-title {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-weight: 600;
}

.service-cities__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.service-cities__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: #0a0a0b;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #f9fafb;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1), background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.service-cities__tag:hover {
  border-color: rgba(254, 184, 58, 0.4);
  color: #FEB83A;
}

.related-services {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.related-services__title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 1.5rem;
}

@media (max-width: 1023px) {
  .page-hero .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-hero__map {
    display: none;
  }
  .service-features__grid {
    grid-template-columns: 1fr;
  }
  .steps__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }
  .step {
    padding: 1.5rem 1rem;
  }
  .service-intro__inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .service-cargo__grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-cities__blocks {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 639px) {
  .page-hero {
    padding: 2rem 0 1.5rem;
  }
  .page-hero__description {
    font-size: 1rem;
  }
  .service-features__title,
  .steps__title,
  .related-services__title,
  .tariffs__title,
  .service-intro__heading,
  .service-cargo__title,
  .service-cities__title {
    font-size: clamp(1.125rem, 1.75vw, 1.5rem);
  }
  .service-features__grid {
    gap: 0.5rem;
  }
  .steps__grid {
    grid-template-columns: 1fr;
  }
  .step {
    padding: 1.25rem 0.75rem;
  }
  .service-intro__text {
    font-size: 1rem;
  }
  .service-intro__fact {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
  }
  .service-intro__fact span {
    font-size: 1rem;
    min-width: unset;
  }
  .service-cargo__grid {
    grid-template-columns: 1fr;
  }
  .service-cities__blocks {
    grid-template-columns: 1fr;
  }
  .tariffs__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tariffs__table {
    min-width: 480px;
  }
  .tariffs__table th,
  .tariffs__table td {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
}

/*# sourceMappingURL=style.css.map */
