.mokko-wrapper{
    display:flex;
    min-height:700px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.mokko-sidebar-front{
    width:320px;
    background:#2563eb;
    color:#fff;
    padding:40px 30px;
}

.mokko-brand{
    font-size:28px;
    font-weight:700;
    margin-bottom:50px;
}

.mokko-steps{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.mokko-step{
    padding:16px 18px;
    border-radius:14px;
    background:rgba(255,255,255,0.08);
    transition:0.3s;
}

.mokko-step.active{
    background:#fff;
    color:#2563eb;
    font-weight:600;
}

.mokko-main{
    flex:1;
    padding:40px;
    background:#f8fafc;
}

.mokko-progress{
    width:100%;
    height:8px;
    background:#dbeafe;
    border-radius:999px;
    overflow:hidden;
    margin-bottom:40px;
}

#mokkoProgressBar{
    width:0%;
    height:100%;
    background:#2563eb;
    transition:0.3s;
}

.mokko-actions{
    margin-top:40px;
    display:flex;
    justify-content:space-between;
}

.mokko-btn-primary{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:14px 24px;
    border-radius:12px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
}

.mokko-btn-secondary{
    background:#fff;
    border:1px solid #ddd;
    padding:14px 24px;
    border-radius:12px;
    cursor:pointer;
}

.mokko-card-option{
    background:#fff;
    border:1px solid #eee;
    border-radius:18px;
    padding:22px;
    cursor:pointer;
    transition:0.25s;
}

.mokko-card-option:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(0,0,0,0.05);
}

@media(max-width:900px){

    .mokko-wrapper{
        flex-direction:column;
    }

    .mokko-sidebar-front{
        width:100%;
    }
}