:root {
  --Schemes-On-Tertiary: #fff;
  --White: #ffffff;
  --Black: #0c0c0c;
  --button-transition: 0.5s ease;

  -direction: row;

  --padding-x: 80px;
  --pading-y: 100px;
}

@media (max-width: 560px) {
  :root {
    --padding-x: 20px;
    --pading-y: 20px;

    --direction: column;
  }
}

* {
  margin: 0;
  padding: 0;
}

body {
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1240px;
  display: flex;
  /* padding: 100px 80px; */
  flex-direction: column;
  align-items: center;
  gap: 60px;
  align-self: stretch;

  margin-left: auto;
  margin-right: auto;
}

.header {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  display: flex;
  padding: 19px 40px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  background: var(--Black, #0c0c0c);
  backdrop-filter: blur(75px);
}

.burger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 25px;
  width: 25px;
  cursor: pointer;
  display: none;
}

.line {
  height: 1px;
  width: 25px;
  border-radius: 1px;
  border: 1px solid white;
  background: white;
  opacity: 1;
  position: absolute;
  transform-origin: center center;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease,
    top 0.5s ease 0.5s,
    bottom 0.5s ease 0.5s;
}

.line-1 {
  top: 0;
}
.line-2 {
  top: 11.25px;
}
.line-3 {
  bottom: 0;
}

