/* Подключение шрифтов */
@import url("./assets/styles/font.css");

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}

/* WebKit (Chrome, Safari, Edge) */
*::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  width: 1px;
  background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.55);
}

/* Мобильная версия (320px) */

/* Сброс стилей */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a,
.link {
  appearance: none;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .link:hover {
    color: #db1f1f;
  }
}

body {
  font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background-color: #151515;
  color: #ffffff;
  line-height: 1.3;
}

/* ensure content above decor */
.header,
.container,
.footer,
.burger-menu,
.mobile-menu {
  position: relative;
  z-index: 1;
}

/* Decor container with positioned duplicates of decor.webp */
/* Section-relative decor */
.section-has-decor {
  position: relative;
}
.decor-img {
  position: absolute;
  opacity: 0.42;
  filter: blur(0.3px);
  pointer-events: none;
  z-index: 0;
}

/* Hide heavy decor on small screens */
@media (max-width: 1023.98px) {
  .decor-img {
    display: none;
  }
}

/* Header (desktop) */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(150%) blur(6px);
  background: rgba(21, 21, 21, 0.6);
  border-bottom: 1px solid #2e2e2e;
}

.header-container {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 32px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 96px;
}

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

.header-nav-item {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  transition: color 0.2s ease-in-out;
}

.header-nav-item:hover {
  color: #db1f1f;
}

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

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
}

