/* ==================== СЕКЦИЯ 1: HERO (ГЛАВНЫЙ ЭКРАН) ==================== */
/* Основной блок героя с градиентным фоном */
.hero {
    background: linear-gradient(
        180deg,
        rgba(138, 222, 255, 1),
        rgba(249, 249, 249, 1) 91%
    );
    position: relative;
}

/* Контейнер героя */
.hero__container { 
    position: relative;
    z-index: 1;
}

/* Блок с логотипом */
.hero__logo {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
}

.hero__logo-img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Контейнер для декоративных фигур */
.hero__shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 360px;
    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: 10%;
    left: 13%;
}

/* Позиционирование фигуры 2 */
.shape2 {
    top: 30%;
    left: 19%;
}

/* Позиционирование фигуры 3 */
.shape3 {
    top: 18%;
    left: 27%;
}

/* Позиционирование фигуры 4 */
.shape4 {
    top: 40%;
    left: 35%;
}

/* Позиционирование фигуры 5 */
.shape5 {
    top: 5%;
    left: 51%;
}

/* Позиционирование фигуры 6 */
.shape6 {
    top: 3%;
    left: 58%;
}

/* Позиционирование фигуры 7 */
.shape7 {
    top: 18%;
    right: 23%;
}

/* Позиционирование фигуры 8 */
.shape8 {
    top: 18%;
    right: 14%;
}

/* Позиционирование фигуры 9 */
.shape9 {
    bottom: 30%;
    right: 10%;
}

/* Позиционирование фигуры 10 (ракета) */
.shape10 {
    bottom: -1%; 
    left: 51%; 
    animation-name: raketa-animation;
    animation-duration: 2.5s;
}

/* Размеры фигур */
.shape__img-1 {
    max-width: 120px;
    width: 100%;
}

.shape__img-2 {
    max-width: 100px;
    width: 100%;
}

.shape__img-3 {
    max-width: 100px;
    width: 100%;
}

.shape__img-4 {
    max-width: 60px;
    width: 100%;
}

.shape__img-5 {
    max-width: 80px;
    width: 100%;
}

.shape__img-6 {
    max-width: 180px;
    width: 100%;
}

.shape__img-7 {
    max-width: 50px;
    width: 100%;
}

.shape__img-8 {
    max-width: 110px;
    width: 100%;
}

.shape__img-9 {
    max-width: 120px;
    width: 100%;
}

.shape__img-10 {
    max-width: 160px;
    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: 150px;
    position: relative;
}

/* Главный заголовок */
.hero__title {
    color: var(--second-color);
    font-size: 50px;
    font-weight: 900;
    line-height: 1.3;
}

/* Блок с кнопкой и описанием */
.hero__button-row {
    margin-top: 50px;
    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: 20px;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.5s ease;
    max-width: 400px;
    width: 100%;
    border: none;
    cursor: pointer;
}

/* Эффект при наведении на кнопку */
.hero__btn:hover {
    background-position: left bottom;
    transform: scale(1.02);
}

/* Описание под кнопкой */
.hero__desc {
    color: var(--primary-text-color);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    width: 100%;
}

/* ==================== СЕКЦИЯ 2: УСЛУГИ ПРОДВИЖЕНИЯ ==================== */
/* Сетка услуг (3 колонки, 2 ряда) */
.promotion__box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
}

/* Карточка услуги */
.promotion__item {
    padding: 20px 0 26px 0;
    border-radius: 20px;
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 270px;
    transition: all 0.5s ease;
}

