/* ==================== СЕКЦИЯ 1: HERO (ГЛАВНЫЙ ЭКРАН) ==================== */
/* Основной блок героя с градиентным фоном */
.hero {
  background: linear-gradient(
    180deg,
    rgba(138, 222, 255, 1),
    rgba(249, 249, 249, 1) 91%
  );
  position: relative;
}
/* Контейнер героя */
.hero__container {
  padding: 100px 0 0 0;
  position: relative;
  z-index: 1;
}
/* Блок с логотипом */
.hero__logo {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
}
.hero__logo-img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
/* Контейнер для декоративных фигур */
.hero__shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 500px;
  height: 100%;
  z-index: 2;
}
/* Базовый стиль для фигур */
.shape {
  position: absolute;
  animation: hero-animation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  transition: all 1s ease;
}
/* Позиционирование фигуры 1 */
.shape1 {
  top: 15%;
  left: 9%;
}
/* Позиционирование фигуры 2 */
.shape2 {
  top: 40%;
  left: 16%;
}
/* Позиционирование фигуры 3 */
.shape3 {
  top: 25%;
  left: 24%;
}
/* Позиционирование фигуры 4 */
.shape4 {
  top: 55%;
  left: 35%;
}
/* Позиционирование фигуры 5 */
.shape5 {
  top: 15%;
  left: 51%;
}
/* Позиционирование фигуры 6 */
.shape6 {
  top: 17%;
  left: 58%;
}
/* Позиционирование фигуры 7 */
.shape7 {
  top: 18%;
  right: 23%;
}
/* Позиционирование фигуры 8 */
.shape8 {
  top: 18%;
  right: 14%;
}
/* Позиционирование фигуры 9 */
.shape9 {
  bottom: -11%;
  right: 13%;
}
/* Позиционирование фигуры 10 (ракета) */
.shape10 {
  bottom: -18%;
  right: 10%;
  animation-name: raketa-animation;
  animation-duration: 2.5s;
}
/* Размеры фигур */
.shape__img-1 {
  max-width: 160px;
  width: 100%;
}
.shape__img-2 {
  max-width: 120px;
  width: 100%;
}
.shape__img-3 {
  max-width: 130px;
  width: 100%;
}
.shape__img-4 {
  max-width: 80px;
  width: 100%;
}
.shape__img-5 {
  max-width: 100px;
  width: 100%;
}
.shape__img-6 {
  max-width: 230px;
  width: 100%;
}
.shape__img-7 {
  max-width: 60px;
  width: 100%;
}
.shape__img-8 {
  max-width: 130px;
  width: 100%;
}
.shape__img-9 {
  max-width: 150px;
  width: 100%;
}
.shape__img-10 {
  max-width: 290px;
  width: 100%;
}
/* Анимация декораций */
@keyframes hero-animation {
  from {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px) scale(1.06);
  }
  to {
    transform: translateY(0);
  }
}
/* Анимация ракеты */
@keyframes raketa-animation {
  from {
    transform: translateY(0);
  }
  50% {
    transform: rotate(7deg) scale(1.1);
  }
  to {
    transform: translateY(0);
  }
}
/* Текстовый блок героя */
.hero__text {
  margin-top: 200px;
  position: relative;
}
/* Главный заголовок */
.hero__title {
  color: black;
  font-size: 70px;
  font-weight: 900;
  line-height: 118px;
}
/* Блок с кнопкой и описанием */
.hero__button-row {
  margin-top: 70px;
  display: flex;
  gap: 70px;
  align-items: center;
}
/* Основная кнопка CTA */
.hero__btn {
  border-radius: 20px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: linear-gradient(
    90deg,
    rgba(198, 194, 254, 1) 50%,
    rgba(255, 255, 255, 1) 50%
  );
  background-size: 200% 100%;
  background-position: right bottom;
  color: rgba(0, 0, 0, 1);
  padding: 25px;
  font-size: 30px;
  font-weight: 600;
  line-height: 51px;
  transition: all 0.5s ease;
  max-width: 600px;
  width: 100%;
  border: none;
  cursor: pointer;
}
/* Эффект при наведении на кнопку */
.hero__btn:hover {
  background-position: left bottom;
  transform: scale(1.05);
}
/* Описание под кнопкой */
.hero__desc {
  color: rgba(128, 179, 255, 1);
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  max-width: 900px;
  width: 100%;
}

