@charset "UTF-8";
/* Reset and base styles  */
@import url("https://fonts.googleapis.com/css2?family=Geologica:wght,CRSV@100..900,0&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

textarea {
  resize: vertical;
}

button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type="file"] {
  max-width: 100%;
}

.pt {
  margin-bottom: 120px;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  position: relative;
  background: #f5f7fa;
}

:root {
  --geo: font-family: "Geologica", sans-serif;
}

/* ====== HERO ПОД СКРОЛЛ ====== */
/* Внешний контейнер задаёт "длину" прокрутки.
   Чем больше высота — тем медленнее/плавнее листается видео.
   400vh = 4 экрана прокрутки на все кадры. */
.hero-scroll {
  position: relative;
  height: 250vh;
}

.hero__text-1 {
  display: none;
}

/* Прилипающий экран: держит canvas во вьюпорте, пока скроллим внутри .hero-scroll */
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Canvas с кадрами — на весь экран, кадр рисуется по принципу cover */
.hero-canvas {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* ====== ТЕКСТ ПОВЕРХ ====== */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 132px 20px 51px 20px;
}

.hero-title {
  color: #fff;
  font-family: Montserrat;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 64px */
  letter-spacing: -2.56px;
  max-width: 50%;
}

.hero-subtitle {
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 20px */
}

