@font-face {
    font-family: 'Zen';
    src: url("/front/assets/fonts/ZenKakuGothicAntique-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url("/front/assets/fonts/Raleway-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url("/front/assets/fonts/Inter_18pt-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


:root {
    /* Основные цвета */
    --color-primary: #FF0D3D;
    --color-secondary: #1A1A1A;
    --color-background: #0D0D0D;
    --color-text: #F6F6F6;

    /* Дополнительные цвета */
    --color-gray: #333333;
    --color-light-gray: #F6F6F6;
    font-family: Zen, sans-serif;

    --max-width: 1600px;
}

html, body {
    background-color: #030303;
    color: #F6F6F6;
    overflow-x: hidden;
}


section {
    max-width: 1600px;
    margin: 0 auto 100px !important;
    opacity: 0; /* Скрываем секции по умолчанию */
    transform: translateY(50px); /* Сдвигаем секции вниз */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Плавный переход */
}

section.visible {
    opacity: 1; /* Показываем секции */
    transform: translateY(0); /* Возвращаем на исходную позицию */
}

@media screen and (max-width: 700px) {
    section {
        opacity: 1 !important;
    }
}

.hidden {
    opacity: 0; /* На всякий случай, если .visible не сработает */
}

a {
    text-decoration: none;
    color: var(--color-text);
    cursor: pointer;
}

a:hover {
    color: var(--color-primary);
}

.pre-line {
    white-space: pre-line;
}

.red {
    color: #E42323;
}

.uppercase {
    text-transform: uppercase;
}

h2 {
    margin: 0;
}

.font-2 {
    font-family: 'Raleway', sans-serif;
    font-size: 60px;
}

.pos {
    max-width: var(--max-width);
    margin: 0 auto;
}


button {
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-weight: 600;
}


.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    background: none;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 18px;
    padding: 0 67px;
    border-bottom: 1px #fff solid;
    z-index: 1000;
}

.header__logo-block {
    display: flex;
    gap: 30px;
}

.header__logo {
    text-decoration: none;
    color: var(--color-text);
    display: flex;
    align-items: center;
}


.header__nav {
    margin: 0 20px;
}

.header__nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.header__nav-item {
    margin: 0;
}

.header__nav-item img {
    margin-left: 8px;
}

.header__nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 22px;
    transition: color 0.3s ease;
}

.header__nav-link:hover {
    color: var(--color-primary);
}

.header__contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__phone {
    color: var(--color-text);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header__phone:hover {
    color: var(--color-primary);
}

.header__right {
    display: flex;
    align-items: center;
    gap: 80px;
}

.header__social {
    display: flex;
    gap: 12px;
}

.header__right-phone {
    font-size: 20px;
    font-family: Inter, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.header__right-phone span {
    font-size: 16px;
}

.header__right-phone:hover {
    cursor: pointer;
    color: var(--color-primary);
}

.header__right-icons {
    display: flex;
    gap: 30px;
}

.burger-menu {
    display: none;
}

@media screen and (max-width: 430px) {
    body {
        overflow-x: hidden;
    }

    .header {
        width: 100%;
        left: 0;
        transform: none;
        justify-content: left;
        padding: 0 10px;
    }

    .header__nav-list {
        display: none;
    }

    .header__right {
        /*gap: 40px;*/
        position: relative;
        width: 55%;
    }

    .header__right-icons {
        display: none;
    }

    .header__logo-block img {
        width: 115px;
        height: 40px;
    }

    .header__right-phone {
        font-size: 16px;
    }

    .burger-menu {
        position: absolute;
        right: 0;
        width: 30px; /* Ширина кнопки бургера */
        height: 25px; /* Высота кнопки бургера */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1100; /* Выше, чем навигация, для клика */
        margin-left: auto;
    }

    .burger-menu input[type="checkbox"] {
        display: none; /* Скрываем стандартный чекбокс */
    }

    .burger-button {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1; /* Для кликабельности */
    }

    .burger-button span {
        display: block;
        width: 100%;
        height: 3px; /* Толщина линий бургера */
        background-color: #fff; /* Цвет линий бургера */
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
    }

    /* Анимация кнопки бургера при открытии/закрытии */
    .burger-menu input[type="checkbox"]:checked + .burger-button span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .burger-menu input[type="checkbox"]:checked + .burger-button span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu input[type="checkbox"]:checked + .burger-button span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .nav-mobile {
        position: fixed;
        top: 51px;
        right: -300px; /* Изначально скрыто справа */
        width: 218px;
        background-color: rgba(0, 0, 0); /* Темный фон с прозрачностью */
        display: flex;
        align-items: center;
        justify-content: center;
        transition: left 1s ease-in-out; /* Плавное появление */
        z-index: 1050; /* Должно быть выше контента, но ниже кнопки бургера */
        overflow: hidden; /* Чтобы не было прокрутки внутри меню */
        box-shadow: 0px 1px 2px 0px rgba(166, 166, 166, 0.25) inset,
        1px -1px 2px 0px rgba(166, 166, 166, 0.25) inset;
        backdrop-filter: blur(50px);
        font-size: 28px; /* Крупнее для мобилки */
        border-radius: 10px;
    }

    .burger-menu input[type="checkbox"]:checked ~ .nav-mobile {
        left: 218px; /* Показываем меню, сдвигая его влево */
    }

    .nav-mobile ul {
        list-style: none;
        margin: 0 auto;
        text-align: left;
        width: 100%; /* Убедимся, что ul занимает всю ширину для центрирования */
        padding: 0 15px;
        font-size: 28px; /* Крупнее для мобилки */

    }

    .nav-mobile li {
        margin: 30px 0; /* Отступы между пунктами меню */
    }

    .nav-mobile a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .nav-mobile a:hover {
        color: var(--color-primary); /* Используем переменную, если она определена */
    }

}


.hero {
    padding-top: 50px;
}

.hero h2 {
    font-size: 80px;
    margin-bottom: revert;
}

.title {
    font-size: 60px;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
    margin: 0;
}

.red-circle {
    display: flex;
}

.red-circle:after {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #E42323;
    margin-top: 8%;
    margin-left: 40px;
}

.advantages__container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: -50px;
}

.advantage-card {
    width: 325px;
    height: 160px;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 68, 68, 0.1), transparent);
    transition: left 0.5s ease;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 68, 68, 0.3);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.1);
}

