/* ==========================================================================
   Парконика — лендинг НТ-Глобал
   ========================================================================== */

/* ---------- Fonts ---------- */

@font-face {
  font-family: "Stolzl";
  src: url("../fonts/stolzl-light.woff2") format("woff2"),
       url("../Stolzl/stolzl_light.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Stolzl";
  src: url("../fonts/stolzl-book.woff2") format("woff2"),
       url("../Stolzl/stolzl_book.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Stolzl";
  src: url("../fonts/stolzl-regular.woff2") format("woff2"),
       url("../Stolzl/stolzl_regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Stolzl";
  src: url("../fonts/stolzl-medium.woff2") format("woff2"),
       url("../Stolzl/stolzl_medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---------- Variables ---------- */

:root {
  --color-bg: #0a0d10;
  --color-accent: #b5d526;
  --color-white: #fff;
  --color-grey: #747e8b;
  --color-grey-light: #c9d2dd;
  --color-grey-dim: #47515b;
  --color-dark: #101419;
  --color-light-bg: #f4f4f4;
  --font-main: "Stolzl", Arial, sans-serif;
  --container-width: 1400px;
  --container-gap: 160px;
}

/* ---------- Reset ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--color-white);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

picture {
  display: contents;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea {
  font-family: inherit;
  border: none;
  border-radius: 0;
  background: none;
  outline: none;
}

/* ---------- Common ---------- */

.container {
  width: min(var(--container-width), calc(100% - var(--container-gap)));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  border-radius: 20px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: var(--color-dark);
  filter: drop-shadow(0 0 3.5px var(--color-accent));
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  filter: drop-shadow(0 0 8px var(--color-accent));
}

.btn:active {
  transform: scale(0.98);
}

.section-title {
  font-weight: 400;
  font-size: 52px;
  line-height: normal;
  color: var(--color-white);
}

.section-title--dark {
  color: var(--color-bg);
}

/* ---------- Header ---------- */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: max(80px, calc((100% - var(--container-width)) / 2));
  margin-right: 60px;
  padding-block: 37px 24px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo__name {
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 1.4px;
  color: var(--color-white);
  white-space: nowrap;
}

.logo__caption {
  width: 195px;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid var(--color-accent);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.05;
  letter-spacing: 0.28px;
  color: #687079;
}

.header__right {
  display: flex;
  align-items: flex-start;
}

.header__city {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-right: 80px;
}

.header__city-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  color: var(--color-white);
}

.header__city-arrow {
  color: var(--color-white);
}

.header__city-note {
  font-size: 15px;
  color: var(--color-grey);
}

/* Выпадающий список городов (шапка и мобильное меню) */

.header__city-btn svg,
.mobile-menu__city-btn svg {
  transition: transform 0.2s ease;
}

.js-city.is-open .header__city-btn svg,
.js-city.is-open .mobile-menu__city-btn svg {
  transform: rotate(180deg);
}

.city-list {
  position: absolute;
  z-index: 30;
  top: 32px;
  left: -18px;
  min-width: 196px;
  padding: 8px 0;
  background-color: #101419;
  border: 1px solid #272e34;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.js-city.is-open .city-list {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.city-list__option {
  display: block;
  width: 100%;
  padding: 9px 18px;
  font-weight: 300;
  font-size: 15px;
  text-align: left;
  color: var(--color-grey-light);
  transition: color 0.15s ease, background-color 0.15s ease;
}

.city-list__option:hover {
  color: var(--color-white);
  background-color: rgba(181, 213, 38, 0.08);
}

.header__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.header__phone {
  font-size: 18px;
  color: var(--color-white);
  white-space: nowrap;
}

.header__mail {
  font-size: 16px;
  text-decoration: underline;
  text-underline-position: from-font;
}

.header__counter {
  align-self: center;
  margin-left: 118px;
  font-size: 16px;
  color: var(--color-grey-dim);
}

.header__nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 91px;
  padding-block: 23px 20px;
}

.header__menu-link {
  position: relative;
  font-weight: 400;
  font-size: 15px;
  color: var(--color-grey-light);
  transition: color 0.2s ease;
}

.header__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -22px;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.header__menu-link:hover {
  color: var(--color-white);
}

.header__menu-link:hover::after {
  opacity: 1;
}

.burger {
  display: none;
  width: 44px;
  height: 20px;
}

/* ---------- Mobile menu ---------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 40px 20px 47px;
  background-color: var(--color-bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.mobile-menu__city {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu__city .city-list {
  top: 36px;
  left: 0;
}

.mobile-menu__city-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: var(--color-white);
}

.mobile-menu__city-note {
  font-size: 16px;
  color: var(--color-grey);
}

.mobile-menu__close {
  padding: 8px;
  margin: -8px -8px 0 0;
  color: var(--color-accent);
}

.mobile-menu__nav {
  margin-top: 96px;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-menu__link {
  font-size: 18px;
  color: var(--color-grey-light);
}

.mobile-menu__link--active {
  font-weight: 500;
  color: var(--color-white);
}

.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 110px;
}

.mobile-menu__phone {
  font-weight: 500;
  font-size: 24px;
  color: var(--color-white);
}

.mobile-menu__mail {
  font-weight: 500;
  font-size: 22px;
  text-decoration: underline;
  text-underline-position: from-font;
  color: var(--color-white);
}

.mobile-menu__company {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 60px;
  font-size: 15px;
  color: var(--color-grey);
}

.mobile-menu__company-req {
  display: flex;
  gap: 40px;
}

.mobile-menu__policy {
  text-decoration: none;
}

.mobile-menu__policy:hover {
  text-decoration: underline;
  text-underline-position: from-font;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 940px;
  padding-top: 294px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 961px;
  height: 961px;
  background: url("../img/hero-photo.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -24px;
  right: 281px;
  width: 1014px;
  height: 1153px;
  background: linear-gradient(93.84deg, #0a0d10 36.03%, rgba(10, 13, 16, 0) 86.63%);
  transform: rotate(-4.29deg);
}

.hero__top-strip {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 243px;
  object-fit: cover;
}

.hero__glow {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 290px;
  object-fit: cover;
  transform: rotate(180deg);
}

.hero__inner {
  position: relative;
  z-index: 4;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  max-width: 512px;
}

.hero__title {
  font-weight: 400;
  font-size: 72px;
  line-height: 78px;
  color: var(--color-white);
}

.hero__title-accent {
  color: var(--color-accent);
}

.hero__text {
  max-width: 502px;
  font-weight: 100;
  font-size: 20px;
  line-height: 32px;
  color: var(--color-grey);
}

.hero__btn {
  width: 290px;
  height: 69px;
}

/* ---------- Типичная ситуация ---------- */

.situation-pin {
  /* якорь #situation: 30px от верха экрана до блока */
  scroll-margin-top: 30px;
}

.situation {
  /* липнет внутри .situation-pin: обертка выше секции на «запас» шагов,
     пока он скроллится - секция стоит, подсветка идет по пунктам (js/main.js) */
  position: sticky;
  height: 1080px;
  overflow: hidden;
}

.situation__bg {
  position: absolute;
  inset: 0;
}

.situation__photo {
  position: absolute;
  top: 0;
  right: -5px;
  width: 1080px;
  height: 1080px;
  object-fit: cover;
}

.situation__photo-red {
  position: absolute;
  top: 100px;
  right: 0;
  width: 1198px;
  height: 979px;
  object-fit: cover;
}

/* запеченная композиция с красными авто - в макете только на 1366 */
.situation__photo-1366 {
  display: none;
}

.situation__grad {
  position: absolute;
  background: linear-gradient(93.35deg, #0a0d10 36.03%, rgba(10, 13, 16, 0) 86.63%);
}

.situation__grad--center {
  top: -35px;
  left: 510px;
  width: 814px;
  height: 1086px;
  transform: rotate(-4.29deg);
}

.situation__grad--left {
  top: -84px;
  left: -484px;
  width: 1319px;
  height: 1214px;
  transform: rotate(-4.09deg);
}

.situation__glow {
  position: absolute;
  top: 860px;
  left: 0;
  width: 100%;
  height: 232px;
  transform: rotate(180deg);
}

.situation__top-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 414px;
}

.situation__inner {
  position: relative;
  z-index: 1;
  padding-top: 140px;
}

.situation__list {
  margin-top: 140px;
  max-width: 332px;
}

.situation__item {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 17px;
  align-items: start;
}

.situation__item + .situation__item {
  margin-top: 100px;
}

.situation__item + .situation__item::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 332px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.situation__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #232a31;
  border-radius: 10px;
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.48px;
  color: var(--color-grey);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.situation__item--active .situation__num {
  border-color: transparent;
  background-color: var(--color-accent);
  color: var(--color-bg);
}

.situation__text {
  margin-top: 2px;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-grey);
  transition: color 0.3s ease;
}

.situation__item--active .situation__text {
  color: var(--color-white);
}

.situation__item:nth-child(1) .situation__text {
  max-width: 190px;
}

.situation__item:nth-child(2) .situation__text {
  max-width: 234px;
}

.situation__item:nth-child(3) .situation__text {
  max-width: 222px;
}

.situation__item:nth-child(4) .situation__text {
  max-width: 225px;
}

/* ---------- Из-за этого вы теряете ---------- */

.losses {
  position: relative;
  height: 608px;
  margin-top: -20px;
  overflow: hidden;
}

.losses__bg {
  position: absolute;
  top: -3px;
  left: 376px;
  width: 1544px;
  height: 608px;
  object-fit: cover;
}

.losses__inner {
  position: relative;
  z-index: 1;
}

.losses__list {
  display: grid;
  grid-template-columns: repeat(2, 460px);
  gap: 30px;
  margin-top: 80px;
}

.losses__item {
  position: relative;
  display: flex;
  align-items: center;
  height: 125px;
  padding: 10px 55px 10px 60px;
  border: 1px solid #e85d51;
  border-radius: 30px;
}

.losses__text {
  position: relative;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  text-indent: 21px;
  color: var(--color-white);
}

.losses__text::before {
  content: "";
  position: absolute;
  top: 12px;
  left: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e85d51;
  box-shadow: 0 0 9px 2px rgba(232, 93, 81, 0.8);
}

/* ---------- Как мы решаем эти проблемы ---------- */

.solve {
  background-color: var(--color-white);
  padding-top: 197px;
  /* отрицательный scroll-margin съедает padding-top: при якорном переходе
     заголовок блока встает в 30px от верха экрана (правка заказчика) */
  scroll-margin-top: -167px;
}

.solve__title {
  text-align: center;
}

.solve__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 98px;
}

.solve__card {
  --solve-raise: 48px;
  position: relative;
  isolation: isolate;
  width: 261px;
  height: 553px;
  margin-top: var(--solve-raise);
  border: 1px solid #1d252e;
  border-radius: 30px;
  background-color: #0f1214;
  box-shadow: 0 30px 80px 0 rgba(7, 8, 9, 0.5);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.solve__card-photo {
  position: absolute;
  top: -23px;
  left: -13px;
  width: 289px;
  height: 599px;
  max-width: none;
  object-fit: cover;
}

.solve__card--dim30 .solve__card-photo {
  mix-blend-mode: luminosity;
  opacity: 0.85;
  filter: brightness(0.18);
}

.solve__card--dim60 .solve__card-photo {
  mix-blend-mode: luminosity;
  opacity: 0.6;
}

.solve__card--dim70 .solve__card-photo {
  mix-blend-mode: luminosity;
  opacity: 0.7;
}

.solve__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(177.88deg, #fff 3.53%, rgba(255, 255, 255, 0.7) 99.12%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.solve__card-label {
  position: absolute;
  z-index: 1;
  top: 92px;
  left: 27px;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  color: var(--color-accent);
}

.solve__card-label::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 0;
  width: 35px;
  height: 1px;
  background-color: var(--color-accent);
}

.solve__card-title {
  position: absolute;
  z-index: 1;
  top: 145px;
  left: 27px;
  width: 206px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-white);
  transition: color 0.35s ease;
}

