/* =====================================
   RESET
===================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    background:#F5F7FB;
    color:#333;
    line-height:1.7;
}

/* =====================================
   HEADER
===================================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:75px;
    background:#ffffff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 25px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    z-index:1000;
}

.logo h2{
    color:#0D6EFD;
    font-size:26px;
    font-weight:700;
}

.header nav{
    display:flex;
    gap:25px;
}

.header nav a{
    color:#444;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.header nav a:hover{
    color:#0D6EFD;
}

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

.hero{
    min-height:100vh;
    padding-top:10px;
    padding-bottom:80px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-content{
    max-width:850px;
}

.hero h1{
    font-size:52px;
    margin-bottom:25px;
    font-weight:700;
}

.hero p{
    font-size:19px;
    margin-bottom:35px;
    opacity:.95;
}

.hero-button{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary{

    background:#fff;
    color:#0D6EFD;
    padding:15px 35px;
    border-radius:35px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.btn-secondary{

    background:#FFFFFF;

    color:#0D6EFD;

    border:2px solid #0D6EFD;

    padding:18px 35px;

    border-radius:15px;

    text-decoration:none;

    font-weight:600;

    font-size:18px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary:hover{

    background:#fff;
    color:#0D6EFD;

}

/* =====================================
   SECTION
===================================== */

section{

    padding:80px 25px;

}

section h2{

    text-align:center;
    color:#0D6EFD;
    font-size:34px;
    margin-bottom:20px;

}

section>p{

    text-align:center;
    max-width:850px;
    margin:auto;
    color:#666;

}

/* =====================================
   FEATURE
===================================== */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
}

.feature-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

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

.feature-card .material-icons{
    font-size:55px;
    color:#0D6EFD;
    margin-bottom:15px;
}

.feature-card h3{
    margin-bottom:15px;
    color:#222;
}

.feature-card p{
    color:#666;
}

/* =====================================
   STATISTICS
===================================== */

.statistics{
    background:#0D6EFD;
    color:#fff;
}

.statistics h2{
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:40px;
}

.stats-card{
    background:rgba(255,255,255,.15);
    padding:30px;
    border-radius:20px;
    text-align:center;
}

.stats-card h3{
    font-size:38px;
    margin-bottom:10px;
}

.stats-card p{
    color:#fff;
}

/* =====================================
   SERVICES
===================================== */

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:40px;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

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

.service-card .material-icons{
    font-size:55px;
    color:#0D6EFD;
    margin-bottom:15px;
}

/* =====================================
   NEWS
===================================== */

.news-preview{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    max-width:900px;
    margin:auto;
}

.news-preview h3{
    color:#0D6EFD;
    margin-bottom:15px;
}

.news-preview a{
    display:inline-block;
    margin-top:20px;
    color:#0D6EFD;
    text-decoration:none;
    font-weight:600;
}

/* =====================================
   JOIN
===================================== */

.join{
    background:linear-gradient(135deg,#0D6EFD,#4F9BFF);
    color:#fff;
    text-align:center;
}

.join h2{
    color:#fff;
}

.join p{
    color:#fff;
    max-width:700px;
    margin:auto;
}

.join-button{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

/* =====================================
   CONTACT
===================================== */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:35px;
}

.contact-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.contact-card .material-icons{
    font-size:50px;
    color:#0D6EFD;
    margin-bottom:15px;
}

/* =====================================
   FOOTER
===================================== */

.footer{
    background:#111827;
    color:#fff;
    padding:60px 25px;
    text-align:center;
}

.footer-content{
    max-width:1000px;
    margin:auto;
}

.footer-menu{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    margin:30px 0;
}

.footer-menu a{
    color:#fff;
    text-decoration:none;
}

.footer-menu a:hover{
    color:#60A5FA;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.2);
    margin-top:25px;
    padding-top:20px;
    color:#ccc;
}

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

@media(max-width:768px){

.header{

    flex-direction:column;
    height:auto;
    padding:18px;

}

.header nav{

    flex-wrap:wrap;
    justify-content:center;
    margin-top:15px;

}

.hero h1{

    font-size:34px;

}

.hero p{

    font-size:16px;

}

section{

    padding:60px 18px;

}

section h2{

    font-size:28px;

}

}

@media(max-width:480px){

.hero{

    padding-top:150px;

}

.hero h1{

    font-size:28px;

}

.hero-button{

    flex-direction:column;

}

.btn-primary,
.btn-secondary{

    width:100%;

}

.logo h2{

    font-size:20px;

}

.header nav{

    gap:12px;

}

}

.hero-banner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    overflow:hidden;
}

