html,
body {
  font-family: "Montserrat", serif;
  height: 100%;
  margin: 0;
  padding: 0;
  /* overflow-x: hidden; */
  position: relative;
}

.header {
  padding: 0;
}

/* Секция promo */

.promo {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.promo__header {
  position: relative;
  z-index: 2;
  padding: 40px 48px;
}

.header__container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 32px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  transform: none;
}

.header__icon {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  z-index: 2;
}

.ntr__nav-link {
  width: 138px;
  height: auto;
  z-index: 2;
}

.header__logo h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 44px;
  z-index: 2;
}

.promo__bg {
  min-height: calc(100vh - 123px);
  display: flex;
  align-items: center;
}

.promo__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.promo__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 48px;
  box-sizing: border-box;
}

.promo__title {
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.promo__title span {
  display: block;
  width: fit-content;
}

.promo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.promo__button {
  width: 200px;
  min-height: 56px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: #ffffff;
  cursor: pointer;
  box-sizing: border-box;
}

.promo__button--discuss {
  background-color: #00b4ff;
}

.promo__button--presentation {
  border: 2px solid #ffffff;
  background: transparent;
}

/* Секция Description   */
.description {
  padding: 67px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #031d3b;
}

.description__container {
  text-align: center;
  max-width: 884px;
  margin: 0 auto;
}

.description__text {
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -2%;
  color: #ffffff;
  margin: 0;
}

/* Секция Architecture */

.architecture {
  position: relative;
  overflow: hidden;
  padding: 210px 10px;
  background-color: #ccedff;
}

.architecture__container {
  display: flex;
  justify-content: flex-end;
  max-width: 1180px;
  min-height: 430px;
  margin: 0 auto;
}

.architecture__visual {
  position: absolute;
  top: 0;
  left: 0;

  width: min(42.708vw, 820px);
}

.architecture__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.architecture__content {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
  max-width: 856px;
}

.architecture__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #031d3b;
}

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

.architecture__text {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -2%;
  color: #041528;
}

/* Секция Tasks */