.solve__card-text {
  position: absolute;
  z-index: 1;
  top: 235px;
  left: 26px;
  width: 207px;
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
  color: #3a424d;
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* у карточки «Аналитика» заголовок в четыре строки - текст ниже, чтобы не налезал */
.solve__card--long-title .solve__card-text {
  top: 265px;
}

@media (hover: hover) and (min-width: 769px) {

  .solve__card:hover {
    transform: translateY(calc(-1 * var(--solve-raise)));
    border-color: #e6eef6;
    box-shadow: 0 30px 80px 0 #070809;
  }

  .solve__card:hover .solve__card-photo {
    mix-blend-mode: normal;
    opacity: 1;
    filter: none;
  }

  .solve__card:hover .solve__card-overlay {
    opacity: 1;
  }

  .solve__card:hover .solve__card-title {
    color: var(--color-bg);
  }

  .solve__card:hover .solve__card-text {
    opacity: 1;
  }
}

/* ---------- Эффект от внедрения ---------- */

.effect {
  background-color: var(--color-white);
  padding-top: 150px;
  padding-bottom: 145px;
}

.effect__card {
  position: relative;
  width: 1230px;
  max-width: 100%;
  height: 488px;
  margin-inline: auto;
  border-radius: 30px;
  background-color: #f2f2f6;
  overflow: hidden;
}

.effect__texture {
  position: absolute;
  top: -67px;
  left: -34px;
  width: 1298px;
  height: 623px;
  max-width: none;
  object-fit: cover;
}

.effect__glow {
  position: absolute;
  top: -126px;
  left: 471px;
  width: 206px;
  height: 202px;
  border-radius: 50%;
  background-color: #a6b7c8;
  filter: blur(100px);
}

.effect__title {
  position: relative;
  margin-top: 92px;
  font-weight: 400;
  font-size: 42px;
  line-height: normal;
  text-align: center;
  color: var(--color-bg);
}

.effect__list {
  position: absolute;
  inset: 0;
}

.effect__item {
  position: absolute;
  top: 296px;
  transform: translateY(-50%);
  font-weight: 100;
  font-size: 26px;
  line-height: 32px;
  color: var(--color-bg);
}

.effect__item b {
  font-weight: 500;
}

.effect__item--1 {
  left: 80px;
  width: 277px;
}

.effect__item--2 {
  left: 477px;
  width: 257px;
}

.effect__item--3 {
  left: 854px;
  width: 296px;
}

.effect__item--2::before,
.effect__item--3::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 280px;
  transform: translateY(-50%);
  background-color: #e4e4e8;
}

.effect__item--2::before {
  left: -69px;
}

.effect__item--3::before {
  left: -66px;
}

/* ---------- Результаты внедрения ---------- */

.results {
  background-color: #edeef2;
  padding-top: 151px;
  padding-bottom: 146px;
}

.results__title {
  text-align: center;
}

.results__slider {
  position: relative;
  margin-top: 80px;
}

.results__viewport {
  width: min(var(--container-width), calc(100% - var(--container-gap)));
  margin-inline: auto;
  border-radius: 30px;
  overflow: hidden;
}

.results__track {
  display: flex;
  transition: transform 0.5s ease;
}

.results__slide {
  position: relative;
  flex: 0 0 100%;
  height: 640px;
  border-radius: 30px;
  overflow: hidden;
}

.results__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
}

.results__shade {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 956px;
  background: linear-gradient(98.18deg, rgba(235, 237, 241, 0.9) 47.36%, rgba(238, 240, 243, 0) 93.38%);
}

.results__info {
  position: absolute;
  top: 0;
  left: 80px;
  width: 526px;
}

.results__name {
  margin-top: 96px;
  font-weight: 300;
  font-size: 52px;
  line-height: normal;
  color: var(--color-bg);
}

.results__meta {
  margin-top: 22px;
  font-weight: 300;
  font-size: 20px;
  line-height: 36px;
  color: #676c71;
}

.results__meta b {
  font-weight: 500;
}

.results__payback {
  position: absolute;
  left: 84px;
  top: 402px;
  width: 236px;
  height: 143px;
  padding: 25px 0 0 54px;
  border: 1px solid rgba(78, 85, 99, 0.6);
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.results__payback-value {
  display: flex;
  align-items: center;
  font-weight: 300;
  font-size: 48px;
  color: var(--color-bg);
}

.results__payback-arrow {
  margin-right: 10px;
}

.results__payback-value small {
  align-self: flex-end;
  margin-bottom: 6px;
  margin-left: 14px;
  font-size: 18px;
}

.results__payback-label {
  display: block;
  margin-top: 14px;
  font-weight: 300;
  font-size: 18px;
  color: #768092;
}

.results__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 99px;
  height: 99px;
  border: 1px solid #dae6f2;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-accent);
  transition: background-color 0.2s ease;
}