.hero-banner img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
    border-radius:20px;
}

/* ============================
   FAQ
============================ */

.faq{
    background:#fff;
}

.faq-item{
    max-width:800px;
    margin:15px auto;
    background:#fff;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    overflow:hidden;
}

.faq-question{
    padding:18px;
    font-weight:600;
    cursor:pointer;
}

.faq-answer{
    padding:0 18px 18px;
    color:#666;
}

/* =====================================
   CARA KERJA
===================================== */

.work{

    background:#ffffff;

}

.work-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;

}

.work-card{

    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;

}

.work-card:hover{

    transform:translateY(-8px);

}

.work-number{

    width:60px;
    height:60px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:#0D6EFD;
    color:#fff;
    font-size:24px;
    font-weight:bold;

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

}

.work-card h3{

    margin-bottom:15px;
    color:#0D6EFD;

}

.work-card p{

    color:#666;

}

/* =====================================
   FAQ
===================================== */

.faq{

    background:#f8f9fc;

}

.faq-item{

    max-width:900px;
    margin:15px auto;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.faq-question{

    width:100%;
    background:none;
    border:none;
    padding:20px;
    text-align:left;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    color:#0D6EFD;

}

.faq-answer{

    display:none;
    padding:0 20px 20px;
    color:#666;

}

.faq-item.active .faq-answer{

    display:block;

}

/* =====================================
   MENU MOBILE
===================================== */

.menu-btn{

    display:none;
    font-size:34px;
    cursor:pointer;
    color:#0D6EFD;

}

@media(max-width:768px){

.menu-btn{

    display:block;

}

.header{

    flex-wrap:wrap;

}

.header nav{

    display:none;
    width:100%;
    flex-direction:column;
    margin-top:15px;
    background:#fff;
    border-radius:15px;
    padding:10px;

}

.header nav.active{

    display:flex;

}

.header nav a{

    padding:15px;
    border-bottom:1px solid #eee;

}

}

/* =====================================
   TESTIMONI
===================================== */

.testimonial{

    background:#F8FAFC;

}

.testimonial-grid{

    display:grid;

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

    gap:25px;

    margin-top:40px;

}

.testimonial-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.stars{

    color:#FFC107;

    font-size:24px;

    margin-bottom:15px;

}

.testimonial-card p{

    color:#555;

    margin-bottom:20px;

}

.testimonial-card h4{

    color:#0D6EFD;

}

/* =====================================
   BACK TO TOP
===================================== */

#backToTop{

    position:fixed;

    right:20px;

    bottom:20px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#0D6EFD;

    color:#fff;

    cursor:pointer;

    display:none;

    align-items:center;

    justify-content:center;

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

    z-index:999;

    transition:.3s;

}

#backToTop:hover{

    transform:translateY(-5px);

    background:#0056d6;

}

#backToTop .material-icons{

    font-size:28px;

}

/* =====================================
   ANIMASI SCROLL
===================================== */

.hidden{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}

.gallery{
    padding:60px 20px;
    text-align:center;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:15px;
    margin-top:25px;
}

.gallery-grid img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:12px;
    transition:.3s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

.hero-slider{

    width:100%;

    overflow:hidden;

    border-radius:20px;

    margin:20px 0;

}

.slides{

    display:flex;

    animation:slider 12s infinite;

}

.slides img{

    width:100%;

    flex-shrink:0;

    border-radius:20px;

}

@keyframes slider{

    0%,30%{
        transform:translateX(0);
    }

    35%,65%{
        transform:translateX(-100%);
    }

    70%,100%{
        transform:translateX(-200%);
    }

}

/* =====================================================
   BAGIAN 1 — MODERN HEADER
===================================================== */

:root{
    --primary:#0D6EFD;
    --primary-dark:#0758d1;
    --primary-soft:#eaf3ff;
    --ink:#111827;
    --muted:#64748b;
    --line:#e5eaf2;
}

body{
    background:#f7f9fc;
    color:var(--ink);
    font-family:'Inter','Poppins',sans-serif;
    overflow-x:hidden;
}

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    min-height:78px;
    padding:0 5%;

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

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-bottom:
        1px solid
        rgba(226,232,240,.75);

    display:flex;
    align-items:center;

    z-index:1000;
}

.header-inner{
    width:100%;
    max-width:1240px;
    margin:auto;

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

    gap:30px;
}

