.hq-quiz{

    max-width:850px;
    margin:60px auto;
    background:#fff;
    border-radius:24px;
    padding:50px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.hq-progress{

    width:100%;
    height:10px;
    background:#ececec;
    border-radius:999px;
    overflow:hidden;
    margin-bottom:30px;

}

.hq-progress-bar{

    height:100%;
    background:#22c55e;
    transition:.35s;

}

.hq-question-counter{

    color:#6b7280;
    font-size:15px;
    margin-bottom:15px;

}

.hq-question{

    font-size:42px;
    line-height:1.3;
    margin-bottom:35px;
    color:#111827;

}

.hq-answers{

    display:flex;
    flex-direction:column;
    gap:16px;

}

.hq-answer{

    width:100%;
    text-align:left;
    padding:22px 24px;
    border:2px solid #e5e7eb;
    background:#fff;
    border-radius:16px;
    cursor:pointer;
    transition:.25s;
    font-size:18px;

}

.hq-answer:hover{

    border-color:#22c55e;
    transform:translateY(-2px);

}

.hq-answer.active{

    background:#dcfce7;
    border-color:#22c55e;
    color:#166534;
    font-weight:600;

}

.hq-next{

    margin-top:35px;
    background:#22c55e;
    color:#fff;
    border:none;
    padding:18px 38px;
    border-radius:14px;
    cursor:pointer;
    font-size:17px;
    transition:.25s;

}

.hq-next:hover{

    background:#16a34a;

}

.hq-next:disabled{

    opacity:.45;
    cursor:not-allowed;

}

.hq-next:disabled:hover{

    background:#22c55e;

}

/* ===========================
   WYNIK
=========================== */

.hq-result{

    text-align:center;

}

.hq-result-icon{

    font-size:70px;
    margin-bottom:15px;

}

.hq-percent{

    font-size:72px;
    font-weight:700;
    margin:20px 0;
    color:#111827;

}

.hq-status{

    margin:30px 0;
    padding:18px;
    border-radius:14px;
    font-size:18px;
    font-weight:600;

}

.hq-status.success{

    background:#dcfce7;
    color:#166534;

}

.hq-status.error{

    background:#fee2e2;
    color:#991b1b;

}

.hq-certificate,
.hq-restart{

    margin-top:15px;
    background:#22c55e;
    color:#fff;
    border:none;
    padding:18px 34px;
    border-radius:14px;
    font-size:17px;
    cursor:pointer;
    transition:.25s;

}

.hq-certificate:hover{

    background:#16a34a;

}

.hq-restart{

    background:#2563eb;

}

.hq-restart:hover{

    background:#1d4ed8;

}

/* ===========================
   MOBILE
=========================== */

@media (max-width:768px){

    .hq-quiz{

        padding:25px;
        margin:25px 15px;

    }

    .hq-question{

        font-size:30px;

    }

    .hq-answer{

        font-size:16px;
        padding:18px;

    }

    .hq-percent{

        font-size:52px;

    }

}