/* ======================================================
   BUSINESS READINESS REVIEW
   ====================================================== */

body{
    background:#f5f7fb;
}

/* ======================================================
   COMMON
   ====================================================== */

.brr-wrapper{
    max-width:1000px;
    margin:40px auto;
    padding:20px;
}

h2,h3,h4{
    margin:0;
}

p{
    margin:0;
}

/* ======================================================
   WELCOME SCREEN
   ====================================================== */

.brr-user-details{
    max-width:900px;
    margin:0 auto;
}

.brr-card{
    background:#ffffff;
    border-radius:16px;
    padding:45px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.brr-card h2{
    font-size:34px;
    margin-bottom:15px;
}

.brr-intro{
    font-size:17px;
    color:#666;
    line-height:1.6;
    margin-bottom:30px;
}

.brr-features{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.brr-feature{
    background:#eef6ff;
    color:#0F4C81;
    border-left:4px solid #0F4C81;
    padding:12px 18px;
    border-radius:8px;
    font-weight:500;
}

.brr-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.brr-field{
    flex:1;
}

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

.brr-field input,
.brr-field select{
    width:100%;
    padding:14px;
    border:1px solid #d8d8d8;
    border-radius:8px;
    font-size:15px;
    box-sizing:border-box;
}

.brr-field input:focus,
.brr-field select:focus{
    outline:none;
    border-color:#0F4C81;
}

.brr-start-btn{
    background:#0F4C81;
    color:#fff;
    border:none;
    padding:16px 34px;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

.brr-start-btn:hover{
    background:#08365b;
}

/* ======================================================
   ASSESSMENT
   ====================================================== */

#brr-assessment{
    max-width:900px;
    margin:0 auto;
}

.brr-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:25px;
}

.brr-step{
    text-align:right;
    font-size:16px;
    font-weight:600;
    color:#666;
    min-width:120px;
}

.brr-step strong{
    color:#0F4C81;
    font-size:20px;
}

.brr-header h2{
    font-size:30px;
    margin-bottom:5px;
}


/* ======================================================
   PROGRESS
   ====================================================== */

.brr-progress{
    width:100%;
    height:10px;
    background:#e6e6e6;
    border-radius:30px;
    overflow:hidden;
    margin-bottom:35px;
}

.brr-progress-bar{
    width:0;
    height:100%;
    background:#0F4C81;
    transition:.3s;
}

/* ======================================================
   SECTIONS
   ====================================================== */

.brr-section{
    display:none;
}

.brr-section.active{
    display:block;
}

.brr-section-title{
    font-size:28px;
    margin-bottom:30px;
}

/* ======================================================
   QUESTION CARD
   ====================================================== */

.brr-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:12px;
    padding:25px;
    margin-bottom:20px;
}

.brr-card h4{
    font-size:18px;
    margin-bottom:25px;
    line-height:1.5;
}

/* ======================================================
   SCORE BUTTONS
   ====================================================== */

.brr-rating{
    display:flex;
    gap:15px;
}

.brr-option input{
    display:none;
}

.brr-option span{
    width:48px;
    height:48px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:2px solid #0F4C81;
    border-radius:10px;
    cursor:pointer;
    font-weight:700;
    transition:.25s;
}

.brr-option span:hover{
    background:#eef6ff;
}

.brr-option input:checked + span{
    background:#0F4C81;
    color:#fff;
}

/* ======================================================
   FOOTER
   ====================================================== */

.brr-footer{
    display:flex;
    justify-content:space-between;
    margin-top:35px;
}

.brr-button{
    padding:14px 30px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
}

.brr-button.primary{
    background:#0F4C81;
    color:#fff;
}

.brr-button.secondary{
    background:#ddd;
}

/* ======================================================
   MOBILE
   ====================================================== */

@media(max-width:768px){

    .brr-card{
        padding:25px;
    }

    .brr-row{
        flex-direction:column;
        gap:15px;
    }

    .brr-header{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .brr-rating{
        flex-wrap:wrap;
    }

    .brr-footer{
        flex-direction:column;
        gap:15px;
    }

    .brr-button{
        width:100%;
    }

}

.brr-review-table{
    width:100%;
    border-collapse:collapse;
    margin:25px 0;
}

.brr-review-table td,
.brr-review-table th{
    border:1px solid #e5e5e5;
    padding:12px 15px;
}

.brr-review-table th{
    background:#0F4C81;
    color:#fff;
}

.brr-review-table tr:nth-child(even){
    background:#fafafa;
}