/*==================================
    RESET
==================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#1c1c1c;
    line-height:1.6;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

button{
    border:none;
    cursor:pointer;
    font-family:'Poppins',sans-serif;
}

input,
select,
textarea{
    font-family:'Poppins',sans-serif;
    outline:none;
}

.screen{
    display:none;
    min-height:100vh;
}

.screen.active{
    display:flex;
    justify-content:center;
    align-items:center;
}

.container{
    width:100%;
    max-width:840px;
    margin:auto;
    padding:60px 20px;
}
.assessment-wrapper {
    width: 100%;
    max-width: 100%;
}
#restartBtn{
    display: none;
}

/*==================================
    INTRO SCREEN
==================================*/

#introScreen{
 
    text-align: center;
}

.top-title{
    display:inline-block;
    padding:8px 18px;
    background:#eaf4ff;
    color:#0a66c2;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:30px;
    letter-spacing:.5px;
}

#introScreen h1{
    font-size:56px;
    font-weight:800;
    color:#101828;
    line-height:1.15;
    margin-bottom:25px;
}

.subtitle {
    font-size: 18px;
    color: #667085;
    margin-bottom: 30px;
    text-align: center;
    display: block;
    width: 100%;
}

.info-box{
    background:rgb(248, 249, 252);
    border-radius:20px;
    padding:35px;
    border:1px solid #edf0f5;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    margin-bottom:35px;
}

.info-box p{
    font-size:15px;
    color:#475467;
    line-height:1.8;
}

.small-text{
    font-size:15px;
    color:#98a2b3;
    margin-bottom:35px;
}


/*==================================
    BUTTON
==================================*/

.primary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 45px;
    border-radius:60px;
    background:#0057ff;
    color:#fff;
    font-size:18px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 15px 30px rgba(0,87,255,.25);
}

.primary-btn:hover{
    background:#003fc2;
    transform:translateY(-2px);
}

.bottom-text{
    margin-top:25px;
    color:#98a2b3;
    font-size:15px;
}


/*==================================
    QUESTION SCREEN
==================================*/

#questionScreen{
    background:#ffffff;
    flex-direction:column;
}

.question-header{
    width:100%;
    padding:25px 50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #eef2f6;
    background:#fff;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:700;
    color:#111827;
}

.logo-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#0057ff;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:18px;
    font-weight:700;
}

.question-header a{
    color:#667085;
    font-weight:500;
}

.progress{
    width:100%;
    height:8px;
    background:#edf2f7;
}

.progress-fill{
    width:10%;
    height:100%;
    background:#0057ff;
    transition:.4s;
}

.question-container {
    width: 100%;
    max-width: 720px;
    margin: auto;
    padding: 70px 20px;
    text-align: center;
}

.question-count{
    color:#667085;
    font-size:15px;
    margin-bottom:20px;
}

.question-container h2 {
    font-size: 26px;
    line-height: 1.35;
    margin-bottom: 45px;
    color: #111827;
    font-weight: 700;
}

/*==================================
    ANSWERS
==================================*/

#answersContainer{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.answer-card{
display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    text-align: left;
    background: rgb(255, 255, 255);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 13px 16px;
    cursor: pointer;
    box-shadow: rgba(15, 23, 42, 0.05) 0px 1px 2px, rgba(15, 23, 42, 0.06) 0px 3px 12px;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
    font-family: inherit;
    min-height: 60px;
}

.answer-card:hover{
    border-color:#0057ff;
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,87,255,.08);
}

.answer-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 7px;
    background: rgb(238, 242, 247);
    color: rgb(51, 65, 85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14.5px;
    font-weight: 700;
}

.answer-content h4 {
    font-size: 15px;
    margin-bottom: 0px;
    color: #101828;
    font-weight: 800;
}
.answer-content p {
    font-weight: 500;
    font-size: 13.5px;
    line-height: 1.45;
    color: rgb(100, 116, 139);
}
.question-footer{
    margin-top:35px;
    color:#98a2b3;
    text-align:center;
}

/*==================================
    RESULT SCREEN
==================================*/

#resultScreen{
    background:#f6f8fb;
    text-align:center;
}

#resultScreen .container{
    max-width:900px;
}

.score-circle{
    position:relative;
    width:220px;
    height:220px;
    margin:40px auto;
}

.score-circle svg{
    transform:rotate(-90deg);
}

.bg-circle{
    fill:none;
    stroke:#e8edf4;
    stroke-width:12;
}

.progress-circle{
    fill:none;
    stroke:#0057ff;
    stroke-width:12;
    stroke-linecap:round;
    stroke-dasharray:534;
    stroke-dashoffset:534;
    transition:1s ease;
}