.advantage-card__text {
    font-weight: 500;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0;
    /*padding: 49px 0;*/
    align-content: center;
    max-width: 247px;
}

.sec-1-btn, .ok {
    margin: 50px auto 0;
    display: block;
    width: 370px;
    height: 70px;
    background-color: #E42323;
    color: #030303;
    font-size: 30px;
    border-radius: 5px;
}

.hero-mob {
    display: none;
}

@media screen and (max-width: 430px) {
    section {
        margin-bottom: 50px !important;
    }

    .title {
        font-size: 30px;
        white-space: wrap;
        padding: 0 0 0 10px;
    }

    .hero {
        position: relative;
        padding-top: 100px;
    }

    .hero h2 {
        font-size: 30px;

    }

    .max-w-mob {
        max-width: 400px;
    }

    .red-circle:after {
        margin: 0;
        height: 10px;
        display: none;
    }

    .hero-mob {
        display: block;
        margin: auto;
    }

    .hero-img {
        display: none;
    }

    .advantages__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 15px;
        gap: 5px;
    }

    .advantage-card {
        width: 180px;
        height: 70px;
        justify-content: left;
        padding: 0 5px;
        margin-left: auto;
    }

    .advantages {
        padding: 0 5px;
    }

    .advantage-card__text {
        font-size: 16px;
        align-content: start;
    }

    .sec-1-btn {
        font-size: 20px;
        max-width: 270px;
        max-height: 50px;
    }

}

.info {
    height: 636px;
    background-image: url("/front/assets/img/bg/bg1.png");
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 100px;
}

.info__title {

}

.info__text-container {
    align-items: center;
}

.info__text:first-child {
    border-bottom: 1px solid #F6F6F6;
    width: 800px;

}

.info__text {
    padding: 30px 0;
    font-size: 24px;
}

@media screen and (max-width: 430px) {
    .info {
        flex-direction: column;
        height: auto;
        background-image: url("/front/assets/img/bg/bg1.1.png");
        padding-bottom: 200px;
        margin-bottom: 0;

    }

    .info__text-container {
        margin: 0 auto;
    }

    .info__text {
        font-size: 18px;
        padding: 10px;
        max-width: 380px;
        white-space: wrap;
        margin: 0;
    }
}