.tasks {
  padding: 90px 10px 100px;
  background: linear-gradient(90deg, #041528 0%, #0b1b3a 50%, #0f2a5b 100%);
}

.tasks__container {
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tasks__title {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  line-height: 114%;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.tasks__subtitle {
  max-width: 746px;
  margin: 18px auto 68px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
  color: #ffffff;
}

.tasks__grid {
  width: 100%;
  max-width: 700px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.tasks__item {
  width: 100%;
  min-height: 92px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(180, 138, 228, 0.2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 10px 28px -10px rgba(0, 0, 0, 0.149);
  border-radius: 12px;
  box-sizing: border-box;
}

.tasks__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.tasks__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tasks__text {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: -0.01em;
  color: #ffffff;
}

/* Секция benefits */

.benefits {
  padding: 120px 10px;
  background-color: #ffffff;
}

.benefits__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1172px;
  margin: 0 auto;
}

.benefits__title {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -2%;
  color: #041528;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.benefits__item {
  min-height: 340px;
  padding: 40px 58px 32px 60px;
  display: flex;
  flex-direction: column;
  background-color: #e8f2ff;
  border-radius: 20px;
  gap: 32px;
  box-sizing: border-box;
}

.benefits__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.benefits__subtitle {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0;
  color: #00a1ff;
}

.benefits__text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0;
  color: #041528;
}

/* Секция Mobility */

.mobility {
  background: linear-gradient(180deg, #341341 0%, #633052 55%, #b25276 100%);
}

.mobility .benefits__item {
  background-color: #ffffff;
}

.mobility .benefits__subtitle {
  color: #bf4796;
}

.mobility .benefits__text {
  color: #041528;
}

/* Секция workflow */

.workflow {
  padding: 120px 10px;
  background-color: #ffffff;
}

.workflow__container {
  max-width: 987px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 259px 1fr;
  gap: 100px;
}

.workflow__title {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 114%;
  letter-spacing: -2%;
  color: #031d3b;
}

.workflow__list {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.workflow__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: start;
  gap: 36px;
}

.workflow__number {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e8f2ff;
  border-radius: 12px;
  font-size: 70px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
  color: #00a1ff;
}

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

.workflow__subtitle {
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0;
  color: #000000;
}

.workflow__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: #222222;
}

/* Секция Process Check */
.process-check {
  padding: 120px 10px 316px 10px;
  background-color: #031d3b;
}

.process-check__container {
  max-width: 844px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.process-check__title {
  text-align: center;
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -2%;
  color: #ffffff;
}

.process-check__button {
  width: 200px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 8px;
  background-color: #00b4ff;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .promo__header {
    padding: 28px 10px;
  }

  .header__container {
    gap: 24px;
  }

  .header__contact {
    gap: 28px;
  }

  .promo__container {
    padding: 100px 32px 60px;
  }

  .promo__title {
    font-size: 44px;
  }

  .description {
    padding: 56px 32px;
  }

  .description__container {
    max-width: 760px;
  }

  .description__text {
    font-size: 20px;
  }

  .architecture {
    padding: 140px 32px 100px;
  }

  .architecture__container {
    min-height: 380px;
  }

  .architecture__visual {
    width: 46vw;
  }

  .architecture__content {
    max-width: 560px;
  }

  .architecture__title {
    font-size: 36px;
  }

  .architecture__text {
    font-size: 17px;
  }

  .tasks {
    padding: 80px 32px;
  }

  .tasks__container {
    max-width: 700px;
  }

  .tasks__title {
    font-size: 38px;
  }

  .tasks__subtitle {
    max-width: 650px;
    margin: 16px auto 50px;
    font-size: 18px;
  }

  .tasks__grid {
    max-width: 650px;
  }

  .tasks__item {
    min-height: 84px;
    padding: 16px 18px;
  }

  .tasks__icon {
    width: 48px;
    height: 48px;
  }

  .tasks__text {
    font-size: 17px;
  }

  .benefits {
    padding: 90px 32px;
  }

  .benefits__container {
    max-width: 900px;
  }

  .benefits__grid {
    gap: 12px;
  }

  .benefits__item {
    min-height: 290px;
    padding: 32px 36px;
    gap: 24px;
  }

  .benefits__subtitle {
    font-size: 24px;
  }

  .benefits__text {
    font-size: 15px;
  }

  .mobility {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .workflow {
    padding: 90px 32px;
  }

  .workflow__container {
    max-width: 900px;
    grid-template-columns: 220px 1fr;
    gap: 60px;
  }

  .workflow__title {
    font-size: 38px;
  }

  .workflow__list {
    gap: 36px;
  }

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

  .workflow__number {
    height: 76px;
    font-size: 58px;
  }

  .workflow__subtitle {
    margin: 0;
    font-size: 21px;
  }

  .workflow__text {
    font-size: 14px;
  }

  .process-check {
    padding: 90px 32px 220px;
  }

  .process-check__container {
    max-width: 720px;
    gap: 44px;
  }

  .process-check__title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .benefits,
  .workflow,
  .tasks {
    padding: 90px 10px;
  }
  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .architecture__visual {
    display: none;
  }

  .workflow__title {
    text-align: center;
  }

  .workflow__title br {
    display: none;
  }

  .workflow__number {
    height: 66px;
  }

  .workflow__subtitle {
    font-size: 20px;
  }
}

@media (max-width: 620px) {
  .workflow__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .promo__title,
  .architecture__title {
    font-size: 31px;
  }
}

@media (max-width: 425px) {
  .facade-maintenance-page .header__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .promo__container {
    padding: 100px 0;
  }
}

@media (max-width: 320px) {
  .promo__title,
  .architecture__title {
    font-size: 28px;
  }
}
