.quizProfile {
    width: 100%;
    max-width: 920px;
    margin: 32px auto;
}

.quizProfile * {
    box-sizing: border-box;
}

.quizProfile__card {
    border-radius: 28px;
    padding: 32px;
    background: linear-gradient(135deg, #025a95, #0373BE);
    color: #fff;
    box-shadow: 0 18px 45px rgba(3, 115, 190, .25);
}

.quizProfile__screen {
    display: none;
}

.quizProfile__screen.is-active {
    display: block;
}

.quizProfile__badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.quizProfile__title {
    margin: 20px 0 12px;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.05;
}

.quizProfile__text {
    margin: 0 0 24px;
    color: rgba(255,255,255,.86);
    font-size: 17px;
}

.quizProfile__button {
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #0373BE;
    font-weight: 800;
    cursor: pointer;
}

.quizProfile__button--ghost {
    background: rgba(255,255,255,.14);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
}

.quizProfile__top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.quizProfile__progress {
    width: 100%;
    height: 9px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,.18);
    margin-bottom: 28px;
}

.quizProfile__progressBar {
    height: 100%;
    width: 0%;
    background: #fff;
    transition: width .25s ease;
}

.quizProfile__question {
    margin: 0 0 24px;
    font-size: clamp(24px, 4vw, 38px);
}

.quizProfile__answers {
    display: grid;
    gap: 14px;
}

.quizProfile__answer {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: center;
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(255,255,255,.18);
    border-radius: 18px;
    background: rgba(255,255,255,.10);
    color: #fff;
    text-align: left;
    cursor: pointer;
}

.quizProfile__answer:hover {
    border-color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.16);
}

.quizProfile__answer.is-selected {
    border-color: #fff;
    background: rgba(255,255,255,.24);
}

.quizProfile__letter {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #fff;
    color: #0373BE;
    font-weight: 900;
}

.quizProfile__warning {
    min-height: 22px;
    margin-top: 14px;
    color: #dff3ff;
    font-weight: 700;
}

.quizProfile__actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 26px;
}

.quizProfile__resultTitle {
    margin: 0 0 16px;
    font-size: clamp(30px, 5vw, 52px);
}

.quizProfile__resultDescription {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,.9);
}

@media (max-width: 600px) {
    .quizProfile__card {
        padding: 24px 18px;
    }

    .quizProfile__top,
    .quizProfile__actions {
        flex-direction: column;
    }

    .quizProfile__answer {
        grid-template-columns: 38px 1fr;
    }

    .quizProfile__letter {
        width: 38px;
        height: 38px;
    }
}