.benefits {
    background-image: url("/front/assets/img/bg/bg2.png");
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    padding: 0 80px 35px;
    align-items: baseline;
    border-bottom: 1px solid #F6F6F6;
}

.benefits__title {
}

.benefits__list {
    flex: 1;
    max-width: 800px;
    padding: 0 0 0 10px;
    box-sizing: border-box;
    border-left: 2px solid #F6F6F6;
}

.benefits__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    border-bottom: 1px solid #B5B5B5;
}

.benefits__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.benefits__icon {
    margin-right: 40px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.benefits__content {
    flex: 1;
}

.benefits__item-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #ffffff;
}

.benefits__item-text {
    font-size: 24px;
}

@media screen and (max-width: 430px) {
    .benefits {
        flex-direction: column;
        padding: 0 20px;
        background-image: url("/front/assets/img/bg/bg2.2.png");
        background-position: unset;
        background-repeat: repeat;
        margin-bottom: 60px;
    }

    .benefits__list {
        border-left: none;
        padding: 0;
        width: 310px;
        margin: 20px auto 0;
    }

    .benefits__icon {
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }

    .benefits__item-title {
        font-size: 18px;
        margin: 0;
        white-space: wrap;
    }

    .benefits__item-text {
        font-size: 16px;
        white-space: wrap;
    }

}

.usability {
    display: flex;
    justify-content: space-between;
    padding: 0 80px;
    margin-bottom: 260px;
    align-items: flex-start;
    height: 715px;
    border-bottom: 1px solid #C5C5C5;
}

.usability__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 99%;
}

.usability__left-bottom {
    font-size: 30px;
    display: flex;
}

.questions-clicker {
    cursor: pointer;
    text-decoration: underline;
}

.usability__title {
    margin-top: 0;
}

.usability__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 800px;
    box-sizing: border-box;
    gap: 40px;
}

.usability__item {
    width: 390px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
}

.usability__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 68, 68, 0.1), transparent); /* Красный градиент */
    transition: left 0.5s ease;
    z-index: 1;
}

.usability__item:hover::before {
    left: 100%;
}

.usability__item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 68, 68, 0.3);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.1);
}


.usability__icon {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.usability__item-text {
    font-size: 24px;
    position: absolute;
    bottom: 20px;
    margin: 0;
    left: calc(50% - 175px);
    line-height: 100%;
    color: #FFFFFF;
    z-index: 2;
}

.white-circle, .black-circle {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    z-index: 2;
}

.left-bottom_hidden {
    display: none;
}

@media screen and (max-width: 430px) {
    .usability {
        flex-direction: column;
        padding: 0 20px;
        height: auto;
        border-bottom: none;
        margin-bottom: 60px;
    }

    .usability__left-bottom {
        display: none;
    }

    .left-bottom_hidden {
        display: flex;
        height: 179px;
    }

    .text-container {
        font-size: 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .questions-clicker {
        margin-top: auto;
    }

    .questions-clicker-text {
        max-width: 270px;
        white-space: wrap;
    }

    .usability__title {
        margin-bottom: 20px;
        white-space: wrap;
        max-width: 300px;
    }

    .usability__list {
        grid-template-columns: 1fr;
        margin: 0 auto;
        justify-items: center;
        gap: 15px;
    }

    .usability__item {
        width: 320px;
        height: 150px;
    }

    .usability__icon {
        width: 30px;
        height: 30px;
    }

    .usability__item-text {
        font-size: 18px;
        left: calc(50% - 140px);
    }

    .white-circle, .black-circle {
        width: 10px;
        height: 10px;
    }
}

.equipment {
    background-image: url("/front/assets/img/bg/bg3.png");
    background-repeat: no-repeat;
    max-width: none;
    padding: 50px 0;
    margin-bottom: 200px;
}

.equipment__title {
    margin-right: auto;
    margin-left: auto;
    max-width: 1600px;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.equipment__title:after {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #E42323;
    margin-top: 20px;
    margin-left: 40px;
}

.grid {
    display: grid;
    grid-template-columns: 505px 570px 530px;
    grid-template-rows: repeat(3, auto);
    gap: 30px;
    justify-content: center;
    max-width: 1665px;
    margin: 0 auto;
}

.card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    width: 460px;
    height: 120px;
}

.card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    width: 560px;
    height: 120px;
}

.card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
    width: 530px;
    height: 120px;
}