.results__arrow:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.results__arrow--prev {
  left: 102px;
}

.results__arrow--next {
  right: 100px;
}

.results__arrow--prev svg {
  transform: rotate(90deg);
}

.results__arrow--next svg {
  transform: rotate(-90deg);
}

.results__cta-wrap {
  display: flex;
  justify-content: center;
}

.results__btn {
  width: 607px;
  height: 115px;
  margin-top: 80px;
  border-radius: 12px;
  font-weight: 400;
  font-size: 26px;
}

/* ---------- Цифры ---------- */

.stats {
  position: relative;
  height: 989px;
  background: var(--color-bg) url("../img/stats-bg.jpg") center / cover no-repeat;
}

.stats__list {
  display: grid;
  grid-template-columns: 558px auto;
  grid-template-rows: 300px auto;
  margin-left: 239px;
  padding-top: 253px;
}

.stats__item {
  position: relative;
  padding-left: 22px;
}

.stats__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top: 1px solid var(--color-accent);
  border-left: 1px solid var(--color-accent);
}

.stats__number {
  margin-top: 41px;
  font-weight: 300;
  font-size: 140px;
  line-height: 100px;
  letter-spacing: 7px;
  color: var(--color-white);
}

.stats__number span {
  font-size: 120px;
}

.stats__unit {
  margin-top: 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  color: var(--color-white);
}

.stats__desc {
  margin-top: 12px;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  color: var(--color-white);
}

.stats__item:nth-child(3) .stats__desc,
.stats__item:nth-child(4) .stats__desc {
  margin-top: 17px;
}

/* ---------- Популярные решения ---------- */

.solutions {
  background-color: var(--color-bg);
  padding-top: 200px;
  padding-bottom: 181px;
  scroll-margin-top: -170px;
}

.solutions__title {
  text-align: center;
}

.solutions__subtitle {
  margin-top: 25px;
  font-weight: 400;
  font-size: 40px;
  line-height: normal;
  text-align: center;
  color: var(--color-white);
}

.solutions__subtitle span {
  color: var(--color-accent);
}

.solutions__body {
  display: flex;
  align-items: flex-start;
  margin-top: 80px;
}

.solutions__accordion {
  flex: 0 0 460px;
}

.solutions__item {
  border: 1px solid rgba(181, 213, 38, 0.55);
  border-radius: 25px;
}

.solutions__item.is-open {
  border-radius: 30px;
  /* зеленая подсветка только у открытого пункта, приглушена до уровня макета
     (правка заказчика, июль 2026): блик у кружка с номером + линейная заливка 4% */
  background-image:
    radial-gradient(circle at 49px 45px, rgba(181, 213, 38, 0.07), rgba(181, 213, 38, 0.035) 100px, rgba(181, 213, 38, 0) 220px),
    linear-gradient(223deg, rgba(181, 213, 38, 0.04) 0.5%, rgba(181, 213, 38, 0) 97.8%);
}

.solutions__item + .solutions__item {
  margin-top: 10px;
}

.solutions__item-head {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 90px;
  padding: 0 60px 0 30px;
  text-align: left;
}

.solutions__item-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(181, 213, 38, 0.6);
  border-radius: 50%;
  font-weight: 300;
  font-size: 22px;
  color: var(--color-accent);
}

.solutions__item.is-open .solutions__item-num,
.solutions__tab.is-active .solutions__item-num {
  background-color: var(--color-accent);
  color: var(--color-bg);
}

.solutions__item-title {
  margin-left: 13px;
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
  color: var(--color-white);
}

.solutions__item-arrow {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.solutions__item.is-open .solutions__item-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.solutions__item-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.solutions__item.is-open .solutions__item-body {
  grid-template-rows: 1fr;
}

.solutions__item-content {
  min-height: 0;
  overflow: hidden;
  padding: 0 30px 0 33px;
}

.solutions__item.is-open .solutions__item-content {
  padding-bottom: 24px;
}

.solutions__item-sub {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: var(--color-white);
}

.solutions__item-text {
  margin-top: 10px;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #7a8679;
}

.solutions__item-sub + .solutions__item-text {
  margin-top: 10px;
}

.solutions__item-text + .solutions__item-sub {
  margin-top: 25px;
}

.solutions__item-content .solutions__item-text:first-child {
  margin-top: 0;
}

.solutions__photos {
  position: relative;
  width: 900px;
  height: 677px;
  margin-left: 40px;
}

.solutions__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.solutions__photo.is-active {
  opacity: 1;
}

.solutions__facts {
  position: relative;
  display: grid;
  grid-template-columns: 332px 395px 344px auto;
  width: 1369px;
  height: 344px;
  margin-left: auto;
  margin-top: 109px;
  padding: 59px 66px 0 65px;
  border: 1px solid #272e34;
  border-radius: 30px;
}

/* линия позиционируется внутри своей плашки: left относительно колонки,
   вертикально ложится на нижнюю границу .solutions__facts (плашки растянуты на всю высоту) */
.solutions__fact-line {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(181, 213, 38, 0) 0%, #b5d526 50%, rgba(181, 213, 38, 0) 100%);
  box-shadow: 0 0 6px rgba(181, 213, 38, 0.45);
}

.solutions__fact:nth-child(1) .solutions__fact-line {
  width: 231px;
}

.solutions__fact:nth-child(2) .solutions__fact-line {
  width: 286px;
}

.solutions__fact:nth-child(3) .solutions__fact-line {
  width: 237px;
}

.solutions__fact:nth-child(4) .solutions__fact-line {
  width: 186px;
}

.solutions__fact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.solutions__fact-icon--box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 69px;
  height: 68px;
  margin-top: 8px;
  border: 1.5px solid var(--color-accent);
  border-radius: 10px;
  font-weight: 300;
  font-size: 27px;
  color: var(--color-accent);
}

.solutions__fact-num {
  font-weight: 300;
  font-size: 82px;
  line-height: 83px;
  /* контурные цифры, как в макете: прозрачная заливка + зеленая обводка */
  color: transparent;
  -webkit-text-stroke: 1.5px var(--color-accent);
}

.solutions__fact-text {
  margin-top: 37px;
  font-weight: 300;
  font-size: 22px;
  line-height: 30px;
  color: var(--color-white);
}

.solutions__fact:nth-child(3) .solutions__fact-text {
  margin-top: 23px;
}

.solutions__fact:nth-child(4) .solutions__fact-text {
  margin-top: 28px;
}

/* ---------- Берем внедрение на себя ---------- */

.steps {
  background-color: #f5f5f5;
  padding-top: 200px;
  padding-bottom: 158px;
}

.steps__title {
  max-width: 886px;
  margin-inline: auto;
  text-align: center;
}

.steps__list {
  display: flex;
  gap: 20px;
  margin-top: 128px;
}

.steps__item {
  position: relative;
  width: 335px;
  height: 226px;
  border-radius: 30px;
  background-color: var(--color-white);
  box-shadow: 0 4px 34px 0 rgba(0, 0, 0, 0.03);
}

.steps__item::before {
  content: "";
  position: absolute;
  top: 53px;
  left: 98px;
  right: 0;
  height: 1px;
  background: linear-gradient(to left, var(--color-accent), rgba(181, 213, 38, 0));
}