/* ==================== СЕКЦИЯ 2: УСЛУГИ ПРОДВИЖЕНИЯ ==================== */
/* Сетка услуг (3 колонки, 2 ряда) */
.promotion__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 25px;
}
/* Карточка услуги */
.promotion__item {
  padding: 20px 0 26px 0;
  border-radius: 20px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 326px;
  gap: 20px;
  transition: all 0.5s ease;
}
/* Заголовок услуги */
.promotion__item-title {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  font-weight: 600;
  line-height: 33px;
  transition: all 0.5s ease;
  text-align: center;
}
/* Эффекты при наведении на карточку услуги */
.promotion__item:hover {
  background: rgba(198, 194, 254, 1);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}
/* Изменение цвета текста при наведении */
.promotion__item:hover .promotion__item-title {
  color: #fff;
}
/* Картинка */
.promotion__item-img {
  transition: all 0.7s ease;
}
/* Эффект для изображения при наведении */
.promotion__item:hover .promotion__item-img {
  transform: scale(1.02);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9));
}
/* Смена иконок на белые при наведении для каждой услуги */
.promotion__item:hover .img-poisk {
  content: url("../assets/img/lyp.png");
}
.promotion__item:hover .img-obsluga {
  content: url("../assets/img/hes.png");
}
.promotion__item:hover .img-smm {
  content: url("../assets/img/mesendd.png");
}
.promotion__item:hover .img-kontekst {
  content: url("../assets/img/kontecstnayareklama_white.png");
}
.promotion__item:hover .img-media {
  content: url("../assets/img/mediynayareklama_white.png");
}
.promotion__item:hover .img-error {
  content: url("../assets/img/error_white.png");
}

/* ==================== СЕКЦИЯ 3: ПОРТФОЛИО САЙТОВ ==================== */
/* Слайдер портфолио */
.sites__slider {
  border-radius: 20px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  padding: 12px 23px 41px 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
}
/* Элемент слайда */
.sites__item {
  max-width: 1300px;
  width: 100%;
  text-align: center;
}
/* Фикс высоты для определенного изображения */
.img-fix {
  height: 700px;
}
/* Обертка для слайдов */
.sites-slider-wrapper {
  position: relative;
  overflow: hidden;
}
/* Базовый стиль слайда */
.sites-slide {
  display: none;
  width: 100%;
  transition: opacity 0.5s ease;
}
/* Активный слайд */
.sites-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
/* Анимация появления слайда */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Кнопки навигации слайдера */
.sites-slider-prev,
.sites-slider-next {
  cursor: pointer;
  transition: transform 0.3s ease;
  max-width: 40px;
  width: 100%;
}
/* Эффект при наведении на кнопки слайдера */
.sites-slider-prev:hover,
.sites-slider-next:hover {
  transform: scale(1.1);
}
/* Заголовок слайда */
.sites__item-title {
  color: rgba(0, 0, 0, 1);
  font-size: 30px;
  font-weight: 600;
  line-height: 84px;
}
/* Изображение слайда */
.sites__item-img {
  width: 100%;
  max-height: 645px;
  height: 100%;
}
/* Кнопка "Хочу также!" */
.sites__btn {
  border-radius: 20px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
  background: rgba(198, 194, 254, 1);
  padding: 22px 55px;
  color: rgba(0, 0, 0, 1);
  font-size: 26px;
  font-weight: 500;
  margin-top: 25px;
  margin: 25px 0 10px 5px;
  transition: all 0.5s ease;
}
/* Эффект при наведении на кнопку */
.sites__btn:hover {
  transform: translateY(-3px);
  background: rgb(108, 160, 237);
}
/* Смена иконок стрелок при наведении */
.sites__slader-img1:hover {
  content: url("../assets/svg/slide-left-hover.svg");
}
.sites__slader-img2:hover {
  content: url("../assets/svg/slide-right-hover.svg");
}