.card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
    width: 460px;
    height: 120px;
}

.card:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
    width: 570px;
    height: 120px;
}

.card:nth-child(6) {
    grid-column: 3;
    grid-row: 2;
    width: 515px;
    height: 120px;
}

.card:nth-child(7) {
    grid-column: 1;
    grid-row: 3;
    width: 505px;
    height: 200px;

}

.card:nth-child(8) {
    grid-column: 2 / 4;
    grid-row: 3;
    width: 570px;
    height: 200px !important;
}

.card:nth-child(9) {
    grid-column: 3;
    grid-row: 3;
    width: 515px;
    height: 200px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 50px 30px ;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    backdrop-filter: blur(10px);

}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 68, 68, 0.1), transparent);
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 68, 68, 0.3);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.1);
}

.card h3 {
    font-size: 20px;
    font-weight: 400;
    margin: auto;
    color: #ffffff;
    line-height: 1.1;
}

.card p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    display: none;
}

.equipment__bottom {
    max-width: 1600px;
    margin: 15px auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    height: auto;
    font-size: 30px;
    max-height: 120px;
    align-items: center;
}

.equipment__bottom img {
    height: auto;
}

.equipment__bottom button {
    margin: auto;
}

.mob-container {
    display: flex;
    gap: 30px;
}

.equipment__show-more {
    display: none;
}

@media screen and (max-width: 430px) {
    .equipment {
        flex-direction: column;
        padding: 0 20px;
        height: auto;
        margin-bottom: 30px;
    }

    .equipment__title {
        font-size: 24px;
        white-space: wrap;
    }

    .equipment__title:after {
        margin-top: 5px;
        margin-left: 10px;
        width: 10px;
        height: 10px;
    }

    .grid {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
        gap: 15px;
    }

    .card {
        max-width: 320px;
        margin: 0 auto;
        padding: 30px;
    }

    /* Стили для карточек, которые должны быть скрыты изначально */
    .card:not([data-initial-visible="true"]) {
        display: none;
        opacity: 0;
        height: 0;
        overflow: hidden;
        transition: opacity 0.5s ease, height 0.5s ease;
    }

    /* Стили для кнопки "Смотреть еще" */
    .show-more-button {
        color: #E42323; /* Красный цвет текста */
        font-size: 24px; /* Уменьшаем размер шрифта для мобильных */
        text-decoration: none; /* Убираем подчеркивание */
        display: flex; /* Для выравнивания текста и стрелки */
        align-items: center; /* Выравнивание по центру по вертикали */
        justify-content: center; /* Выравнивание по центру по горизонтали */
        width: 100%; /* Занимаем всю доступную ширину */
        cursor: pointer; /* Курсор-указатель */
        transition: color 0.3s ease; /* Плавный переход цвета */
        margin: 0 auto; /* Центрируем кнопку */
    }

    .show-more-button:hover {
        color: #FF4444; /* Изменение цвета при наведении */
    }

    /* Стили для стрелки вниз */
    .arrow-down {
        margin-left: 10px; /* Отступ от текста */
        transition: transform 0.3s ease; /* Плавный переход для вращения */
        display: inline-block; /* Для применения трансформации */
    }

    .equipment__show-more {
        margin-bottom: 35px;
        display: block;
    }

    /* Поворот стрелки при активной кнопке (когда карточки показаны) */
    .show-more-button.active .arrow-down {
        transform: rotate(180deg);
    }

    .card:nth-child(7), .card:nth-child(8) {
        margin-top: 0;
        top: unset;
    }

    .info-text {
        font-size: 18px;
    }

    .equipment__bottom {
        max-height: unset;
        align-items: unset;
    }

    .equipment__bottom img {
        height: 185px;
    }

    .mob-container {
        flex-direction: column;
    }

    .config-btn__text {
        max-width: 270px;
        text-align: center;
    }
}