.steps__item::after {
  content: "";
  position: absolute;
  top: 48px;
  right: 31px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(155deg, #b5d526, #8ba616);
  box-shadow: 0 0 9px 1px rgba(181, 213, 38, 0.9);
}

.steps__num {
  position: absolute;
  top: 28px;
  left: 35px;
  font-weight: 300;
  font-size: 46px;
  line-height: 1;
  color: var(--color-accent);
}

.steps__text {
  position: absolute;
  top: 105px;
  left: 35px;
  width: 185px;
  font-weight: 400;
  font-size: 23px;
  line-height: 34px;
  color: var(--color-bg);
}

/* карточка 04: «поддержку 24/7» (23px) не влезает в 185px и падал на 4-ю строку
   за нижний край карточки; на <=1599 перекрывается общим .steps__text ниже по каскаду */
.steps__text--wide {
  width: 222px;
}

.steps__bonus {
  position: relative;
  height: 226px;
  margin-top: 26px;
  border-radius: 30px;
  background-color: var(--color-white);
  box-shadow: 0 4px 34px 0 rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.steps__bonus-glow {
  position: absolute;
  top: 35px;
  left: -78px;
  width: 261px;
  height: 261px;
  border-radius: 50%;
  background-color: rgba(181, 213, 38, 0.28);
  filter: blur(55px);
}

.steps__bonus-circle {
  position: absolute;
  top: 20px;
  left: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 186px;
  height: 186px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
}

.steps__bonus-circle::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background-color: rgba(181, 213, 38, 0.45);
  filter: blur(27px);
}

.steps__bonus-circle img {
  position: relative;
}

.steps__bonus-title {
  position: absolute;
  top: 67px;
  left: 296px;
  font-weight: 400;
  font-size: 29px;
  line-height: 34px;
  color: var(--color-bg);
}

.steps__bonus-item {
  position: absolute;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  text-indent: 18px;
  color: #7a8679;
}

.steps__bonus-item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.steps__bonus-item--1 {
  top: 128px;
  left: 305px;
  width: 344px;
}

.steps__bonus-item--2 {
  top: 127px;
  left: 710px;
  width: 421px;
}

/* ---------- Оставить заявку ---------- */

.request {
  background-color: var(--color-white);
  padding-top: 84px;
  padding-bottom: 164px;
  scroll-margin-top: -54px;
}

.request__title {
  font-weight: 300;
  font-size: 52px;
  line-height: 60px;
  text-align: center;
  color: var(--color-bg);
}

.request__text {
  margin-top: 48px;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: var(--color-grey);
}

.form {
  width: 606px;
  margin: 60px auto 0;
}

.form__field {
  position: relative;
}

.form__field + .form__field {
  margin-top: 52px;
}

.form__input {
  display: block;
  width: 100%;
  padding: 6px 0 12px;
  border-bottom: 1px solid #abadbe;
  font-weight: 300;
  font-size: 20px;
  color: var(--color-bg);
  transition: border-color 0.2s ease;
}

.form__input:focus {
  border-color: var(--color-bg);
}

.form__input.is-error {
  border-color: #e85d51;
}

.form__textarea {
  height: 45px;
  line-height: 26px;
  resize: none;
  overflow-y: hidden;
}

.form__label {
  position: absolute;
  top: 6px;
  left: 0;
  font-weight: 300;
  font-size: 20px;
  color: #abadbe;
  opacity: 0;
}

.form__input:placeholder-shown + .form__label {
  opacity: 1;
}

.form__star {
  color: var(--color-accent);
  font-size: 24px;
}

.form__agree {
  display: flex;
  align-items: flex-start;
  gap: 21px;
  margin-top: 34px;
  cursor: pointer;
}

.form__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form__checkbox-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-grey);
  border-radius: 7px;
}

.form__checkbox-box svg {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.form__checkbox:checked ~ .form__checkbox-box svg {
  opacity: 1;
}

.form__checkbox.is-error ~ .form__checkbox-box {
  border-color: #e85d51;
}

.form__agree-text {
  max-width: 391px;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-bg);
}

.form__agree-text a {
  font-weight: 500;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-position: from-font;
}

.form__submit {
  width: 100%;
  height: 80px;
  margin-top: 43px;
  border-radius: 12px;
  font-weight: 400;
  font-size: 24px;
  filter: drop-shadow(0 0 4.5px var(--color-accent));
}

.form__status {
  display: none;
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
}

.form__status.is-visible {
  display: block;
}

.form__status.is-success {
  color: #4f7a1e;
}

.form__status.is-error {
  color: #e85d51;
}

/* ---------- Модальное окно заявки ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 13, 16, 0.65);
}

.modal__window {
  position: relative;
  width: 486px;
  max-width: 100%;
  min-height: 481px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 18px 20px 24px;
  background-color: var(--color-white);
  border-radius: 30px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.modal__close {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: 34px;
  padding: 8px;
  color: #9aa4af;
  transition: color 0.2s ease;
}

.modal__close:hover {
  color: var(--color-bg);
}

.modal__title {
  font-weight: 300;
  font-size: 35px;
  line-height: 60px;
  text-align: center;
  color: var(--color-bg);
}

.modal__text {
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: var(--color-grey);
}

.form--modal {
  width: 303px;
  max-width: 100%;
  margin: 14px auto 0;
}

.form--modal .form__field + .form__field {
  margin-top: 6px;
}

.form--modal .form__input {
  padding: 8px 0 10px;
  font-size: 14px;
}

.form--modal .form__label {
  top: 8px;
  font-size: 14px;
}

.form--modal .form__star {
  font-size: 18px;
}

.form--modal .form__textarea {
  height: 40px;
  line-height: 21px;
}

.form--modal .form__agree {
  gap: 14px;
  margin-top: 20px;
}

.form--modal .form__checkbox-box {
  width: 25px;
  height: 25px;
}

.form--modal .form__agree-text {
  max-width: 252px;
  font-size: 9px;
}

.form--modal .form__submit {
  height: 62px;
  margin-top: 20px;
  font-size: 24px;
}

.form--modal .form__status {
  margin-top: 12px;
  font-size: 13px;
}

.modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 118px;
}

.modal__success[hidden] {
  display: none;
}

.modal__success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.modal__success-title {
  margin-top: 43px;
  font-weight: 300;
  font-size: 35px;
  line-height: normal;
  text-align: center;
  color: var(--color-bg);
}

/* ---------- Куки-баннер ---------- */

.cookies {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(var(--container-width), calc(100% - var(--container-gap)));
  min-height: 74px;
  padding: 8px 32px;
  background-color: var(--color-white);
  border: 0.5px solid #d6dbea;
  border-radius: 16px;
  box-shadow: 0 8px 15px rgba(80, 85, 136, 0.11);
}

.cookies[hidden] {
  display: none;
}

.cookies__text {
  flex: 1;
  font-size: 14px;
  line-height: 1.35;
  color: var(--color-bg);
}

.cookies__link {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-position: from-font;
}

.cookies__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 32px;
  padding: 0 16px;
  background-color: var(--color-accent);
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-white);
  transition: filter 0.2s ease;
}

.cookies__btn:hover {
  filter: drop-shadow(0 0 4px var(--color-accent));
}

/* ---------- Политика конфиденциальности ---------- */

.policy {
  padding-top: 260px;
  padding-bottom: 120px;
}

.policy__title {
  font-weight: 300;
  font-size: 54px;
  line-height: normal;
  color: var(--color-white);
}

.policy__content {
  max-width: 900px;
  margin-top: 50px;
}

.policy__content h2 {
  margin-top: 45px;
  font-weight: 400;
  font-size: 26px;
  line-height: normal;
  color: var(--color-white);
}

.policy__content p {
  margin-top: 18px;
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  color: var(--color-grey-light);
}

.policy__content ul {
  margin-top: 18px;
}

.policy__content li {
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  color: var(--color-grey-light);
}

/* ---------- Футер ---------- */

.footer {
  background-color: var(--color-bg);
  padding-top: 61px;
  padding-bottom: 28px;
  /* линия .footer__bottom::before шириной 100vw захватывает скроллбар - обрезаем по вьюпорту */
  overflow: hidden;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer__menu {
  display: flex;
  gap: 50px;
  padding-top: 8px;
}

.footer__menu-link {
  position: relative;
  font-weight: 400;
  font-size: 15px;
  color: var(--color-grey-light);
  transition: color 0.2s ease;
}

.footer__menu-link:hover {
  color: var(--color-white);
}

.footer__menu-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background-color: var(--color-accent);
}

.footer__contacts {
  display: flex;
  margin-top: 61px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  width: 360px;
}

.footer__contact:last-child {
  width: auto;
}

.footer__contact-label {
  font-weight: 300;
  font-size: 18px;
  color: #646f86;
}

.footer__contact-value {
  margin-top: 21px;
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  color: #646f86;
}

.footer__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 51px;
  padding-top: 26px;
}

.footer__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.footer__requisites {
  /* отступ между названием, ИНН и ОГРН - примерно 8 пробелов (правка заказчика) */
  display: flex;
  gap: 36px;
  font-weight: 300;
  font-size: 16px;
  color: #646f86;
}

.footer__policy {
  font-weight: 300;
  font-size: 18px;
  color: #646f86;
  text-decoration: none;
}

.footer__policy:hover {
  text-decoration: underline;
  text-underline-position: from-font;
}

