/* ==========================================================
   JSB Zoho CRM - Company Liquidation Assessment
   ========================================================== */

.jsb-assessment-wrapper{
    max-width:900px;
    margin:40px auto;
    padding:0;
    font-family:inherit;
}

.jsb-progress-wrap{
    margin-bottom:30px;
}

.jsb-progress-text{
    margin-top:10px;
    font-size:14px;
    font-weight:600;
}

.jsb-progress-bar{
    height:10px;
    background:#e5e7eb;
    border-radius:999px;
    overflow:hidden;
}

.jsb-progress-fill{
    width:0;
    height:100%;
    background:#ff5a5f;
    transition:width .3s ease;
}

.jsb-step{
    display:none;
    background:#fff;
    border-radius:16px;
    padding:35px;
    box-shadow:
        0 4px 16px rgba(0,0,0,.08);
}

.jsb-step.active{
    display:block;
}

.jsb-step h2{
    margin:0 0 25px;
    font-size:30px;
    line-height:1.2;
    font-weight:700;
}

.jsb-field{
    margin-bottom:22px;
}

.jsb-field label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    font-size:15px;
}

.jsb-field select,
.jsb-field input,
.jsb-field textarea{
    width:100%;
    min-height:52px;
    border:1px solid #d1d5db;
    border-radius:10px;
    padding:12px 15px;
    font-size:15px;
    background:#fff;
    box-sizing:border-box;
    transition:.2s;
}

.jsb-field select:focus,
.jsb-field input:focus,
.jsb-field textarea:focus{
    outline:none;
    border-color:#ff5a5f;
    box-shadow:0 0 0 3px rgba(255,90,95,.15);
}

.jsb-error{
    border-color:#dc2626 !important;
}

.jsb-navigation{
    display:flex;
    justify-content:space-between;
    gap:12px;
    margin-top:25px;
}

.jsb-prev,
.jsb-next,
.jsb-submit{
    border:none;
    border-radius:10px;
    min-height:50px;
    padding:0 24px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.2s;
}

.jsb-prev{
    background:#f3f4f6;
}

.jsb-prev:hover{
    background:#e5e7eb;
}

.jsb-next,
.jsb-submit{
    background:#ff5a5f;
    color:#fff;
}

.jsb-next:hover,
.jsb-submit:hover{
    opacity:.92;
}

.jsb-submit[disabled]{
    opacity:.6;
    cursor:not-allowed;
}

.jsb-success{
    text-align:center;
    background:#fff;
    border-radius:16px;
    padding:50px 30px;
    box-shadow:
        0 4px 16px rgba(0,0,0,.08);
}

.jsb-success h2{
    margin:0 0 15px;
    font-size:32px;
}

.jsb-success p{
    margin:10px 0;
}

@media(max-width:768px){

    .jsb-assessment-wrapper{
        padding:0 15px;
    }

    .jsb-step{
        padding:20px;
    }

    .jsb-step h2{
        font-size:24px;
    }

    .jsb-navigation{
        flex-direction:column;
    }

    .jsb-prev,
    .jsb-next,
    .jsb-submit{
        width:100%;
    }
}