.container {
  width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

/* HEADER */
.header {
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 17px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 170px;
}
.header__logo {
  width: 175px;
}
.header__center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav__list {
  display: flex;
  gap: 12px;
  align-items: center;
}
.header__nav__list__item__link {
  padding: 11px 15px;
  border-radius: 50px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  cursor: pointer;
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}
.header__nav__list__item__link:hover {
  background: rgba(255, 255, 255, 0.2);
}
.header__right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header {
  transition: background 0.3s ease;
  /* Когда хедер над секцией .dark-theme — текст и иконки тёмные */
}
.header.is-on-dark {
  background: rgba(43, 47, 52, 0.05);
}
.header.is-on-dark .header__nav__list__item__link {
  color: #2b2f34;
}
.header.is-on-dark .header__nav__list__item__link:hover {
  background: rgba(0, 0, 0, 0.08);
}
.header.is-on-dark .phone__number {
  color: rgba(0, 0, 0, 0.8);
}
.header.is-on-dark .phone {
  background: rgba(43, 47, 52, 0.08);
}

/* PHONE WIDGET */
.phone {
  display: flex;
  align-items: center;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
}
.phone:hover {
  background: rgba(255, 255, 255, 0.35);
}
.phone__btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone__icon {
  width: 18px;
  height: 18px;
}
.phone__number {
  color: rgba(255, 255, 255, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  padding-right: 0;
  transition:
    max-width 0.4s ease,
    opacity 0.3s ease,
    padding-right 0.4s ease;
}
.phone.is-open .phone__number {
  max-width: 220px;
  opacity: 1;
  padding-right: 18px;
}

.header .blue__button {
  padding: 11px 15px;
  font-size: 16px;
}
.header .blue__button__icon {
  width: 24px;
  height: 24px;
}
.header .blue__button__icon > img {
  height: 12px;
  display: block;
  width: auto;
}

/* =========================================================
   БУРГЕР + МОБИЛЬНОЕ МЕНЮ
   По умолчанию (десктоп) бургер и меню скрыты.
   Включаются в медиа-запросе max-width: 1200px ниже.
   ========================================================= */
.burger {
  display: none; /* показывается на брейкпоинте */
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0c3d7a;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}
.burger__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition:
    opacity 0.25s ease,
    transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
/* По умолчанию виден гамбургер, крестик скрыт */
.burger__icon--close {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
}
/* Меню открыто: показываем крестик, прячем гамбургер */
.menu-open .burger__icon--open {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
.menu-open .burger__icon--close {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}

.mobile-menu {
  display: none; /* показывается на брейкпоинте */
  position: fixed;
  inset: 0;
  z-index: 4; /* под хедером (z-index: 5) */
  flex-direction: column;
  padding: 120px 30px 40px;
  background: #98a5b5;
  opacity: 0;
  visibility: hidden;
  clip-path: circle(0% at calc(100% - 42px) 42px);
  transition:
    clip-path 0.5s cubic-bezier(0.77, 0, 0.18, 1),
    opacity 0.4s ease,
    visibility 0s linear 0.5s;
}
.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  clip-path: circle(150% at calc(100% - 42px) 42px);
  transition:
    clip-path 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease,
    visibility 0s;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu__link {
  display: block;
  padding: 11px 15px;
  border-radius: 50px;
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  cursor: pointer;
  transition: background 0.25s ease;
  /* стартовое состояние для появления по очереди */
  opacity: 0;
  transform: translateY(20px);
}
.mobile-menu__link.is-active,
.mobile-menu__link:hover {
  background: rgba(255, 255, 255, 0.2);
}
.mobile-menu__cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  /* стартовое состояние для появления */
  opacity: 0;
  transform: translateY(20px);
}
/* Появление пунктов по очереди при открытии */
.menu-open .mobile-menu__link,
.menu-open .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-open .mobile-menu__list__item:nth-child(1) .mobile-menu__link {
  transition-delay: 0.12s;
}
.menu-open .mobile-menu__list__item:nth-child(2) .mobile-menu__link {
  transition-delay: 0.18s;
}
.menu-open .mobile-menu__list__item:nth-child(3) .mobile-menu__link {
  transition-delay: 0.24s;
}
.menu-open .mobile-menu__list__item:nth-child(4) .mobile-menu__link {
  transition-delay: 0.3s;
}
.menu-open .mobile-menu__list__item:nth-child(5) .mobile-menu__link {
  transition-delay: 0.36s;
}
.menu-open .mobile-menu__cta {
  transition-delay: 0.42s;
}

.blue__button {
  padding: 14px 20px;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  background: #0c3d7a;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  color: #fff;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 19.2px */
  cursor: pointer;
}
.blue__button:hover {
  background: #17529c;
}
.blue__button:hover > .blue__button__icon {
  transform: rotate(-90deg);
}
.blue__button__icon {
  display: flex;
  align-items: center;
  width: 32px;
  justify-content: center;
  height: 32px;
  border-radius: 50px;
  background: #fff;
  transition: transform 0.3s ease;
}
.blue__button__icon > img {
  height: 14px;
  display: block;
  width: auto;
}

.blue__button.dark {
  background-color: #fff;
  color: #0c3d7a;
}
.blue__button.dark .blue__button__icon {
  background: #0c3d7a;
}
.blue__button.dark .blue__button__icon > img {
  filter: brightness(0) invert(1);
}

.white__button {
  color: #0c3d7a;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 21.6px */
  padding: 19px 20px;
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
}
.white__button:hover {
  background: #e6f0ff;
}

.mark {
  padding: 10px 15px;
  border-radius: 50px;
  background: rgba(30, 58, 95, 0.1);
  backdrop-filter: blur(2.5px);
  color: #0c3d7a;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
  width: -moz-fit-content;
  width: fit-content;
}

.mark.dark {
  background: rgba(245, 247, 250, 0.15);
  color: #fff;
}

.title-h2 {
  color: #2b2f34;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 36px */
}

.title-h2.dark {
  color: #fff;
}

.subtitle {
  color: rgba(43, 47, 52, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}

.subtitle.dark {
  color: rgba(255, 255, 255, 0.8);
}

/* HEADER */
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.hero__content__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hero__content__bottom {
  display: flex;
  justify-content: space-between;
}
.hero__content__bottom__left {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  width: -moz-fit-content;
  width: fit-content;
  row-gap: 5px;
}
.hero__content__bottom__left__item {
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(9.5px);
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.hero__content__bottom__right {
  display: flex;
  flex-direction: column;
  max-width: 535px;
  gap: 20px;
}
.hero__content__bottom__right__text {
  color: rgba(255, 255, 255, 0.8);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 21.6px */
}
.hero__content__bottom__right__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.decisions > .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.decisions__top {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.decisions__top__left {
  max-width: 462px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.decisions__top__right {
  max-width: 400px;
}
.decisions__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.decisions__list__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.decisions__list__item__img {
  width: 100%;
  height: 466px;
  margin-bottom: 10px;
  border-radius: 20px;
  object-fit: cover;
}
.decisions__list__item__text {
  color: rgba(43, 47, 52, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  margin-top: 5px;
}
.decisions__list__item__title {
  color: #2b2f34;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 18px */
}
.decisions__list__item__subtitle {
  color: #2b2f34;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
}

.composition > .container {
  border-radius: 40px;
  background-image: url("../images/composition-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.comp-img-2 {
  display: none;
}

.composition__top {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.composition__top__left {
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.composition__top__right {
  max-width: 654px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.composition__bottom {
  display: flex;
  justify-content: space-between;
}
.composition__bottom__list {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.composition__bottom__list__item {
  max-width: 654px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.composition__bottom__list__item__img {
  width: 56px;
  height: 56px;
}
.composition__bottom__list__item__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.composition__bottom__list__item__text__title {
  color: #fff;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
}
.composition__bottom__list__item__text__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}
.composition__bottom__image {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.composition__bottom__img {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.composition__bottom__img img {
  z-index: 2;
  position: relative;
  max-height: 511px;
}
.composition__bottom__img__circle {
  border-radius: 567px;
  background: rgba(157, 184, 252, 0.4);
  filter: blur(111.5999984741px);
  width: 444px;
  height: 567px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.circle1 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle2 {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  outline: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle.first {
  position: absolute;
  top: 45px;
  left: 30px;
  z-index: 2;
}

.circle.second {
  position: absolute;
  top: 167px;
  right: 45px;
  z-index: 2;
}

.circle.third {
  position: absolute;
  bottom: 220px;
  left: 75px;
  z-index: 2;
}

.circle.fourth {
  position: absolute;
  bottom: 115px;
  right: 40px;
  z-index: 2;
}

.line.first {
  width: 669px;
}

.line.second {
  width: 333px;
}

.line.third {
  width: 624px;
}

.line.fourth {
  width: 326px;
}

.line {
  position: absolute;
  height: 1px;
  background-color: #f5f7fa;
  transform-origin: left center;
  transform: translateX(7px);
}

.plans > .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.plans__top {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.plans__top__right {
  max-width: 590px;
}
.plans__top__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.plans__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.reviews__list__item__img {
  border-radius: 15px;
}
.plans__list__item {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 10px;
  border-radius: 20px;
  background: #ecf1f9;
}
.plans__list__item__title {
  color: #2b2f34;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 24px */
}
.plans__list__item__subtitle {
  color: #0c3d7a;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 19.2px */
}
.plans__list__item__text {
  color: rgba(43, 47, 52, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  margin-top: 10px;
  margin-bottom: 38px;
}
.plans__list__item__img {
  width: 120px;
  height: 120px;
  align-self: center;
}
.plans__list__item__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(12, 61, 122, 0.15);
}
.plans__list__item__list__item {
  display: flex;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  align-items: center;
  gap: 6px;
}
.plans__list__item.dark {
  position: relative;
  border-radius: 20px;
  background: #75808c;
}
.plans__list__item.dark h3 {
  color: #fff;
}
.plans__list__item.dark span {
  color: #fff;
}
.plans__list__item.dark p {
  color: rgba(255, 255, 255, 0.8);
}
.plans__list__item.dark li {
  color: rgba(255, 255, 255, 0.8);
}
.plans__list__item:nth-child(3) {
  border-radius: 20px;
  background: #fff;
}
.plans__list__item:nth-child(4) {
  border-radius: 20px;
  background: #f3f8ff;
}

.plans .blue__button {
  align-self: center;
}

.popular {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  background: #fff;
  backdrop-filter: blur(2.5px);
  color: #0c3d7a;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
  padding: 7.5px 20px;
}

.logic {
  padding: 60px 40px;
  background: #fff;
}
.logic-img-2 {
  display: none;
}
.logic > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
.logic__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.logic__left .title-h2 {
  margin: 10px 0;
}
.logic__left__card {
  display: flex;
  gap: 20px;
  border-radius: 20px;
  background: #ecf1f9;
  padding: 20px;
  margin-top: 30px;
}
.logic__left__card__img {
  width: 180px;
  height: auto;
  border-radius: 10px;
}
.logic__left__card__content__icon {
  width: 24px;
  height: 24px;
}
.logic__left__card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.logic__left__card__content__title {
  color: #0c3d7a;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 20px */
  margin-top: 5px;
}
.logic__left__card__content__text {
  color: rgba(43, 47, 52, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}
.logic__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.logic__right__top {
  padding-top: 57px;
  display: flex;
  gap: 23px;
  align-items: center;
}
.logic__right__top__tab {
  color: #0c3d7a;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
  padding: 15px 23px;
  border: none;
  border-radius: 50px;
  background: rgba(30, 58, 95, 0.1);
  backdrop-filter: blur(2.5px);
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}
.logic__right__top__tab.active {
  color: #fff;
  background: #1e3a5f;
}
.logic__right__content {
  background-image: url("../images/logic-bg.webp");
  background-size: cover;
  border-radius: 20px;
  background-position: center;
  padding: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  display: none;
}
.logic__right__content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.logic__right__content__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.logic__right__content__info__title {
  margin-bottom: 5px;
  color: #0c3d7a;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 20px */
}
.logic__right__content__info__subtitle {
  color: #2b2f34;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
}
.logic__right__content__info__text {
  color: rgba(43, 47, 52, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}

.situations > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.situations > .container > * {
  min-width: 0;
}
.situations__left {
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 40px;
  background: #98a5b5;
  gap: 40px;
}
.situations__left__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.situations__left__bottom .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.situations__left__bottom__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.situations__left__bottom__info__title {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 18px */
}
.situations__left__bottom__info__text {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}
.situations__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 83.333px;
  background: #fff;
}
.situations__arrow.swiper-button-disabled {
  background: rgba(255, 255, 255, 0.5);
}
.situations__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.situations__right {
  display: flex;
  flex-direction: column;
  background-image: url("../images/situation.webp");
  padding: 40px;
  background-size: cover;
  justify-content: space-between;
  align-items: center;
  border-radius: 40px;
}
.situations__right__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.situations__right__top > .title-h2 {
  margin-bottom: 10px;
  max-width: 80%;
}
.situations__right__quote {
  padding: 25px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(9.5px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.situations__right__quote__quotation {
  color: #afc7e6;
  font-family: Montserrat;
  font-size: 100px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 100px */
}
.situations__right__quote__quotation.first {
  position: absolute;
  top: -30px;
  left: 20px;
}
.situations__right__quote__quotation.second {
  position: absolute;
  bottom: -25px;
  right: 20px;
  transform: rotate(180deg);
}
.situations__right__quote__title {
  color: #fff;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 18px */
}
.situations__right__quote__text {
  color: rgba(255, 255, 255, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}

.swiper {
  width: 100%;
}

.situations__swiper {
  overflow: hidden;
}
.situations__swiper .swiper-slide {
  width: 100%;
  min-width: 0;
  height: auto;
  box-sizing: border-box;
}

.situations__left__bottom__img {
  display: block;
  height: auto;
  max-width: 268px;

  border-radius: 15px;
}

.situations__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-direction: column;
  margin-top: 25px;
}

.situations__pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
}
.situations__pagination .swiper-pagination-bullet {
  width: 15px;
  height: 3px;
  margin: 0 !important;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
}
.situations__pagination .swiper-pagination-bullet-active {
  width: 25px;
  background: #fff;
}

.problems__transparent__swiper,
.problems__white__swiper {
  width: 100%;
  overflow: hidden;
}
.problems-btn-2 {
  display: none;
}
.problems__transparent__swiper .swiper-slide,
.problems__white__swiper .swiper-slide {
  width: 100%;
  min-width: 0;
  height: auto;
  box-sizing: border-box;
}

.problems__right__transparent__top__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* без этого flex-элемент не даёт Swiper сжаться и тот раздувается по ширине */
  min-width: 0;
}
.problems__controls {
  display: flex;
  align-items: center;
  gap: 30px;
}

.problems__controls.problems__controls-2 {
  display: none;
}

.problems__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 83.333px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.problems__arrow.swiper-button-disabled {
  background: rgba(255, 255, 255, 0.5);
  cursor: default;
}

.problems__pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%; /* 48px */
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.problems__pagination .swiper-pagination-current {
  color: #fff;
}
.problems__pagination .swiper-pagination-total {
  color: rgba(255, 255, 255, 0.8);
}

.problems {
  background-image: url("../images/problems.webp");
  padding: 60px 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.problems > .container {
  display: flex;
  overflow: visible;
}
.problems__left {
  display: flex;
  max-width: 40%;
  flex-direction: column;
  gap: 250px;
}
.problems__left__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.problems__left__top .title-h2 {
  margin-bottom: 63px;
}
.problems__right {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.problems__right__transparent {
  width: 443px;
  height: 443px;
  border-radius: 1000px;
  border: 1px solid #fff;
  background: rgba(245, 247, 250, 0.1);
  backdrop-filter: blur(9.5px);
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 108px 70px;
  position: relative;
  z-index: 2;
}
.problems__right__transparent__title {
  color: rgba(255, 255, 255, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}
.problems__right__transparent__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.problems__right__transparent__top .mark {
  border-radius: 50px;
  border: 1px solid #f5f7fa;
  backdrop-filter: blur(2.5px);
  background-color: transparent;
}
.problems__right__transparent__top__img {
  width: 87px;
  height: auto;
}
.problems__right__white {
  width: 443px;
  height: 443px;
  border-radius: 1000px;
  border: 1px solid #fff;
  background: #f5f7fa;
  backdrop-filter: blur(9.5px);
  padding: 104px 70px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  right: -383px;
  bottom: 0px;
  z-index: 1;
}
.problems__right__white__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* без этого flex-элемент не даёт Swiper сжаться и тот раздувается по ширине */
  min-width: 0;
}
.problems__right__white__content__text {
  color: rgba(43, 47, 52, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}
.problems__right__white__img {
  width: 100px;
  height: auto;
  align-self: end;
}

.receive {
  padding: 80px 0;
  background: #ecf1f9;
}
.receive > .container {
  display: flex;
  gap: 40px;
}
.receive__left {
  min-width: 433px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.receive__left .title-h2 {
  margin-bottom: 20px;
}
.receive__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}
.receive__right__item {
  padding: 20px;
  border-radius: 20px;
  background: rgba(12, 61, 122, 0.1);
  backdrop-filter: blur(9.5px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.receive__right__item__title {
  color: #2b2f34;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 20px */
}
.receive__right__item__text {
  color: rgba(43, 47, 52, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}
.receive__circles {
  display: grid;
  margin-bottom: 10px;
  grid-template-columns: 1fr 1fr;
  gap: 0.7px;
  width: -moz-fit-content;
  width: fit-content;
}
.receive__circle {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(12, 61, 122, 0.1);
}

.table {
  padding: 120px 0;
}
.table-btn-2 {
  display: none;
}
.table .blue__button {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  align-self: end;
  justify-self: end;
}
.table > .container {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.table__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.table__top__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.table__top__left .title-h2 {
  margin-bottom: 5px;
  max-width: 72%;
}
.table__top__left .subtitle {
  max-width: 590px;
}
.table__wrapper {
  display: grid;
  grid-template-columns: 222px repeat(4, 305px);
  gap: 0;
  border-radius: 40px;
  overflow: hidden;
  /* прячем нативный скролл — листаем кастомным скроллбаром ниже */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.table__wrapper::-webkit-scrollbar {
  display: none; /* WebKit */
}

/* Кастомный горизонтальный скроллбар таблицы.
   По умолчанию скрыт — показывается из JS, когда есть переполнение. */
.table__scrollbar {
  display: none;
  position: relative;
  height: 6px;
  margin-top: 20px;
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
  touch-action: none;
}
.table__scrollbar__thumb {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  border-radius: 50px;
  background: #0c3d7a;
  cursor: grab;
  will-change: transform;
}
.table__scrollbar__thumb:active {
  cursor: grabbing;
}

@media screen and (min-width: 1481px) {
  .table__scrollbar {
    display: none !important;
  }
}

.table__wrapper__column * {
  padding: 20px 15px;
}
.table__wrapper__column:nth-child(2) {
  background: #ecf1f9;
}
.table__wrapper__column:nth-child(3) {
  background: #75808c;
}
.table__wrapper__column:nth-child(4) {
  background: #fff;
}
.table__wrapper__column:nth-child(5) {
  background: #f3f8ff;
}
.table__wrapper__text {
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  display: flex;
  align-items: center;
}
.table__wrapper__title {
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
}

.row-light {
  background: rgba(255, 255, 255, 0.5);
}

.row-light2 {
  background: rgba(152, 165, 181, 0.2);
}

.row-light-gray {
  background: rgba(255, 255, 255, 0.2);
}

.row-light-blue2 {
  background: rgba(255, 255, 255, 0.5);
}

.row-light-blue1 {
  background: rgba(255, 255, 255, 0.5);
}

.row-blue1 {
  background: #ecf1f9;
}

.col1 .table__wrapper__title {
  color: rgba(43, 47, 52, 0.6);
}

.col1 .table__wrapper__text {
  color: #2b2f34;
}

.col2 .table__wrapper__title,
.col4 .table__wrapper__title,
.col5 .table__wrapper__title {
  color: #0c3d7a;
}

.col2 .table__wrapper__text,
.col4 .table__wrapper__text,
.col5 .table__wrapper__text {
  color: rgba(43, 47, 52, 0.8);
}

.col3 .table__wrapper__title {
  color: #fff;
}

.col3 .table__wrapper__text {
  color: rgba(255, 255, 255, 0.8);
}

.compare {
  background-image: url("../images/compare.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0;
  position: relative;
}
.compare::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  z-index: 1;
}
.compare-btn-2 {
  display: none;
}
.compare > .container {
  display: flex;
  gap: 20px;
  overflow: visible;
  position: relative;
  z-index: 2;
}
.compare__left {
  position: relative;
  max-width: 467px;
  display: flex;
  flex-direction: column;
  gap: 82px;
}
.compare__left .title-h2 {
  max-width: 90%;
  z-index: 2;
  position: relative;
}
.compare__left__top {
  position: relative;
  isolation: isolate;
  width: 467px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 25px;
}
.logic__right__content__img {
  border-radius: 10px;
}
.compare__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 0;
  column-gap: 0;
  border-radius: 20px;
  overflow: hidden;
}
.compare__right__card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.compare__right__card__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.compare__right__card__top .mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.compare__right__card__top__img {
  height: 100px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.compare__right__card__top__text {
  color: #2b2f34;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  max-width: 400px;
  margin-top: 10px;
}
.compare__right__card__list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(43, 47, 52, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  border-bottom: 1px solid rgba(2, 5, 90, 0.15);
  padding: 15px 0 10px 0;
}
.compare__right__card__list__item:first-child {
  padding-top: 0;
}
.compare__right__card__list__item:last-child {
  border-bottom: none;
}
.compare__right__card.white {
  background: #fff;
}
.compare__right__card.transparent {
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(7.5px);
}

.compare__right__card.transparent .compare__right__card__top__text {
  color: #fff;
  max-width: 270px;
}
.compare__right__card.transparent .compare__right__card__list__item {
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.compare__right__card.transparent .compare__right__card__list__item:last-child {
  border-bottom: none;
}

@supports not (
  (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))
) {
  .compare__left__top::before {
    background: rgba(15, 25, 45, 0.36);
  }
}
.process .blue__button {
  height: -moz-fit-content;
  height: fit-content;
  align-self: end;
  justify-self: end;
}
.process-btn-2 {
  display: none;
}
.process > .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 40px;
  border-radius: 40px;
  background: #05214f;
}
.process__top {
  display: flex;
  justify-content: space-between;
}
.process__top__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.process__list__item {
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
}
.process__list__item img {
  border-radius: 15px;
}
.process__list__item__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.process__list__item__content__num {
  color: #fff;
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%; /* 48px */
  margin-bottom: 10px;
}
.process__list__item__content__title {
  color: #fff;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 19.8px */
}
.process__list__item__content__text {
  color: rgba(255, 255, 255, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}
.process__list__item.reverse {
  flex-direction: column-reverse;
}
.process__list__item:first {
  padding-left: 0;
}
.process__list__item:last-child {
  border-right: none;
}
.process__list__item:nth-child(2n) {
  padding-top: 30px;
}
.process__list__item:nth-child(2) {
  justify-content: flex-end;
}

.manufacture > .container {
  display: flex;
  gap: 20px;
}
.manufacture__navigation.manufacture__navigation-2 {
  display: none;
}
.manufacture__left {
  display: flex;
  flex-direction: column;
  max-width: 467px;
  justify-content: space-between;
}
.manufacture__left__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.manufacture__left__top .title-h2 {
  margin-bottom: 5px;
}
.manufacture__navigation {
  display: flex;
  align-items: center;
  gap: 20px;
}
.manufacture__navigation__prev,
.manufacture__navigation__next {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 81.667px;
  background: #0c3d7a;
}
.manufacture__list__item {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.manufacture__list__item__img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 15px 0;
}
.manufacture__list__item__title {
  color: #2b2f34;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 19.8px */
}
.manufacture__list__item__text {
  color: rgba(43, 47, 52, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}

.manufacture__swiper {
  overflow: hidden;
}
.manufacture__swiper .swiper-slide {
  height: auto;
  min-width: 0;
  box-sizing: border-box;
}

.manufacture__list__item__img {
  display: block;
  max-width: 100%;
  height: auto;
}

.manufacture__navigation__prev,
.manufacture__navigation__next {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: opacity 0.3s ease;
}
.manufacture__navigation__prev.swiper-button-disabled,
.manufacture__navigation__next.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}

.reviews__swiper {
  overflow: hidden;
}
.reviews__swiper .swiper-slide {
  height: auto;
  min-width: 0;
  box-sizing: border-box;
}

.reviews__navigation {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 20px;
}
.reviews__navigation__prev,
.reviews__navigation__next {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 81.667px;
  background: #0c3d7a;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: opacity 0.3s ease;
}
.reviews__navigation__prev.swiper-button-disabled,
.reviews__navigation__next.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}

.reviews > .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.reviews__top {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  align-items: center;
  gap: 20px;
}
.reviews__list__item {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.reviews__list__item__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reviews__list__item__top__left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews__list__item__top__left__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.reviews__list__item__top__left__content__name {
  color: #2b2f34;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
}
.reviews__list__item__top__left__content__place {
  color: rgba(43, 47, 52, 0.8);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
}
.reviews__list__item__text {
  color: rgba(43, 47, 52, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}

.faq {
  background-image: url("../images/faq-bg.webp");
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.faq-btn-2 {
  display: none;
}
.faq > .container {
  display: flex;
  -moz-column-gap: 40px;
  column-gap: 40px;
  align-items: start;
}
.faq__left {
  display: flex;
  flex-direction: column;
  max-width: 486px;
  gap: 20px;
}
.faq__left .title-h2 {
  margin-bottom: 5px;
}
.faq__right__list {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.faq__right__list__item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(9.5px);
  overflow: hidden;
  transition: background 0.3s ease;
  border-top: 1px solid rgba(12, 61, 122, 0.15);
}
.faq__right__list__item.is-open {
  background: rgba(255, 255, 255, 0.1);
}
.faq__right__list__item__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 0 10px 0;
  text-align: left;
  cursor: pointer;
}
.faq__right__list__item__title {
  color: #0c3d7a;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
}
.faq__right__list__item__icon {
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.faq__right__list__item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq__right__list__item__content {
  min-height: 0;
  overflow: hidden;
  color: rgba(43, 47, 52, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}
.faq__right__list__item__content > p {
  padding: 0 0 15px 0;
  max-width: calc(100% - 47px);
  color: rgba(43, 47, 52, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}
.faq__right__list__item.is-open .faq__right__list__item__body {
  grid-template-rows: 1fr;
}
.faq__right__list__item.is-open .faq__right__list__item__icon {
  transform: rotate(180deg);
}
.faq__right__list__item:last-child {
  border-bottom: 1px solid rgba(12, 61, 122, 0.15);
}

.step {
  display: flex;
  gap: 0;
}
.step__left {
  padding: 60px 40px;
  background-image: url("../images/step-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100%;
  padding-left: calc((100% - 1440px) / 2);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.step__left > .container {
  max-width: 608px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.step__left__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 608px;
}
.step__left__top .title-h2 {
  margin-bottom: 20px;
}
.step__left__top__btns {
  display: flex;
  gap: 20px;
}
.step__left__bottom {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  row-gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.step-btn-2 {
  display: none;
}
.step__left__bottom__item {
  padding: 15px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(9.5px);
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
}
.step__right {
  padding: 60px 40px;
  background:
    linear-gradient(181deg, rgba(182, 191, 202, 0) 75.01%, #b6bfca 99.46%),
    #98a5b5;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step__right__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 53px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.step__right__item__num {
  color: #fff;
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%; /* 48px */
}
.step__right__item__text {
  color: rgba(255, 255, 255, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}

.footer {
  padding: 80px 40px 40px 40px;
  background: #fff;
}
.footer-logo-2 {
  display: none;
}
.footer > .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-bottom: 1px solid rgba(152, 165, 181, 0.2);
  padding-bottom: 35px;
}
.footer__content__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer__content__top__left {
  display: flex;
  flex-direction: column;
  max-height: 80px;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}
.footer__content__top__left__item__link {
  color: rgba(152, 165, 181, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 17.6px */
  transition: all 0.3s ease;
}
.footer__content__top__left__item__link:hover {
  color: rgb(152, 165, 181);
}
.footer__content__top__right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}
.footer__content__top__right__item__link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: rgba(152, 165, 181, 0.08);
  transition: all 0.3s ease;
}
.footer__content__top__right__item__link:hover {
  background: rgba(152, 165, 181, 0.2);
}
.footer__content__bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.footer__content__bottom__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__content__bottom__item:hover .footer__content__bottom__item__icon {
  background: rgba(152, 165, 181, 0.2);
}
.footer__content__bottom__item:hover .footer__content__bottom__item__link {
  color: rgb(152, 165, 181);
}
.footer__content__bottom__item__icon {
  border-radius: 50px;
  background: rgba(152, 165, 181, 0.08);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer__content__bottom__item__link {
  color: rgba(152, 165, 181, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  transition: all 0.3s ease;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
}
.footer__bottom__text {
  color: rgba(152, 165, 181, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}

.footer__content__logo {
  width: 100%;
}

@media screen and (max-width: 1480px) {
  .container {
    width: 1280px;
  }

  .header {
    gap: 50px;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-subtitle {
    font-size: 18px;
  }
  .decisions__list__item__img {
    height: 366px;
  }
  .line.first {
    width: 509px;
  }
  .line.second {
    width: 173px;
  }
  .line.third {
    width: 464px;
  }
  .line.fourth {
    width: 166px;
  }
  .composition__bottom__list__item__text__subtitle {
    font-size: 14px;
  }
  .composition__bottom__list__item__text__title {
    font-size: 16px;
  }
  .composition__bottom__list {
    gap: 57px;
  }
  .plans__list__item__text {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .plans__list__item__title {
    font-size: 20px;
  }
  .plans__list__item__subtitle {
    font-size: 15px;
  }
  .title-h2 {
    font-size: 32px;
  }
  .situations__right__quote__title {
    font-size: 16px;
  }
  .situations__right__quote__text {
    font-size: 14px;
  }
  .problems__right__transparent {
    width: 343px;
    height: 343px;
    padding: 63px 70px;
  }
  .problems__right__white {
    right: -200px;
    bottom: 20px;
    width: 343px;
    height: 343px;
    padding: 43px 70px;
  }
  .problems__right__white__content__text,
  .problems__right__transparent__title {
    font-size: 14px;
  }
  .problems > .container {
    gap: 180px;
  }
  .table__wrapper {
    overflow-x: scroll;
  }
  .compare__right__card__top__text {
    font-size: 16px;
  }
  .compare__right__card__list__item {
    font-size: 14px;
  }
  .step__left {
    padding-left: calc((100% - 1280px) / 2);
  }
}

@media screen and (max-width: 1330px) {
  .container {
    width: 1200px;
  }
  .header__nav__list__item__link {
    font-size: 14px;
  }
  .phone.is-open .phone__number {
    font-size: 14px;
  }
  .blue__button {
    font-size: 14px;
  }
  .hero-title {
    font-size: 54px;
  }
  .white__button {
    font-size: 14px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero__content__bottom__left__item {
    padding: 12px 16px;
    font-size: 14px;
  }
  .hero__content__bottom__right__text {
    font-size: 16px;
  }
  .title-h2 {
    font-size: 28px;
  }
  .subtitle {
    font-size: 15px;
  }
  .decisions__list__item__text {
    font-size: 14px;
  }
  .mark {
    font-size: 12px;
  }
  .line.first {
    width: 429px;
  }
  .line.second {
    width: 93px;
  }
  .line.third {
    width: 384px;
  }
  .line.fourth {
    width: 86px;
  }
  .plans__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 10px;
  }
  .logic__right__content__info__subtitle {
    font-size: 16px;
  }
  .logic__right__content__info__text {
    font-size: 14px;
  }
  .logic__left__card__content__text {
    font-size: 14px;
  }
  .logic__left__card__content__title {
    font-size: 18px;
  }
  .situations__left {
    padding: 20px;
  }
  .situations__right {
    padding: 20px;
  }
  .blue__button__icon {
    width: 28px;
    height: 28px;
  }
  .blue__button__icon > img {
    height: 12px;
  }
  .problems__left__top .title-h2 {
    margin-bottom: 25px;
  }
  .problems__right__white {
    bottom: -20px;
    right: -215px;
  }
  .receive__right__item__title {
    font-size: 18px;
  }
  .receive__right__item__text {
    font-size: 14px;
  }
  .receive__circle {
    width: 13px;
    height: 13px;
  }
  .table__wrapper__text {
    font-size: 14px;
  }
  .table__wrapper__title {
    font-size: 16px;
  }
  .table__wrapper {
    grid-template-columns: 204px repeat(4, 280px);
  }
  .compare__left__top {
    width: 420px;
  }
  .process__list__item__content__title {
    font-size: 16px;
  }
  .process__list__item__content__text {
    font-size: 14px;
  }
  .process__list__item__content__num {
    font-size: 40px;
  }
  .manufacture__list__item__title {
    font-size: 16px;
  }
  .manufacture__list__item__text {
    font-size: 14px;
  }
  .manufacture__list__item {
    padding: 20px;
  }
  .reviews__list__item__top__left__content__name {
    font-size: 16px;
  }
  .reviews__list__item__top__left__content__place {
    font-size: 12px;
  }
  .reviews__list__item__text {
    font-size: 14px;
  }
  .faq__right__list__item__title {
    font-size: 16px;
  }
  .faq__right__list__item__content > p {
    font-size: 14px;
  }
  .step__left {
    padding-left: calc((100% - 1200px) / 2);
  }
  .step__right__item {
    padding: 25px 0;
  }
  .step__right__item__num {
    font-size: 40px;
  }
  .decisions__list__item__subtitle {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    width: 960px;
  }
  .problems > .container {
    gap: 0;
  }

  /* --- Мобильное меню --- */
  /* прячем десктоп-навигацию и кнопку в хедере */
  .header__nav,
  .header .header__right > .blue__button {
    display: none;
  }
  /* логотип слева, иконки справа */
  .header__center {
    justify-content: flex-end;
  }
  /* показываем бургер и панель меню */
  .burger {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
  /* блокируем прокрутку фона, пока меню открыто */
  body.menu-open {
    overflow: hidden;
  }
  .hero-title {
    font-size: 48px;
  }
  .hero__content__bottom__right {
    max-width: 455px;
  }
  .title-h2 {
    font-size: 24px;
  }
  .subtitle {
    font-size: 14px;
  }
  .decisions__list__item__img {
    height: 100%;
  }
  .circle {
    display: none;
  }
  .composition__bottom__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .composition__top__right {
    max-width: 580px;
  }
  .composition__bottom__list__item__text__subtitle {
    font-size: 12px;
  }
  .plans__list__item__list__item {
    font-size: 14px;
  }
  .plans__list__item__text {
    margin-bottom: 5px;
  }
  .problems__pagination {
    font-size: 38px;
  }
  .problems__arrow {
    width: 42px;
    height: 42px;
  }
  .receive__right__item__title {
    font-size: 16px;
  }
  .receive__right__item__text {
    font-size: 12px;
  }
  .receive__left .title-h2 {
    margin-bottom: 0;
  }
  .compare > .container {
    flex-direction: column;
  }
  .compare-btn-2 {
    display: flex;
  }
  .compare-btn-1 {
    display: none;
  }
  .manufacture > .container {
    flex-direction: column;
  }
  .manufacture__navigation.manufacture__navigation-2 {
    display: flex;
    justify-content: center;
  }
  .manufacture__navigation-1 {
    display: none;
  }
  .manufacture__list__item__img {
    max-height: 271px;
  }
  .step__left {
    padding-left: calc((100% - 960px) / 2);
  }
}

@media screen and (max-width: 1000px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
  .compare__right__card.transparent .compare__right__card__top__text {
    max-width: 100%;
  }
  .problems > .container {
    flex-direction: column;
  }
  .header.container {
    padding: 10px;
    width: calc(100% - 40px);
  }
  .hero__content__top {
    padding-top: 100px;
  }
  .hero-title {
    font-size: 42px;
  }
  .hero__content__bottom {
    flex-direction: column;
    padding-bottom: 20px;
    gap: 20px;
  }
  .decisions__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .decisions__top {
    gap: 20px;
  }
  .decisions__list__item__img {
    border-radius: 8px;
  }
  .composition > .container {
    border-radius: 20px;
  }
  .composition__bottom {
    flex-direction: column;
    align-items: center;
  }
  .composition__bottom__img img {
    max-width: 205px;
    align-self: center;
  }
  .composition__bottom__img {
    align-items: center;
    justify-content: center;
    display: flex;
  }
  .logic > .container {
    grid-template-columns: 1fr 1fr;
  }
  .problems__left {
    gap: 23px;
  }
  .problems__right__white {
    position: relative;
    right: 0;
    bottom: 0;
  }
  .problems__right {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .problems__right__transparent,
  .problems__right__white {
    /* definite width нужен, иначе Swiper внутри (width:100%) раздувает слайд */
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 20px;
  }
  .problems__controls.problems__controls-1 {
    display: none;
  }

  .problems__controls.problems__controls-2 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .receive > .container {
    flex-direction: column;
  }
  .process__list {
    grid-template-columns: 1fr;
  }
  .step {
    flex-direction: column;
  }
  .compare__left__top {
    width: 100%;
  }
  .header__logo {
    width: 107px;
  }
  .phone__icon {
    width: 13px;
    height: 13px;
  }
  .phone__btn {
    width: 32px;
    height: 32px;
  }
  .burger {
    width: 32px;
    height: 32px;
  }
  .hero-title {
    max-width: 100%;
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .hero__text-2 {
    display: none;
  }

  .hero__text-1 {
    display: block;
  }
  .hero__content__bottom__right__text {
    font-size: 14px;
    margin-top: 10px;
  }
  .hero__content__bottom__left__item > img {
    width: 20px;
    height: 20px;
  }
  .hero__content__bottom__left__item {
    padding: 5px 10px;
  }
  .hero__content__bottom__right__btns {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 5px;
  }

  .situations__left__bottom__img {
    border-radius: 8px;
  }
  .pt {
    margin-bottom: 60px;
  }
  .decisions__top {
    flex-direction: column;
    align-items: start;
  }
  .mark {
    padding: 5px 10px;
  }
  .reviews__list__item__top {
    gap: 15px;
  }
  .step__left {
    background-image: url("../images/step-bg-img.webp");
  }
  .decisions > .container {
    gap: 20px;
  }
  .decisions__list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .decisions__list__item {
    gap: 5px;
  }

  .composition__top {
    flex-direction: column;
    gap: 15px;
    align-items: start;
  }
  .composition__bottom__list {
    grid-template-columns: 1fr;
  }
  .composition > .container {
    border-radius: 8px;
    padding: 25px 20px;
  }
  .composition__top__left {
    width: 100%;
  }
  .logic__right__content__img {
    border-radius: 8px;
  }
  .receive {
    padding: 30px 0;
  }
  .table {
    padding: 60px 0;
  }
  .plans__list__item:nth-child(4) {
    border-radius: 8px;
  }

  .table__wrapper {
    border-radius: 10px;
  }

  .comp-img-2 {
    display: block;
    width: 44px;
    height: 44px;
  }

  .comp-img-1 {
    display: none;
  }

  .composition__bottom__list__item__text__wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .composition__bottom__list__item__text__subtitle {
    font-size: 14px;
  }
  .composition__bottom__list {
    gap: 15px;
  }

  .plans__list {
    grid-template-columns: 1fr 1fr;
  }
  .plans__top {
    flex-direction: column;
    gap: 15px;
    align-items: start;
  }
  .plans__list__item__text {
    margin: 0;
  }
  .plans__list__item__list {
    padding-top: 10px;
    gap: 5px;
  }
  .plans__list__item {
    padding: 20px;
    border-radius: 8px;
  }
  .plans__list__item.dark {
    border-radius: 8px;
    margin-top: 10px;
  }
  .plans__list {
    gap: 15px;
  }
  .plans .blue__button {
    align-self: start;
  }
  .logic {
    padding: 25px 0;
  }
  .logic__right__top__tab {
    font-size: 14px;
    padding: 10px 15px;
  }
  .logic__right__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 19px;
  }
  .faq {
    padding: 25px 0;
  }
  .reviews .title-h2 {
    text-align: center;
  }
  .reviews > .container {
    gap: 20px;
  }
  .logic__left__card {
    flex-direction: column;
  }
  .logic__left__card__img {
    width: 100%;
    height: auto;
  }
  .logic-img-1 {
    display: none;
  }

  .logic-img-2 {
    display: block;
    width: 18px;
    height: 18px;
  }
  .logic__left__card__content__title__wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .logic__left__card__content {
    gap: 6px;
  }
  .logic__left__card {
    gap: 11px;
    border-radius: 8px;
    margin-top: 20px;
  }
  .logic__left__card__img {
    border-radius: 8px;
  }
  .logic__right__top {
    padding-top: 40px;
  }
  .logic__right__content.active {
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 8px;
  }
  .logic__right__content__img {
    border-radius: 8px;
  }
  .logic__right__content__info__title {
    font-size: 16px;
    margin: 0;
  }
  .logic__right__content__info__subtitle {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .logic__right__content__info {
    gap: 5px;
  }
  .situations > .container {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .situations__left__top .title-h2 {
    text-align: center;
  }
  .situations__left {
    gap: 20px;
    border-radius: 8px;
  }
  .situations__left__bottom .swiper-slide {
    gap: 20px;
  }
  .situations__left__bottom__info__title {
    font-size: 16px;
  }
  .situations__left__bottom__info__text {
    font-size: 14px;
  }
  .reviews__list__item__img {
    border-radius: 8px;
  }
  .situations__controls {
    gap: 15px;
  }
  .situations__arrow {
    width: 44px;
    height: 44px;
  }
  .situations__arrow > img {
    width: 21px;
    height: 21px;
  }
  .situations__right {
    border-radius: 8px;
    gap: 40px;
  }
  .situations__right__quote__quotation {
    font-size: 70px;
  }
  .situations__right__quote__quotation.first {
    top: -20px;
  }
  .situations__right__quote__quotation.second {
    bottom: -18px;
  }
  .blue__button {
    padding: 10px;
  }
  .white__button {
    padding: 15px;
  }
  .problems-btn-2 {
    display: flex;
  }

  .problems-btn-1 {
    display: none;
  }
  .problems > .container {
    padding: 0;
  }
  .problems {
    padding: 25px 20px;
  }
  .problems__left {
    width: 100%;
    max-width: 100%;
  }
  .problems__right__transparent__top {
    flex-direction: row-reverse;
    align-items: center;
  }
  .problems__right__transparent__top__img,
  .problems__right__white__img {
    height: 44px;
    width: auto;
  }
  .problems__right__transparent__top__wrapper {
    gap: 10px;
  }
  .problems__right__white {
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
  .problems__right__white__img {
    align-self: center;
  }
  .problems > .container {
    gap: 15px;
  }
  .problems__right {
    gap: 10px;
  }
  .problems__right__transparent,
  .problems__right__white {
    border-radius: 8px;
  }
  .blue__button.dark.problems-btn-2 {
    align-self: center;
  }
  .problems__pagination {
    font-size: 24px;
  }
  .receive__right {
    gap: 5px;
  }
  .receive__right__item__title {
    font-size: 14px;
  }
  .receive__right__item {
    padding: 10px;
    border-radius: 8px;
  }
  .receive__left {
    min-width: 100%;
  }
  .receive__right {
    grid-template-columns: 1fr 1fr;
  }
  .receive > .container {
    gap: 20px;
  }
  .table__top {
    grid-template-columns: 1fr;
  }
  .table .blue__button {
    align-self: start;
    justify-self: start;
  }
  .table-btn-1 {
    display: none;
  }
  .table-btn-2 {
    display: flex;
  }
  .table__top__left .title-h2 {
    max-width: 100%;
  }
  .table__top__left {
    gap: 10px;
  }
  .table__wrapper__column * {
    padding: 10px;
  }
  .table__wrapper {
    grid-template-columns: 158px repeat(4, 177px);
  }
  .table__wrapper__title {
    font-size: 14px;
  }
  .compare__left__top::before {
    display: none;
  }
  .compare__left__top {
    padding-left: 0;
  }
  .compare {
    padding: 25px 0;
  }
  .compare__right__card__top .mark {
    flex-direction: column;
    width: calc(100% - 20px);
    gap: 5px;
  }
  .compare__right__card__top .mark > img {
    height: 10px;
    width: auto;
  }
  .compare__right__card {
    padding: 10px 5px;
  }
  .comp-mark-2 {
    margin: 7.5px 0;
  }
  .compare__right__card__top__text {
    font-size: 14px;
    margin: 0;
  }
  .compare__right__card__list__item > img {
    width: 18px;
    height: 18px;
  }
  .compare__right__card__top__img {
    height: 44px;
    width: auto;
  }
  .process > .container {
    width: calc(100% - 40px);
    padding: 25px 20px;
    border-radius: 8px;
    gap: 20px;
  }

  .situations__left__bottom__img {
    max-width: 234px;
  }
  .process__list__item.reverse {
    flex-direction: column;
  }
  .process__list__item {
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .process__list__item:last-child {
    flex-direction: column-reverse;
  }
  .process__list__item:nth-child(2n) {
    padding-top: 10px;
  }
  .manufacture__list__item {
    border-radius: 8px;
  }
  .compare__right {
    border-radius: 8px;
  }
  .table__wrapper {
    border-radius: 10px;
  }
  .plans__list__item:nth-child(3) {
    border-radius: 8px;
  }
  .situations__right__quote {
    border-radius: 8px;
  }
  .process__list__item img {
    border-radius: 8px;
  }
  .process__list__item:last-child {
    padding-top: 10px;
  }
  .process__top {
    flex-direction: column;
  }
  .process-btn-2 {
    display: flex;
  }
  .process-btn-1 {
    display: none;
  }
  .process__top__left {
    gap: 10px;
  }
  .process__list__item__content__num {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .process__list__item__content {
    gap: 5px;
  }
  .process .blue__button {
    justify-self: start;
    align-self: start;
  }
  .manufacture__left__top {
    gap: 10px;
  }
  .reviews__list__item__top__left__img {
    width: 44px;
    height: 44px;
  }
  .reviews__list__item {
    border-radius: 8px;
  }
  .reviews__list__item__top__stars > img {
    width: 16px;
    height: 16px;
  }

  .reviews__list__item__top__stars {
    display: flex;
    align-items: center;
    gap: 1px;
  }
  .reviews__list__item__top__left {
    gap: 5px;
  }
  .faq > .container {
    flex-direction: column;
    gap: 10px;
  }
  .faq-btn-1 {
    display: none;
  }
  .faq-btn-2 {
    display: flex;
  }
  .faq__left {
    gap: 10px;
  }
  .step__left {
    width: 100%;
    padding: 25px 20px;
  }
  .step-btn-2 {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .step-btn-2 .white__button {
    width: fit-content;
  }
  .step-btn-1 {
    display: none;
  }
  .step__left {
    gap: 25px;
  }
  .step__left__top {
    gap: 5px;
  }
  .step__left__top .title-h2 {
    margin-bottom: 10px;
  }
  .step__left__bottom__item {
    padding: 5px 10px;
    gap: 10px;
    font-size: 14px;
  }
  .step__left__bottom__item__icon {
    width: 20px;
    height: 20px;
  }
  .step__right {
    padding: 25px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 0px;
    column-gap: 20px;
  }
  .step__right__item {
    padding: 10px 0;
    gap: 5px;
  }
  .step__right__item__num {
    font-size: 24px;
  }
  .step__right__item__text {
    font-size: 14px;
  }
  .footer__content__top__left {
    max-height: max-content;
    gap: 15px;
  }
  .footer__content__top {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .footer {
    padding: 25px 0px;
  }
  .footer__content__top__right {
    gap: 5px;
  }
  .footer-logo-1 {
    display: none;
  }
  .footer-logo-2 {
    display: block;
  }
  .footer__content__bottom {
    flex-direction: column;
    gap: 15px;
    justify-content: start;
    align-items: start;
  }
  .footer__content {
    gap: 30px;
    padding-bottom: 30px;
  }
  .footer__bottom {
    padding-top: 20px;
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
  .footer__bottom__text {
    font-size: 14px;
  }
  .footer__bottom__text br {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .plans__list {
    grid-template-columns: 1fr;
  }
  .logic > .container {
    grid-template-columns: 1fr;
  }
  .situations > .container {
    grid-template-columns: 1fr;
  }
  .receive__right {
    grid-template-columns: 1fr;
  }
}

/* блокируем прокрутку фона, пока открыта модалка
   (overflow:hidden на <html> стопорит и нативный скролл, и SmoothScroll) */
html.modal-open,
html.modal-open body {
  overflow: hidden;
}

.modal {
  z-index: 10;
  background-color: transparent;
  position: fixed;
  top: 50%;
  left: 50%;

  /* hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.85);
  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.4s;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);

  /* hidden state */
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0s linear 0.4s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.4s ease,
    visibility 0s;
}

.modal__wrapper {
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 50px;
  background: #fff;
  gap: 30px;
}

.modal-close {
  width: 40px;
  height: 40px;
  border-radius: 45.455px;
  background: #0c3d7a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  justify-self: end;
}

.modal-close img {
  transition: all 0.6s ease;
}

.modal-close:hover img {
  transform: rotate(135deg);
}

/* ====== ЗАГРУЗКА ФАЙЛА (drag & drop) ====== */
.file-drop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 20px 15px;
  border-radius: 20px;
  background: #eef1f6;
  color: rgba(43, 47, 52, 0.6);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  text-align: center;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

/* Прячем нативный input, но оставляем его кликабельным/доступным */
.file-drop__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-drop__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a93a3;
  transition: color 0.25s ease;
}

.file-drop__text {
  color: rgba(43, 47, 52, 0.6);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  transition: color 0.25s ease;
}

/* Наведение / перетаскивание файла */
.file-drop:hover,
.file-drop.is-dragover {
  background: #e3e9f3;
  box-shadow: inset 0 0 0 2px #0c3d7a;
  color: #0c3d7a;
}

.file-drop:hover .file-drop__icon,
.file-drop:hover .file-drop__text,
.file-drop.is-dragover .file-drop__icon,
.file-drop.is-dragover .file-drop__text {
  color: #0c3d7a;
}

/* Файл выбран */
.file-drop.has-file {
  background: #e7f0ff;
  color: #0c3d7a;
}

.file-drop.has-file .file-drop__icon,
.file-drop.has-file .file-drop__text {
  color: #0c3d7a;
}

.modal__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal__title {
  color: #2b2f34;
  text-align: center;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 36px */
}

.modal__subtitle {
  color: rgba(43, 47, 52, 0.8);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  max-width: 400px;
  margin: 0 auto;
}

.modal__inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#name,
#email,
#tel {
  border-radius: 100px;
  background: rgba(12, 61, 122, 0.1);
  backdrop-filter: blur(9.5px);
  padding: 15px;
  width: 100%;
}

.modal .blue__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0 0;
}

@media screen and (max-width: 1000px) {
  .modal__wrapper {
    padding: 20px;
    gap: 20px;
    border-radius: 20px;
  }

  .modal {
    width: calc(100% - 40px);
  }
  .modal__title {
    color: #2b2f34;
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 24px */
  }

  .logic__left__card__img {
    border-radius: 8px;
  }
  .modal__subtitle {
    color: rgba(43, 47, 52, 0.8);
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 16.8px */
  }

  #name:placeholder-shown,
  #email:placeholder-shown,
  #tel:placeholder-shown {
    color: rgba(43, 47, 52, 0.6);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 16.8px */
  }
  #email,
  #name,
  #tel {
    padding: 14px;
  }
  .modal__inputs {
    gap: 5px;
  }
  .modal-close {
    width: 32px;
    height: 32px;
  }
  .file-drop {
    padding: 15px;
  }
  .modal__info {
    gap: 15px;
  }
}

/* ====== Адаптация Contact Form 7 под дизайн модалки ====== */

/* Форма CF7 заменяет прямые потомки .modal__wrapper —
   возвращаем колоночную раскладку с прежним отступом 30px */
.modal__wrapper .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* CF7 оборачивает инпуты в span — растягиваем обёртку на всю ширину,
   убираем лишние отступы. Сам инпут уже width:100% */
.modal__inputs .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin: 0;
}

/* Обёртка file-инпута внутри зоны загрузки должна сама стать
   прозрачным слоем на всю площадь, а не флекс-элементом,
   иначе появляется лишний пустой ряд и сдвиг иконки/текста */
.file-drop .wpcf7-form-control-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

/* Поля сохраняют id, но CF7 добавляет свои классы — фиксируем вид */
.modal__inputs input.wpcf7-form-control {
  display: block;
  width: 100%;
}

/* Системные сообщения CF7 (ошибки/успех) — по центру, не ломают сетку */
.modal__wrapper .wpcf7-response-output {
  margin: 0;
  padding: 12px 15px;
  border-radius: 16px;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  line-height: 120%;
}

/* Подсказки валидации под полями */
.modal__inputs .wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  padding-left: 15px;
  color: #d33;
  font-family: Montserrat;
  font-size: 12px;
  line-height: 120%;
}

/* Спиннер отправки рядом с кнопкой */
.modal__wrapper .wpcf7-spinner {
  margin: 0 auto;
}

.wpcf7-response-output {
  max-width: 400px !important;
  margin: 0 auto !important;
  border: 0 !important;
  color: red !important;
}