/* Заголовок услуги */
.promotion__item-title {
    color: var(--second-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.5s ease;
    text-align: center;
}

/* Эффекты при наведении на карточку услуги */
.promotion__item:hover {
    background: rgba(198, 194, 254, 1);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

/* Изменение цвета текста при наведении */
.promotion__item:hover .promotion__item-title {
    color: #fff;
}

/* Картинка */
.promotion__item-img {
    transition: all 0.7s ease;
    max-width: 250px;
    width: 100%;
}

.img-error{
    margin-bottom: 30px;
}

/* Эффект для изображения при наведении */
.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: var(--primary-bg-color);
    padding: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}

/* Элемент слайда */
.sites__item {
    max-width: 1000px;
    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: 30px;
    width: 100%;
}

/* Эффект при наведении на кнопки слайдера */
.sites-slider-prev:hover,
.sites-slider-next:hover {
    transform: scale(1.05);
}

/* Заголовок слайда */
.sites__item-title {
    color: var(--second-color);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Изображение слайда */
.sites__item-img {
    width: 100%;
    max-height: 450px;
    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: 20px 40px;
    color: var(--second-color);
    font-size: 23px;
    font-weight: 500;
    margin-top: 25px;
    margin: 25px 0 15px 0;
    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: 15px;
}

/* Ценовая карточка */
.prices__item {
    border-radius: 25px;
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
    padding: 25px;
    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(20px);
    border: 3px solid rgba(128, 179, 255, 1);
    box-shadow: 0px 12px 16px 0px rgba(128, 179, 255, 1);
}

/* Заголовок цены */
.prices__item-title {
    color: var(--second-color);
    font-size: 28px;
    font-weight: 600;
}

/* Подпись под ценой */
.prices__item-price {
    color: inherit;
    font-size: 20px;
    font-weight: 400;
}

/* Список преимуществ тарифа */
.prices__item-desc {
    list-style: disc;
    text-align: left;
    padding-left: 25px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Элемент списка преимуществ */
.prices__item-text {
    color: inherit;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

/* Кнопка заказа тарифа */
.prices__btn {
    background: #c6c2fe;
    padding: 10px 25px;
    border-radius: 25px;
    color: inherit;
    font-weight: 600;
    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: var(--primary-text-color);
    color: var(--primary-bg-color);
}

/* ==================== СЕКЦИЯ 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: 25px;
    font-weight: 400;
    line-height: 1.4;
}

/* Список преимуществ */
.stoks__list {
    margin-top: 20px;
}

/* Элемент списка преимуществ */
.stoks__list-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
}

/* Декоративный элемент перед пунктом списка */
.stoks__list-item::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--second-color);
    font-weight: 400;
}

/* Форма заявки */
.stoks__form {
    border-radius: 25px;
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
    background: var(--primary-text-color);
    padding: 30px 50px 30px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    width: 100%;
}

/* Заголовок формы */
.stoks__form-title {
    color: var(--primary-bg-color);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 25px;
    text-align: center;
}

/* Поля ввода формы */
.stoks__form-input,
.stoks__form-text {
    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: 20px;
    font-size: 20px;
}

/* Плейсхолдеры для полей ввода */
.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;
    text-align: center;
}

/* Текст соглашения */
.stoks__text {
    max-width: 590px;
    width: 100%;
    text-align: center;
    color: rgba(255, 254, 254, 1);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
}

/* Кнопка отправки формы */
.stoks__btn {
    margin-top: 20px;
    padding: 10px 20px;
    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: 25px;
    font-weight: 700;
    line-height: 1.4;
    transition: all 0.5s;
}

.stoks__btn:hover {
    transform: translateY(3px);
}

/* ==================== СЕКЦИЯ 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: 12px;
}

/* Карточка услуги комплекса */
.complex__item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 25px;
    max-width: 450px;
    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 var(--primary-text-color);
    border: 3px solid var(--primary-text-color);
}

/* Эффект для иконки при наведении */
.complex__item:hover .complex__item-icon {
    background: var(--primary-text-color);
}

.complex__item:hover .complex__wrap {
    background: var(--primary-text-color);
}

