/* Quiz block — matches site palette (#ED91AD / Noah / soft gray cards) */

.quiz-section {
    margin: 0 0 100px;
}

.quiz-section .quiz {
    background: #f6f5f6;
    border-radius: 20px;
    padding: 50px 60px 55px;
}

.quiz-section .quiz-progress {
    height: 4px;
    background: #e6e6e6;
    border-radius: 4px;
    margin-bottom: 35px;
    overflow: hidden;
}

.quiz-section .quiz-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: #ed91ad;
    border-radius: 4px;
    transition: width 0.35s ease;
}

.quiz-section .quiz-step {
    display: none;
}

.quiz-section .quiz-step.active {
    display: block;
}

.quiz-section .quiz-step__counter {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    padding-bottom: 15px;
    color: #bdbdbd;
    font-family: Noah, sans-serif;
}

.quiz-section .quiz-step__counter span {
    color: #ed91ad;
}

.quiz-section .quiz-step__title {
    font-family: Noah, sans-serif;
    font-size: 32px;
    line-height: 42px;
    font-weight: 400;
    color: #171717;
    margin: 0 0 30px;
}

.quiz-section .quiz-intro-title {
    font-family: Noah, sans-serif;
    font-size: 43px;
    line-height: 50px;
    font-weight: 400;
    color: #171717;
    margin: 0 0 25px;
}

.quiz-section .quiz-intro-text {
    font-size: 18px;
    line-height: 28px;
    color: #7d7d7b;
    margin: 0 0 20px;
    max-width: 820px;
}

.quiz-section .quiz-intro-text strong {
    color: #171717;
    font-weight: 700;
}

.quiz-section .quiz-step__vars {
    padding-bottom: 30px;
}

.quiz-section .form-radio {
    position: relative;
    padding-left: 33px;
    padding-bottom: 14px;
    font-size: 18px;
    line-height: 28px;
    color: #171717;
}

.quiz-section .form-radio .form-label {
    cursor: pointer;
    display: inline-block;
}

.quiz-section .form-radio .form-label:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 4px;
    left: 0;
    z-index: 0;
    background-color: #ed91ad;
    transition: 0.25s;
    border-radius: 100%;
}

.quiz-section .form-radio .form-label:after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    top: 9px;
    left: 5px;
    z-index: 0;
    background-color: #fff;
    transition: 0.25s;
    border-radius: 100%;
    opacity: 0;
}

.quiz-section .form-radio .form-control {
    position: absolute;
    left: 0;
    top: 4px;
    z-index: 1;
    width: 20px;
    height: 20px;
    border: none;
    opacity: 0;
    cursor: pointer;
}

.quiz-section .form-radio .form-control:checked + .form-label:after {
    opacity: 1;
}

.quiz-section .quiz-step__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.quiz-section .btn {
    display: inline-flex;
    padding: 28px 48px;
    border: none;
    cursor: pointer;
}

.quiz-section .btn[disabled] {
    opacity: 0.5;
    cursor: default;
}

.quiz-section .btn-ghost {
    background: transparent;
    color: #171717;
    box-shadow: none;
    border: 1px solid #e6e6e6;
    padding: 26px 40px;
}

.quiz-section .btn-ghost:hover {
    background: #fff;
    color: #171717;
}

.quiz-section .quiz-result {
    display: none;
    font-size: 18px;
    line-height: 28px;
    color: #171717;
    padding: 25px 30px;
    background: #fff;
    border-radius: 16px;
    border-left: 3px solid #ed91ad;
    margin-bottom: 25px;
}

.quiz-section .quiz-result.active {
    display: block;
}

.quiz-section .quiz-result__title {
    font-family: Noah, sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #171717;
}

.quiz-section .quiz-result__score {
    color: #ed91ad;
    font-weight: 700;
}

.quiz-section .quiz-result p {
    margin: 0 0 12px;
}

.quiz-section .quiz-result p:last-child {
    margin-bottom: 0;
}

.quiz-section .quiz-result a {
    color: #ed91ad;
    border-bottom: 1px solid rgba(237, 145, 173, 0.35);
    font-weight: 700;
}

.quiz-section .quiz-note {
    font-size: 14px;
    line-height: 22px;
    color: #7d7d7b;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .quiz-section {
        margin-bottom: 50px;
    }

    .quiz-section .quiz {
        padding: 30px 25px 35px;
        border-radius: 16px;
    }

    .quiz-section .quiz-intro-title {
        font-size: 28px;
        line-height: 36px;
    }

    .quiz-section .quiz-step__title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .quiz-section .btn {
        padding: 22px 36px;
        font-size: 16px;
    }
}