/* ==================== СЕКЦИЯ 4: ЦЕНЫ ==================== */
/* Контейнер ценовых карточек */
.prices__box {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
/* Ценовая карточка */
.prices__item {
  border-radius: 30px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  padding: 34px 24px 24px 24px;
  text-align: center;
  width: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s ease;
  border: 3px solid #fff;
}
/* Эффект при наведении на ценовую карточку */
.prices__item:hover {
  transform: translateY(30px);
  border: 3px solid rgba(128, 179, 255, 1);
  box-shadow: 0px 12px 16px 0px rgba(128, 179, 255, 1);
}
/* Заголовок цены */
.prices__item-title {
  color: rgba(0, 0, 0, 1);
  font-size: 32px;
  font-weight: 600;
}
/* Подпись под ценой */
.prices__item-price {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  font-weight: 400;
}
/* Список преимуществ тарифа */
.prices__item-desc {
  list-style: disc;
  text-align: left;
  padding-left: 33px;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}
/* Элемент списка преимуществ */
.prices__item-text {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
}
/* Кнопка заказа тарифа */
.prices__btn {
  background: #c6c2fe;
  padding: 10px 25px;
  border-radius: 25px;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: 0.25s;
  margin: 0 auto;
}
/* Эффект кнопки при наведении на карточку */
.prices__item:hover .prices__btn {
  background: rgba(128, 179, 255, 1);
  color: rgba(255, 255, 255, 1);
}

/* ==================== СЕКЦИЯ 5: АКЦИИ И ФОРМА ==================== */
/* Контейнер контента акции */
.stoks__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
/* Текстовый блок с преимуществами */
.stoks__content-text {
  max-width: 550px;
  width: 100%;
  color: rgba(0, 0, 0, 1);
  font-size: 28px;
  font-weight: 400;
  line-height: 42px;
}
/* Список преимуществ */
.stoks__list {
  margin-top: 30px;
}
/* Элемент списка преимуществ */
.stoks__list-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 25px;
}
/* Декоративный элемент перед пунктом списка */
.stoks__list-item::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #000;
  font-weight: 400;
}
/* Форма заявки */
.stoks__form {
  border-radius: 25px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(128, 179, 255, 1);
  padding: 33px 70px 50px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  width: 100%;
}
/* Заголовок формы */
.stoks__form-title {
  color: rgba(255, 255, 255, 1);
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 33px;
  text-align: center;
}
/* Поля ввода формы */
.stoks__form-input,
.stoks__form-text {
  max-width: 740px;
  width: 100%;
  border-radius: 20px;
  box-shadow: inset 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(231, 241, 255, 1);
  padding: 20px 15px;
  text-align: center;
  margin-bottom: 25px;
}
/* Плейсхолдеры для полей ввода */
.stoks__form__input::placeholder,
.stoks__form__text::placeholder {
  color: rgba(128, 179, 255, 1);
  font-size: 20px;
  font-weight: 400;
}
/* Текстовая область формы */
.stoks__form__text {
  resize: vertical;
  padding: 20px 15px 10px 15px;
  line-height: 12px;
  text-align: center;
}
/* Текст соглашения */
.stoks__text {
  max-width: 590px;
  width: 100%;
  text-align: center;
  color: rgba(255, 254, 254, 1);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}
/* Кнопка отправки формы */
.stoks__btn {
  margin-top: 25px;
  padding: 11px 22px;
  border-radius: 20px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  color: rgba(102, 176, 249, 1);
  font-size: 32px;
  font-weight: 900;
  line-height: 50px;
  transition: all 0.5s;
}
.stoks__btn:hover {
  transform: translateY(5px);
}

/* ==================== СЕКЦИЯ 6: КАК МЫ РАБОТАЕМ ==================== */
.work__back {
  width: 100%;
}

/* ==================== СЕКЦИЯ 7: КОМПЛЕКС УСЛУГ ==================== */
/* Сетка комплекса услуг (3x3) */
.complex__box {
  transition: all 0.5s ease;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}
