body{
    background:#f5f7fb;
    overflow-x:hidden;
}

/* HERO */

.hero-rpl{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#002147,#0d3b66);
    color:white;
    overflow:hidden;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.hero-content{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    padding:80px 20px;
}

.hero-text h1{
    font-size:56px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-text h1 span{
    display:block;
    color:#ffd166;
}

.hero-text p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.badge-rpl{
    display:inline-block;
    background:#ffd166;
    color:#111;
    padding:10px 20px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-rpl{
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.btn-rpl.primary{
    background:#ffd166;
    color:#111;
}

.btn-rpl.primary:hover{
    transform:translateY(-3px);
}

.btn-rpl.secondary{
    border:2px solid white;
    color:white;
}

.hero-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,0.3);
}

/* SECTION */

.section-rpl{
    padding:90px 20px;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
    color:#002147;
}

.section-title p{
    max-width:800px;
    margin:auto;
    color:#555;
    line-height:1.8;
}

.light h2{
    color:white;
}

/* CARD */

.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card-rpl{
    background:white;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.card-rpl:hover{
    transform:translateY(-10px);
}

.icon-rpl{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#002147;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;
}

/* BENEFIT */

.benefit-rpl{
    background:#002147;
    padding:90px 20px;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.benefit-item{
    background:white;
    padding:25px;
    border-radius:16px;
    display:flex;
    align-items:center;
    gap:15px;
    font-weight:600;
}

.benefit-item i{
    color:#00b894;
    font-size:22px;
}

/* TYPE */

.type-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.type-card{
    background:white;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.type-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.type-content{
    padding:30px;
}

.type-content h3{
    margin-bottom:20px;
    font-weight:800;
    color:#002147;
}

.type-content ul{
    padding-left:20px;
}

/* TIMELINE */

.alur-rpl{
    background:#eef3f9;
    padding:90px 20px;
}

.timeline{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.timeline-item{
    background:white;
    padding:30px 20px;
    border-radius:20px;
    text-align:center;
    position:relative;
}

.timeline-item span{
    width:60px;
    height:60px;
    background:#002147;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:20px;
    font-weight:bold;
    font-size:22px;
}

/* CTA */

.cta-rpl{
    padding:100px 20px;
    background:linear-gradient(135deg,#001d3d,#003566);
    color:white;
    text-align:center;
}

.cta-rpl h2{
    font-size:48px;
    margin-bottom:20px;
    font-weight:800;
}

.cta-rpl p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    margin-bottom:35px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero-content,
    .grid-3,
    .benefit-grid,
    .type-wrapper,
    .timeline{
        grid-template-columns:1fr;
    }

    .hero-text h1{
        font-size:40px;
    }

    .section-title h2{
        font-size:32px;
    }

    .cta-rpl h2{
        font-size:36px;
    }
}

.hidden-animation{
    opacity:0;
    transform:translateY(40px);
    transition:all 0.8s ease;
}

.show-animation{
    opacity:1;
    transform:translateY(0);
}