*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f4f7f4;
    color:#374151;
    overflow-x:hidden;
}

/* SIDEBAR */

.sidebar{
    width:250px;
    height:100vh;

    position:fixed;
    top:0;
    left:0;

    background:white;

    border-right:1px solid #e5e7eb;

    padding:20px;

    display:flex;
    flex-direction:column;

    z-index:100;
}

.sidebar a{
    text-decoration:none;

    display:flex;
    align-items:center;
    gap:12px;

    padding:14px 16px;

    border-radius:14px;

    color:#4b5563;

    font-size:14px;
    font-weight:500;

    transition:.2s;
}

.sidebar a:hover{
    background:#f0fdf4;
    color:#16a34a;
}

.sidebar a.active{
    background:#dcfce7;
    color:#166534;
    font-weight:600;
}

/* CONTENT */

.content{
    margin-left:250px;
    padding:24px;
}

/* HERO */

.hero-dashboard{
    background:
        linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
        url('../images/kopi3.jpeg');

    background-size:cover;
    background-position:center;

    border-radius:28px;

    min-height:240px;

    padding:36px;

    display:flex;
    align-items:end;

    margin-bottom:24px;

    color:white;
}

.hero-title{
    font-size:38px;
    font-weight:800;

    margin-bottom:14px;
}

.hero-text{
    max-width:650px;

    line-height:1.8;

    color:#e5e7eb;
}

/* CARD */

.dashboard-card{
    background:white;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:24px;
    height:100%;
    box-shadow:0 4px 14px rgba(0,0,0,.04);
}

/* CARD FITUR */

.feature-card{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.feature-content{
    flex:1;
}

.feature-content h5{
    font-size:18px;
    font-weight:700;
    margin-bottom:8px;
    color:#1f2937;

}

.feature-content p{
    font-size:15px;
    line-height:1.7;
    color:#6b7280;
    margin-bottom:18px;
}

/* ICON */

.icon-box-1,
.icon-box-2,
.icon-box-3{
    width:64px;
    height:64px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
    flex-shrink: 0;
}

.icon-box-1{
    background:#dcfce7;
    color:#16a34a;
}

.icon-box-2{
    background:#dbeafe;
    color:#2563eb;
}

.icon-box-3{
    background:#ede9fe;
    color:#7c3aed;
}

/* BUTTON */

.dashboard-btn{
    height:40px;
    font-size: 13px;

    border:none;
    border-radius:14px;

    padding:0 16px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:14px;
    font-weight:600;

    color:rgb(255, 255, 255);
}

.green{
    background:#16a34a;
    color: white !important;
}

.blue{
    background:#2563eb;
}

.purple{
    background:#7c3aed;
}

/* STEP */

.step-item{
    display:flex;
    gap:14px;

    margin-bottom:20px;
}

.step-number{
    width:30px;
    height:30px;

    border-radius:50%;

    background:#16a34a;
    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:13px;
    font-weight:700;

    flex-shrink:0;
}

.step-content h5{
    font-size:16px;
    margin-bottom:6px;
}

.step-content p{
    font-size:14px;
    color:#6b7280;
    line-height:1.7;
}

/* CARA KERJA */

.cara-kerja-wrapper{
    display:flex;
    align-items:center;
    gap:20px;
}

.cara-kerja-text{
    flex:1;
}

.cara-kerja-text p{
    font-size:14px;
    line-height:1.8;
    color:#6b7280;
}

.cara-kerja-image img{
    width:180px;
}

/* RIWAYAT */

.riwayat-item{
    display:flex;
    gap:12px;
    margin-bottom:14px;
}

.riwayat-item img{
    width:40px;
    height:40px;
    border-radius:14px;
    object-fit:cover;
}

.riwayat-item h6{
    font-size:15px;
    margin-bottom:2px;
    font-weight:600;
}

/* CHART */

.chart-container{
    width:100%;
    height:320px;
}

/* =========================
SIDEBAR HELP
========================= */

.sidebar-help{
    margin-top:auto;

    background:white;

    border:1px solid #e5e7eb;

    border-radius:22px;

    padding:20px;

    text-align:center;
}

.sidebar-help img{
    width:120px;
    margin:auto;
}

.sidebar-help p{
    font-size:14px;
    line-height:1.7;
    color:#6b7280;

    margin-bottom:18px;
}

.sidebar-help .dashboard-btn{
    width:100%;
}

.btn-help-outline{
    background:white;
    border:1px solid #16a34a;

    color:#111827 !important;
}

/* JUDUL SEMUA CARD */

.dashboard-card h4{
    font-size:20px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:6px;
    color:#1f2937;

}

/* KHUSUS PANDUAN */

.step-item{
    display:flex;
    gap:12px;

    margin-bottom:14px;
    align-items:flex-start;
}

.step-number{
    width:26px;
    height:26px;

    min-width:26px;

    font-size:12px;
}

/* TEKS PANDUAN */

.step-content h5{
    font-size:15px;
    margin-bottom:2px;
    font-weight:600;
}

.step-content p{
    font-size:13px;
    line-height:1.5;
    margin:0;
}

/* CARA KERJA */

.cara-kerja-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
}

.cara-kerja-text{
    flex:1;
}

.cara-kerja-text p{
    font-size:14px;
    line-height:1.7;
}

/* ICON OTAK */

.cara-kerja-image img{
    width:120px;
    object-fit:contain;
}

/* ICON DAUN */

.icon-box-1 i,
.icon-box-2 i,
.icon-box-3 i{
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .sidebar{
        display:none;
    }

    .content{
        margin-left:0;
        padding:16px;
    }

}

@media(max-width:768px){

    .hero-dashboard{
        min-height:200px;
        padding:24px;
    }

    .hero-title{
        font-size:28px;
    }

    .cara-kerja-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .cara-kerja-image img{
        width:140px;
    }

}