.prices {
    margin-bottom: 350px;
    background-image: url("/front/assets/img/bg/bg4.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.prices-container {
    display: flex;
    justify-content: space-between;
    z-index: 10;
    margin-top: 10px;
}

.price {
    width: 500px;
    height: 760px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.price__title {
    font-size: 24px;
    margin: 0 0 20px 0;
    font-weight: 300;
}

.price__number {
    display: flex;
    gap: 10px;
    font-size: 46px;
    font-family: 'Inter', sans-serif;
    padding-bottom: 30px;
    border-bottom: 1px solid #F6F6F6;
}

.price__additions {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 18px;
    margin-top: 30px;
    flex-grow: 1;
    margin-bottom: 30px;
}

.gap-20 {
    gap: 20px;
}

.addition__text {
    margin: 0;
    display: flex;
    gap: 20px;
}

.addition__text::before {
    content: '';
    background-image: url("/front/assets/img/svg/galochka.svg");
    width: 32px;
    height: 15px;
}

.price__btn {
    width: 100%;
    background: #E42323;
    border: none;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 270px;
    height: 40px;
    margin: auto auto 0;
    text-align: center;
    padding-bottom: 5px;
}


@media screen and (max-width: 430px) {
    .prices {
        width: auto;
        margin-bottom: 60px;
    }

    .prices__title {
        text-align: center;
        width: 250px;
        padding: 0;
        margin: 0 auto;
    }

    .prices-container {
        padding: 0 5px;
        gap: 10px;
        width: 100vw;
    }

    .price {
        width: 100vw;
    }


}


.configurator {
    border: 2px solid #333;
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0px 0px 7px 2px rgba(120, 120, 120, 0.25) inset,
    0px 0px 8px 4px rgba(120, 2, 2, 0.7) inset;
    width: 1820px;
    margin-bottom: 125px;
}

.configurator h2 {
    margin-bottom: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 130px;
}

.configurator h2::after {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #E42323;
    margin-top: 10%;
    margin-left: 120px;
}

.config-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.config-item {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 738px;
    margin: 40px auto 0;
    min-width: 550px;
}

.conf-icon {
    margin-right: 25px;
}

.config-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.config-label {
    font-size: 24px;
    margin-bottom: 10px;
}

.slider-container {
    position: relative;
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin-bottom: 10px;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: transparent;
    outline: none;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.slider-progress {
    height: 100%;
    background: linear-gradient(90deg, #d79797, #db2424);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    color: #F6F6F6;
    margin-top: 5px;
}

.config-numb {
    font-size: 18px;
    font-weight: bold;
    color: rgba(228, 35, 35, 1);
    margin-left: 20px;
    min-width: 80px;
    text-align: right;
}

.calculate-btn {
    background: rgba(228, 35, 35, 1);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 1px;
    width: 673px;
    height: 60px;
    transition: background 0.3s ease;
    margin: 30px auto 50px;
    display: block;
    font-family: 'Raleway', sans-serif;
}

.calculate-btn:hover {
    background: #ff3333;
}

.calculate-btn:active {
    transform: translateY(1px);
}

.max-w-1200 {
    max-width: 1200px;
    margin-bottom: 100px;
}

@media screen and (max-width: 430px) {
    .configurator {
        width: 90%;
        max-width: 400px;
        padding: 20px 10px;
        margin: auto auto 35px;
    }

    .configurator h2 {
        margin-left: 0;
        white-space: wrap;
    }

    .configurator__title span {
        margin-left: 0;
    }

    .config-wrapper {
        grid-template-columns: 1fr;
    }

    .config-item {
        margin: 0 auto 15px;
        gap: 20px;
        max-width: 300px;
    }

    .config-label {
        font-size: 18px;
        white-space: wrap;
    }

    .conf-icon {
        width: 47px;
        height: 40px;
        margin: 0;
    }

    .config-numb {
        margin-left: 0;
        min-width: unset;
    }

    .config-content {
        max-width: 240px;
    }

    .calculate-btn {
        max-width: 300px;
        font-size: 20px;
    }

    .max-w-1200 {
        justify-content: center;
    }
}

.specialists {
    margin: 250px auto 0 auto;
}

.section-title {
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-title::after {
    content: '';
    width: 20px;
    height: 20px;
    background-color: #ff4444;
    border-radius: 50%;
}

.specialists-grid {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 40px;
    max-width: 1000px;
}

.specialist-card {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.specialist-photo {
    object-fit: cover;
    display: block;
    width: 500px;
    height: 500px;
    filter: brightness(0.6);
}

.specialist-info {
    margin-top: -100px;
    padding: 24px;
    position: relative;
}

.specialist-name {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #fff;
    margin-top: 0;
}

.specialist-position {
    font-size: 16px;
    color: rgba(246, 246, 246, 1);
    font-weight: 400;
    margin: 0;
}

@media screen and (max-width: 430px) {
    .specialists {
        margin: 60px auto;
    }

    .specialist-card {
        width: 340px;
        height: 340px;
        margin: 0 auto;
    }

    .specialist-photo {
        max-width: 340px;
        max-height: 340px;
        border-radius: 10px;
    }

    .prices-container.swiper {
        padding-bottom: 40px;
    }

    .prices-container .swiper-slide {
        width: 280px;
        flex-shrink: 0;
    }

    .swiper-pagination {
        bottom: 10px !important;
    }

    .swiper-pagination-bullet {
        background: #fff !important;
        opacity: 0.5 !important;
    }

    .swiper-pagination-bullet-active {
        opacity: 1 !important;
        background: #ff4444 !important; /* замените на ваш цвет акцента */
    }
}

.reuse-section {
    margin-top: 250px;
    height: 500px;
}

.reuse-item {
    border: none;
    margin-bottom: 40px;
}

.reuse__item-text {
    font-size: 30px;
}

@media screen and (max-width: 430px) {
    .reuse-section {
        flex-direction: column;
        margin-top: 60px;
        background-image: url("/front/assets/img/bg/bg-mob.png");
        background-size: cover;
        background-position: center;
        height: unset;
        padding: 0;
    }

    .reuse-item {
        align-items: baseline;
        margin: auto 0;
    }

    .reuse__item-text {
        font-size: 20px;
        text-transform: uppercase;
    }
}


.max-w-1600 {
    max-width: 1600px;
    margin: 0 auto;
}


.companies-logo-grid {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    gap: 10px;
    max-width: 1920px;
}

.company-logo-item {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: center;
    margin-left: 10px;
    align-items: center;
    height: 120px;
    margin-right: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    min-width: 150px;
    gap: 40px;
}

.company-logo-item:hover {
    transform: translateY(-5px);
}

.company-logo-item img {
    width: auto;
    max-width: 400px;
    max-height: 200px;
    object-fit: contain;
    margin-right: 20px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-1800px);
    }
}

.logo-track {
    display: flex;
    width: fit-content;
    animation: scroll-left 20s linear infinite;
}

.logo-set {
    display: flex;
}

.company-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media screen and (max-width: 430px) {
    .companies-logo-grid {
        max-width: 414px;
    }

    .company-logo-item {
        height: 75px;
    }

    .company-logo-item img {
        max-height: 75px;
    }
}

.clients-and-reviews-section {
    max-width: 1920px;
}

.clients-and-reviews-section h2 {
    margin-bottom: 50px;
}

.reviews {
    margin: 150px auto 100px !important;
    display: flex;
    align-items: flex-start;
    gap: 200px;
}

.reviews-title {
    min-width: 636px;
}

.reviews-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.reviews-slider {
    position: relative;
}

.reviews-slider .swiper-slide {
    width: calc(50% - 15px) !important;
    transition: filter .4s ease, transform .4s ease;
}

.reviews-slider .swiper-slide:not(.swiper-slide-active) {
    filter: blur(4px);
    opacity: .6;
}

.reviews-slider .swiper-slide-active {
    filter: none;
    opacity: 1;
}

.swiper-wrapper {

}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.review-card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    position: relative;
}

.review-card-wrapper {
    background: #FFFFFF;
    border-radius: 30px;
    padding: 10px 20px;
    min-height: 234px;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
}

.platform-icon {
    width: 162px;
    height: 26px;
    border-radius: 4px;
}

.platform-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color);
    display: none;
}

.stars {
    margin-left: auto;
    display: flex;
    gap: 2px;
}

.star {
    color: #ffa500;
    font-size: 18px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 24px;
    flex-grow: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
}

.reviewer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #555 0%, #777 100%);
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviewer-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-color);
}