.burger.active .line-2 {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.burger.active .line-1 {
  top: 10.25px;
  transform: rotate(45deg);
  transition:
    transform 0.5s ease 0.5s,
    opacity 0.5s ease,
    top 0.5s ease;
}

.burger.active .line-3 {
  bottom: 12.25px;
  transform: rotate(-45deg);
  transition:
    transform 0.5s ease 0.5s,
    opacity 0.5s ease,
    bottom 0.5s ease;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  padding: 19px 40px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  background: var(--Black, #0c0c0c);
  backdrop-filter: blur(75px);
  z-index: 100;
}

.header:has(.active) {
  border-bottom: 1px solid var(--Lines-Lines_1, #676767);
  padding-bottom: 0;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.header-left {
  display: flex;
  flex: 1 1 100%;
  align-items: center;
  gap: 20px;
}
.header-logo {
  padding-right: 20px;
  outline: none;
  cursor: pointer;
  outline: none;
}

.header-logo a {
  outline: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.nav__item {
  color: var(--White, #fff);

  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.42px;

  outline: none;
  text-decoration: none;
  transition: var(--hover-transition);
}

.nav__item:hover {
  color: #157f8a;
  transition: var(--hover-transition);
}

.nav-button {
  box-sizing: border-box;
  display: flex;
  height: 46px;
  padding: 11px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;

  border-radius: 2px;
  background: var(--accent-owen-9-base, #157f8a);
  backdrop-filter: blur(30px);

  color: var(--White, #fff);

  /* Regular text/Regular Text 17 */
  font-family: "Inter";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 20.4px */
  letter-spacing: -0.51px;

  text-decoration: none;

  transition: background var(--button-transition);
}

.nav-button:hover {
  background: var(--Accent-Owen-10, #066a74);
  backdrop-filter: blur(30px);
  transition: background var(--button-transition);
}

.mail {
  color: var(--White, #fff);

  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.42px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--hover-transition);
}

.mail:hover {
  color: var(--Secondary-7);
  transition: var(--hover-transition);
}

.header-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* .header-logo {
  order: 1;
}
.burger {
  order: 2;
}
.nav-list {
  order: 3;
}

.nav-button {
  order: 4;
  margin-left: 20px;
}
.mail {
  order: 5;
} */

.copy-icon {
  display: none;
}

.hero {
  display: flex;
  height: calc(627px + 84px);
  width: auto;
  padding-top: 45px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;

  background:
    linear-gradient(0deg, rgba(47, 57, 72, 0.5) 0%, rgba(47, 57, 72, 0.5) 100%),
    url(../img/hero.jpg) lightgray 50% / cover no-repeat;
  /* background-position-x: center, center;
  background-position-y: center, center; */
}

.hero-header__wrap {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.hero-header {
  display: flex;
  max-width: 623px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-right: auto;
}
.hero-title {
  color: var(--Schemes-On-Tertiary, #fff);
  font-family: "Suisse Int'l";
  font-size: 84px;
  font-style: normal;
  font-weight: 300;
  line-height: 88%;
  letter-spacing: -4.2px;
}

.hero-text {
  color: var(--White, #fff);

  font-family: "Inter";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 94%;
  letter-spacing: -0.64px;
}
.hero-button {
  box-sizing: border-box;
  display: flex;
  height: 56px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;

  color: var(--White, #fff);

  /* Regular text/Regular Text 20 */
  font-family: "Inter";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
  letter-spacing: -0.6px;

  border-radius: 2px;
  background: var(--accent-owen-9-base, #157f8a);
  backdrop-filter: blur(30px);
  color: var(--White);
  cursor: pointer;

  text-decoration: none;
  transition: background var(--button-transition);
}

.hero-button:hover {
  background: var(--Accent-Owen-10, #066a74);
  transition: background var(--button-transition);
}

.description {
  display: flex;
  padding: 100px 80px;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  align-self: stretch;
}
.desctipton-header-wrap {
  display: inline-grid;
  row-gap: 40px;
  column-gap: 60px;
  align-self: stretch;
  grid-template-rows: repeat(1, fit-content(100%));
  grid-template-columns: repeat(2, minmax(0, 1fr));

  margin-left: auto;
  margin-right: auto;
}

.desctipton-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  grid-row: 1 / span 1;
  grid-column: 1 / span 1;
  justify-self: stretch;
}
.desctioton-title {
  color: var(--Black, #000);

  /* H3 */
  font-family: "Inter";
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 54px */
  letter-spacing: -2.7px;
}
.description-text {
  color: var(--Black, #000);

  /* Regular text/Regular Text 20 */
  font-family: "Inter";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
  letter-spacing: -0.6px;
}
.description-image {
  align-self: stretch;
  grid-row: 1 / span 1;
  grid-column: 2 / span 1;
  justify-self: stretch;
  background: url(../img/1.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.description-image img {
  height: auto;
  width: 100%;

  align-self: stretch;
  grid-row: 1 / span 1;
  grid-column: 2 / span 1;
  justify-self: stretch;
}

.description-titems {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 60px;
  align-self: stretch;
  flex-wrap: wrap;
}
.description-item {
  display: flex;
  padding-top: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;

  border-top: 1px solid var(--Black, #000);

  color: var(--Text-primary, #000);

  /* Bold text/Bold text 20 */
  font-family: "Inter";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
  letter-spacing: -0.6px;
}

.description-image {
}

.description-image img {
  height: auto;
  width: 100%;
}

.banner-wrap {
  display: flex;
  padding: 40px 0;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.banner {
  height: 500px;
  align-self: stretch;
  background: url(../img/banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}

.promo {
  display: flex;
  padding: 100px 80px;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  align-self: stretch;
}

.promo-wrap {
  display: flex;
  max-width: 1240px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  margin-left: auto;
  margin-right: auto;
}

.promo__header {
  display: flex;
  max-width: 1240px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  margin-left: auto;
  margin-right: auto;
}
.promo__title {
  color: var(--Black, #000);

  /* H3 */
  font-family: "Inter";
  font-size: 54px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%; /* 54px */
  letter-spacing: -2.7px;
}
.promo__description {
  color: var(--Black, #000);

  /* Bold text/Bold text 20 */
  font-family: "Inter";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
  letter-spacing: -0.6px;
}
.promo__features-list {
  display: inline-grid;
  row-gap: 40px;
  column-gap: 60px;
  align-self: stretch;
  grid-template-rows: repeat(1, fit-content(100%));
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.promo__feature-item {
  color: var(--Black, #000);

  /* Regular text/Regular Text 17 */
  font-family: "Inter";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 20.4px */
  letter-spacing: -0.51px;
}

.deliverables__content {
  display: flex;
  padding: 100px 80px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.deliverables__feature-card-number {
  display: flex;
  padding-right: 100px;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.deliverables__feature-card-text {
  color: var(--body-body-element-text-icons, #000);

  /* Regular/Text Regular M */
  font-family: "Inter";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 19.8px */
  letter-spacing: -0.36px;
}

.deliverables__feature-card-line {
  position: relative;
  height: 0.8px;
  width: 100%;
  stroke: var(--Black, #000);
  padding-right: 100px;
  align-items: center;
  gap: 20px;
  background: url(../img/line.svg);
  background-position-y: center;
  background-repeat: no-repeat;
}

.deliverables__features-grid {
  display: inline-grid;
  max-width: 1240px;
  row-gap: 60px;
  column-gap: 60px;
  align-self: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* --- Заголовок (отдельный стиль) --- */
.deliverables__feature-title {
  grid-row: span 2;
  grid-column: 1;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  color: #000;

  /* H3 */
  font-family: "Inter";
  font-size: 54px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%; /* 54px */
  letter-spacing: -2.7px;
}

.deliverables__feature-card-number {
  color: var(--body-body-element-text-icons, #000);

  /* Bold text/Bold text 14 */
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 16.8px */
  letter-spacing: -0.42px;
}

.deliverables__feature-card-title {
  color: var(--body-body-element-text-icons, #000);

  /* Bold text/Bold text 20 */
  font-family: "Inter";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
  letter-spacing: -0.6px;
}

.deliverables__feature-title-text {
  margin: 0;
  padding: 0;

  color: #000;
  /* H3 */
  font-family: "Inter";
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 54px */
  letter-spacing: -2.7px;
}

/* --- Карточка (стандартный стиль) --- */
.deliverables__feature-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;

  height: 100%;

  color: var(--body-body-element-text-icons, #000);
  font-family: "Inter";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
  letter-spacing: -0.36px;
}

/* --- Адаптив < 960px --- */
@media (max-width: 959px) {
  .deliverables__features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Заголовок становится как обычная карточка (1 ячейка) */
  .deliverables__feature-title {
    grid-row: span 1;
    grid-column: auto;
  }
}

/* --- Адаптив < 640px --- */
@media (max-width: 639px) {
  .deliverables__features-grid {
    grid-template-columns: 1fr;
  }

  .deliverables__feature-title {
    grid-row: span 1;
    grid-column: auto;
  }
}

/* === Блок projects === */
.projects {
  display: flex;
  padding: 100px 80px;
  flex-direction: column;
  align-items: center;
  /* gap: 60px; */
  align-self: stretch;
}
.projects-wrap {
  display: flex;
  width: 100%;
  max-width: 1240px;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  align-self: stretch;
  margin-left: auto;
  margin-right: auto;
}

.projects-title {
  color: var(--Main-Black, #000);
  text-align: center;

  /* H3 */
  font-family: "Inter";
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 54px */
  letter-spacing: -2.7px;
}

.slider-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.slider {
  display: inline-grid;
  row-gap: 60px;
  column-gap: 60px;
  flex: 1 0 0;
  grid-template-rows: repeat(1, fit-content(100%));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.slide-left {
  width: 18.563px;
  height: 33.75px;
  cursor: pointer;
}
.slide-right {
  width: 18.563px;
  height: 33.75px;
  cursor: pointer;
}

.slider-pagination {
  width: 100%;
  max-width: 1240px;
  display: flex;
  justify-content: center;
}

.pagination-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Заголовок секции */
.projects__title {
  color: #000;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -2.7px;
  margin: 0 0 40px;
}

.projects__slider {
  position: relative;
  width: 100%;
  padding-bottom: 40px;
  /* max-width: 1092px; */
}

.projects__slider-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

/* .projects__slide {
  box-sizing: border-box;
  height: auto;
  width: 100%;
  max-width: 496px;
} */

/* === Карточка проекта === */
.projects__project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-left: 1px solid var(--Black, #000);
  display: flex;
  padding-left: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  grid-row: 1 / span 1;
  grid-column: 2 / span 1;
  justify-self: stretch;
  /* margin-left: 60px; */
}

/* Изображение */
.projects__project-image {
  height: 292.841px;
  align-self: stretch;
  aspect-ratio: 188/111;
  overflow: hidden;
  border-radius: 12px;
  background: #f0f0f0;
  margin-bottom: 16px;
}

.projects__project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Заголовок проекта */
.projects__project-title {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 500;
  font-style: normal;
  line-height: 100%;
  letter-spacing: -1.1px;
  margin: 0 0 12px;
}

/* Текст проекта */
.projects__project-text {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 120%;
  letter-spacing: -0.42px;
  margin: 0;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  aspect-ratio: 1/1;
  border: 1px solid #7e8386;
  background: none;
}

.swiper-pagination-bullet-active {
  background: #000;
}

/* === Пагинация (булиты) — точно снизу с отступом 40px === */
.projects__pagination {
  position: relative;
  margin-top: 40px; /* Отступ от слайдов */

  /* Поворот и расположение */
  display: flex;
  transform: rotate(-90deg);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;

  /* Прижать к правому краю */
  justify-content: flex-end;
  align-items: flex-end;
}

/* Булит: неактивный — обводка */
.projects__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 !important;
  opacity: 1;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects__pagination .swiper-pagination-bullet svg {
  width: 12px;
  height: 12px;
  display: block;
}

/* Булит: активный — заливка #000, без обводки */
.projects__pagination .swiper-pagination-bullet-active svg,
.projects__pagination .swiper-pagination-bullet-active svg circle {
  stroke: none;
  fill: #000;
}

/* === Адаптив < 960px (планшет) === */
@media (max-width: 959px) {
  .projects__pagination {
    justify-content: center;
    align-items: center;
  }
}

/* === Адаптив < 480px (мобильный) === */
@media (max-width: 480px) {
  .description {
    padding: 80px 20px;
    gap: 60px;
  }

  .desctipton-header-wrap {
    display: flex;
    padding: unset;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    align-self: stretch;
  }

  .projects__title {
    font-size: 32px;
    letter-spacing: -1.6px;
  }

  .projects__project-image {
    height: 200px;
  }

  .projects__project-title {
    font-size: 18px;
    letter-spacing: -0.9px;
  }

  .projects__pagination {
    transform: rotate(0deg); /* Убираем поворот на мобильном */
    flex-direction: row;
    gap: 12px;
    margin-top: 40px;
  }
}

/* === Блок advantages === */
.advantages {
  background: #f3f5f6; /* var(--Neutral-1) */
  padding: 60px 20px;
}

.advantages__wrapper {
  max-width: 1240px;
  margin: 0 auto;
}

/* === Заголовок секции (Десктоп ≥ 960px) === */
.advantages__title {
  color: #000; /* var(--Black) */
  font-family: Inter, sans-serif;
  font-size: 54px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%; /* 54px */
  letter-spacing: -2.7px;
  margin: 0 0 60px;
}

/* === Сетка (Десктоп ≥ 960px) === */
.advantages__grid {
  display: inline-grid;
  row-gap: 60px;
  column-gap: 60px;
  align-self: stretch;
  grid-template-rows: repeat(2, fit-content(100%));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

/* === Элемент сетки === */
.advantages__item {
  display: flex;
  flex-direction: column;
}

.advantages__item-title {
  color: #000; /* var(--Black) */
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: 120%; /* 24px */
  letter-spacing: -0.6px;
  margin: 0 0 12px;
}

.advantages__item-text {
  color: #000; /* var(--Black) */
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  line-height: 120%; /* 20.4px */
  letter-spacing: -0.51px;
  margin: 0;
}

@media (min-width: 960px) and (max-width: 1400px) {
  .hero-header {
    padding: 80px 40px;
  }
}

/* === Адаптив: Планшет (480px - 959px) === */
@media (max-width: 959px) and (min-width: 480px) {
  .hero-header__wrap {
    padding: 80px 40px;
  }

  .hero-title {
    font-size: 54px;
    line-height: 100%;
    letter-spacing: -2.7px;
  }

  .hero-text {
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.6px;
  }

  .description {
    padding: 100px 40px;
    gap: 60px;
  }

  .desctipton-header-wrap {
    display: flex;
    padding: 0 0;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    align-self: stretch;
  }

  .description-image {
    height: 280px;
    width: 100%;
    background: url(../img/1_m.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
  }

  .description-titems {
    display: inline-grid;
    row-gap: 40px;
    column-gap: 60px;
    align-self: stretch;
    grid-template-rows: repeat(2, fit-content(100%));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deliverables__content {
  }

  .projects__title {
    font-size: 36px;
    line-height: 100%; /* 36px */
    letter-spacing: -1.8px;
  }

  .projects__project-title {
    font-size: 22px;
    line-height: 100%;
    letter-spacing: -1.1px;
  }

  .projects__project-text {
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.42px;
  }

  .advantages__title {
    /* H4 */
    font-size: 36px;
    line-height: 100%;
    letter-spacing: -1.8px;
  }

  .advantages__grid {
    row-gap: 60px;
    column-gap: 60px;
    grid-template-rows: repeat(3, fit-content(100%));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Заголовки и текст элементов остаются без изменений */
}

/* === Адаптив: Мобильный (< 480px) === */
@media (max-width: 480px) {
  .hero {
    width: auto;
    padding: 80px 20px;
  }

  .hero_header {
    display: flex;
    padding: 80px 20px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    align-self: stretch;
  }

  .hero-title {
    white-space: pre-line;
    color: var(--Schemes-On-Tertiary, #fff);

    font-size: 36px;

    font-weight: 400;
    line-height: 100%; /* 36px */
    letter-spacing: -1.8px;
  }

  .hero-text {
    white-space: pre-line;
    color: var(--White, #fff);

    /* Regular text/Regular Text 17 */

    font-size: 17px;
    font-weight: 400;
    line-height: 120%; /* 20.4px */
    letter-spacing: -0.51px;
  }

  .deliverables__content {
    display: flex;
    padding: 80px 20px;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    align-self: stretch;
  }

  .advantages__title {
    font-size: 32px;
    letter-spacing: -1.6px;
  }

  .advantages__grid {
    grid-template-rows: repeat(6, fit-content(100%));
    grid-template-columns: 1fr;
  }

  .advantages__item-title {
    font-size: 18px;
    letter-spacing: -0.54px;
  }

  .advantages__item-text {
    font-size: 15px;
    letter-spacing: -0.45px;
  }
}

.usage {
  display: flex;
  padding: 100px 80px;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  align-self: stretch;
  container-type: inline-size;
  background: var(--Neutral-1, #f3f5f6);
}

.usage__wrap {
  display: flex;
  max-width: 1240px;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  align-self: stretch;
  margin-left: auto;
  margin-right: auto;
}

.usage-schemes-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.usage__title {
  width: 100%;
  color: var(--Black, #000);
  text-align: center;

  /* H3 */
  font-family: "Inter";
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 54px */
  letter-spacing: -2.7px;
}

.usage__panel {
  display: inline-grid;
  padding: 20px;
  column-gap: 20px;
  align-self: stretch;
  grid-template-rows: repeat(1, fit-content(100%));
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);

  border-radius: 2px;
  border: 1px solid var(--Neutral-4, #a9abad);
}

.usage__panel-img {
  display: flex;
  max-height: 188.8px;
  height: auto;
  padding: 13px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  aspect-ratio: 25/12;
  grid-row: 1 / span 1;
  grid-column: 1 / span 1;
  justify-self: stretch;
  width: 100%;
  box-sizing: border-box;
  background: url(../img/usage-panel.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.usage__panel-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4.073px;
  align-self: stretch;
  grid-row: 1 / span 1;
  grid-column: 2 / span 1;
  justify-self: stretch;
}

.usage__panel-title {
  color: var(--Text-primary, #000);

  /* Bold text/Bold text 20 */
  font-family: "Inter";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
  letter-spacing: -0.6px;
}

.usage__panel-text {
  color: var(--Text-primary, #000);

  /* Regular text/Regular Text 17 */
  font-family: "Inter";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 20.4px */
  letter-spacing: -0.51px;
}

.usage__scheme-image {
  display: flex;
  height: auto;
  max-height: 462.255px;
  align-items: flex-start;
  gap: 0 1px;
  align-self: stretch;
  flex-wrap: wrap;
  aspect-ratio: 169/63;
  width: 100%;
  box-sizing: border-box;
  background: url(../img/usage-big.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.usage__scheme-grid {
  display: inline-grid;
  row-gap: 40px;
  column-gap: 60px;
  align-self: stretch;
  grid-template-rows: repeat(1, fit-content(100%));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.usage__scheme-item {
  display: flex;
  flex-direction: column;
}

.usage__scheme-item-title {
  color: #000;

  /* Bold text/Bold text 20 */
  font-family: "Inter";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
  letter-spacing: -0.6px;
}

.usage__scheme-item-text {
  color: var(--Text-primary, #000);

  /* Regular text/Regular Text 17 */
  font-family: "Inter";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 20.4px */
  letter-spacing: -0.51px;
}

/* Адаптивность через Container Queries */
@container (max-width: 768px) {
  .usage__scheme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .usage__wrap {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .usage__scheme-grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
    column-gap: 20px;
  }

  .usage__panel-img {
    height: auto;
    aspect-ratio: auto;
    min-height: 150px;
  }

  .usage__scheme-image {
    height: auto;
    aspect-ratio: auto;
    min-height: 200px;
  }

  .usage__wrap {
    gap: 20px;
  }
}

.footer {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  background: var(--Black, #0c0c0c);
}

.footer-wrap {
  max-width: 1240px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 8px;
}

.logo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  max-width: 1240px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo-text {
  max-width: 298px;
  color: var(--White, #fff);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
  letter-spacing: -0.42px;
}

.footer-mail {
  color: var(--Accent-Owen-6, #72ced7);
  font-family: "Inter";
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 20.4px */
  letter-spacing: -0.51px;
}

.social-container {
  max-width: 1240px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social__item {
  cursor: pointer;
}

.social__icon {
  fill: var(--White);
  transition: var(--hover-transition);
}

.social__link:hover .social__icon {
  fill: #f8b881;
  transition: var(--hover-transition);
}

.footer-link {
  display: flex;
  min-height: 46px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;

  border-radius: 2px;
  border: 1px solid var(--Accent-Owen-1, #e3fbfd);
  backdrop-filter: blur(30px);

  color: var(--Accent-Owen-1, #e3fbfd);
  font-family: "Inter";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 20.4px */
  letter-spacing: -0.51px;
  text-decoration: none;
}

.rights {
  color: var(--Neutral-3, #cdd2d5);
  font-family: "Inter";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
  letter-spacing: -0.36px;
  max-width: 1240px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 960px) {
  .description {
    padding: 80px 40px;
  }

  .usage {
    padding: 80px 40px;
  }

  .projects {
    padding: 80px 40px;
  }

  .projects-title {
    font-size: 36px;
    letter-spacing: -1.8px;
  }

  .deliverables__content {
    padding: 80px 40px;
  }

  .promo {
    padding: 80px 40px;
  }

  .promo__features-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .hero-title {
    color: var(--Schemes-On-Tertiary, #fff);
    font-family: "Inter";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 36px */
    letter-spacing: -1.8px;
  }

  .hero-text {
    color: var(--White, #fff);

    /* Regular text/Regular Text 17 */
    font-family: "Inter";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 20.4px */
    letter-spacing: -0.51px;
  }

  .hero-button {
    color: var(--White, #fff);

    /* Regular text/Regular Text 20 */
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 24px */
    letter-spacing: -0.6px;
  }

  .desctioton-title {
    color: var(--Black, #000);

    /* H4 */
    font-family: "Inter";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 36px */
    letter-spacing: -1.8px;
  }

  .description-text {
    color: var(--Black, #000);

    /* Regular text/Regular Text 20 */
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 24px */
    letter-spacing: -0.6px;
  }

  .description-item {
    color: var(--Text-primary, #000);

    /* Bold text/Bold text 20 */
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 24px */
    letter-spacing: -0.6px;
  }

  .promo__title {
    color: var(--Black, #000);

    /* H4 */
    font-family: "Inter";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 36px */
    letter-spacing: -1.8px;
  }

  .promo__description {
    color: var(--Black, #000);

    /* Bold text/Bold text 20 */
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 24px */
    letter-spacing: -0.6px;
  }

  .promo__features-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .deliverables__feature-title-text {
    color: #000;

    /* H4 */
    font-family: "Inter";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 36px */
    letter-spacing: -1.8px;
  }

  .deliverables__feature-card-number {
    color: var(--body-body-element-text-icons, #000);

    /* Bold text/Bold text 14 */
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 16.8px */
    letter-spacing: -0.42px;
  }

  .deliverables__feature-card-title {
    color: var(--body-body-element-text-icons, #000);

    /* Bold text/Bold text 20 */
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 24px */
    letter-spacing: -0.6px;
  }

  .deliverables__feature-card-text {
    color: var(--body-body-element-text-icons, #000);

    /* Regular/Text Regular M */
    font-family: "Inter";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 19.8px */
    letter-spacing: -0.36px;
  }

  .deliverables__content {
    padding: 80px 20px;
  }

  .usage__title {
    color: var(--Black, #000);
    text-align: center;

    /* H4 */
    font-family: "Inter";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 36px */
    letter-spacing: -1.8px;
  }

  .usage__panel-title {
    color: var(--Text-primary, #000);

    /* Bold text/Bold text 20 */
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 24px */
    letter-spacing: -0.6px;
  }
  usage__panel-text {
    color: var(--Text-primary, #000);

    /* Regular text/Regular Text 17 */
    font-family: "Inter";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 20.4px */
    letter-spacing: -0.51px;
  }

  .usage__scheme-item-title {
    color: #000;

    /* Bold text/Bold text 20 */
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 24px */
    letter-spacing: -0.6px;
  }

  .usage__scheme-item-text {
    color: var(--Text-primary, #000);

    /* Regular text/Regular Text 17 */
    font-family: "Inter";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 20.4px */
    letter-spacing: -0.51px;
  }

  .footer-logo__wrap {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-link {
    box-sizing: border-box;
    height: 46px;
    width: auto;
  }

  .footer-mail {
    display: none;
  }

  .social-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .header {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .header-wrap {
    padding-top: 20px;
    padding-bottom: 20px;
    transition: var(--hover-transition);
  }

  .header-wrap {
    padding-top: 20px;
    padding-bottom: 20px;
    /* height: 88px; */
    /* border-bottom: 1px solid var(--Lines-Lines_1, #676767); */
  }

  .header-wrap.active {
    height: 100%;
    padding-bottom: 0;
    transition: var(--hover-transition);
  }

  .header-logo {
    padding-left: 20px;
    padding-right: 0;
  }

  .burger {
    display: block;
    margin-right: 20px;
  }

  .nav-button {
    box-sizing: border-box;

    gap: 40px;

    width: 100%;
    /* height: 56px; */
    padding: 8px 16px;
    margin: 20px;
    /* display: none; */
    overflow: hidden;
    max-width: unset;
    /* order: 3; */
    transition: var(--hover-transition);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    /* order: 3; */
    width: 100%;
    height: 0px;
    padding: 0;
    padding-left: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;

    color: var(--White, #fff);

    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 24px */
    letter-spacing: -0.6px;

    transition: var(--hover-transition);
  }

  .nav-list.active {
    height: 396px;
    height: max-content;
    height: 300px;
    padding: 40px 24px;
    padding-top: 30px;
    /* margin-bottom: 40px; */
    transition: var(--hover-transition);
    background: var(--Black);
  }

  .nav-button.active {
    display: flex;
    transition: var(--hover-transition);
  }

  .mail {
    display: flex;
    width: 100%;
    height: 88px;
    padding: 24px;
    display: none;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    background: var(--2, #ffe6d1);

    color: var(--Black, #000);
    font-family: "Inter";
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.51px;
    transition: var(--hover-transition);
  }

  .nav__item {
    font-size: 20px;
  }

  .copy-icon {
    display: block;
    cursor: pointer;
  }

  .copy-icon {
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .copy-icon:hover {
    transform: scale(1.1);
  }

  .copy-icon.copying {
    animation: copyPulse 0.6s ease;
  }

  @keyframes copyPulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.3);
    }
    100% {
      transform: scale(1);
    }
  }

  .mail.active {
    display: flex;
    transition: var(--hover-transition);
  }

  .hero {
    padding-top: 0;
  }
}

@media (min-width: 480px) and (max-width: 960px) {
  .header {
    height: auto;
  }

  .header-wrap {
    flex-direction: row;
  }

  .nav-list.active {
    width: 100%;
  }

  .burger {
    display: block;
    margin-left: 20px;
    margin-right: auto;
  }

  .nav-button-mob {
    display: none;
  }

  .nav-list {
    flex-direction: row;
    align-items: flex-start;
    /* order: 3; */
    width: 100%;
    height: 0px;
    padding: 0;
    padding-left: 20px;
    overflow: hidden;
    display: flex;
    gap: 40px;
    align-self: stretch;

    color: var(--White, #fff);

    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 24px */
    letter-spacing: -0.6px;

    transition: var(--hover-transition);
  }

  .nav-list.active {
    /* height: 396px; */
    height: max-content;
    height: auto;
    padding-top: 30px;
    padding-bottom: 20px;
    padding-left: 0;
    transition: var(--hover-transition);
    background: var(--Black);
  }

  .header-logo {
    order: 1;
  }

  .burger {
    order: 2;
  }

  .nav-button-desc {
    width: fit-content;
    order: 3;
  }

  .nav-list {
    order: 4;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.swiper-slide img {
  display: block;
  width: 100%;
}

.projects {
  max-width: 1240px;
  position: relative;
  /* max-width: calc(100% - var(--padding-x)); */
  padding: 100px 80px;
  margin-left: auto;
  margin-right: auto;
}

.projects__header {
  color: var(--Main-Black, #000);
  text-align: center;

  /* H3 */
  font-family: "Inter";
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 54px */
  letter-spacing: -2.7px;
  padding-bottom: 60px;
}

.project {
  width: 100%;
  border-left: 1px solid var(--Black, #000);
  display: flex;
  padding-left: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  grid-row: 1 / span 1;
  grid-column: 1 / span 1;
  justify-self: stretch;
  background-color: #157f8a;
}

.project img {
  width: 100%;
}

.swiper-slide {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  border-left: 1px solid var(--Black, #000);
  min-width: 0;
}

.swiper-slide img {
  height: 100%;
  max-height: 336px;
  height: 336px;
  width: 100%;
  margin-bottom: 40px;
}

.project__title {
  color: var(--body-body-element-text-icons, #000);

  /* Bold/Text Bold L */
  font-family: "Inter";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 22px */
  letter-spacing: -1.1px;
  margin-bottom: 8px;

  word-wrap: break-word; /* Перенос длинных слов */
  overflow-wrap: break-word;
  max-width: 100%;
  min-width: 0;
}

.project__text {
  color: var(--body-body-element-text-icons, #000);

  /* Regular text/Regular Text 14 */
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
  letter-spacing: -0.42px;
  word-wrap: break-word; /* Перенос длинных слов */
  overflow-wrap: break-word;
  max-width: 100%;
  min-width: 0;
}

.pro_swiper-button-next {
  position: absolute;
  right: 0;
  top: 50%;
  cursor: pointer;
  z-index: 100;
  transform: rotate(180deg);
}

.pro_swiper-button-prev {
  position: absolute;
  left: 0;
  top: 50%;
  cursor: pointer;
  z-index: 100;
}

.pro_swiper-button-next {
  right: calc(0px + 20px);
}

.pro_swiper-button-prev {
  left: calc(0px + 20px);
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  position: relative;
  margin-top: 40px;
}

.nav-button-mob {
  display: none;
}

@media (max-width: 480px) {
  .nav-button-desc {
    display: none;
  }

  .nav-button-mob {
    display: flex;
    margin: unset;
  }
}

@media (max-width: 560px) {
  .swiper {
    width: calc(100% - var(--padding-x) * 2);
  }

  .projects {
    padding: 80px 20px;
  }

  .projects__header {
    font-size: 36px;
    letter-spacing: -1.8px;
  }

  .swiper-slide {
    padding-left: 20px;
    padding-right: 0;
  }

  .pro_swiper-button-next {
    /* display: none; */
    right: 0px;
  }

  .pro_swiper-button-prev {
    /* display: none; */
    left: 0px;
  }
}

@media (max-width: 380px) {
  .social {
    gap: 5px;
  }
}

.header-wrap {
  container-type: inline-size;
}

@container (max-width: 509px) {
  .nav-list {
    flex-direction: column;
  }
}