/* Заголовок услуги комплекса */
.complex__item-title {
    color: var(--second-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    max-width: 260px;
    width: 100%;
}

/* Обертка для иконки */
.complex__wrap {
    width: 52px;
    height: 52px;
    background: rgba(198, 194, 254, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
/* иконка */
.complex__wrap-icon{
    width: 30px;
    height: 19px;
}

/* ==================== СЕКЦИЯ 8: ПРЕИМУЩЕСТВА ДЛЯ БИЗНЕСА ==================== */
/* Сетка преимуществ */
.business__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* Карточка преимущества */
.business__item {
    border-radius: 20px;
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
    background: rgb(198, 194, 254);
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Заголовок преимущества */
.business__item-title {
    margin-bottom: 18px;
    color: var(--second-color);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

/* Описание преимущества */
.business__item-description {
    color: inherit;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

/* ==================== СЕКЦИЯ 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: 50px;
}

/* Описание гарантии */
.warranty__description {
    width: 100%;
    color: var(--second-color);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.3;
}

.warranty__icon {
    max-width: 300px;
    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: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

/* Поле ввода телефона */
.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;
    width: 100%;
    color: rgba(128, 179, 255, 1);
    font-size: 25px;
    font-weight: 300;
    line-height: 1.4;
}

/* Плейсхолдер для поля ввода */
.warranty__input::placeholder,
.free-promotion__input::placeholder {
    color: rgba(128, 179, 255, 1);
    font-size: 30px;
    font-weight: 300;
    line-height: 1.2;
}

/* Кнопка отправки формы */
.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: inherit;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.3;
    padding: 16px 20px;
    max-width: 645px;
    width: 100%;
}

/* Дополнительный текст гарантии */
.warranty__text {
    max-width: 800px;
    width: 100%;
    color: var(--primary-text-color);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    margin: 0 auto;
}

/* ==================== СЕКЦИЯ 10: КАЛЬКУЛЯТОР СТОИМОСТИ ==================== */
/* Иконка калькулятора */
.calculator__top-icon {
    margin-right: 80px;
    max-width: 100px;
    width: 100%;
}

/* Основной контент калькулятора */
.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: var(--primary-text-color);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 20px 20px 0 0;
    max-width: 327px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

/* Активный шаг */
.calculator__number.active {
    background: var(--primary-bg-color);
    color: var(--second-color);
    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: var(--second-color);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 15px;
}

/* Описание шага */
.calculator__item-description {
    color: var(--primary-text-color);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3;
    max-width: 600px;
    width: 100%;
    margin-bottom: 20px;
}

/* Блок выбора региона */
.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: 23px;
    height: 23px;
    cursor: pointer;
}

.calculator__city input[type="checkbox"] {
    width: 23px;
    height: 23px;
    cursor: pointer;
}

/* Заголовок города */
.calculator__city-title {
    color: var(--primary-text-color);
    font-weight: 400;
    line-height: 1.4;
    font-size: 24px;
    margin: 0;
}

/* Декоративная часть названия города */
.calculator__city-decor {
    color: var(--second-color);
    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: var(--primary-text-color);
    color: var(--primary-bg-color);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4;
    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);
}

/* Кастомные checkbox/radio  */
#additionalList input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-text-color);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin: 0;
    flex-shrink: 0;
    outline: none;
    background: #fff;
}

#additionalList input[type="checkbox"]:hover {
    border-color: #588cdb;
}

#additionalList input[type="checkbox"]:checked {
    background-color: var(--primary-text-color);
}

#additionalList input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
}

/* Стилизация radio buttons как круглых кнопок */
.calculator__city input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 23px;
    height: 23px;
    border: 2px solid var(--primary-text-color);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    outline: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: transparent;
}

.calculator__city input[type="radio"]:hover {
    border-color: #6ba0f0;
}

.calculator__city input[type="radio"]:checked {
    background-color: var(--primary-text-color);
}

.calculator__city input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    background-color: #fff;
    border-radius: 50%;
}

/* Для чекбоксов на шаге 5 - оставляем как есть или делаем квадратными */
.calculator__city input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 23px;
    height: 23px;
    border: 2px solid var(--primary-text-color);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    outline: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: transparent;
}

.calculator__city input[type="checkbox"]:hover {
    border-color: #6ba0f0;
}

.calculator__city input[type="checkbox"]:checked {
    background-color: var(--primary-text-color);
}

.calculator__city input[type="checkbox"]:checked::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

/* ==================== СЕКЦИЯ 12: КЛЮЧЕВАЯ ИНФОРМАЦИЯ ==================== */
/* Основной контент */
.information__content {
    position: relative;
    min-height: 470px;
    height: 100%;
}

/* Шаги с информацией */
.information__steps {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
    position: relative;
    padding-bottom: 5px; 
}

/* Конкретный шаг с информацией */
.information__step {
    padding: 16px 40px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6;
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
    background: var(--primary-bg-color);
    border-radius: 20px 20px 0 0;
    color: var(--second-color);
    text-align: center;
    max-width: 570px;
    width: 100%;
    cursor: pointer;
    z-index: 1;
}

