/* Основной контейнер */
.b-seo-quiz__progressbar-box .multistep-form-container {
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    position: relative;
}
.b-seo-quiz__progressbar-box .multistep-slider {
    background: #191919;
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
}

/* Слайды */
.b-seo-quiz__progressbar-box .slides-container {
    position: relative;
    overflow: hidden;
}

.b-seo-quiz__progressbar-box .slide {
    display: none;
}

.b-seo-quiz__progressbar-box .slide.active {
    display: block;
}

.b-seo-quiz__progressbar-box .slide.fade {
    animation: slideFade 0.3s ease;
}

.b-seo-quiz__progressbar-box .slide.slide {
    animation: slideIn 0.3s ease;
}

@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Заголовки */
.b-seo-quiz__progressbar-box .slide-header {
    text-align: center;
    margin-bottom: 30px;
}

.b-seo-quiz__progressbar-box .slide-header .b-seo__h3 {
    font-size: 24px;
    margin: 0 0 15px 0;
    color: #fff;
}

.b-seo-quiz__progressbar-box .step-description {
    color: #666;
    font-size: 14px;
}

/* Сетка карточек */
.b-seo-quiz__progressbar-box .options {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    justify-content: center;
}

/* Карточка выбора */
.b-seo-quiz__progressbar-box .option-card {
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    padding-top: 15px;
    padding-right: 30px;
    padding-bottom: 15px;
    padding-left: 15px;
    border: 1px solid #FFFFFF1A;
}

.b-seo-quiz__progressbar-box .option-card.selected {
    border-color: #915CE5;
    background: #915CE5;
}

.b-seo-quiz__progressbar-box .option-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #915CE533;
}
.b-seo-quiz__progressbar-box .option-card.selected .option-icon {
    background: #FFFFFF1A;
}

.b-seo-quiz__progressbar-box .option-title {
    font-weight: 600;
    font-size: 18px;
    color: #fff;
}

.b-seo-quiz__progressbar-box .option-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Форма */
.b-seo-quiz__progressbar-box .form-fields {
    margin: 20px 0;
}

.b-seo-quiz__progressbar-box .form-group {
    margin-bottom: 20px;
}

.b-seo-quiz__progressbar-box .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.b-seo-quiz__progressbar-box .form-group .required {
    color: #e74c3c;
}

.b-seo-quiz__progressbar-box .form-control {
    width: 100%;
    border: none;
    transition: all 0.2s;
    box-sizing: border-box;

    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    opacity: 1;
}

.b-seo-quiz__progressbar-box .form-control:focus {
    outline: none;
    border-color: #2fc6f6;
    box-shadow: 0 0 0 3px rgba(47,198,246,0.1);
}

.b-seo-quiz__progressbar-box textarea.form-control {
    resize: vertical;
    font-family: inherit;
}

/* Навигация */
.b-seo-quiz__progressbar-box .slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.b-seo-quiz__progressbar-box .btn-prev, .btn-next {
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;

    gap: 8px;
    border-radius: 10px;
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0;
    text-align: center;
}

.b-seo-quiz__progressbar-box .btn-prev {
    background: #915CE5;
    color: #fff;
}

.b-seo-quiz__progressbar-box .btn-prev:hover:not(:disabled) {
    background: #915CE5;
    color: #fff;
}

.b-seo-quiz__progressbar-box .btn-prev:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.b-seo-quiz__progressbar-box .btn-next {
    background: #915CE5;
    color: white;
}

.b-seo-quiz__progressbar-box .btn-next:hover:not(:disabled) {
    background: #915CE5;
    transform: translateX(2px);
}

.b-seo-quiz__progressbar-box .btn-next.btn-submit {
    background: #27ae60;
}

.b-seo-quiz__progressbar-box .btn-next.btn-submit:hover:not(:disabled) {
    background: #229954;
}

