/*
|--------------------------------------------------------------------------
| PAGE
|--------------------------------------------------------------------------
*/

.panduan-page{
    overflow:hidden;
}

/*
|--------------------------------------------------------------------------
| HERO
|--------------------------------------------------------------------------
*/

.panduan-hero{
    position:relative;

    background:linear-gradient(
        135deg,
        #1d4ed8 0%,
        #2563eb 50%,
        #3b82f6 100%
    );

    padding:90px 20px 180px;

    overflow:hidden;
}

.panduan-hero::before{
    content:'';

    position:absolute;
    inset:0;

    background-image:
        radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);

    background-size:40px 40px;
}

.hero-content{
    position:relative;
    z-index:2;

    max-width:900px;
    margin:auto;

    text-align:center;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.2);

    color:#fff;

    padding:10px 22px;

    border-radius:999px;

    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

    margin-bottom:28px;
}

.hero-title{
    color:#fff;

    font-size:clamp(38px,6vw,70px);
    line-height:1.15;
    font-weight:800;

    margin-bottom:22px;
}

.hero-desc{
    color:rgba(255,255,255,.88);

    max-width:760px;
    margin:auto;

    line-height:1.9;
    font-size:17px;
}

/*
|--------------------------------------------------------------------------
| WAVE
|--------------------------------------------------------------------------
*/

.hero-wave{
    position:absolute;
    left:0;
    right:0;
    bottom:-2px;

    width:100%;
}

/*
|--------------------------------------------------------------------------
| CONTENT
|--------------------------------------------------------------------------
*/

.panduan-wrapper{
    width:100%;
    max-width:1300px;

    margin:auto;
    margin-top:-100px;

    position:relative;
    z-index:10;

    padding:0 24px 80px;
}

/*
|--------------------------------------------------------------------------
| SECTION LABEL
|--------------------------------------------------------------------------
*/

.section-label{
    display:flex;
    align-items:center;
    gap:16px;

    margin-bottom:38px;
}

.section-label::before,
.section-label::after{
    content:'';
    flex:1;
    height:1px;
    background:#dbe3f1;
}

.section-label span{
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;

    color:#64748b;
}

/*
|--------------------------------------------------------------------------
| STEP GRID
|--------------------------------------------------------------------------
*/

.steps-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;

    margin-bottom:50px;
}

.step-card{
    background:#fff;

    border:1px solid #ececec;
    border-radius:30px;

    padding:30px;

    transition:.3s ease;

    box-shadow:0 10px 25px rgba(0,0,0,.03);
}

.step-card:hover{
    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(37,99,235,.10);
}

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

    background:#eff6ff;
    color:#2563eb;

    border-radius:14px;

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

    font-size:15px;
    font-weight:800;

    margin-bottom:22px;
}

.step-icon{
    width:60px;
    height:60px;

    background:#f5f7fb;

    border-radius:18px;

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

    color:#2563eb;
    font-size:24px;

    margin-bottom:22px;
}

.step-title{
    font-size:20px;
    font-weight:800;

    margin-bottom:12px;

    color:#111827;
}

.step-desc{
    color:#6b7280;

    font-size:14px;
    line-height:1.9;
}

/*
|--------------------------------------------------------------------------
| INFO BOX
|--------------------------------------------------------------------------
*/

.info-box{
    background:#eff6ff;

    border:1px solid #bfdbfe;
    border-radius:30px;

    padding:28px;

    display:flex;
    align-items:flex-start;
    gap:18px;

    margin-bottom:50px;
}

.info-icon{
    width:54px;
    height:54px;

    background:#2563eb;
    color:#fff;

    border-radius:18px;

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

    font-size:24px;

    flex-shrink:0;
}

.info-title{
    font-size:18px;
    font-weight:800;

    color:#1d4ed8;

    margin-bottom:8px;
}

.info-desc{
    color:#4b6cb7;

    line-height:1.9;
    font-size:14px;
}

/*
|--------------------------------------------------------------------------
| CTA
|--------------------------------------------------------------------------
*/

.cta-row{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;

    padding-top:40px;

    border-top:1px solid #e5e7eb;
}

.btn-custom{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:16px 28px;

    border-radius:18px;

    font-size:14px;
    font-weight:700;
    text-decoration: none;

    transition:.2s ease;
}

.btn-dark{
    background:#111827;
    color:#fff;
}

.btn-dark:hover{
    background:#1f2937;
    color:#fff;
}

.btn-blue{
    background:#2563eb;
    color:#fff;
}

.btn-blue:hover{
    background:#1d4ed8;
    color:#fff;
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media(max-width:768px){

    .panduan-hero{
        padding:70px 20px 150px;
    }

    .panduan-wrapper{
        margin-top:-80px;
        padding:0 18px 60px;
    }

    .hero-desc{
        font-size:15px;
    }

    .info-box{
        flex-direction:column;
    }

}