.logo h2{
    margin:0;

    font-family:'Poppins',
        sans-serif;

    color:var(--primary);

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

    letter-spacing:-.5px;
}

.header nav{
    display:flex;
    align-items:center;
    gap:7px;
}

.header nav a{
    text-decoration:none;

    color:#475569;

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

    padding:10px 14px;

    border-radius:12px;

    transition:
        .25s ease;
}

.header nav a:hover{
    color:var(--primary);

    background:
        var(--primary-soft);

    transform:
        translateY(-1px);
}

.header nav a:last-child{
    color:#fff;

    background:
        var(--primary);

    box-shadow:
        0 8px 22px
        rgba(13,110,253,.22);
}

.header nav a:last-child:hover{
    color:#fff;

    background:
        var(--primary-dark);
}

.menu-btn{
    display:none;

    color:var(--primary);

    font-size:30px;

    cursor:pointer;
}

@media(max-width:768px){

    .header{
        min-height:72px;
        padding:14px 18px;
    }

    .header-inner{
        flex-wrap:wrap;
    }

    .menu-btn{
        display:block;
    }

    .header nav{
        display:none;

        width:100%;

        flex-direction:column;

        align-items:stretch;

        gap:4px;

        padding:8px;

        background:#fff;

        border:
            1px solid
            var(--line);

        border-radius:16px;

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

    .header nav.active{
        display:flex;
    }

    .header nav a{
        width:100%;
        text-align:center;
    }

}

/* =====================================================
   BAGIAN 2 — MODERN HERO
===================================================== */

.hero{
    position:relative;

    min-height:100vh;

    padding:
        140px 20px
        90px;

    display:flex;

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

    overflow:hidden;

    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(13,110,253,.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 70%,
            rgba(96,165,250,.10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );
}


/* Dekorasi background */

.hero::before{
    content:"";

    position:absolute;

    width:420px;
    height:420px;

    top:80px;
    right:-220px;

    border-radius:50%;

    background:
        rgba(13,110,253,.08);

    filter:blur(20px);

    pointer-events:none;
}


.hero::after{
    content:"";

    position:absolute;

    width:300px;
    height:300px;

    left:-180px;
    bottom:30px;

    border-radius:50%;

    background:
        rgba(96,165,250,.08);

    pointer-events:none;
}


.hero-content{
    position:relative;

    z-index:2;

    width:100%;

    max-width:1120px;

    margin:auto;

    text-align:center;
}


/* BADGE */

.hero-badge{
    width:max-content;

    max-width:100%;

    margin:
        0 auto
        20px;

    padding:
        8px 14px;

    display:flex;

    align-items:center;

    gap:7px;

    border:
        1px solid
        #cfe0fb;

    border-radius:999px;

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

    color:#0D6EFD;

    font-size:12px;

    font-weight:700;

    box-shadow:
        0 8px 25px
        rgba(13,110,253,.08);
}


.hero-badge .material-icons{
    font-size:17px;
}


/* JUDUL */

.hero h1{
    max-width:900px;

    margin:
        0 auto
        22px;

    color:#111827;

    font-family:
        'Poppins',
        sans-serif;

    font-size:
        clamp(
            38px,
            6vw,
            68px
        );

    font-weight:800;

    line-height:1.08;

    letter-spacing:-2.5px;
}


.hero h1 span{
    color:#0D6EFD;
}


/* DESKRIPSI */

.hero-description{
    max-width:760px;

    margin:
        0 auto
        30px;

    color:#64748b;

    font-size:16px;

    line-height:1.8;
}


/* BUTTON */

.hero-button{
    display:flex;

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

    gap:12px;

    flex-wrap:wrap;

    margin-bottom:40px;
}


.hero-button a{
    min-height:52px;

    padding:
        0 25px;

    display:inline-flex;

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

    gap:8px;

    border-radius:14px;

    text-decoration:none;

    font-size:14px;

    font-weight:700;

    transition:.25s ease;
}


.hero-button .btn-primary{
    color:#fff;

    background:#0D6EFD;

    border:
        1px solid
        #0D6EFD;

    box-shadow:
        0 12px 28px
        rgba(13,110,253,.22);
}


.hero-button .btn-primary:hover{
    background:#0758d1;

    transform:
        translateY(-2px);
}


.hero-button .btn-secondary{
    color:#0D6EFD;

    background:#fff;

    border:
        1px solid
        #cfe0fb;
}


.hero-button .btn-secondary:hover{
    background:#eaf3ff;

    transform:
        translateY(-2px);
}


.hero-button .material-icons{
    font-size:19px;
}


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

.hero-slider{
    position:relative;

    width:100%;

    max-width:1100px;

    margin:
        0 auto
        28px;

    overflow:hidden;

    border-radius:26px;

    background:#fff;

    border:
        1px solid
        rgba(226,232,240,.9);

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


.slides{
    display:flex;

    width:100%;

    animation:
        modernHeroSlider
        15s
        infinite;
}


.slides img{
    width:100%;

    flex:0 0 100%;

    aspect-ratio:16 / 7;

    display:block;

    object-fit:cover;
}


@keyframes modernHeroSlider{

    0%,
    28%{
        transform:
            translateX(0);
    }

    33%,
    61%{
        transform:
            translateX(-100%);
    }

    66%,
    94%{
        transform:
            translateX(-200%);
    }

    100%{
        transform:
            translateX(0);
    }

}


/* ===============================
   TRUST
================================ */

.hero-trust{
    display:flex;

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

    gap:12px;

    flex-wrap:wrap;
}


.hero-trust > div{
    min-width:140px;

    padding:
        10px 14px;

    display:flex;

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

    gap:7px;

    color:#475569;

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

    border:
        1px solid
        #e5eaf2;

    border-radius:13px;
}


.hero-trust .material-icons{
    color:#0D6EFD;

    font-size:18px;
}


.hero-trust small{
    font-size:11px;

    font-weight:700;
}

/* =====================================================
   BAGIAN 2 — MOBILE
===================================================== */

@media(max-width:768px){

    .hero{
        min-height:auto;

        padding:
            125px 16px
            70px;
    }


    .hero h1{
        font-size:38px;

        letter-spacing:-1.5px;
    }


    .hero-description{
        font-size:14px;
    }


    .hero-slider{
        border-radius:20px;
    }


    .slides img{
        aspect-ratio:
            16 / 9;
    }

}


@media(max-width:480px){

    .hero{
        padding-top:110px;
    }


    .hero h1{
        font-size:31px;

        line-height:1.15;
    }


    .hero-badge{
        font-size:10px;
    }


    .hero-button{
        width:100%;

        flex-direction:column;
    }


    .hero-button a{
        width:100%;
    }


    .hero-trust{
        display:grid;

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

        width:100%;

        gap:7px;
    }


    .hero-trust > div{
        min-width:0;

        padding:
            10px 5px;

        flex-direction:column;
    }


    .hero-trust small{
        font-size:8px;
    }


    .slides img{
        aspect-ratio:
            16 / 10;
    }

}

/* =====================================================
   BAGIAN 3 — MODERN FEATURE & STATISTICS
===================================================== */

.section-heading{
    max-width:780px;
    margin:0 auto 42px;
    text-align:center;
}

.section-label{
    display:inline-flex;

    padding:
        7px 12px;

    margin-bottom:12px;

    border-radius:999px;

    background:#eaf3ff;

    color:#0D6EFD;

    font-size:10px;

    font-weight:800;

    letter-spacing:1px;
}

.section-heading h2{
    margin-bottom:14px;
}

.section-heading h2 span{
    color:#0D6EFD;
}

.section-heading p{
    color:#64748b;
}


/* ABOUT */

.about{
    padding-top:90px;
    padding-bottom:70px;

    background:#fff;
}


/* FEATURE */

.features{
    background:#f8faff;
}


.feature-grid{
    max-width:1180px;

    margin:
        0 auto;

    display:grid;

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

    gap:20px;
}


.feature-card{
    position:relative;

    padding:30px 24px;

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

    border:
        1px solid
        #e5eaf2;

    border-radius:24px;

    text-align:center;

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

    transition:
        .3s ease;

    overflow:hidden;
}


.feature-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:3px;

    background:
        linear-gradient(
            90deg,
            #0D6EFD,
            #60a5fa
        );

    transform:
        scaleX(0);

    transform-origin:left;

    transition:.3s ease;
}


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

    box-shadow:
        0 24px 55px
        rgba(15,23,42,.11);
}


.feature-card:hover::before{
    transform:
        scaleX(1);
}


.feature-icon{
    width:66px;
    height:66px;

    margin:
        0 auto
        20px;

    display:flex;

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

    border-radius:19px;

    background:#eaf3ff;

    color:#0D6EFD;

    transition:.3s ease;
}


.feature-card:hover
.feature-icon{
    background:#0D6EFD;

    color:#fff;

    transform:
        scale(1.06)
        rotate(-3deg);
}


.feature-icon .material-icons{
    font-size:31px;
}


.feature-card h3{
    margin-bottom:10px;

    font-family:
        'Poppins',
        sans-serif;

    font-size:18px;
}


.feature-card p{
    color:#64748b;

    font-size:13px;

    line-height:1.75;
}


/* STATISTICS */

.statistics{
    position:relative;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            #0D6EFD 0%,
            #0758d1 100%
        );

    padding:
        90px 5%;
}


