.sq-quiz {
    font-family: inherit;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
}

/* Progress bar */
.sq-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}
.sq-progress-step {
    height: 4px;
    flex: 1;
    background: #e0e0e0;
    border-radius: 2px;
    transition: background .3s;
}
.sq-progress-step.done {
    background: #2e7d32;
}

/* Screens */
.sq-screen {
    display: none;
    animation: sqFade .3s ease;
}
.sq-screen.active {
    display: block;
}
@keyframes sqFade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Question text */
.sq-question {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 22px;
    line-height: 1.4;
}

/* DA / NE buttons */
.sq-buttons {
    display: flex;
    gap: 12px;
}
.sq-btn {
    flex: 1;
    padding: 14px;
    border: 2px solid #2e7d32;
    border-radius: 8px;
    background: #fff;
    color: #2e7d32;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    letter-spacing: .5px;
}
.sq-btn:hover {
    background: #2e7d32;
    color: #fff;
}

/* Email screen */
.sq-label {
    font-size: 13px;
    color: #555;
    margin: 0 0 14px;
    line-height: 1.6;
}
.sq-email-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    margin-bottom: 10px;
    transition: border-color .2s;
}
.sq-email-input:focus {
    outline: none;
    border-color: #2e7d32;
}
.sq-submit {
    width: 100%;
    padding: 14px;
    background: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    margin-bottom: 8px;
}
.sq-submit:hover {
    background: #1b5e20;
}
.sq-submit:disabled {
    background: #a5d6a7;
    cursor: wait;
}
.sq-privacy {
    font-size: 11px;
    color: #aaa;
    text-align: center;
    margin: 0;
}
.sq-error {
    color: #c62828;
    font-size: 13px;
    margin-top: -6px;
    margin-bottom: 8px;
    display: none;
}

/* End screens */
.sq-end-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin: 0 0 10px;
}
.sq-end-text {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}
