.scq-quiz{
    width: 100%;
    max-width:100%;

    background:#F1F3FF;

    border:1px solid rgba(0,0,0,.05);

    border-radius:20px;

    padding:20px;

    box-sizing:border-box;

    font-family:'Inter',sans-serif;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.scq-quiz *{
    box-sizing:border-box;
}

/* HEADER */

.scq-header {
    background: #FFFFFF;
    border: 1px solid rgb(0 0 0 / 7%);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 18px;
}

.scq-main-title{

    font-size:22px;

    font-weight:700;

    line-height:1.2;

    color:#000000;
}

.scq-main-subtitle{

    margin-top:4px;

    font-size:13px;

    color:#666666;

    line-height:1.4;
}

/* PROGRESS */

.scq-progress{

    margin-bottom:16px;
}

.scq-progress-top{

    font-size:13px;

    font-weight:600;

    color:#000000;

    margin-bottom:8px;
}

.scq-progress-bar{

    width:100%;

    height:8px;

    background:#DCE2FF;

    border-radius:20px;

    overflow:hidden;
}

.scq-progress-fill{

    width:20%;

    height:100%;

    background:#B2FD53;

    border-radius:20px;

    transition:.3s ease;
}

/* STEP */

.scq-step{

    display:none;

}

.scq-step.active{

    display:flex;

    flex-direction:column;

}


.scq-step[data-step="5"] .scq-security{

    margin-top:5px;

}

.scq-title{

    margin:0px 0 18px;

    font-size:20px !important;

    font-weight:700 !important;

    line-height:1.3 !important;

    color:#000000 !important;
}

/* OPTIONS */

.scq-options{

    display:flex;

    flex-direction:column;

    gap:12px;
}

.scq-option{

    background:#FFFFFF;

    border:2px solid transparent;

    border-radius:10px;

    padding:16px;

    cursor:pointer;

    transition:all .2s ease;
}

.scq-option:hover{

    border-color:#B2FD53;
}

.scq-option.active{

    border-color:#B2FD53;

    box-shadow:0 0 0 3px rgba(178,253,83,.20);
}

.scq-option-title{

    font-size:15px;

    font-weight:600;

    color:#000000;

    line-height:1.4;
}

.scq-option-desc{

    margin-top:6px;

    font-size:13px;

    font-weight:500;

    color:#000000;

    opacity:.75;

    line-height:1.4;
}

/* INPUTS */

.scq-input{

    width:100%;

    height:54px;

    padding:0 16px;

    margin-bottom:12px;

    border:1px solid rgba(0,0,0,.08);

    border-radius:10px;

    background:#FFFFFF;

    color:#000000;

    font-size:15px;

    outline:none;

    transition:.2s ease;
}

.scq-input:focus{

    border-color:#B2FD53;
}

/* CONTACT METHODS */
.scq-contact-row{

    display:flex;

    gap:10px;

    margin-top:10px;

}


.scq-contact-btn {
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: .2s ease;
    border: 1px solid #e3e3e3;
}


.scq-contact-btn img{

    width:22px;

    height:22px;

    object-fit:contain;

    flex-shrink:0;

}

.scq-contact-btn svg{

    width:22px;

    height:22px;

    flex-shrink:0;
}

/* DEFAULT STATES */

.scq-contact-btn.telegram{

    background:#E8F4FD;

    color:#229ED9;

}

.scq-contact-btn.viber{

    background:#F1EEFF;

    color:#7360F2;

}

.scq-contact-btn.call{

    background:#F5FFF0;

    color:#4CAF50;

}

/* ACTIVE STATES */

.scq-contact-btn.telegram.active{

    background:#229ED9;

    color:#fff;

}

.scq-contact-btn.viber.active{

    background:#7360F2;

    color:#fff;

}

.scq-contact-btn.call.active{

    background:#4CAF50;

    color:#fff;

}



.scq-step[data-step="5"] .scq-title{

    margin-bottom:10px;

}

.scq-step[data-step="5"] .scq-input:first-of-type{

    margin-top:8px;

}

/* SECURITY */

.scq-security{

    margin-top:16px;

    padding:12px;

    background:#FFFFFF;

    border:1px solid rgba(0,0,0,.05);

    border-radius:10px;

    text-align:center;

    font-size:12px;

    color:#666666;

    line-height:1.4;
}

/* BUTTON */

.scq-next{

    width:100%;

    height:54px;

    margin-top:20px;

    border:none;

    border-radius:10px;

    background:#B2FD53;

    color:#000000;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.2s ease;
}

.scq-next:hover:not(:disabled){

    background:#A5F247;

    transform:translateY(-1px);
}

.scq-next:disabled{

    opacity:.45;

    cursor:not-allowed;
}

/* SUCCESS */

.scq-success{

    text-align:center;

    padding:30px 10px;

    color:#000000;
}

.scq-success-icon{

    font-size:72px;

    line-height:1;

    margin-bottom:20px;
}

.scq-success .scq-title{

    text-align:center;

    margin-bottom:12px;
}

.scq-success p{

    margin:0;

    font-size:15px;

    line-height:1.6;

    color:#000000;
}

/* MOBILE */

@media(max-width:480px){

    .scq-quiz{

        width:100%;

        padding:18px;
    }

    .scq-main-title{

        font-size:20px;
    }

    .scq-title{

        font-size:18px !important;
    }

    .scq-option{

        padding:14px;
    }

    .scq-contact-row{

        flex-direction:column;
    }
}




.scq-phone-error{
    display:none;

margin-top:-4px;

margin-bottom:10px;

color:#dc2626;

font-size:13px;

font-weight:500;
}