/* Элементы, видимые только на промежуточных/мобильных разрешениях */

.hero__counter {
  display: none;
}

.solutions__panels,
.solutions__tabs {
  display: none;
}

/* ==========================================================================
   Адаптив: 1366 (769px – 1599px)
   ========================================================================== */

@media (max-width: 1599px) {

  :root {
    --container-gap: 200px;
  }

  /* --- Шапка --- */

  .header__top-inner {
    margin-left: 100px;
    margin-right: 100px;
  }

  .header__counter {
    display: none;
  }

  .header__city {
    margin-right: 60px;
  }

  /* --- Hero --- */

  .hero {
    min-height: 619px;
    padding-top: 197px;
  }

  .hero::before {
    top: -47px;
    right: 0;
    width: 667px;
    height: 667px;
  }

  .hero::after {
    top: -35px;
    right: 180px;
    width: 800px;
    height: 900px;
  }

  .hero__top-strip {
    height: 174px;
  }

  .hero__glow {
    height: 166px;
  }

  .hero__content {
    gap: 0;
    max-width: 700px;
  }

  .hero__title {
    font-size: 54px;
    line-height: 65px;
  }

  .hero__text {
    max-width: 532px;
    margin-top: 46px;
    font-size: 18px;
    line-height: 29px;
  }

  .hero__btn {
    width: 275px;
    height: 62px;
    margin-top: 41px;
    font-size: 16px;
  }

  .hero__counter {
    display: block;
    position: absolute;
    z-index: 4;
    right: 60px;
    bottom: 31px;
    font-size: 16px;
    color: var(--color-grey-dim);
  }

  /* --- Типичная ситуация --- */

  .situation {
    height: 641px;
  }

  .situation__photo {
    display: none;
  }

  .situation__photo-1366 {
    display: block;
    position: absolute;
    top: -10px;
    right: 0;
    width: 863px;
    height: 689px;
    object-fit: cover;
  }

  .situation__photo-red {
    display: none;
  }

  .situation__grad--center {
    left: 200px;
  }

  .situation__top-strip {
    height: 293px;
  }

  .situation__glow {
    top: auto;
    bottom: 0;
    height: 166px;
  }

  .situation__inner {
    padding-top: 37px;
  }

  .situation__list {
    margin-top: 53px;
  }

  .situation__item + .situation__item {
    margin-top: 56px;
  }

  .situation__item + .situation__item::before {
    top: -28px;
  }

  /* --- Из-за этого вы теряете --- */

  .losses {
    height: 553px;
    margin-top: 0;
  }

  .losses__bg {
    top: -40px;
    left: auto;
    right: 0;
    width: 1114px;
    height: 438px;
  }

  .losses__list {
    margin-top: 77px;
  }

  /* --- Как мы решаем --- */

  .solve {
    padding-top: 45px;
    scroll-margin-top: -15px;
  }

  .solve__title {
    font-size: 44px;
  }

  .solve__list {
    gap: 16px;
    margin-top: 52px;
  }

  .solve__card {
    --solve-raise: 16px;
    width: 220px;
    height: 395px;
    border-radius: 24px;
  }

  .solve__card-photo {
    top: -28px;
    left: -8px;
    width: 236px;
    height: 455px;
  }

  .solve__card-label {
    top: 44px;
    left: 22px;
    font-size: 12px;
  }

  .solve__card-label::after {
    top: 21px;
  }

  .solve__card-title {
    top: 91px;
    left: 22px;
    /* на карточке 220px дает те же 182px, при сжатии карточки не режется краем */
    width: calc(100% - 38px);
    font-size: 15px;
    line-height: 22px;
  }

  .solve__card-text {
    top: 168px;
    left: 22px;
    width: calc(100% - 38px);
    font-size: 13px;
    line-height: 19px;
  }

  .solve__card--long-title .solve__card-text {
    top: 187px;
  }

  /* --- Эффект --- */

  .effect {
    padding-top: 156px;
    padding-bottom: 111px;
  }

  /* на 1280-1365 контейнер уже 1166px - карточка сжимается,
     позиции колонок в процентах (на ширине 1166px дают ровно 123/433/786px) */
  .effect__card {
    width: min(1166px, 100%);
    height: 404px;
  }

  .effect__texture {
    top: -124px;
    left: -34px;
    width: 1231px;
    height: 591px;
  }

  .effect__glow {
    top: -65px;
    left: 455px;
  }

  .effect__title {
    margin-top: 74px;
    font-size: 36px;
  }

  .effect__item {
    top: 270px;
    font-size: 22px;
    line-height: 26px;
  }

  .effect__item--1 {
    left: 10.549%;
    width: 229px;
  }

  .effect__item--2 {
    left: 37.136%;
    width: 257px;
  }

  .effect__item--3 {
    left: 67.41%;
    width: 296px;
  }

  .effect__item--2::before {
    left: -57px;
    height: 257px;
  }

  .effect__item--3::before {
    left: -30px;
    height: 257px;
  }

  /* --- Результаты внедрения --- */

  .results {
    padding-top: 61px;
    padding-bottom: 121px;
  }

  .results__slider {
    margin-top: 50px;
  }

  .results__slide {
    height: 460px;
  }

  .results__shade {
    width: 700px;
  }

  .results__info {
    left: 70px;
    width: 500px;
  }

  .results__name {
    margin-top: 66px;
    font-size: 36px;
  }

  .results__meta {
    margin-top: 30px;
    font-size: 18px;
    line-height: 36px;
  }

  .results__payback {
    left: 70px;
    top: 257px;
  }

  .results__arrow {
    top: auto;
    bottom: 40px;
    transform: none;
    width: 67px;
    height: 67px;
    border: none;
  }

  .results__arrow svg {
    width: 32px;
    height: 17px;
  }

  .results__arrow--prev {
    left: auto;
    right: calc(max(100px, (100% - var(--container-width)) / 2) + 90px);
    background-color: rgba(255, 255, 255, 0.9);
    color: #9aa4af;
  }

  .results__arrow--next {
    right: calc(max(100px, (100% - var(--container-width)) / 2) + 12px);
    background-color: var(--color-accent);
    color: #0a0d10;
  }

  .results__arrow:hover {
    background-color: var(--color-accent);
  }

  .results__cta-wrap .results__btn {
    width: 353px;
    height: 87px;
    margin-top: 50px;
    font-size: 16px;
    font-weight: 500;
  }

  /* --- Цифры --- */

  .stats {
    height: 768px;
  }

  .stats__list {
    grid-template-columns: 535px auto;
    grid-template-rows: 260px auto;
    margin-left: 150px;
    padding-top: 117px;
  }

  .stats__item {
    padding-left: 21px;
  }

  .stats__item::before {
    width: 48px;
    height: 48px;
  }

  .stats__number {
    margin-top: 25px;
  }

  .stats__desc {
    margin-top: 18px;
    font-size: 15px;
    line-height: 21px;
  }

  .stats__unit {
    margin-top: 12px;
  }

  .stats__item:nth-child(3) .stats__desc,
  .stats__item:nth-child(4) .stats__desc {
    margin-top: 15px;
  }

  /* --- Популярные решения: табы --- */

  .solutions {
    padding-top: 90px;
    padding-bottom: 187px;
    scroll-margin-top: -60px;
  }

  .solutions__subtitle {
    margin-top: 6px;
  }

  .solutions__accordion {
    display: none;
  }

  .solutions__body {
    display: grid;
    grid-template-columns: 460px 1fr;
    grid-template-areas:
      "panel photo"
      "tabs tabs";
    margin-top: 36px;
  }

  .solutions__panels {
    display: block;
    grid-area: panel;
    position: relative;
    min-height: 381px;
    border: 1px solid rgba(181, 213, 38, 0.55);
    border-radius: 30px;
    /* зеленая подсветка приглушена до уровня макета (правка заказчика, июль 2026):
       блик в левом верхнем углу + линейная заливка 4% */
    background-image:
      radial-gradient(circle at 90px 60px, rgba(181, 213, 38, 0.06), rgba(181, 213, 38, 0.03) 180px, rgba(181, 213, 38, 0) 420px),
      linear-gradient(223deg, rgba(181, 213, 38, 0.04) 0.5%, rgba(181, 213, 38, 0) 97.8%);
    padding: 45px 30px 24px 33px;
  }

  .solutions__panel {
    display: none;
  }

  .solutions__panel.is-active {
    display: block;
  }

  .solutions__panel-title {
    margin-bottom: 25px;
    font-weight: 300;
    font-size: 22px;
    line-height: 1;
    color: var(--color-white);
  }

  .solutions__photos {
    grid-area: photo;
    /* фото тянется до правого края колонки (в ровень с правым табом);
       calc вычитает margin-left, на 1366 дает ровно ширину макета */
    width: calc(100% - 23px);
    height: 381px;
    margin-left: 23px;
  }

  .solutions__photo {
    border-radius: 30px;
    object-fit: cover;
  }

  .solutions__tabs {
    display: flex;
    gap: 31px;
    grid-area: tabs;
    margin-top: 24px;
  }

  .solutions__tabs li {
    /* ряд табов заполняет контейнер целиком: на вьюпортах шире 1366
       лишнее место делится поровну, правый таб - вровень с фото и плашкой */
    flex: 1 1 auto;
    min-width: 0;
  }

  .solutions__tabs li:nth-child(2) {
    /* таб «Видеоаналитика» не сжимается уже своего слова: иначе на 1280-1599
       слово вылезает за паддинг (в макете 1366 оно в одну строку);
       страховка на случай нехватки места - &shy; в разметке */
    flex-shrink: 0;
  }

  .solutions__tab {
    display: flex;
    align-items: center;
    gap: 13px;
    /* min-width: 0 позволяет табам сжиматься на 1280-1365 (текст в две строки) */
    min-width: 0;
    width: 100%;
    height: 92px;
    padding: 0 30px;
    border: 1px solid rgba(181, 213, 38, 0.55);
    border-radius: 25px;
    font-weight: 300;
    font-size: 18px;
    text-align: left;
    color: var(--color-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .solutions__tab.is-active {
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(181, 213, 38, 0.4);
    /* зеленая подсветка только у активного таба, приглушена до уровня макета
       (правка заказчика, июль 2026): блик у кружка с номером + линейная заливка 4% */
    background-image:
      radial-gradient(circle at 49px 46px, rgba(181, 213, 38, 0.07), rgba(181, 213, 38, 0.035) 100px, rgba(181, 213, 38, 0) 220px),
      linear-gradient(193deg, rgba(181, 213, 38, 0.04) 0.5%, rgba(181, 213, 38, 0) 97.8%);
  }

  /* --- Факты --- */

  .solutions__facts {
    /* плашка на всю ширину контейнера, колонки в процентах
       (на ширине 1166px дают ровно 296/342/284px из макета) */
    grid-template-columns: 27.206% 31.434% 26.103% auto;
    width: 100%;
    height: 344px;
    margin-top: 134px;
    padding: 59px 39px 0;
  }

  .solutions__fact:nth-child(1) .solutions__fact-line {
    width: 172px;
  }

  .solutions__fact:nth-child(2) .solutions__fact-line {
    width: 230px;
  }

  .solutions__fact:nth-child(3) .solutions__fact-line {
    width: 199px;
  }

  .solutions__fact:nth-child(4) .solutions__fact-line {
    width: 153px;
  }

  .solutions__fact-text {
    margin-top: 30px;
    font-size: 18px;
    line-height: 26px;
  }

  .solutions__fact:nth-child(3) .solutions__fact-text {
    margin-top: 30px;
  }

  .solutions__fact:nth-child(4) .solutions__fact-text {
    margin-top: 30px;
  }

  /* --- Берем внедрение --- */

  .steps {
    padding-top: 74px;
    padding-bottom: 82px;
  }

  .steps__title {
    max-width: none;
    font-size: 44px;
  }

  .steps__list {
    gap: 15px;
    margin-top: 100px;
  }

  .steps__item {
    width: 280px;
  }

  .steps__item::before {
    left: 98px;
  }

  .steps__item::after {
    right: 26px;
    top: 47px;
  }

  .steps__num {
    font-size: 36px;
  }

  .steps__text {
    width: 208px;
    font-size: 19px;
    line-height: 28px;
  }

  .steps__bonus {
    height: 206px;
    margin-top: 48px;
  }

  .steps__bonus-glow {
    top: 32px;
    left: -78px;
  }

  .steps__bonus-circle {
    top: 20px;
    left: 40px;
  }

  .steps__bonus-title {
    top: 60px;
    left: 256px;
    /* на 1280-1365 контейнер уже: ужимаем шрифт, чтобы заголовок оставался
       одной строкой и не наезжал на буллеты (на 1366 дает ровно 29px) */
    font-size: clamp(24px, 2.13vw, 29px);
  }

  .steps__bonus-item {
    font-size: 16px;
    line-height: 21px;
    text-indent: 16px;
  }

  .steps__bonus-item::before {
    top: 5px;
  }

  .steps__bonus-item--1 {
    top: 124px;
    left: 265px;
    width: 300px;
  }

  .steps__bonus-item--2 {
    top: 122px;
    left: 670px;
    width: 421px;
  }

  /* --- Форма --- */

  .request {
    padding-top: 82px;
    padding-bottom: 82px;
    scroll-margin-top: -52px;
  }

  .request__text {
    margin-top: 24px;
  }

  .form {
    margin-top: 32px;
  }

  .form__field + .form__field {
    margin-top: 18px;
  }

  .form__agree {
    margin-top: 36px;
  }

  .form__submit {
    margin-top: 32px;
  }

  /* --- Футер --- */

  .footer {
    padding-top: 70px;
    padding-bottom: 25px;
  }

  .footer__menu {
    gap: 40px;
  }

  .footer__contacts {
    margin-top: 80px;
  }

  .footer__contact {
    width: 310px;
  }

  .footer__bottom {
    margin-top: 58px;
  }
}

/* ==========================================================================
   Промежуточный диапазон (769px – 1279px): резиновая сетка без поломок
   ========================================================================== */

@media (max-width: 1279px) and (min-width: 769px) {

  .losses__list {
    grid-template-columns: 1fr 1fr;
  }

  .solve__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .solve__card {
    --solve-raise: 0px;
    margin-top: 0;
  }

  .effect__card {
    width: 100%;
    height: auto;
    padding: 60px 40px;
  }

  .effect__title {
    margin-top: 0;
  }

  .effect__list {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }

  .effect__item {
    position: static;
    transform: none;
    width: auto;
    margin-top: 30px;
    text-align: center;
  }

  .effect__item--1,
  .effect__item--2,
  .effect__item--3 {
    left: auto;
    width: auto;
    max-width: 420px;
  }

  .effect__item--2::before,
  .effect__item--3::before {
    display: none;
  }

  .stats__list {
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }

  .solutions__body {
    grid-template-columns: 1fr;
    grid-template-areas:
      "panel"
      "photo"
      "tabs";
  }

  .solutions__photos {
    width: 100%;
    margin-left: 0;
    margin-top: 24px;
  }

  .solutions__tabs {
    flex-wrap: wrap;
  }

  .solutions__facts {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
    width: 100%;
    height: auto;
    padding-bottom: 50px;
  }

  .solutions__fact-line {
    display: none;
  }

  .steps__list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .steps__bonus {
    height: auto;
    padding: 50px 40px 50px 280px;
  }

  .steps__bonus-title {
    position: static;
  }

  .steps__bonus-item {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin-top: 20px;
  }

  .footer__contacts {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer__contact {
    width: calc(50% - 30px);
  }
}

/* На узких планшетах шапка переключается на бургер */

@media (max-width: 1023px) and (min-width: 769px) {

  .header__right {
    display: none;
  }

  .header__nav {
    display: none;
  }

  .header__top {
    border-bottom: none;
  }

  .burger {
    display: flex;
    align-self: center;
  }
}

/* Мобильные элементы скрыты на десктопе */

.solve__card-more,
.results__city,
.results__stat,
.solutions__item-photo {
  display: none;
}

/* ==========================================================================
   Адаптив: мобильная версия (до 768px)
   ========================================================================== */

@media (max-width: 768px) {

  :root {
    --container-gap: 40px;
  }

  .section-title {
    font-size: 34px;
    line-height: 38px;
  }

  /* --- Шапка --- */

  .header__top {
    border-bottom: none;
  }

  .header__top-inner {
    margin-left: 20px;
    margin-right: 20px;
    padding-block: 40px 0;
    align-items: flex-start;
  }

  .logo {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo__name {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .logo__caption {
    width: 160px;
    margin-left: 0;
    margin-top: 5px;
    padding-left: 0;
    border-left: none;
    font-size: 12px;
    line-height: 1.2;
  }

  .header__right {
    display: none;
  }

  .header__nav {
    display: none;
  }

  .burger {
    display: flex;
    margin-top: 20px;
  }

  /* --- Hero --- */

  .hero {
    min-height: 680px;
    padding-top: 147px;
  }

  .hero::before {
    top: 270px;
    right: auto;
    left: 0;
    width: 100%;
    height: 390px;
  }

  /* затемнение фото сверху, как в макете 390: сплошной фон до ~42% высоты
     первого экрана, дальше плавно растворяется */
  .hero::after {
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
    height: 680px;
    background: linear-gradient(180deg, #0a0d10 0%, #0a0d10 42%, rgba(10, 13, 16, 0) 80%);
    transform: none;
  }

  .hero__top-strip {
    height: 280px;
  }

  .hero__glow {
    height: 160px;
  }

  .hero__content {
    gap: 0;
    max-width: 289px;
  }

  .hero__title {
    max-width: 200px;
    font-size: 34px;
    line-height: 38px;
  }

  .hero__text {
    max-width: 260px;
    margin-top: 24px;
    font-size: 16px;
    line-height: 24px;
    color: #b8bec7;
  }

  .hero__btn {
    width: 260px;
    height: 60px;
    margin-top: 34px;
    font-size: 16px;
  }

  .hero__counter {
    right: 20px;
    bottom: 24px;
    font-size: 14px;
  }

  /* --- Типичная ситуация --- */

  .situation {
    height: auto;
    padding-bottom: 0;
    overflow: visible;
  }

  .situation__photo,
  .situation__photo-1366,
  .situation__grad--center,
  .situation__grad--left,
  .situation__top-strip,
  .situation__glow {
    display: none;
  }

  .situation__photo-red {
    display: block;
    top: 365px;
    right: auto;
    left: 0;
    width: 100%;
    height: 318px;
  }

  .situation__inner {
    padding-top: 39px;
  }

  .situation__list {
    margin-top: 40px;
    max-width: none;
  }

  .situation__item + .situation__item {
    margin-top: 59px;
  }

  .situation__item + .situation__item::before {
    top: -30px;
    width: 100%;
  }

  .situation__item:nth-child(n) .situation__text {
    max-width: 230px;
  }

  /* --- Из-за этого вы теряете --- */

  .losses {
    height: auto;
    padding-top: 211px;
    padding-bottom: 80px;
    overflow: visible;
  }

  .losses__bg {
    display: none;
  }

  .losses__inner .section-title {
    max-width: 240px;
    font-size: 32px;
    line-height: 34px;
  }

  .losses__list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }

  .losses__item {
    height: 95px;
    padding: 10px 15px 10px 25px;
    border-radius: 25px;
  }

  .losses__item:nth-child(n) .losses__text {
    max-width: none;
    font-size: 18px;
    line-height: 27px;
    text-indent: 18px;
  }

  .losses__text::before {
    top: 8px;
    left: -2px;
  }

  /* --- Как мы решаем: карусель --- */

  .solve {
    padding-top: 81px;
    /* overflow: hidden тут нельзя - он режет тень-полосу карусели,
       выступающую на 50px ниже секции (padding 70px + margin -50px у списка) */
    scroll-margin-top: -51px;
  }

  .solve__title {
    max-width: 250px;
    margin-inline: auto;
    font-size: 30px;
    line-height: 33px;
  }

  .solve__list {
    justify-content: flex-start;
    gap: 22px;
    margin-top: 43px;
    /* запас снизу под тень карточек (0 20px 30px ~= 50px), иначе scroll-контейнер
       её обрезает; компенсируем отступ отрицательным margin */
    padding: 20px calc(50% - 95px) 70px;
    margin-bottom: -50px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .solve__list::-webkit-scrollbar {
    display: none;
  }

  .solve__card {
    --solve-raise: 0px;
    flex: 0 0 190px;
    width: 190px;
    height: 372px;
    margin-top: 0;
    border-radius: 20px;
    scroll-snap-align: center;
    box-shadow: 0 20px 30px 0 rgba(7, 8, 9, 0.35);
  }

  .solve__card.is-raised {
    transform: translateY(-20px);
  }

  .solve__card-photo {
    top: -19px;
    left: -8px;
    width: 206px;
    height: 410px;
  }

  .solve__card-label {
    top: 50px;
    left: 20px;
    font-size: 12px;
  }

  .solve__card-label::after {
    top: 21px;
  }

  .solve__card-title {
    top: 97px;
    left: 20px;
    width: 170px;
    font-size: 16px;
    line-height: 21px;
  }

  .solve__card-text {
    display: none;
  }

  .solve__card.is-open .solve__card-text {
    display: block;
    top: 216px;
    left: 20px;
    width: 160px;
    font-size: 12px;
    line-height: 18px;
    color: var(--color-white);
    opacity: 1;
  }

  .solve__card-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: absolute;
    z-index: 1;
    top: 193px;
    left: 20px;
    font-size: 13px;
    color: var(--color-accent);
  }

  .solve__card-more svg {
    transition: transform 0.3s ease;
  }

  .solve__card.is-open .solve__card-more svg {
    transform: rotate(180deg);
  }

  /* --- Эффект --- */

  .effect {
    padding-top: 118px;
    padding-bottom: 91px;
  }

  .effect__card {
    width: 350px;
    height: auto;
    padding-bottom: 40px;
  }

  .effect__texture {
    top: -76px;
    left: -100px;
    width: 1000px;
    height: 900px;
  }

  .effect__glow {
    top: -100px;
    left: 72px;
  }

  .effect__title {
    max-width: 292px;
    margin-top: 62px;
    margin-inline: auto;
    font-size: 28px;
    line-height: 33px;
  }

  .effect__list {
    position: relative;
    inset: auto;
    margin-top: 40px;
  }

  .effect__item {
    position: relative;
    top: auto;
    transform: none;
    margin-inline: auto;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }

  .effect__item--1,
  .effect__item--2,
  .effect__item--3 {
    left: auto;
    width: 235px;
  }

  .effect__item + .effect__item {
    margin-top: 61px;
  }

  .effect__item--2::before,
  .effect__item--3::before {
    display: none;
  }

  .effect__item + .effect__item::after {
    content: "";
    position: absolute;
    top: -31px;
    left: 50%;
    transform: translateX(-50%);
    width: 304px;
    height: 1px;
    background-color: #e4e4e8;
  }

  /* --- Результаты внедрения --- */

  .results {
    padding-top: 64px;
    padding-bottom: 90px;
  }

  .results__title {
    max-width: 350px;
    margin-inline: auto;
    font-size: 34px;
    line-height: 36px;
  }

  .results__slider {
    margin-top: 40px;
  }

  /* карточка в потоке, а не на абсолютах: высота от контента
     (flex-стрейч трека выравнивает все слайды по самому высокому),
     отступ от города до окупаемости всегда 20px (правка заказчика, июль 2026) */
  .results__slide {
    height: auto;
    border-radius: 25px;
    background-color: var(--color-white);
  }

  .results__photo {
    position: static;
    height: 320px;
    object-position: 30% 60%;
  }

  .results__shade {
    display: none;
  }

  .results__info {
    position: static;
    width: auto;
    padding: 25px 20px 0;
    background-color: var(--color-white);
  }

  .results__name {
    margin-top: 0;
    font-size: 22px;
  }

  /* контент плашки как на десктопе: мета + «< 6 мес. окупаемость»
     (город и «40/0» остаются скрытыми базовым правилом).
     На мобильном виден только город (<b>): остальной текст меты
     спрятан через font-size: 0 - разметка остается общей с десктопом */
  .results__meta {
    margin-top: 8px;
    font-size: 0;
    line-height: 22px;
  }

  .results__meta b {
    font-size: 14px;
  }

  .results__payback {
    position: static;
    width: auto;
    height: auto;
    margin: 20px 20px 20px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .results__payback-value {
    font-size: 27px;
  }

  .results__payback-arrow {
    width: 15px;
    height: 20px;
    margin-right: 6px;
  }

  .results__payback-value small {
    margin-bottom: 3px;
    margin-left: 8px;
    font-size: 16px;
  }

  .results__payback-label {
    margin-top: 6px;
    font-size: 12px;
  }

  .results__arrow {
    top: 160px;
    bottom: auto;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
  }

  .results__arrow svg {
    width: 20px;
    height: 11px;
  }

  .results__arrow--prev {
    left: 45px;
    right: auto;
  }

  .results__arrow--next {
    right: 45px;
  }

  .results__cta-wrap .results__btn {
    width: 100%;
    height: 60px;
    margin-top: 40px;
    font-size: 16px;
    border-radius: 20px;
  }

  /* --- Цифры --- */

  .stats {
    height: auto;
    padding-top: 89px;
    padding-bottom: 89px;
  }

  .stats__list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    margin-left: 0;
    padding-top: 0;
  }

  .stats__item {
    padding-left: 20px;
  }

  .stats__item + .stats__item {
    margin-top: 47px;
  }

  .stats__item::before {
    width: 40px;
    height: 40px;
  }

  .stats__number {
    display: inline;
    margin-top: 20px;
    font-size: 64px;
    line-height: 70px;
    letter-spacing: 3px;
  }

  .stats__number span {
    font-size: 56px;
  }

  .stats__unit {
    display: inline;
    margin-top: 0;
    margin-left: 10px;
    font-size: 16px;
  }

  .stats__desc {
    margin-top: 12px;
    font-size: 16px;
    line-height: 24px;
  }

  .stats__item:nth-child(3) .stats__desc,
  .stats__item:nth-child(4) .stats__desc {
    margin-top: 12px;
  }

  /* --- Популярные решения: аккордеон --- */

  .solutions {
    padding-top: 8px;
    padding-bottom: 88px;
    scroll-margin-top: 22px;
  }

  .solutions__title {
    font-size: 30px;
  }

  .solutions__subtitle {
    margin-top: 20px;
    font-size: 18px;
  }

  .solutions__accordion {
    display: block;
    flex: none;
  }

  .solutions__body {
    display: block;
    margin-top: 72px;
  }

  .solutions__panels,
  .solutions__tabs {
    display: none;
  }

  .solutions__photos {
    display: none;
  }

  .solutions__item.is-open {
    background-image:
      radial-gradient(circle at 43px 32px, rgba(181, 213, 38, 0.07), rgba(181, 213, 38, 0.035) 100px, rgba(181, 213, 38, 0) 220px),
      linear-gradient(223deg, rgba(181, 213, 38, 0.04) 0.5%, rgba(181, 213, 38, 0) 97.8%);
  }

  .solutions__item-photo {
    display: block;
    width: 289px;
    max-width: 100%;
    height: auto;
    margin: 15px auto 25px;
    border-radius: 20px;
  }

  .solutions__item-head {
    height: 90px;
    padding: 0 38px 0 25px;
  }

  .solutions__item-title {
    font-size: 20px;
    line-height: 25px;
  }

  .solutions__item-arrow {
    right: 22px;
    width: 14px;
    height: 7px;
  }

  .solutions__item-content {
    padding: 0 20px 0 28px;
  }

  .solutions__item.is-open .solutions__item-content {
    padding-bottom: 30px;
  }

  /* --- Факты --- */

  .solutions__facts {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 60px;
    padding: 25px 20px;
  }

  .solutions__fact-line {
    display: none;
  }

  .solutions__fact {
    display: grid;
    grid-template-columns: 84px 1fr;
    align-items: center;
    column-gap: 12px;
    min-height: 88px;
  }

  .solutions__fact + .solutions__fact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #272e34;
  }

  .solutions__fact-icon--box {
    width: 55px;
    height: 55px;
    margin-top: 0;
    justify-self: start;
    font-size: 22px;
  }

  .solutions__fact-icon--img {
    width: 66px;
    height: 66px;
    justify-self: start;
  }

  .solutions__fact-num {
    font-size: 60px;
    line-height: 60px;
    justify-self: start;
  }

  .solutions__fact-text,
  .solutions__fact:nth-child(3) .solutions__fact-text,
  .solutions__fact:nth-child(4) .solutions__fact-text {
    margin-top: 0;
    font-size: 16px;
    line-height: 22px;
  }

  /* --- Берем внедрение --- */

  .steps {
    padding-top: 109px;
    padding-bottom: 60px;
  }

  .steps__title {
    max-width: 350px;
    font-size: 34px;
    line-height: 36px;
  }

  .steps__list {
    flex-direction: column;
    gap: 15px;
    margin-top: 38px;
  }

  .steps__item {
    width: 100%;
    height: auto;
    padding: 25px 17px 29px 30px;
    border-radius: 25px;
  }

  .steps__item::before {
    top: 48px;
    left: 107px;
    right: 0;
    width: auto;
  }

  .steps__item::after {
    top: 43px;
    left: auto;
    right: 36px;
  }

  .steps__num {
    position: static;
    font-size: 40px;
    line-height: 40px;
  }

  .steps__text {
    position: static;
    width: auto;
    margin-top: 25px;
    font-size: 18px;
    line-height: 30px;
  }

  .steps__bonus {
    height: 323px;
    margin-top: 40px;
    border-radius: 25px;
  }

  .steps__bonus-glow {
    top: -32px;
    left: auto;
    right: -35px;
  }

  .steps__bonus-circle {
    display: none;
  }

  .steps__bonus-title {
    top: 30px;
    left: 30px;
    width: 292px;
    font-size: 22px;
    line-height: 34px;
  }

  .steps__bonus-item {
    font-size: 16px;
    line-height: 18px;
    text-indent: 16px;
  }

  .steps__bonus-item::before {
    top: 4px;
    left: -1px;
  }

  .steps__bonus-item--1 {
    top: 171px;
    left: 31px;
    width: 305px;
  }

  .steps__bonus-item--2 {
    top: 247px;
    left: 31px;
    width: 305px;
  }

  /* --- Форма --- */

  .request {
    padding-top: 80px;
    padding-bottom: 51px;
    scroll-margin-top: -50px;
  }

  .request__title {
    font-size: 32px;
    line-height: 37px;
  }

  .request__text {
    max-width: 349px;
    margin-inline: auto;
    margin-top: 30px;
    font-size: 15px;
    line-height: 22px;
  }

  .request__text br {
    display: none;
  }

  .form {
    width: 100%;
    margin-top: 30px;
  }

  .form__field + .form__field {
    margin-top: 14px;
  }

  .form__input {
    font-size: 18px;
  }

  .form__label {
    font-size: 18px;
  }

  .form__agree {
    gap: 14px;
    margin-top: 30px;
  }

  .form__agree-text {
    max-width: none;
    font-size: 12px;
  }

  .form__submit {
    height: 60px;
    margin-top: 22px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
  }

  /* --- Куки-баннер, модалка, политика --- */

  .cookies {
    gap: 20px;
    width: calc(100% - 40px);
    bottom: 24px;
    padding: 8px 20px;
  }

  .modal__title {
    padding-inline: 40px;
    font-size: 28px;
    line-height: 36px;
  }

  .modal__close {
    top: 22px;
    right: 22px;
  }

  .modal__success-title {
    font-size: 28px;
  }

  .policy {
    padding-top: 170px;
    padding-bottom: 60px;
  }

  .policy__title {
    font-size: 30px;
  }

  .policy__content {
    margin-top: 30px;
  }

  .policy__content h2 {
    margin-top: 35px;
    font-size: 20px;
  }

  .policy__content p,
  .policy__content li {
    font-size: 15px;
    line-height: 24px;
  }

  /* --- Футер --- */

  .footer {
    padding-top: 47px;
    padding-bottom: 40px;
  }

  .footer__top {
    justify-content: center;
  }

  .footer__top .logo {
    flex-direction: row;
    align-items: center;
  }

  .footer__top .logo__name {
    font-size: 22px;
  }

  .footer__top .logo__caption {
    width: 160px;
    margin-left: 15px;
    margin-top: 0;
    padding-left: 15px;
    border-left: 1px solid var(--color-accent);
  }

  .footer__nav {
    display: none;
  }

  .footer__contacts {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 52px;
  }

  .footer__contact {
    width: auto;
    align-items: center;
    text-align: center;
  }

  .footer__contact-label {
    font-size: 16px;
  }

  .footer__contact-value {
    margin-top: 12px;
    font-size: 18px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    margin-top: 45px;
    padding-top: 30px;
  }

  .footer__requisites {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 28px;
    max-width: 300px;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }

  .footer__policy {
    font-size: 16px;
  }
}