.lang-btn {
  background: none;
  border: none;
  color: #ffffff;
  font: inherit;
  cursor: pointer;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn_active {
  opacity: 1;
}
.lang-divider {
  width: 1px;
  height: 22px;
  background: #ffffff26;
}

.header-login {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 12px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

@media (max-width: 1023.98px) {
  .login-popup {
    position: fixed;
    top: 100px;
    right: 16px;
    left: 16px;
    width: auto;
  }
}

.header-login:hover {
  color: #db1f1f;
  border-color: #3a3a3a;
  transition: all cubic-bezier(0.445, 0.05, 0.55, 0.95) 200ms;
}
.header-login-icon {
  width: 32px;
  height: 32px;
}

.container {
  margin: 0 auto;
  padding: 0 16px;
}

/* Типографика */
h2 {
  font-weight: 900;
  font-size: 24px;
  line-height: 1.26;
  margin-bottom: 24px;
}

h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

/* Кнопки */
.btn-primary {
  background-color: #db1f1f;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 14px 32px 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  max-width: 360px;
  transition: background-color 0.3s ease;
  border: 1px solid transparent;
}

.centered {
  margin: 0 auto;
}

.btn-primary:hover {
  background-color: #ff3a3a;
}

.btn-primary:focus-visible {
  background-color: #ff3a3a;
  border-color: #ffffff;
}

.btn-primary:active {
  background-color: #d63434;
}

.btn-primary:disabled {
  background-color: #ffffff80;
  color: #ffffff80;
  cursor: not-allowed;
}

/* Главный экран */
.hero {
  padding-top: 64px;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.logo-icon {
  width: 78px;
  height: 40px;
}

.logo-text {
  text-align: left;
}

.main-title {
  font-size: 16px;
  line-height: 130%;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-icon.mobile {
  width: 288px;
  height: 111px;
}

.brand-icon.descktop {
  display: none;
}

.cine,
.lounge {
  color: #ffffff;
}

.digital {
  color: #db1f1f;
}

.description {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  margin-top: 16px;
  color: #ffffff;
}

.btn-hero {
  margin-top: 80px;
  display: flex;
  gap: 11px;
  align-items: center;
}

.btn-hero_text {
  font-size: 14px;
  line-height: 130%;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.btn-hero_icon {
  width: 16px;
  height: 16px;
}

/* Личный кабинет */
.login {
  padding-top: 64px;
}

.login-form {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.user-icon {
  width: 36px;
  height: 36px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.input-field {
  background-color: #2e2e2e;
  border: none;
  border-radius: 10px;
  padding: 16px;
  color: #ffffff80;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  width: 100%;
}

.input-field:focus-visible {
  outline: none;
  color: #ffffff;
}

.input-field:not(:placeholder-shown) {
  color: #ffffff;
}

.input-field:valid {
  color: #ffffff;
}

.input-field::placeholder {
  color: #ffffff;
  opacity: 0.5;
}

.password-field {
  position: relative;
}

.password-field .input-field {
  padding-right: 40px;
}

/* Popup password field as styled container */
.login-popup .password-field {
  display: block;
  width: 100%;
  background-color: #2e2e2e;
  border-radius: 10px;
  padding-right: 40px;
}

.password-field .login-popup__input {
  background-color: transparent;
  padding: 12px 14px;
  width: 100%;
}

.password-field .show-password {
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  cursor: pointer;
  color: #ffffff80;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 16px;
  top: 50%;
}

.show-password_icon.show {
  display: block;
}

.show-password_icon.hide {
  display: none;
}

.show-password {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  opacity: 0.5;
  border-radius: 2px;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 12px;
}

.register-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

/* Последние проекты */
.projects {
  padding-top: 64px;
}

.projects-swiper {
  padding-bottom: 16px;
}

.projects-swiper .swiper-button-next,
.projects-swiper .swiper-button-prev {
  display: none;
}

.swiper-slide {
  max-width: 270px;
}

.project-card {
  width: 100%;
  height: 360px;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.list-contacts {
  display: grid;
  gap: 24px;
}

.footer .container {
  padding: 0;
}

.created-by-container {
  width: 100%;
}

.created-by {
  display: flex;
  gap: 32px;
  align-items: center;
}

.created-by__text {
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.5;
}

.created-by__icon {
  width: 99px;
  height: 36px;
}

.created-by-container.descktop {
  display: none;
}

.created-by-container.mobile {
  margin-top: 12px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: max-content;
  margin: 0 auto;
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;
}

.card-overlay {
  position: relative;
  z-index: 2;
  padding: 14.4px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 1)
  );
  border-radius: 0 0 9px 9px;
}

.project-title {
  color: #ffffff;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  margin: 0;
}

.project-stats {
  display: flex;
  align-items: center;
  gap: 10.8px;
}

.screen-icon {
  width: 21.6px;
  height: 21.6px;
  background-color: #db1f1f;
  border-radius: 4px;
  flex-shrink: 0;
}

.project-stats span {
  color: #ffffff;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-align: center;
}

/* Наши партнеры */
.partners {
  padding-top: 64px;
}

.partner-logo {
  width: 111px;
  height: 111px;
  background-color: #2e2e2e;
  border-radius: 8px;
  margin: 0 auto;
}

/* Преимущества */
.advantages {
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.advantage-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.advantage-icon {
  width: 32px;
  height: 32px;
  background-color: #db1f1f;
  border-radius: 4px;
}

.advantage-card h3 {
  color: #2e2e2e;
  font-size: 24px;
  font-weight: 900;
}

.advantage-card p {
  color: #2e2e2e;
}

.advantage-card_quality {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

/* Цифровые услуги */
.services {
  padding-top: 64px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.service-icon {
  width: 64px;
  height: 64px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 56px;
  height: 56px;
}

.service-item h3 {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

/* TRUSTLINK */
.trustlink {
  padding-top: 64px;
}

.trustlink-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.logo-circle {
  width: 160px;
  height: 74px;
  background-color: #ffffff;
  border-radius: 333px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
}

.trustlink-logo .logo-circle svg {
  width: 100%;
  height: 100%;
}

.trustlink-icon {
  width: 120px;
  height: 53px;
  background-color: #db1f1f;
  border-radius: 4px;
}

.trustlink-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background-color: #2e2e2e;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card svg {
  width: 32px;
  height: 32px;
}

.info-icon {
  width: 32px;
  height: 32px;
  background-color: #db1f1f;
  border-radius: 4px;
}

.info-card h3 {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.26;
}

.info-card_list {
  padding-left: 16px;
  list-style-position: outside;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.os-list span {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

/* Логистика */
.logistics {
  padding-top: 64px;
}

.logistics-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.logistics-card {
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 288px;
  position: relative;
  overflow: hidden;
}

.logistics-card h3 {
  color: #ffffff;
  z-index: 2;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.26;
  letter-spacing: 0;
  max-width: 240px;
}

.logistics-card h3.dark {
  color: #2e2e2e;
}

.logistics-card p {
  color: #2e2e2e;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  z-index: 2;
  max-width: 134px;
}

.logistics-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  border-radius: 10px;
  z-index: 1;
}

.logistics-mob-1 {
  background-image: url("./assets/images/logistics_mob_1.webp");
}

.logistics-mob-2 {
  background-image: url("./assets/images/logistics_mob_2.webp");
}

.logistics-mob-3 {
  background-image: url("./assets/images/logistics_mob_3.webp");
}

@media (min-width: 480x) {
  .swiper-slide {
    width: 100%;
  }

  .project-card {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .swiper-slide {
    width: 100%;
    max-width: none;
  }

  .project-card {
    width: 100%;
    height: 380px;
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
  }

  .advantage_ident {
    display: none;
  }

  .logistics-card h3 {
    max-width: none;
  }

  .brand-icon.mobile {
    margin: 0 auto;
  }

  .created-by-container.mobile {
    justify-content: center;
    display: flex;
  }
}

/* Контакты */
.contacts {
  padding-top: 64px;
  padding-bottom: 64px;
}

.contacts-content {
  display: grid;
  gap: 24px;
}

.contacts-map {
  height: 300px;
  background-color: #2e2e2e;
  border-radius: 10px;
  margin-bottom: 24px;
  width: 100%;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 24px;
  max-height: max-content;
}

.contact-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.contact-icon {
  width: 28px;
  height: 28px;
  background-color: #ffffff;
  border-radius: 4px;
}

/* Футер */
.footer {
  background-color: #2e2e2e;
  padding: 24px 16px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-logo {
  display: flex;
  align-items: start;
}

.footer-logo-icon {
  width: 116px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 4px;
}

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

.nav-section h4 {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.list-navigations {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-navigations .link {
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #ffffff;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-align: center;
}

/* Бургер меню */
.burger-menu {
  position: fixed;
  top: 12px;
  right: 12px;
  background-color: #151515;
  border: 1px solid #2e2e2e;
  border-radius: 50px;
  width: 56px;
  height: 56px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.burger-icon {
  width: 24px;
  height: 24px;
}

/* Разделительная линия */
.advantages::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #2e2e2e;
  margin: 32px 0;
}

.layout-control-group {
  display: none;
}

/* Мобильное меню */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100dvh;
  background-color: #151515;
  z-index: 30;
  transition: right 0.3s ease;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-container {
  width: 100%;
  height: 100%;
  padding: 0 16px 24px;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 0;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-content {
  flex: 1;
  display: grid;
  grid-template-rows: 1fr auto auto;
  padding-top: 32px;
  gap: 24px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 58px;
  margin-top: 58px;
}

.mobile-nav-item {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-align: center;
  transition: color 0.3s ease;
}

.mobile-nav-item:hover {
  color: #db1f1f;
}

.mobile-social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
}

.mobile-social-item {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mobile-social-item:hover {
  transform: scale(1.1);
}

.mobile-contact-btn {
  background-color: #db1f1f;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 14px 32px 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  transition: background-color 0.3s ease;
}

.mobile-contact-btn:hover {
  background-color: #b81a1a;
}

/* Desktop layout */
@media (min-width: 1024px) {
  html {
    scroll-padding-top: 96px;
  }

  /* logistics desktop images */
  .logistics-mob-1 {
    background-image: url("./assets/images/logistic_descktop.webp");
  }
  .logistics-mob-2 {
    background-image: url("./assets/images/logistic_descktop_2.webp");
  }
  .logistics-mob-3 {
    background-image: url("./assets/images/logistic_descktop_3.webp");
  }
  .logistics-image {
    background-position: center;
  }

  .container {
    max-width: 1280px;
    padding: 64px 20px;
  }

  section h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 64px;
  }

  /* показываем десктопный хедер, скрываем бургер */
  .header-container {
    display: flex;
    position: relative;
  }
  .header-social {
    display: flex;
    gap: 24px;
  }
  .burger-menu {
    display: none;
  }
  .mobile-menu {
    display: none;
  }

  /* Login popup */
  .login-popup {
    position: absolute;
    top: 96px;
    right: 40px;
    background: #1e1e1e;
    border: 1px solid #2e2e2e;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 20px;
    width: 320px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    display: none;
    z-index: 50;
  }

  .login-popup.open {
    display: block;
  }

  .login-popup__title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 16px;
  }

  .login-popup__field {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
  }

  .login-popup__label {
    font-size: 14px;
    color: #ffffff;
  }

  .login-popup__input {
    background-color: #2e2e2e;
    border: none;
    border-radius: 10px;
    padding: 12px 14px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.3;
  }

  .login-popup__registration {
    font-size: 16px;
    font-weight: 500;
    margin: 12px auto;
    display: block;
    text-align: center;
  }

  .login-popup__submit {
    margin-top: 8px;
    width: 100%;
  }

  /* hero */
  .hero {
    height: calc(100dvh - 96px);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-content {
    flex-direction: column;
    gap: 64px;
  }
  .logo {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .logo-text {
    width: 100%;
    text-align: center;
    display: grid;
    gap: 24px;
  }
  .logo-icon {
    width: 165px;
    height: 86px;
  }
  .brand-icon.mobile {
    display: none;
  }

  .brand-icon.descktop {
    display: block;
    width: 984px;
    height: 60px;
  }
  .main-title {
    font-size: 18px;
    margin-bottom: 0;
  }
  .description {
    max-width: none;
    margin: 0 auto;
    font-size: 16px;
    text-align: center;
  }
  .btn-hero {
    display: none;
  }
  .btn-primary {
    font-size: 16px;
    border-radius: 12px;
  }
  .btn-hero_text {
    font-size: 16px;
  }

  .login {
    display: none;
  }

  /* projects */
  .projects-swiper {
    padding-bottom: 0;
  }

  .projects-swiper .swiper-button-next,
  .projects-swiper .swiper-button-prev {
    display: block;
    color: rgb(255, 255, 255, 0.7);
  }

  .projects-swiper .swiper-button-next:hover,
  .projects-swiper .swiper-button-prev:hover {
    color: #ffffff;
  }

  .projects-swiper .swiper-button-next {
    right: 1px;
  }

  .projects-swiper .swiper-button-prev {
    left: 1px;
  }
  .swiper-slide {
    width: 100%;
    display: flex !important;
    justify-content: center;
  }
  .project-card {
    width: 300px;
    height: 420px;
  }

  /* partners */
  .partner-logo {
    width: 180px;
    height: 180px;
  }

  /* advantages */
  .advantages {
    gap: 24px;
  }
  .advantages::before {
    display: none;
  }
  .advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .advantage-card {
    padding: 32px;
  }
  .advantage-card h3 {
    font-size: 48px;
    line-height: 1;
  }
  .advantage-card p {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.03em;
  }
  .advantage-card_quality {
    font-size: 18px;
  }

  .advantage_ident:nth-child(1) {
    display: none;
  }

  .advantage-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
  }

  .advantage-card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .btn-advantage {
    width: max-content;
  }

  /* services */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }

  .service-icon {
    width: 128px;
    height: 128px;
  }

  .service-icon svg {
    width: 112px;
    height: 112px;
  }

  .service-item h3 {
    font-size: 18px;
  }

  .info-card svg {
    width: 48px;
    height: 48px;
  }

  .info-card h3 {
    font-size: 36px;
  }

  .info-card p {
    font-size: 16px;
  }

  .trustlink-logo {
    margin-bottom: 64px;
  }

  /* trustlink */
  .trustlink-logo .logo-circle {
    width: 244px;
    height: 111px;
  }

  .trustlink-logo .logo-circle svg {
    width: 100%;
    height: 100%;
  }

  .trustlink-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* logistics */
  .logistics-cards {
    display: grid;
    gap: 32px;
  }
  .logistics-card {
    height: 274px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 18px 32px;
  }
  .logistics-card h3 {
    font-size: 48px;
    line-height: 1;
    max-width: 580px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  }
  .logistics-card h3.dark {
    color: #2e2e2e;
    text-shadow: none;
  }
  .logistics-card p {
    font-size: 16px;
    line-height: 1.3;
    max-width: 380px;
    font-weight: 700;
  }

  /* contacts */

  .contacts-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
  }

  .contacts-info {
    padding: 32px;
    gap: 24px;
  }

  .contacts-map {
    height: 300px;
    margin-bottom: 0;
  }

  /* footer */
  .footer {
    padding: 64px 0;
  }

  .footer .container {
    padding: 0 20px;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }
  .footer-nav {
    display: grid;
    gap: 64px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .nav-section h4 {
    margin-bottom: 32px;
  }

  .list-navigations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: max-content;
    gap: 24px;
  }

  .list-navigations .link {
    font-size: 16px;
  }

  .nav-section ul li {
    font-size: 16px;
  }

  .list-contacts {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-link {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.03em;
  }

  .created-by-container {
    display: flex;
    justify-content: end;
  }

  .created-by__text {
    font-size: 16px;
  }

  .created-by__icon {
    width: 140px;
    height: 52px;
  }

  .created-by-container.descktop {
    display: flex;
  }

  .created-by-container.mobile {
    display: none;
  }

  /* hover выше применяем только на устройствах с hover */

  .decor-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    pointer-events: none;
  }

  .decor-img {
    position: absolute;
    width: 700px;
    height: 700px;
    object-fit: cover;
  }

  .decor-img.left {
    left: 0;
  }

  .decor-img.right {
    right: 0;
    rotate: 180deg;
  }

  .decor-img:nth-child(1) {
    top: 71px;
  }
  .decor-img:nth-child(2) {
    top: 71px;
  }
  .decor-img:nth-child(3) {
    top: 1631px;
  }
  .decor-img:nth-child(4),
  .decor-img:nth-child(5) {
    top: 2894px;
  }
  .decor-img:nth-child(6),
  .decor-img:nth-child(7) {
    top: 4651px;
  }

  @media (min-width: 1440px) {
    .link {
      width: max-content;
    }

    .brand-icon.descktop {
      width: 1240px;
    }
  }
}