/* Карточка услуги комплекса */
.complex__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px;
  max-width: 560px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  border: 3px solid #ffffff;
  transition: all 0.4s ease;
  align-items: center;
}
/* Эффект при наведении на карточку */
.complex__item:hover {
  box-shadow: 0 12px 16px 0 #80b3ff;
  border: 3px solid #80b3ff;
}
/* Эффект для иконки при наведении */
.complex__item:hover .complex__item-icon {
  background: #80b3ff;
}
.complex__item:hover .complex__wrap {
  background: #80b3ff;
}
/* Заголовок услуги комплекса */
.complex__item-title {
  color: rgba(0, 0, 0, 1);
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
  max-width: 260px;
  width: 100%;
}
/* Обертка для иконки */
.complex__wrap {
  width: 62px;
  height: 62px;
  background: rgba(198, 194, 254, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* ==================== СЕКЦИЯ 8: ПРЕИМУЩЕСТВА ДЛЯ БИЗНЕСА ==================== */
/* Сетка преимуществ (12-колоночная сетка) */
.business__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 23px;
}
/* Карточка преимущества */
.business__item {
  grid-column: span 4;
  border-radius: 20px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgb(198, 194, 254);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* Заголовок преимущества */
.business__item-title {
  margin-bottom: 18px;
  color: black;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}
/* Описание преимущества */
.business__item-description {
  color: black;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
}

/* ==================== СЕКЦИЯ 9: ГАРАНТИИ ==================== */
/* Верхняя часть секции гарантий */
.warranty__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.warranty__top-text {
  max-width: 700px;
  width: 100%;
}
/* Заголовок */
.warranty__title {
  margin-bottom: 74px;
}
/* Описание гарантии */
.warranty__description {
  max-width: 686px;
  width: 100%;
  color: black;
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
}
.warranty__icon {
  max-width: 450px;
  width: 100%;
}
/* Форма заявки на гарантию */
.warranty__form {
  border-radius: 20px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  padding: 46px 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
/* Поле ввода телефона */
.warranty__input,
.free-promotion__input {
  border-radius: 20px;
  box-shadow: inset 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(231, 241, 255, 1);
  padding: 20px 47px 14px 47px;
  max-width: 645px;
  height: 98px;
  width: 100%;
  color: rgba(128, 179, 255, 1);
  font-size: 39px;
  font-weight: 300;
  line-height: 51px;
}
/* Плейсхолдер для поля ввода */
.warranty__input::placeholder,
.free-promotion__input::placeholder {
  color: rgba(128, 179, 255, 1);
  font-size: 39px;
  font-weight: 300;
  line-height: 51px;
}
/* Кнопка отправки формы */
.warranty__btn,
.free-promotion__btn {
  border-radius: 20px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(198, 194, 254, 1);
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: 51px;
  padding: 16px 20px;
  height: 98px;
  max-width: 645px;
  width: 100%;
}
/* Дополнительный текст гарантии */
.warranty__text {
  max-width: 1000px;
  width: 100%;
  color: rgba(128, 179, 255, 1);
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
  text-align: center;
  margin: 0 auto;
}

/* ==================== СЕКЦИЯ 10: КАЛЬКУЛЯТОР СТОИМОСТИ ==================== */
/* Иконка калькулятора */
.calculator__top-icon {
  margin-right: 80px;
}
/* Основной контент калькулятора */
.calculator__content {
  position: relative;
  min-height: 610px;
}
/* Шаги калькулятора */
.calculator__steps {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
/* Номер шага */
.calculator__number {
  padding: 15px 40px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(231, 241, 255, 1);
  color: rgba(128, 179, 255, 1);
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  border-radius: 20px 20px 0 0;
  max-width: 327px;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
}
/* Активный шаг */
.calculator__number.active {
  background: #ffffff;
  color: #000000;
  position: relative;
  z-index: 2;
}
/* Выбранный город в калькуляторе */
.calculator__city.selected {
  background: rgba(128, 179, 255, 0.1);
  border-radius: 15px;
  padding: 10px;
}
/* Общие переходы для элементов калькулятора */
.calculator__number,
.calculator__item {
  transition: all 0.3s ease;
}
/* Контейнер контента шагов */
.calculator__items {
  position: absolute;
  z-index: 3;
  top: 60px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  border-radius: 20px 20px 20px 20px;
  width: 100%;
}
/* Элемент шага */
.calculator__item {
  padding: 20px 45px 32px 40px;
  display: none;
}
/* Активный шаг */
.calculator__item.active {
  display: block;
}
/* Заголовок шага */
.calculator__item-title {
  color: black;
  font-weight: 700;
  font-size: 32px;
  line-height: 45px;
  margin-bottom: 15px;
}
/* Описание шага */
.calculator__item-description {
  color: #80b3ff;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  max-width: 600px;
  width: 100%;
  margin-bottom: 29px;
}
/* Блок выбора региона */
.calculator__region {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
/* Список городов */
.calculator__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/* Элемент города */
.calculator__city {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* Радио-кнопка выбора города */
.calculator__city input[type="radio"] {
  width: 28px;
  height: 28px;
  cursor: pointer;
}
/* Заголовок города */
.calculator__city-title {
  color: #80b3ff;
  font-weight: 400;
  line-height: 1.4;
  font-size: 24px;
  margin: 0;
}
/* Декоративная часть названия города */
.calculator__city-decor {
  color: black;
  font-weight: 700;
}
/* Блок с кнопками навигации */
.calculator__row {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  align-items: center;
}
/* Кнопка калькулятора */
.calculator__row-button {
  padding: 13px 24px;
  border-radius: 20px;
  background-color: rgb(128, 179, 255);
  color: rgb(253, 254, 255);
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* Эффект при наведении на кнопку */
.calculator__row-button:hover {
  background: #6ba0f0;
  transform: translateY(-2px);
}
/* Эффекты для кнопок назад и далее */
.calculator__btn--prev:hover {
  background-color: rgba(107, 160, 240, 0.7);
  transform: translateY(-2px);
}
.calculator__btn--next:hover {
  background: #6ba0f0;
  transform: translateY(-2px);
}

/* ==================== СЕКЦИЯ 11: КЕЙСЫ КЛИЕНТОВ ==================== */
/* Основной контент кейсов */
.cases__content {
  position: relative;
  min-height: 735px;
  z-index: 2;
}
/* Переключатель между кейсами и отзывами */
.cases__content-top {
  display: flex;
  flex-direction: row;
  gap: 34px;
}
/* Элемент переключателя */
.cases__content-item {
  padding: 16px 40px;
  font-size: 24px;
  font-weight: 500;
  line-height: 42px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(231, 241, 255, 1);
  border-radius: 20px 20px 0 0;
  color: rgba(128, 179, 255, 1);
  text-align: center;
  max-width: 490px;
  width: 100%;
}
/* Активный элемент переключателя */
.cases__content-item.active {
  background: #fff;
  color: black;
}
/* Контейнер кейсов */
.cases__items {
  position: absolute;
  z-index: 3;
  top: 60px;
  background-color: #fff;
  width: 100%;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}
/* Элемент кейса */
.cases__item {
  padding: 20px 54px 65px 41px;
}
/* Основной блок кейса */
.cases__item-box {
  display: flex;
  flex-direction: row;
  /* gap: 240px; */
  justify-content: space-between;
}
/* Левая колонка кейса */
.cases__item-left {
  max-width: 409px;
  width: 100%;
}
/* Текстовый блок кейса */
.cases__item-text {
  max-width: 450px;
  width: 100%;
}
/* Заголовок и ссылка кейса */
.cases__item-link,
.cases__item-title {
  font-size: 24px;
  line-height: 31px;
  color: black;
  font-weight: 500;
}
/* Ссылка кейса */
.cases__item-link {
  color: rgba(198, 194, 254, 1);
  font-weight: 400;
}
/* Переключатель график/скриншот */
.cases__toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  margin: 56px 0;
}
/* Toggle switch */
.cases__switch {
  position: relative;
  display: inline-block;
  width: 86px;
  height: 46px;
}
/* Скрытый input toggle */
.cases__input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* Slider toggle */
.cases__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  box-shadow: inset 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  transition: 0.3s;
}
/* Круглый элемент toggle */
.cases__slider::before {
  content: "";
  position: absolute;
  height: 36px;
  width: 36px;
  left: 4px;
  bottom: 5px;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  background: rgba(231, 241, 255, 1);
}
/* Toggle в активном состоянии */
.cases__input:checked + .cases__slider {
  background-color: rgba(128, 179, 255, 1);
}
/* Перемещение toggle при активации */
.cases__input:checked + .cases__slider::before {
  transform: translateX(42px);
}
/* Заголовок toggle */
.cases__toggle-title {
  color: rgba(198, 194, 254, 1);
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
}
/* Активный заголовок toggle */
.cases__toggle-title.active {
  color: black;
}
/* Блок "Было" */
.cases__description-before {
  margin-bottom: 29px;
}
/* Текст "Было" */
.cases__text-before {
  color: rgba(198, 194, 254, 1);
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
}
/* Контейнер показателей "Было" */
.cases__box-before {
  border-radius: 20px;
  background: rgba(231, 241, 255, 1);
  padding: 14px 25px;
}
/* Показатель "Было" */
.cases__p-before {
  color: rgba(198, 194, 254, 1);
  font-size: 24px;
  font-weight: 400;
  line-height: 51px;
}
/* Текст "Стало" */
.cases__text-after {
  color: black;
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
}
/* Контейнер показателей "Стало" */
.cases__box-after {
  border-radius: 20px;
  background: rgba(198, 194, 254, 1);
  padding: 14px 25px;
}
/* Показатель "Стало" */
.cases__p-after {
  color: black;
  font-size: 24px;
  font-weight: 400;
  line-height: 51px;
}
/* Правая колонка кейса */
.cases__item-right {
  position: relative;
  max-width: 1000px;
  width: 100%;
}
/* График кейса */
.graf {
  display: none;
  min-height: 470px;
  margin-left: 50px;
}
/* Активный график */
.graf.active {
  display: block;
}
/* Заголовок графика */
.graf__title {
  text-align: center;
  color: black;
  font-size: 24px;
  font-weight: 400;
  line-height: 31px;
  margin-top: 30px;
  margin-bottom: 20px;
}
/* Контейнер графика */
.graf__box {
  display: flex;
  gap: 31px;
}
/* Колонка с цифрами (ось Y) */
.graf__column-numbers {
  display: flex;
  flex-direction: column;
  text-align: end;
  margin-top: -5px;
  gap: 12.5px;
}
/* Цифра на оси Y */
.graf__number {
  color: rgba(198, 194, 254, 1);
  font-size: 24px;
  font-weight: 700;
}
/* Колонка с столбцами графика */
.graf__column-items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
/* Элемент столбца графика */
.graf__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
/* Линия столбца графика */
.graf__item-line {
  height: 390px;
  width: 29px;
  background: rgba(231, 241, 255, 1);
  border-radius: 20px;
  box-shadow: inset 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}
/* Значение столбца графика */
.graf__item-value {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  display: block;
  z-index: 2;
  background: #d1d9e7;
  border-radius: 10px;
}
/* Месяц до работы (серый) */
.graf__item-month.before {
  color: rgba(198, 194, 254, 1);
  font-size: 24px;
  font-weight: 400;
  line-height: 31px;
}
/* Месяц после работы (черный) */
.graf__item-month.after {
  color: black;
  font-size: 24px;
  font-weight: 400;
  line-height: 31px;
}
/* Декоративная линия под графиком */
.graf__border {
  display: flex;
  flex-direction: row;
  text-align: center;
}
/* белая линия */
.graf__border-white {
  margin-top: 5px;
  color: rgba(198, 194, 254, 1);
  border-top: 4px solid rgba(198, 194, 254, 1);
  line-height: 50px;
  max-width: 560px;
  width: 100%;
  font-size: 22px;
  font-weight: 500;
}
/* чёрная линия */
.graf__border-black {
  margin-top: 5px;
  color: black;
  border-top: 4px solid black;
  line-height: 50px;
  max-width: 390px;
  width: 100%;
  font-size: 22px;
  font-weight: 500;
}
/* Скриншот кейса */
.cases__item-img {
  display: none;
  width: 100%;
  height: 470px;
  border-radius: 15px;
  margin-top: 110px;
}
/* Активный скриншот */
.cases__item-img.active {
  display: block;
}

/* ==================== СЕКЦИЯ 12: КЛЮЧЕВАЯ ИНФОРМАЦИЯ ==================== */
/* Основной контент */
.information__content {
  position: relative;
  min-height: 470px;
  height: 100%;
}
/* Шаги с информацией */
.information__steps {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
/* Конкретный шаг с информацией */
.information__step {
  padding: 16px 40px;
  font-size: 24px;
  font-weight: 500;
  line-height: 42px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(231, 241, 255, 1);
  border-radius: 20px 20px 0 0;
  color: rgba(128, 179, 255, 1);
  text-align: center;
  max-width: 570px;
  width: 100%;
}
/* Активный шаг */
.information__step.active {
  background: white;
  color: black;
}
/* Контейнер с частями информации */
.information__items {
  position: absolute;
  z-index: 2;
  top: 58px;
  width: 100%;
}
/* Отдельная часть информации */
.information__item {
  padding: 37px 15px;
  background-color: #fff;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  border-radius: 25px;
}
/* Почему у нас дешевле(блок) */
.information__why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 27px;
}
/* Почему у нас дешевле(элемент) */
.information__because {
  padding: 16px 14px;
  max-width: 550px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  transition: all 0.5s ease;
}
/* Шар внутри значения */
.information__because-ball {
  max-width: 120px;
  width: 100%;
  height: 120px;
  background: rgb(232, 232, 232);
  box-shadow: inset 1px 10px 10px 1px rgb(173, 173, 173);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* иконка */
.information__icon {
  transition: all 0.5s ease;
  width: 80px;
  height: 80px;
}
.information__because:hover {
  background-color: #c6c2fe;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.3);
}
.information__because:hover .icon-one {
  content: url("../assets/svg/geo-hover.svg");
}
.information__because:hover .icon-two {
  content: url("../assets/svg/Star-hover.svg");
}
.information__because:hover .icon-three {
  content: url("../assets/svg/Speaker-hover.svg");
}
.information__because:hover .icon-four {
  content: url("../assets/svg/Windows-hover.svg");
}
.information__because:hover .icon-five {
  content: url("../assets/svg/brain-hover.svg");
}
.information__because:hover .icon-six {
  content: url("../assets/svg/Medal-hover.svg");
}
/* Текст элемента */
.information__because-description {
  color: black;
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
  max-width: 340px;
  width: 100%;
}

/* ==================== СЕКЦИЯ 13: ЧТО ТАКОЕ СЕО ==================== */
.seo__back {
  width: 100%;
  height: 1000px;
}

/* ==================== СЕКЦИЯ 14: ВСЁ О СЕО-ПРОДВИЖЕНИИ ==================== */
/* Основной контент секции */
.blog__content {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Элемент сетки */
.blog__item {
  background-color: #fff;
  max-width: 565px;
  width: 100%;
  height: 410px;
  border-radius: 20px;
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.4);
}
/* Второй элемент сетки(большой) */
.blog__item.big-item {
  grid-column: span 2;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Текст большого элемента */
.blog__item-title.big-title {
  font-weight: 900;
  font-size: 160px;
  line-height: 1;
  text-align: center;
  color: rgba(0, 0, 0, 0.05);
  max-width: 900px;
  width: 100%;
}

/* ==================== СЕКЦИЯ 15: ПРОДВИЖЕНИЕ БЕЗ ДОПЛАТЫ ==================== */
/* фотка в контейнере заголовка */
.free-promotion__title-img {
  margin-right: 100px;
  max-width: 250px;
  width: 100%;
}
/* Основной контент */
.free-promotion__content {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}
/* элемент контейнера */
.free-promotion__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.4);
  background-color: #fff;
  height: 410px;
  padding: 37px;
  border-radius: 50px;
  position: relative;
}
/* шаги */
.free-promotion__step {
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
  position: absolute;
  top: 40%;
  z-index: 5;
  animation-name: ball-animation;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
}
/* анимация шагов-кружков */
@keyframes ball-animation {
  from,
  to {
    box-shadow: 0;
  }
  5% {
    box-shadow: 0px 2px 8px 4px rgba(17, 0, 255, 0.05);
  }
  10% {
    box-shadow: 0px 4px 8px 4px rgba(17, 0, 255, 0.1);
  }
  50% {
    box-shadow: 0px 6px 8px 4px rgba(17, 0, 255, 0.3);
  }
  90% {
    box-shadow: 0px 4px 8px 4px rgba(17, 0, 255, 0.1);
  }
  95% {
    box-shadow: 0px 2px 8px 4px rgba(17, 0, 255, 0.05);
  }
}
/* Шар внутри шага */
.free-promotion__step-ball {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  box-shadow: inset 0px 8px 8px 4px rgba(0, 0, 0, 0.4);
}
/* Номер шага */
.free-promotion__step-number {
  font-size: 40px;
  color: #c6c2fe;
  font-weight: 900;
}
.free-promotion__step.right {
  right: -55px;
}
.free-promotion__step.left {
  left: -55px;
}
/* текст элемента */
.free-promotion__item-description {
  max-width: 400px;
  width: 100%;
  line-height: 34px;
  font-size: 25px;
  text-align: center;
}
/* Стили для 4-ого элемента */
.free-promotion-five {
  margin-top: 35px;
}
.free-promotion__item-description.four {
  margin-bottom: 30px;
}
/* контейнер с продвижением */
.free-promotion__promotion {
  background-color: #fff;
  padding: 23px 40px 46px 40px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}
/* Заголок */
.free-promotion__promotion-title {
  margin-bottom: 23px;
  line-height: 42px;
  font-size: 32px;
  text-align: center;
}
/* Форма */
.free-promotion__form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

/* ==================== СЕКЦИЯ 16: ХОТИТЕ СТАТЬ НАШИМ ПАРТНЁРОМ? ==================== */
.partner__content {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 36px;
}
.partner__list {
  max-width: 750px;
  width: 100%;
}
.partner__list-item {
  line-height: 55px;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 50px;
}
.partner__list-item:last-child {
  margin-bottom: 0;
}
.partner__form {
  padding: 10px 150px 40px 150px;
  background-color: #80b3ff;
  border-radius: 20px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
}
.partner__form-title {
  text-align: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
}
.partner__form-decor {
  line-height: 84px;
  font-size: 32px;
}
.partner__input-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}
.partner__form-input,
.partner__form-text {
  max-width: 572px;
  width: 100%;
  border-radius: 20px;
  box-shadow: inset 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(231, 241, 255, 1);
  padding: 20px 15px;
  text-align: center;
  font-size: 20px;
}
/* Плейсхолдеры для полей ввода */
.partner__form-input::placeholder,
.partner__form-text::placeholder {
  color: rgba(128, 179, 255, 1);
  font-size: 20px;
  font-weight: 400;
}
.partner__form-textarea {
  display: flex;
  justify-content: center;
}
.partner__form-text {
  max-width: 1116px;
  width: 100%;
  height: 70px;
  margin-bottom: 25px;
}
.partner__text {
  text-align: center;
  max-width: 535px;
  width: 100%;
  margin: 0 auto 50px auto;
  font-size: 14px;
  color: #fff;
}
.partner__btn {
  display: block;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  background-color: #fff;
  color: #66b0f9;
  font-weight: 800;
  font-size: 32px;
  margin: 0 auto;
  padding: 20px 30px;
  max-width: 450px;
  width: 100%;
  transition: all 0.5s ease;
}
.partner__btn:hover {
  transform: translateY(-5px);
}
/* ==================== СЕКЦИЯ 17: КАК НАС НАЙТИ? ==================== */
.search{
  padding-bottom: 0;
}
.search,
.footer__main {
  background-color: #c6c2fe;
}
.search__container {
  padding-top: 90px;
}
.search__title {
  color: #000;
  font-weight: 800;
  font-size: 64px;
}
.search__span {
  font-size: 180px;
  color: rgba(0, 0, 0, 0.1);
  font-weight: 800;
}
.search__content {
  display: flex;
  justify-content: space-between;
}
.search__text {
  font-size: 32px;
  line-height: 42px;
}
.search__text-description {
  margin-bottom: 50px;
}
.search__text-link {
  text-decoration: underline;
}
.search__right {
  max-width: 828px;
  width: 100%;
}
.search__map {
  width: 100%;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  height: 646px;
  border-radius: 20px;
  display: block;
}
.search__btn {
  display: block;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  background-color: #fff;
  color: #66b0f9;
  font-weight: 800;
  font-size: 32px;
  margin: 0 auto;
  padding: 20px 30px;
  max-width: 544px;
  width: 100%;
  transition: all 0.5s ease;
}
.search__btn:hover {
  transform: translateY(-5px);
}