.score-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.score-text h2{
    font-size:64px;
    font-weight:700;
    color:#111827;
    line-height:1;
}

.score-text span{
    color:#667085;
    font-size:15px;
}

#resultTitle{
    font-size:42px;
    font-weight:700;
    margin-top:10px;
    color:#101828;
}

#resultDescription{
    max-width:720px;
    margin:20px auto 40px;
    color:#667085;
    font-size:18px;
    line-height:1.8;
}


/*==================================
    BLOCKING GAPS
==================================*/

.blocking-box{
    background:#fff;
    border-radius:18px;
    padding:35px;
    margin-top:40px;
    text-align:left;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.blocking-box h4{
    margin-bottom:25px;
    font-size:20px;
    color:#101828;
}

.block-item{
    padding:18px 22px;
    border:1px solid #e5e7eb;
    border-radius:14px;
    margin-bottom:18px;
    transition:.3s;
}

.block-item:hover{
    border-color:#0057ff;
    transform:translateY(-2px);
}

.block-item:last-child{
    margin-bottom:0;
}

.block-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.block-title h5{
    font-size:18px;
    color:#101828;
}

.score-badge{
    background:#0057ff;
    color:#fff;
    padding:6px 14px;
    border-radius:25px;
    font-size:13px;
    font-weight:600;
}

.block-item p{
    color:#667085;
    line-height:1.7;
}


/*==================================
    EMAIL FORM
==================================*/

#emailScreen{
    background:#f6f8fb;
}

.form-container{
    max-width:650px;
}

.form-container h2{
    text-align:center;
    font-size:34px;
    margin-bottom:15px;
    color:#101828;
}

.form-container>p{
    text-align:center;
    color:#667085;
    margin-bottom:45px;
}

.form-group{
    margin-bottom:25px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-size:15px;
    font-weight:600;
    color:#344054;
}

.form-group input,
.form-group select{
    width:100%;
    height:58px;
    border:1px solid #d0d5dd;
    border-radius:12px;
    padding:0 18px;
    font-size:16px;
    transition:.3s;
     border-color:#0057ff;
}

.form-group textarea{
    width:100%;
    border:1px solid #d0d5dd;
    border-radius:12px;
    padding:18px;
    font-size:16px;
    resize:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#0057ff;
    box-shadow:0 0 0 4px rgba(0,87,255,.12);
}

#assessmentForm .primary-btn{
    width:100%;
    margin-top:10px;
}


/*==================================
    SUCCESS MESSAGE
==================================*/

.success-box{
    background:#ffffff;
    padding:50px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 20px 40px rgba(0,0,0,.06);
}

.success-box i{
    font-size:70px;
    color:#16a34a;
    margin-bottom:20px;
}

.success-box h2{
    margin-bottom:15px;
    color:#111827;
}

.success-box p{
    color:#667085;
}


/*==================================
    ANIMATIONS
==================================*/

.fadeIn{
    animation:fadeIn .4s ease;
}

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.slideLeft{

    animation:slideLeft .35s ease;

}

@keyframes slideLeft{

    from{

        opacity:0;
        transform:translateX(40px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}


/*==================================
    RESPONSIVE
==================================*/

@media(max-width:991px){

#introScreen h1{
    font-size:42px;
}

.question-container h2{
    font-size:32px;
}

#resultTitle{
    font-size:34px;
}

.form-container h2{
    font-size:34px;
}

}

@media(max-width:767px){

.container{
    padding:40px 18px;
}

.question-header{
    padding:20px;
}

#introScreen h1{
    font-size:32px;
}

.subtitle{
    font-size:17px;
}

.question-container h2{
    font-size:28px;
}

.answer-card{
    padding:18px;
}

.answer-number{
    width:44px;
    height:44px;
    min-width:44px;
    font-size:18px;
}

.answer-content h4{
    font-size:18px;
}

.score-circle{
    width:180px;
    height:180px;
}

.score-circle svg{
    width:180px;
    height:180px;
}

.score-text h2{
    font-size:48px;
}

#resultTitle{
    font-size:28px;
}

.form-container h2{
    font-size:28px;
}

.primary-btn{
    width:100%;
}

}

#blockingList{
    background:#FDF1F1;
    border-radius:16px;
    padding:30px;
    margin-top:40px;
}

#blockingList h4{
    color:#C64516;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:20px;
}

#blockingList p{
margin: 9px 0px 0px;
    font-size: 14.5px;
    line-height: 1.5;
    font-weight: 700;
    color: rgb(127, 29, 29);
}

#blockingList .blocking-note{
    margin-top:20px;
    font-weight:600;
}