/* Активный шаг */
.information__step.active {
      color: var(--primary-text-color); /* Активная - синяя */
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25); 
    transform: translateY(-5px); /* Поднимаем вверх */
    position: relative;
}

/* Контейнер с частями информации */
.information__items {
     position: absolute;
    z-index: 2;
    top: 58px; /* Смещение, чтобы подлезть под вкладки */
    width: 100%;
}

/* Отдельная часть информации */
.information__item {
    padding: 30px 20px;
    background-color: #fff;
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    display: none;
}

.information__item.active {
    display: block;
}



/* Почему у нас дешевле(блок) */
.information__why {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}

/* Почему у нас дешевле(элемент) */
.information__because {
    padding: 16px 14px;
    max-width: 550px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0px 4px 10px 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: 100px;
    width: 100%;
    height: 100px;
    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: 70px;
    height: 70px;
}

.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: var(--second-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    max-width: 340px;
    width: 100%;
}

/* ==================== СЕКЦИЯ 13: ЧТО ТАКОЕ СЕО ==================== */
.seo__back {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ==================== СЕКЦИЯ 14: ВСЁ О СЕО-ПРОДВИЖЕНИИ ==================== */
/* Основной контент секции */
.blog__content {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* Элемент сетки */
.blog__item {
    background-color: #fff;
    max-width: 565px;
    width: 100%;
    height: 250px;
    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: 90px;
    line-height: 1;
    text-align: center;
    color: rgba(0, 0, 0, 0.05);
}

/* ==================== СЕКЦИЯ 15: ПРОДВИЖЕНИЕ БЕЗ ДОПЛАТЫ ==================== */
/* фотка в контейнере заголовка */
.free-promotion__title-img {
    margin-right: 100px;
    max-width: 150px;
    width: 100%;
}

/* Основной контент */
.free-promotion__content {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    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: var(--primary-bg-color);
    padding: 30px;
    border-radius: 50px;
    position: relative;
    height: 300px;
}

.free-promotion__item-img{
    max-width: 170px;
    width: 100%;
}

/* шаги */
.free-promotion__step {
    background-color: var(--primary-bg-color);
    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: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-bg-color);
    box-shadow: inset 0px 8px 8px 4px rgba(0, 0, 0, 0.4);
}

/* Номер шага */
.free-promotion__step-number {
    font-size: 30px;
    color: #c6c2fe;
    font-weight: 900;
}

.free-promotion__step.right {
    right: -45px;
}

.free-promotion__step.left {
    left: -45px;
}

/* текст элемента */
.free-promotion__item-description {
    max-width: 400px;
    width: 100%;
    line-height: 1.4;
    font-size: 23px;
    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: 30px 40px;
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

/* Заголок */
.free-promotion__promotion-title {
    margin-bottom: 20px;
    line-height: 1.2;
    font-size: 28px;
    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__content-img{
    max-width: 300px;
    height: 250px;
    width: 100%;
}

.partner__list {
    max-width: 800px;
    width: 100%;
}

.partner__list-item {
    line-height: 1.4;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 30px;
}

.partner__list-item:last-child {
    margin-bottom: 0;
}

.partner__form {
    padding: 40px 70px;
    background-color: var(--primary-text-color);
    border-radius: 25px;
    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;
    line-height: 1.4;
}

.partner__form-decor {
    line-height: 1.6;
    font-size: 25px;
}

.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: var(--primary-bg-color);
    padding: 20px 15px;
    text-align: center;
    font-size: 20px;
}

/* Плейсхолдеры для полей ввода */
.partner__form-input::placeholder,
.partner__form-text::placeholder {
    color: var(--primary-text-color);
    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 30px auto;
    font-size: 16px;
    color: var(--primary-bg-color);
    line-height: 1.4;
}

.partner__btn {
    display: block;
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    background-color: var(--primary-bg-color);
    color: var(--primary-text-color);
    font-weight: 800;
    font-size: 25px;
    margin: 0 auto;
    padding: 20px 30px;
    max-width: 380px;
    width: 100%;
    transition: all 0.5s ease;
}

.partner__btn:hover {
    transform: translateY(-5px);
}

/* ==================== СЕКЦИЯ 17: КАК НАС НАЙТИ? ==================== */
.search{
    background-color: #c6c2fe;
    margin-top: 80px;
}


.search__title {
    color: var(--second-color);
    font-weight: 800;
    font-size: 40px;
}

.search__span {
    font-size: 80px;
    color: rgba(0, 0, 0, 0.1);
    font-weight: 800;
}

.search__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search__text {
    font-size: 25px;
    line-height: 1.6;
}

.search__text-description {
    margin-bottom: 30px;
}

.search__text-link {
    text-decoration: underline;
}

.search__right {
    max-width: 600px;
    width: 100%;
}

.search__map {
    width: 100%;
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
    height: 500px;
    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: var(--primary-bg-color);
    color: var(--primary-text-color);
    font-weight: 800;
    font-size: 25px;
    margin: 0 auto;
    padding: 20px 30px;
    line-height: 1.3;
    max-width: 480px;
    width: 100%;
    transition: all 0.5s ease;
}

.search__btn:hover {
    transform: translateY(-5px);
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f0f6ff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #80B3FF;
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    fill: #80B3FF;
}

.modal-close:hover svg {
    fill: #fff;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-right: 50px;
}

.modal-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.modal-description ul {
    margin: 15px 0;
    padding-left: 25px;
}

.modal-description li {
    margin-bottom: 10px;
}

.modal-description strong {
    color: #80B3FF;
}

/* Стили для элементов комплекса */
.complex__item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.complex__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(128, 179, 255, 0.3);
}

.complex__item:hover .complex__wrap-icon {
    transform: scale(1.1);
}





/* ==================== СТРАНИЦЫ: ВОПРОСЫ И УСЛУГИ ==================== */

/* Общий фон страницы (немного темнее основного фона, чтобы выделить контент) */
.questions-page,
.services-page {
    background: #e8f2ff; /* Светло-голубой фон страницы */
    padding: 40px 0 80px;
    min-height: 80vh;
}

/* Блок хлебных крошек (используем стиль из base.css) */
.crumbs {
    margin-bottom: 20px;
}

/* Контейнер для контента внутри страниц */
.questions-container,
.services-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Синяя шапка заголовка */
.page-header {
    background: linear-gradient(90deg, var(--primary-text-color) 0%, rgba(255,255,255,1) 100%);
    padding: 15px 20px;
    border: 2px solid var(--primary-text-color);
    border-radius: 0; /* Или var(--border-radius) если есть */
    margin-bottom: 30px;
}

.page-header h1 {
    color: #fff; /* Белый текст на синем фоне */
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

/* Белый блок контента */
.page-content {
    background: var(--primary-bg-color);
    border: 2px solid var(--primary-text-color);
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Картинка по центру */
.page-image {
    text-align: center;
    margin: 30px 0 50px;
}

.page-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* Список ссылок (Услуги/Вопросы) */
.page-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 800px; /* Ограничиваем ширину списка */
    margin: 0 auto; /* Центрируем список */
}

.page-list li {
    background: #f0f8ff; /* Очень светло-голубой фон */
    border: 1px solid #d0e4f7;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-list li:hover {
    background: #e0f0ff;
    transform: translateX(5px);
    border-color: var(--primary-text-color);
}

.page-list li a {
    display: block;
    padding: 15px 20px;
    color: var(--second-color);
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.4;
}

.page-list li:hover a {
    color: var(--primary-text-color);
    font-weight: 600;
}

/* ==================== АДАПТИВНОСТЬ ==================== */

@media (max-width: 1024px) {
    .page-content {
        padding: 30px;
    }
    .page-list li a {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .questions-page,
    .services-page {
        padding: 20px 0 60px;
    }
    .page-header h1 {
        font-size: 24px;
    }
    .page-content {
        padding: 20px;
    }
    .page-image {
        margin: 20px 0 30px;
    }
    .page-image img {
        max-width: 300px;
    }
    .page-list li a {
        font-size: 16px;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 10px 15px;
        border-width: 1px;
    }
    .page-header h1 {
        font-size: 20px;
    }
    .page-content {
        padding: 15px;
        border-width: 1px;
    }
    .page-list li a {
        font-size: 15px;
        padding: 10px;
    }
}

@media (max-width: 390px) {
    .page-header h1 {
        font-size: 18px;
    }
    .page-image img {
        max-width: 200px;
    }
    .page-list li a {
        font-size: 14px;
    }
}