.statistics::before{
    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    top:-250px;
    right:-150px;

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

    filter:blur(4px);
}


.statistics::after{
    content:"";

    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    bottom:-200px;
    left:-120px;

    background:
        rgba(255,255,255,.08);
}


.statistics
.section-heading{
    position:relative;
    z-index:2;
}


.section-label-light{
    color:#fff;

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

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


.statistics h2{
    color:#fff;
}


.stats-grid{
    position:relative;

    z-index:2;

    max-width:1100px;

    margin:
        0 auto;

    display:grid;

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

    gap:16px;
}


.stats-card{
    padding:28px 20px;

    text-align:center;

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

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

    border-radius:22px;

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

    transition:.3s ease;
}


.stats-card:hover{
    transform:
        translateY(-6px);

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


.stats-icon{
    width:52px;
    height:52px;

    margin:
        0 auto
        16px;

    display:flex;

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

    border-radius:16px;

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

    color:#fff;
}


.stats-icon .material-icons{
    font-size:25px;
}


.stats-card h3{
    margin-bottom:8px;

    color:#fff;

    font-family:
        'Poppins',
        sans-serif;

    font-size:34px;

    line-height:1;
}


.stats-card p{
    color:
        rgba(255,255,255,.82);

    font-size:12px;
}

@media(max-width:980px){

    .feature-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .stats-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

}


@media(max-width:560px){

    .feature-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .feature-card{
        padding:26px 22px;
    }

    .stats-card h3{
        font-size:30px;
    }

}

/* =====================================================
   BAGIAN 4 — CARA KERJA + LAYANAN
===================================================== */

.work{
    background:#fff;
}


/* WORK CARD */

.work-grid{
    max-width:1180px;

    margin:0 auto;

    display:grid;

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

    gap:20px;
}


.work-card{
    position:relative;

    padding:30px 24px;

    background:#fff;

    border:1px solid #e5eaf2;

    border-radius:24px;

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

    text-align:center;

    transition:.3s ease;
}


.work-card:hover{
    transform:
        translateY(-7px);

    border-color:#cfe0fb;

    box-shadow:
        0 24px 55px
        rgba(15,23,42,.11);
}


.work-number{
    position:absolute;

    top:18px;
    right:18px;

    width:40px;
    height:40px;

    display:flex;

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

    border-radius:12px;

    background:#eaf3ff;

    color:#0D6EFD;

    font-size:11px;

    font-weight:800;
}


.work-icon{
    width:66px;
    height:66px;

    margin:
        0 auto
        20px;

    display:flex;

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

    border-radius:19px;

    background:#0D6EFD;

    color:#fff;

    box-shadow:
        0 10px 25px
        rgba(13,110,253,.20);

    transition:.3s ease;
}


.work-card:hover
.work-icon{
    transform:
        scale(1.06)
        rotate(-3deg);
}


.work-icon .material-icons{
    font-size:30px;
}


.work-card h3{
    margin-bottom:10px;

    font-family:
        'Poppins',
        sans-serif;

    font-size:18px;
}


.work-card p{
    color:#64748b;

    font-size:13px;

    line-height:1.75;
}


/* SERVICES */

.services{
    background:#f8faff;
}


.service-grid{
    max-width:1180px;

    margin:0 auto;

    display:grid;

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

    gap:20px;
}


.service-card{
    position:relative;

    padding:30px 24px 26px;

    background:#fff;

    border:1px solid #e5eaf2;

    border-radius:24px;

    text-align:left;

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

    overflow:hidden;

    transition:.3s ease;
}


.service-card::after{
    content:"";

    position:absolute;

    width:100px;
    height:100px;

    right:-50px;
    bottom:-50px;

    border-radius:50%;

    background:#eaf3ff;

    transition:.3s ease;
}


.service-card:hover{
    transform:
        translateY(-7px);

    box-shadow:
        0 24px 55px
        rgba(15,23,42,.11);
}


.service-card:hover::after{
    transform:scale(1.5);
}


.service-icon{
    width:62px;
    height:62px;

    margin-bottom:20px;

    display:flex;

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

    border-radius:18px;

    background:#eaf3ff;

    color:#0D6EFD;
}


.service-icon .material-icons{
    font-size:30px;
}


.service-card h3{
    position:relative;

    z-index:2;

    margin-bottom:9px;

    font-family:
        'Poppins',
        sans-serif;

    font-size:17px;
}


.service-card p{
    position:relative;

    z-index:2;

    color:#64748b;

    font-size:13px;

    line-height:1.7;
}


.service-arrow{
    position:relative;

    z-index:2;

    display:inline-flex;

    margin-top:18px;

    color:#0D6EFD;

    font-size:20px;

    font-weight:800;

    transition:.25s ease;
}


.service-card:hover
.service-arrow{
    transform:
        translateX(6px);
}


/* RESPONSIVE */

@media(max-width:980px){

    .service-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .work-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

}


@media(max-width:560px){

    .service-grid,
    .work-grid{
        grid-template-columns:1fr;
    }

    .work-card,
    .service-card{
        padding:26px 22px;
    }

}

/* =====================================================
   BAGIAN 5 — BERITA + FAQ + TESTIMONI
===================================================== */

.latest-news{
    background:#fff;
}


/* NEWS */

.news-preview{
    max-width:900px;
    margin:0 auto;

    padding:30px;

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

    background:#fff;

    border:1px solid #e5eaf2;

    border-radius:24px;

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

    transition:.3s ease;
}

.news-preview:hover{
    transform:translateY(-5px);

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

.news-icon{
    flex:0 0 70px;

    width:70px;
    height:70px;

    display:flex;

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

    border-radius:20px;

    background:#eaf3ff;

    color:#0D6EFD;
}

.news-icon .material-icons{
    font-size:32px;
}

.news-content{
    flex:1;
}

.news-tag{
    display:inline-block;

    margin-bottom:7px;

    padding:4px 9px;

    border-radius:999px;

    background:#eaf3ff;

    color:#0D6EFD;

    font-size:9px;

    font-weight:800;

    letter-spacing:.7px;
}

.news-content h3{
    margin-bottom:7px;

    font-family:'Poppins',sans-serif;

    font-size:19px;
}

.news-content p{
    color:#64748b;

    font-size:13px;

    line-height:1.7;
}

.news-content a{
    margin-top:12px;

    display:inline-flex;

    align-items:center;

    gap:5px;

    color:#0D6EFD;

    text-decoration:none;

    font-size:13px;

    font-weight:700;
}

.news-content a .material-icons{
    font-size:17px;

    transition:.25s ease;
}

.news-content a:hover
.material-icons{
    transform:translateX(4px);
}


/* FAQ */

.faq-list{
    max-width:880px;

    margin:0 auto;
}

.faq-item{
    margin-bottom:12px;

    background:#fff;

    border:
        1px solid
        #e5eaf2;

    border-radius:18px;

    overflow:hidden;

    box-shadow:
        0 8px 25px
        rgba(15,23,42,.04);

    transition:.25s ease;
}

.faq-item:hover{
    border-color:#cfe0fb;
}

.faq-question{
    width:100%;

    min-height:62px;

    padding:
        15px 18px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:15px;

    background:#fff;

    border:0;

    color:#111827;

    text-align:left;

    font-family:'Inter',sans-serif;

    font-size:14px;

    font-weight:700;

    cursor:pointer;
}

.faq-question .material-icons{
    flex:0 0 auto;

    width:32px;
    height:32px;

    display:flex;

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

    border-radius:10px;

    background:#eaf3ff;

    color:#0D6EFD;

    font-size:20px;

    transition:.25s ease;
}

.faq-item.active
.faq-question{
    color:#0D6EFD;
}

.faq-item.active
.faq-question
.material-icons{
    transform:rotate(45deg);

    background:#0D6EFD;

    color:#fff;
}

.faq-answer{
    display:none;

    padding:
        0 18px
        20px;

    color:#64748b;

    font-size:13px;

    line-height:1.8;
}

.faq-item.active
.faq-answer{
    display:block;
}


/* TESTIMONIAL */

.testimonial{
    background:#f8faff;
}

.testimonial-grid{
    max-width:1180px;

    margin:0 auto;

    display:grid;

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

    gap:20px;
}

.testimonial-card{
    padding:27px;

    background:#fff;

    border:
        1px solid
        #e5eaf2;

    border-radius:24px;

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

    transition:.3s ease;
}

.testimonial-card:hover{
    transform:
        translateY(-7px);

    box-shadow:
        0 24px 55px
        rgba(15,23,42,.11);
}

.testimonial-top{
    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:17px;
}

.testimonial-avatar{
    width:46px;
    height:46px;

    display:flex;

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

    border-radius:14px;

    background:#0D6EFD;

    color:#fff;

    font-family:'Poppins',sans-serif;

    font-size:17px;

    font-weight:800;
}

.testimonial-card h4{
    margin:0;

    color:#111827;

    font-family:'Poppins',sans-serif;

    font-size:15px;
}

.testimonial-card small{
    color:#94a3b8;

    font-size:11px;
}

.testimonial-card .stars{
    margin-bottom:10px;

    color:#fbbf24;

    font-size:17px;

    letter-spacing:2px;
}

.testimonial-card p{
    color:#64748b;

    font-size:13px;

    line-height:1.8;
}


/* RESPONSIVE */

@media(max-width:768px){

    .news-preview{
        align-items:flex-start;

        padding:24px;
    }

    .testimonial-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

}

@media(max-width:560px){

    .news-preview{
        flex-direction:column;
    }

    .news-icon{
        width:58px;
        height:58px;
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

}

/* =====================================================
   BAGIAN 6 — GALERI + KONTAK + FOOTER
===================================================== */

.gallery{
    background:#f8faff;
    text-align:center;
}


/* GALERI */

.gallery-grid{
    max-width:1180px;

    margin:0 auto;

    display:grid;

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

    gap:20px;
}


.gallery-card{
    position:relative;

    height:260px;

    overflow:hidden;

    border-radius:24px;

    background:#fff;

    border:
        1px solid
        #e5eaf2;

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


.gallery-card img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:
        transform .5s ease;
}


.gallery-card:hover img{
    transform:scale(1.07);
}


.gallery-overlay{
    position:absolute;

    inset:0;

    display:flex;

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

    background:
        rgba(13,110,253,.40);

    color:#fff;

    opacity:0;

    transition:.3s ease;
}


.gallery-card:hover
.gallery-overlay{
    opacity:1;
}


.gallery-overlay .material-icons{
    width:52px;
    height:52px;

    display:flex;

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

    border-radius:16px;

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

    backdrop-filter:blur(8px);

    font-size:27px;
}


/* KONTAK */

.contact{
    background:#fff;
}


.contact-grid{
    max-width:1100px;

    margin:0 auto;

    display:grid;

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

    gap:20px;
}


.contact-card{
    padding:30px 24px;

    text-align:center;

    background:#fff;

    border:
        1px solid
        #e5eaf2;

    border-radius:24px;

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

    transition:.3s ease;
}


.contact-card:hover{
    transform:
        translateY(-7px);

    box-shadow:
        0 24px 55px
        rgba(15,23,42,.11);
}


.contact-icon{
    width:64px;
    height:64px;

    margin:
        0 auto
        18px;

    display:flex;

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

    border-radius:19px;

    background:#eaf3ff;

    color:#0D6EFD;
}


.contact-icon .material-icons{
    font-size:30px;
}


.contact-card h3{
    margin-bottom:9px;

    font-family:
        'Poppins',
        sans-serif;

    font-size:18px;
}


.contact-card p{
    margin-bottom:15px;

    color:#64748b;

    font-size:13px;

    line-height:1.7;
}


.contact-card a{
    display:inline-flex;

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

    min-height:40px;

    padding:
        0 16px;

    border-radius:11px;

    background:#eaf3ff;

    color:#0D6EFD;

    text-decoration:none;

    font-size:12px;

    font-weight:700;

    transition:.25s ease;
}


.contact-card a:hover{
    color:#fff;

    background:#0D6EFD;
}


/* FOOTER */

.footer{
    padding:
        65px 5%
        28px;

    background:#0b1220;

    color:#fff;

    text-align:center;
}


.footer-content{
    max-width:1050px;

    margin:0 auto;
}


.footer-logo{
    margin-bottom:10px;

    color:#fff;

    font-family:
        'Poppins',
        sans-serif;

    font-size:22px;

    font-weight:800;
}


.footer-brand p{
    max-width:650px;

    margin:0 auto;

    color:#94a3b8;

    font-size:13px;

    line-height:1.8;
}


.footer-menu{
    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:7px;

    margin:
        28px 0;
}


.footer-menu a{
    padding:
        8px 12px;

    border-radius:9px;

    color:#cbd5e1;

    text-decoration:none;

    font-size:12px;

    font-weight:600;

    transition:.25s ease;
}


.footer-menu a:hover{
    color:#fff;

    background:
        rgba(255,255,255,.07);
}


.footer-divider{
    width:100%;

    height:1px;

    margin:
        20px 0;

    background:
        rgba(255,255,255,.10);
}


.copyright{
    color:#64748b;

    font-size:11px;
}


.copyright strong{
    color:#cbd5e1;
}


/* RESPONSIVE */

@media(max-width:900px){

    .gallery-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .contact-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

}


@media(max-width:560px){

    .gallery-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .gallery-card{
        height:220px;
    }

    .footer{
        padding-left:18px;
        padding-right:18px;
    }

}

/* =====================================================
   BAGIAN 7 — FINAL RESPONSIVE & POLISH
===================================================== */

/* Mencegah elemen melebar keluar layar */
img,
video{
    max-width:100%;
}

/* Semua section tetap aman */
section{
    width:100%;
    overflow:hidden;
}

/* Jarak aman untuk anchor menu */
#work,
#faq{
    scroll-margin-top:90px;
}

/* Smooth card */
.feature-card,
.work-card,
.service-card,
.testimonial-card,
.contact-card,
.news-preview,
.gallery-card{
    will-change:transform;
}

/* Tombol kembali ke atas */
#backToTop{
    display:none;
    align-items:center;
    justify-content:center;

    position:fixed;

    right:18px;
    bottom:18px;

    width:50px;
    height:50px;

    border:0;
    border-radius:15px;

    background:#0D6EFD;
    color:#fff;

    cursor:pointer;

    box-shadow:
        0 12px 28px
        rgba(13,110,253,.25);

    z-index:999;

    transition:.25s ease;
}

#backToTop:hover{
    background:#0758d1;
    transform:translateY(-3px);
}


/* ===============================
   TABLET
================================ */

@media(max-width:900px){

    .header-inner{
        gap:15px;
    }

    .header nav a{
        padding:
            9px 10px;

        font-size:12px;
    }

    .hero{
        padding-left:20px;
        padding-right:20px;
    }

    .feature-grid,
    .service-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .work-grid,
    .testimonial-grid,
    .contact-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

}


/* ===============================
   MOBILE
================================ */

@media(max-width:768px){

    body{
        font-size:14px;
    }

    .header{
        padding:
            12px 16px;
    }

    .logo h2{
        font-size:18px;
    }

    section{
        padding:
            70px 16px;
    }

    section h2{
        font-size:30px;
    }

    .section-heading{
        margin-bottom:30px;
    }

    .hero{
        padding:
            115px 16px
            65px;
    }

    .hero h1{
        font-size:
            clamp(
                32px,
                10vw,
                42px
            );
    }

    .hero-description{
        font-size:14px;
    }

    .hero-slider{
        margin-top:10px;
    }

    .feature-grid,
    .service-grid,
    .work-grid,
    .testimonial-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .stats-card{
        padding:
            23px 12px;
    }

    .stats-card h3{
        font-size:27px;
    }

    .gallery-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

}


/* ===============================
   SMALL PHONE
================================ */

@media(max-width:480px){

    .hero-badge{
        font-size:9px;

        padding:
            7px 10px;
    }

    .hero h1{
        font-size:30px;
        letter-spacing:-1px;
    }

    .hero-description{
        font-size:13px;
        line-height:1.7;
    }

    .hero-button a{
        width:100%;
    }

    .hero-trust{
        gap:6px;
    }

    .hero-trust > div{
        min-width:0;
        flex:1;
        padding:
            9px 4px;
    }

    .hero-trust small{
        font-size:8px;
    }

    section h2{
        font-size:27px;
    }

    .feature-card,
    .work-card,
    .service-card,
    .testimonial-card,
    .contact-card{
        padding:24px 20px;
    }

    .news-preview{
        padding:22px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-card{
        height:220px;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
        gap:9px;
    }

    .stats-card h3{
        font-size:24px;
    }

    .stats-card p{
        font-size:9px;
    }

}


/* ===============================
   VERY SMALL PHONE
================================ */

@media(max-width:360px){

    .logo h2{
        font-size:16px;
    }

    .hero h1{
        font-size:27px;
    }

    .hero-trust{
        display:grid;

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

    .stats-grid{
        grid-template-columns:1fr;
    }

}