.ak-page{
    padding:60px 0 90px;
    background:linear-gradient(
        180deg,
        #f8fbff 0%,
        #f2f6fb 100%
    );
}

/* =====================================================
   HERO
===================================================== */

.ak-hero{
    margin-bottom:70px;
}

.ak-hero-content h1{
    font-size:64px;
    font-weight:900;
    line-height:1.1;
    color:#16315c;
    margin-bottom:24px;
}

.ak-hero-content p{
    font-size:18px;
    line-height:1.9;
    color:#64748b;
    margin-bottom:34px;
    max-width:900px;
}

/* =====================================================
   HERO STAT
===================================================== */

.hero-stats{
    display:flex;
    gap:24px;
}

.hero-stat{
    min-width:220px;
    padding:24px;
    border-radius:24px;
    background:#fff;
    border:1px solid #e7edf5;
    box-shadow:0 12px 35px rgba(15,23,42,.05);
}

.hero-stat h3{
    margin:0 0 8px;
    font-size:42px;
    font-weight:900;
    color:#16315c;
}

.hero-stat span{
    color:#64748b;
}

/* =====================================================
   SLIDER
===================================================== */

.ak-slider-wrapper{

    max-width:1450px;

    margin:50px auto 70px;

    position:relative;
}

.akSwiper{

    overflow:hidden;

    border-radius:30px;
}

.akSwiper .swiper-slide{

    display:flex;

    justify-content:center;

    align-items:center;
}

.ak-slide-card{

    width:100%;

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    padding:22px;

    border:1px solid #e7edf5;

    box-shadow:
        0 15px 40px rgba(15,23,42,.08);
}

.ak-slide-card img{

    width:100%;

    height:auto;

    display:block;

    object-fit:contain;

    cursor:pointer;

    transition:.35s;
}

.ak-slide-card img:hover{

    transform:scale(1.01);
}

/* =====================================================
   SWIPER
===================================================== */

.swiper-button-prev,
.swiper-button-next{

    width:56px !important;

    height:56px !important;

    border-radius:50%;

    background:#fff;

    color:#16315c;

    box-shadow:
        0 10px 30px rgba(15,23,42,.12);
}

.swiper-button-prev:after,
.swiper-button-next:after{

    font-size:20px !important;

    font-weight:700;
}

.swiper-pagination{

    position:relative !important;

    margin-top:22px;
}

.swiper-pagination-bullet{

    width:10px;

    height:10px;
}

.swiper-pagination-bullet-active{

    background:#0b5ed7 !important;
}

/* =====================================================
   PDF
===================================================== */

.ak-pdf-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:40px;
}

.ak-pdf-card{

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    border:1px solid #e7edf5;

    box-shadow:
        0 15px 40px rgba(15,23,42,.08);

    transition:.3s;
}

.ak-pdf-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 20px 50px rgba(15,23,42,.12);
}

.ak-pdf-header{

    display:flex;

    align-items:center;

    gap:16px;

    padding:24px 28px;

    border-bottom:1px solid #edf2f7;

    background:#f8fbff;
}

.ak-pdf-header i{

    font-size:34px;

    color:#d32f2f;
}

.ak-pdf-header h3{

    margin:0;

    font-size:26px;

    font-weight:800;

    color:#16315c;
}

.ak-pdf-card iframe{

    width:100%;

    height:650px;

    border:none;

    display:block;
}

/* =====================================================
   BUTTON
===================================================== */

.ak-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    margin:25px;

    height:54px;

    border-radius:16px;

    background:#002f6c;

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.ak-btn:hover{

    background:#0b5ed7;

    color:#fff;
}

/* =====================================================
   MODAL
===================================================== */

.ak-modal{

    position:fixed;

    inset:0;

    opacity:0;

    visibility:hidden;

    z-index:9999;

    transition:.35s;
}

.ak-modal.show{

    opacity:1;

    visibility:visible;
}

.ak-overlay{

    position:absolute;

    inset:0;

    background:rgba(15,23,42,.75);

    backdrop-filter:blur(8px);
}

.ak-modal-content{

    position:relative;

    width:90%;

    max-width:1450px;

    margin:35px auto;

    background:#fff;

    border-radius:30px;

    padding:24px;

    z-index:2;
}

.ak-modal-content img{

    width:100%;

    max-height:86vh;

    object-fit:contain;
}

.ak-close{

    position:absolute;

    top:18px;

    right:18px;

    width:54px;

    height:54px;

    border:none;

    border-radius:16px;

    background:#fff;

    font-size:18px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.12);

    cursor:pointer;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:1200px){

    .ak-pdf-grid{

        grid-template-columns:1fr;
    }

}

@media (max-width:992px){

    .ak-page{

        padding:50px 0 70px;
    }

    .ak-hero-content h1{

        font-size:46px;
    }

    .ak-pdf-card iframe{

        height:520px;
    }

}

@media (max-width:768px){

    .ak-page{

        padding:40px 0 60px;
    }

    .ak-hero-content h1{

        font-size:36px;
    }

    .ak-hero-content p{

        font-size:16px;
    }

    .hero-stat{

        min-width:100%;
    }

    .ak-slide-card{

        padding:12px;
    }

    .swiper-button-prev,
    .swiper-button-next{

        width:44px !important;

        height:44px !important;
    }

    .ak-pdf-header{

        padding:18px;
    }

    .ak-pdf-header h3{

        font-size:22px;
    }

    .ak-pdf-card iframe{

        height:420px;
    }

    .ak-btn{

        margin:18px;
    }

}

/* ==========================================
   MODUL PDF
========================================== */

.ak-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(380px,1fr));

    gap:40px;

    margin-top:40px;
}

.ak-thumb-card{

    background:#fff;

    border:1px solid #e7edf5;

    border-radius:28px;

    padding:30px;

    text-align:center;

    box-shadow:0 15px 35px rgba(15,23,42,.06);

    transition:.35s;
}

.ak-thumb-card:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 45px rgba(15,23,42,.12);
}

/* ukuran cover */

.ak-thumb-card img{

    width:260px;

    max-width:100%;

    margin:0 auto 25px;

    display:block;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(15,23,42,.15);

    transition:.35s;
}

.ak-thumb-card:hover img{

    transform:scale(1.03);
}

.ak-card-body h4{

    font-size:28px;

    font-weight:800;

    color:#16315c;

    margin-bottom:12px;
}

.ak-card-body p{

    color:#64748b;

    line-height:1.8;

    max-width:520px;

    margin:0 auto 24px;
}

.ak-action{

    display:flex;

    justify-content:center;

    gap:12px;

    flex-wrap:wrap;
}

.ak-action .btn{

    min-width:150px;

    border-radius:14px;

    font-weight:600;
}