/* Индикаторы */
.b-seo-quiz__progressbar-box .step-indicators {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.b-seo-quiz__progressbar-box .indicator {
    width: 7px;
    height: 7px;
    background: #915de54d;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.2s;
}

.b-seo-quiz__progressbar-box .indicator:hover {
    background: #915CE5;
}

.b-seo-quiz__progressbar-box .indicator.active {
    background: #915CE5;
}

/* Сообщения */
.b-seo-quiz__progressbar-box .form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b-seo-quiz__progressbar-box .form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.b-seo-quiz__progressbar-box .form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Загрузчик */
.b-seo-quiz__progressbar-box .form-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.b-seo-quiz__progressbar-box .loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2fc6f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}




.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar {
    display: flex;
    align-items: stretch;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-item.last {
    flex: 0.5;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-image {
    position: relative;
    width: 100%;
    text-align: center;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-image:after {
    content: ' ';
    width: 100%;
    position: absolute;
    height: 6px;
    background: #424146;
    top: calc(50% - 3px);
    left: 50%;
    border-radius: 6px;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-item.last .b-seo-quiz__progressbar-image:after {
    left: 0;
    width: calc(100% - 3px);
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-image .arrow {
    position: absolute;
    top: 50%;
    right: -3px;
    transform: rotate(135deg);
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-image .arrow:after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    background: #424146;
    display: block;
    height: 6px;
    border-radius: 3px;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-image .arrow:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    background: #424146;
    display: block;
    height: 30px;
    border-radius: 3px;
}

.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-item:first-child .b-seo-quiz__progressbar-image:before {
    content: ' ';
    position: absolute;
    width: 100%;
    height: 6px;
    background: #424146;
    top: calc(50% - 3px);
    left: 0;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-icon {
    width: 50px;
    margin: 0 auto;
    border-radius: 50%;
    background: #424146;
    height: 50px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-item img {
    max-width: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 54px;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-svg.up {
    transform: rotate(180deg);
    top: initial;
    bottom: 50%;
}

.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-form {
    margin-top: 30px;
}

.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-slider {
    border-radius: 10px;
    padding: 40px;
    background: #191919;
    margin-top: 50px;
}





.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-item.active .b-seo-quiz__progressbar-icon {
    background: #915CE5;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-item.active .b-seo-quiz__progressbar-image:after {
    background: #915CE5;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-item.last-step.active .b-seo-quiz__progressbar-image:after {
    background: #424146;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-slider_item {
    flex-direction: column;
    align-items: center;
    display: none;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-slider_item .b-seo__h6 {
    text-align: center;
}

.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-slider_item .b-seo__h3 + .b-seo__h6 {
    margin-top: 15px;
}

.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-adaptiv {
    margin: 20px 0;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-adaptiv, .b-seo-quiz__progressbar-item.mobile-indicator {
    display: none;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-item.mobile-indicator.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-item.mobile-indicator .info {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0px;
    color: #FFFFFF80;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-item.mobile-indicator .title {
    font-weight: 700;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0;
    text-align: center;
}
.b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-item.mobile-indicator {
    font-weight: 400;
    font-size: 10px;
    line-height: 130%;
    letter-spacing: 0;
    text-align: center;
}


@media (max-width: 768px) {
    .b-seo-quiz__progressbar-box .b-seo__h4 {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-item.top-indicator span {
        display: none;
    }
    .b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-adaptiv {
        display: block;
    }
    .b-seo-quiz__progressbar-box .multistep-slider {
        margin-top: 20px;
    }

}
@media (max-width: 480px) {
    .b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-icon {
        width: 30px;
        height: 30px;
    }
    .b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-icon svg {
        max-height: 15px;
    }
    .b-seo-quiz__progressbar-box .options {
        display: flex;
        gap: 30px;
        margin: 30px 0;
        justify-content: center;
        flex-direction: column;
    }
    .b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-svg {
        height: 36px;
    }
    .b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-item:first-child .b-seo-quiz__progressbar-image:before {
        height: 4px;
        top: calc(50% - 2px);
    }
    .b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-image:after {
        height: 4px;
        top: calc(50% - 2px);
    }
    .b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-image .arrow {}
    .b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-image .arrow:before {
        width: 4px;
        height: 20px;
    }
    .b-seo-quiz__progressbar-box .b-seo-quiz__progressbar-image .arrow:after {
        width: 20px;
        height: 4px;
        border-radius: 3px;
    }
}