.review-date {
    font-size: 13px;
    color: var(--text-secondary);
}

.read-more {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.read-more:hover {
    opacity: 0.8;
}

.swiper-button__container {
    display: flex;
    gap: 15px;
    margin-top: 32px;
}

.btn-prev,
.btn-next {
    width: 60px;
    height: 55px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F6F6F6;
    border: none;
    border-radius: 5px;
    transition: background .25s ease, transform .25s ease;
}

.btn-prev::after,
.btn-next::after {
    content: '';
    width: 15px;
    height: 15px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
}

.btn-prev::after {
    transform: rotate(-135deg);
}

.btn-next::after {
    transform: rotate(45deg);
}


.reviews-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -40px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.6);
}

.reviews-title {
    position: relative;
}

@media screen and (max-width: 430px) {
    .reviews {
        flex-direction: column;
        gap: 0;
    }

    .reviews-title {
        max-width: 120px;
        font-size: 24px;
        padding-right: 0;
        text-align: start;
    }

    .clients-and-reviews-section h2 {
        margin-bottom: 15px;
    }

    .review-card {
        max-width: 340px;
    }

    .reviews-title h2 {
        font-size: 32px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    .swiper-button__container {
        margin-top: 0;
        justify-content: center;
        max-width: 414px;
    }


    .reviews-slider .swiper-slide:not(.swiper-slide-active) {
        filter: none;
        opacity: 1;
    }

    .reviews-slider .swiper-slide {
        width: 100% !important;
        filter: none;
        opacity: 1;
    }

}


.questions {
    max-width: var(--max-width);
    margin: 0 auto;
    box-shadow: 0px 0px 8px 4px rgba(120, 2, 2, 0.7) inset;
    border-radius: 17px;
}

.questions__container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.question-title {
    margin: 0 auto 20px;
    display: block;
    padding-left: 130px;
    padding-top: 50px;
    text-transform: uppercase;
    /*text-align: center;*/
    /*max-width: 662px;*/
}

.question {
    border-top: 1px solid;
    border-image: linear-gradient(90deg, rgba(246, 246, 246, 0) 0%, #F6F6F6 51.92%, rgba(246, 246, 246, 0) 100%) 1;
    padding: 30px 50px;
    align-items: center;
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    cursor: pointer;
}

.question:last-child {
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, rgba(246, 246, 246, 0) 0%, #F6F6F6 51.92%, rgba(246, 246, 246, 0) 100%) 1;
}

.question p {
    color: var(--color-text);
    font-size: 24px;
    margin: 0;
    flex-grow: 1;
    padding-right: 40px;
    border: none;
    display: flex;
    gap: 50px;
}

.question .line1,
.question .line2 {
    position: absolute;
    top: 50%;
    right: 40px;
    width: 25px;
    height: 4px;
    background-color: #CE0F0F;
    transition: transform 0.3s ease;
    transform-origin: center;
    transform: translateY(-50%) rotate(0deg);
}

.question .line2 {
    transform: translateY(-50%) rotate(90deg);
}

.question.active .line1 {
    transform: translateY(-50%) rotate(45deg);
}

.question.active .line2 {
    transform: translateY(-50%) rotate(-45deg);
}

.answer {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

.answer p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: normal;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
}

.question.active + .answer {
    padding-top: 15px;
    padding-bottom: 15px;
}

@media screen and (max-width: 430px) {
    .question-title {
        text-transform: uppercase;
        font-size: 24px;
        text-align: center;
        max-width: 265px;
        margin: 0 auto;
        padding: 35px 0;
    }

    .question {
        max-width: 414px;
        padding: 10px;
    }

    .question p {
        display: block;
        margin: 0 auto;
        font-size: 20px;
        max-width: 240px;
    }

    .answer p {
        font-size: 14px;
    }
}

.footer {
    padding: 0 0 40px;
    max-width: 1600px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: 0 auto;
    gap: 100px;
    font-size: 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.footer-phone {
    font-size: 18px;
    color: #007BFF;
    margin-bottom: 20px;
}

.footer__right-phone {
    font-size: 24px;
    font-family: Inter, sans-serif;
    gap: 7px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: baseline;
    justify-items: center;

}

.footer-col h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-col a, .footer-col p {
    color: #fff;
    display: flex;
    gap: 15px;
}

.footer-col a:hover {
    color: rgba(228, 35, 35, 1);
}

.footer-col img {
    width: auto;
    height: auto;
}

.footer-email {
    margin-top: 15px;
    color: #fff;
    text-decoration: none;
}

.address {
    width: 398px
}

.address img {
    width: 32px;
    height: 32px;
    margin: auto 0;
}

.m-0 {
    margin: 0 !important;
}

@media screen and (max-width: 430px) {
    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 18px;
        padding: 0;
    }

    .footer-col {
        align-items: center;
        gap: 15px;
    }

    .footer-col-1 {
        width: 80%;
        border-bottom: 1px solid #C5C5C599;

    }

    .footer-col-1 img {
        max-width: 250px;
        max-height: 85px;
        padding-bottom: 10px;
    }

    .address {
        display: block;
    }

    .footer-col a, .footer-col p {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    color: #e0e0e0;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    width: 1000px;
    height: 500px;
    text-align: center;
    box-sizing: border-box;
    background-size: cover;
    backdrop-filter: blur(30px);
    box-shadow: 0px 0px 7px 2px rgba(120, 120, 120, 0.25) inset,
    0px 0px 8px 4px rgba(120, 2, 2, 0.7) inset;

}

.popup-content h2 {
    font-size: 40px;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2em;
    cursor: pointer;
    color: rgba(228, 35, 35, 1);
}

.input-field {
    width: 340px;
    height: 50px;
    padding: 15px 10px;
    margin-bottom: 20px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #2c2c2c;
    color: #eee;
    font-size: 1em;
    box-sizing: border-box;
}

.input-field::placeholder {
    color: #aaa;
}

.submit-button {
    background-color: rgba(228, 35, 35, 1);
    border: none;
    border-radius: 5px;
    font-size: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 340px;
    height: 60px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.submit-button:hover {
    background-color: #cc0000;
}

.checkbox-container {
    position: relative;
    margin-bottom: 15px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
    color: #ccc;
    font-family: Raleway, sans-serif;
    font-size: 16px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #2c2c2c;
    /*border: 1px solid rgba(228, 35, 35, 1);*/
    border: 1px solid #F6F6F6;
    border-radius: 3px;
}

.checkbox-container input:checked ~ .checkmark {
    /*background-color: rgba(228, 35, 35, 1);*/
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid rgba(228, 35, 35, 1);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.privacy-link {
    color: rgba(228, 35, 35, 1);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.form input {
    text-align: center;
    font-size: 24px;
    font-family: 'Raleway', sans-serif;
}

.footer-btn {
    margin: 0;
}


.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #E42323;
    border-radius: 15px;
    box-shadow: 0 8px 32px #E42323;
    padding: 25px;
    max-width: 380px;
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease-in-out;
    backdrop-filter: blur(10px);
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-popup-text {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
}

.cookie-popup-button {
    background: linear-gradient(135deg, #E42323 0%, #c82333 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: none;
    box-shadow: 0 4px 15px #E42323;
}

.cookie-popup-button:hover {
    background: linear-gradient(135deg, #c82333 0%, #b21e2f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 51, 132, 0.6);
}

.cookie-popup-button:active {
    transform: translateY(1px);
}

.inn {
    font-size: 20px;
    padding-top: 20px;
    padding-right: 120px ;
    border-top: 1px solid #F6F6F6;
    margin-top: 24px;
    font-family: Inter sans-serif !important;
    display: block !important;
}

.inn span {
    font-family: Raleway, sans-serif;
    flex-direction: column;
}

.priv-pol {
    font-size: 20px;
    text-decoration: underline;
    margin-top: 38px;
}

.not-checked {
    border-color: red;
}

.priv-pol-2 {
    display: none !important;
}

.footer-col-1 {
    gap: 0;
    margin-top: -15px;
}

@media screen and (max-width: 430px) {
    .inn {
        display : none !important;
    }

    .priv-pol {
        display: none !important;
    }

    .priv-pol-2 {
        display: block !important;
        margin-top: 25px;
        text-decoration: underline;
        padding-bottom: 30px;
    }

}

.block {
    display: block;
    width: 100%;
    height: 100%;
}
