.container-custom{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ===========================
   GLOBAL
=========================== */

:root{

    --primary:#5B57E3;
    --secondary:#FFC83D;
    --text:#2E2E2E;
    --white:#FFFFFF;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#fff;

}

/* ===========================
   NAVBAR
=========================== */

.navbar{

    padding:14px 0;
    transition:.3s;
    z-index:999;

}

.navbar-brand img{

    height:45px;

}

.navbar-nav .nav-link{

    color:#444;
    font-size:15px;
    font-weight:500;
    margin:0 8px;
    transition:.3s;

}

.navbar-nav .nav-link:hover{

    color:var(--primary);

}

.navbar-nav .active{

    color:var(--primary)!important;
    font-weight:700;

}

.btn-login{

    border:2px solid #d8d8d8;
    border-radius:12px;
    padding:8px 22px;
    font-weight:600;
    background:#fff;

}

.btn-login:hover{

    background:#f6f6f6;

}

.btn-register{

    background:#FFC83D;
    color:#222;
    border-radius:12px;
    padding:8px 22px;
    font-weight:600;

}

.btn-register:hover{

    background:#f0bb2c;

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

.hero{

    margin-top:82px;

}

.hero-image{

    width:100%;

    display:block;

    border-bottom-left-radius:30px;

    border-bottom-right-radius:30px;

}


/*=========================================
            QUOTE
=========================================*/

.quote-card{

    background:#fff;
    border-radius:22px;
    padding:22px 28px;
    margin-top:-45px;
    position:relative;
    z-index:10;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .35s ease;
    cursor:pointer;
}
.quote-card:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(91,87,227,.18);

}
.quote-avatar{
    width:55px;

}

.quote-text{
    margin:0;
    font-size:15px;
    color:#555;
    line-height:1.7;

}

.quote-icon{
    font-size:28px;
    color:#d9c7ff;
}

/*=========================================
        LOGO PARTNER
=========================================*/

.partner-logo{
    padding:35px 0;
}

.partner-item{
    height:45px;
    transition:all .35s ease;
    cursor:pointer;
    opacity:.9;
}
.partner-item:hover{
    transform:translateY(-6px) scale(1.08);
    opacity:1;
    filter:drop-shadow(0 12px 20px rgba(91,87,227,.18));

}

/*=========================================
            ABOUT
=========================================*/

.about-section{

    padding:80px 0;

}

.section-title{

    font-size:38px;

    font-weight:700;

    margin-bottom:25px;

}

.section-title span{

    color:var(--primary);

}

.section-text{

    color:#666;

    line-height:1.9;

    margin-bottom:18px;

}

.learn-more{

    color:var(--primary);

    font-weight:600;

}
.learn-more:hover{
    transform:translateY(-8px) scale(1.08);
    transition:.35s;
}

/*=========================================
          DISKALKULIA
=========================================*/

.dyscalculia-section{

    background:#EAF5FF;

    padding:90px 0;

    border-radius:35px;

    margin:80px 0;

}

.section-badge{

    display:inline-block;

    background:#D8EBFF;

    color:#215180;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

}

.dys-image{

    max-width:500px;

}

.dyscalculia-section .btn{
    font-weight:600;
    border-radius:15px;
}

.dyscalculia-section .btn:hover{
    background:#dcb355;
    color:#fff;
    transform:translateY(-8px) scale(1.08);
    transition:.35s;
}
/*=========================================
                MITRA
=========================================*/

.mitra-section{

    padding:90px 0;

}

.mitra-subtitle{

    color:#7C74F8;

    font-weight:700;

    margin-bottom:5px;

}

.mitra-title{

    font-size:32px;

    font-weight:700;

    color:#2D3E87;

    margin-bottom:35px;

}

.mitra-card{

    background:#F4F5FF;

    border-radius:30px;

    padding:40px;

}

.mitra-image{

    width:100%;

    border-radius:20px;

}

.mitra-description{

    max-width:720px;

    margin:30px auto;

    text-align:center;

    color:#666;

    line-height:1.8;

}

.btn-mitra{
    background:#8B7CF8;

    color:#fff;

    border-radius:30px;

    padding:12px 30px;

    font-weight:600;

}

.btn-mitra:hover{
    background:#7565F5;
    color:#fff;
    transform:translateY(-8px) scale(1.08);
    transition:.35s;
}

/*=========================================
        PANDUAN PENGGUNAAN
=========================================*/

.guide-section{
    padding:90px 0;
}

.guide-box{

    background:#4B469C;
    border-radius:35px;
    padding:40px 50px;
    position:relative;
    overflow:hidden;

}

.guide-title{

    color:#fff;
    font-size:32px;
    font-weight:700;
    margin-bottom:50px;

}

/* Garis utama */

.guide-steps{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    position:relative;
    z-index:2;

}

.guide-steps::before{

    content:"";
    position:absolute;

    left:70px;
    right:70px;
    top:30px;

    height:4px;

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

    border-radius:50px;

    z-index:1;

}

/* Lubang congklak */

.guide-item{

    width:150px;
    text-align:center;
    position:relative;
    z-index:2;

}

/* Lubang */

/* .guide-item::before{

    content:"";

    position:absolute;

    top:22px;
    left:50%;

    transform:translateX(-50%);

    width:16px;
    height:16px;

    border-radius:50%;

    background:#FFD67C;

    border:3px solid #fff;

    z-index:-1;

} */

/* ICON */

.guide-item img{

    width:70px;
    height:70px;

    border-radius:50%;

    background:#fff;

    padding:5px;

    object-fit:cover;

    transition:.35s;

    position:relative;

    z-index:3;

}

.guide-item:hover img{

    transform:translateY(-8px) scale(1.08);

}

/* Tulisan */

.guide-item p{

    margin-top:15px;

    color:#fff;

    font-size:15px;

    font-weight:500;

}

/* Tombol */

.btn-guide{

    display:inline-block;

    background:#FFD58A;

    color:#2d2d2d;

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

    text-decoration:none;

}

.btn-guide:hover{

    background:#FFC95A;

    transform:translateY(-2px);

}

/*=========================================
                MATERI
=========================================*/

.materi-section{

    padding:90px 0;

}

.materi-title{

    font-size:34px;

    font-weight:700;

    color:#3347A0;

    margin-bottom:55px;

}

.materi-card{

    border-radius:24px;

    padding:30px 22px;

    text-align:center;

    transition:all .35s ease;

    height:100%;

    cursor:pointer;

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

}

.materi-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 45px rgba(0,0,0,.12);

}

.card-yellow{

    background:#FFF7E8;

}

.card-blue{

    background:#EEF2FF;

}

.card-purple{

    background:#F5EEFF;

}

.card-green{

    background:#EEF8F0;

}

.materi-img{

    width:150px;

    margin:auto;

    margin-bottom:20px;

    transition:.35s;

}

.materi-card:hover .materi-img{

    transform:scale(1.08);

}

.materi-card h5{

    font-size:18px;

    font-weight:700;

    color:#444;

    margin-bottom:12px;

}

.materi-card p{

    color:#666;

    font-size:14px;

    line-height:1.7;

    min-height:70px;

    margin-bottom:22px;

}

.btn-materi{

    display:inline-block;

    padding:10px 24px;

    border-radius:30px;

    color:#fff;

    font-size:13px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.btn-materi:hover{

    color:#fff;

    transform:translateY(-2px);

}

.btn-yellow{

    background:#F8C13D;

}

.btn-yellow:hover{

    background:#E8AF1C;

}

.btn-blue{

    background:#7EA8FF;

}

.btn-blue:hover{

    background:#6897F7;

}

.btn-purple{

    background:#B78DFF;

}

.btn-purple:hover{

    background:#A273FF;

}

.btn-green{

    background:#82D88A;

}

.btn-green:hover{

    background:#6BCB74;

}

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

@media(max-width:992px){

    .materi-card{

        margin-bottom:15px;

    }

}

@media(max-width:768px){

    .materi-title{

        font-size:28px;

    }

    .materi-img{

        width:120px;

    }

}
/*=========================================
                CTA
=========================================*/

.cta-section{

    padding:90px 0;

}

.cta-box{

    background:linear-gradient(
        135deg,
        #5B57E3,
        #726EF3
    );

    border-radius:35px;

    padding:60px;

    overflow:hidden;

    position:relative;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

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

    right:-90px;

    top:-90px;

}


/*=========================================
                TITLE
=========================================*/

.cta-title{

    color:#fff;

    font-size:40px;

    font-weight:700;

    margin-bottom:20px;

    line-height:1.25;

}

.cta-title span{

    color:#FFD54F;

}


/*=========================================
                TEXT
=========================================*/

.cta-text{

    color:rgba(255,255,255,.88);

    line-height:1.8;

    margin-bottom:30px;

    max-width:650px;

}


/*=========================================
                CTA BUTTON WRAPPER
=========================================*/

.cta-buttons{

    display:flex;

    align-items:center;

    gap:14px;

    flex-wrap:wrap;

}


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

.cta-buttons .btn-cta{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    min-height:54px;

    padding:14px 25px;

    border-radius:50px;

    text-decoration:none;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease,
        color .35s ease;

}


/*=========================================
                UJI LITERASI
=========================================*/

.cta-buttons .btn-literasi{

    border:none;

    background:#FFD54F;

    color:#222;

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

}

.cta-buttons .btn-literasi:hover{

    color:#222;

    background:#FFDC6B;

    transform:translateY(-4px);

    box-shadow:
        0 15px 30px rgba(0,0,0,.18);

}


/*=========================================
                TES DISKALKULIA
=========================================*/

.cta-buttons .btn-diskalkulia{

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

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

    color:#fff;

    backdrop-filter:blur(8px);

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

}

.cta-buttons .btn-diskalkulia:hover{

    background:#fff;

    color:#5B57E3;

    transform:translateY(-4px);

    box-shadow:
        0 15px 30px rgba(0,0,0,.15);

}


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

.cta-buttons .btn-cta i{

    font-size:17px;

    transition:transform .3s ease;

}

.cta-buttons .btn-cta:hover i{

    transform:translateX(3px);

}


/*=========================================
                IMAGE
=========================================*/

.cta-image{

    width:320px;

    margin:auto;

    animation:floating 5s ease-in-out infinite;

    transition:.35s;

    position:relative;

    z-index:2;

}

.cta-image:hover{

    transform:scale(1.05);

}


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

@media(max-width:991px){

    .cta-box{

        padding:50px 40px;

    }

    .cta-title{

        font-size:34px;

    }

    .cta-image{

        width:280px;

        margin-top:35px;

    }

}


@media(max-width:576px){

    .cta-section{

        padding:60px 0;

    }

    .cta-box{

        padding:40px 25px;

        border-radius:28px;

    }

    .cta-title{

        font-size:29px;

    }

    .cta-text{

        font-size:14px;

        line-height:1.7;

    }

    .cta-buttons{

        flex-direction:column;

        align-items:stretch;

        width:100%;

    }

    .cta-buttons .btn-cta{

        width:100%;

    }

    .cta-image{

        width:230px;

    }

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

.testimonial-section{
    padding:100px 0;
}

.testimonial-title{
    font-size:36px;
    font-weight:700;
    color:#3347A0;
}

.testimonial-card{
    background:#fff;
    border-radius:28px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .35s ease;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(91,87,227,.18);
}

/*=========================================
        CONTAINER GAMBAR
=========================================*/

.testimonial-avatar-wrapper{
    width:130px;
    height:130px;
    margin:0 auto 22px;

    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    border-radius:50%;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.35s;
}

.testimonial-avatar{
    width:90px;
    height:90px;
    object-fit:contain;
    transition:.35s;
}

/* Hover */
.testimonial-card:hover .testimonial-avatar-wrapper{
    transform:translateY(-5px);
    box-shadow:0 15px 28px rgba(91,87,227,.18);
}

.testimonial-card:hover .testimonial-avatar{
    transform:scale(1.08);
}

.testimonial-card h5{
    font-size:20px;
    font-weight:700;
    color:#333;
    margin-bottom:10px;
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
    min-height:110px;
    margin-bottom:18px;
}

.testimonial-star{
    color:#FFC83D;
    font-size:20px;
    letter-spacing:3px;
}

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

@media(max-width:768px){
    .testimonial-avatar-wrapper{
        width:110px;
        height:110px;
    }

    .testimonial-avatar{
        width:75px;
        height:75px;
    }

    .testimonial-title{
        font-size:30px;
    }
}

/*=========================================
            TEAM
=========================================*/

.team-section{
    padding:100px 0;
}

.team-wrapper{
    background:#ECE9FF;
    border-radius:40px;
    padding:60px 40px;
}

.team-title{
    text-align:center;
    color:#3347A0;
    font-size:34px;
    font-weight:700;
    margin-bottom:50px;
}

.team-item{
    text-align:center;
    transition:.35s;
}

.team-item:hover{
    transform:translateY(-8px);
}

.team-photo{
    width:150px;
    height:150px;
    object-fit:cover;
    border-radius:50%;
    background:#fff;
    padding:6px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.team-item:hover .team-photo{
    transform:scale(1.06) rotate(-2deg);
}

.team-item h5{
    margin-top:18px;
    font-size:20px;
    font-weight:700;
    color:#2f2f2f;
}

.team-item p{

    color:#666;

    margin-top:5px;

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

.footer-section{

    background:#4B469C;

    color:#fff;

    padding:70px 0 30px;

    margin-top:100px;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

.footer-desc{

    color:rgba(255,255,255,.85);

    line-height:1.8;

}

.footer-section h5{

    margin-bottom:20px;

    font-weight:700;

}

.footer-section ul{

    list-style:none;

    padding:0;

}

.footer-section li{

    margin-bottom:12px;

}

.footer-section a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

.footer-section a:hover{

    color:#FFD54F;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

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

    font-size:20px;

    transition:.35s;

}

.footer-social a:hover{

    transform:translateY(-6px);

    background:#FFD54F;

    color:#333;

}

.footer-section hr{

    margin:40px 0 20px;

    border-color:rgba(255,255,255,.2);

}

.copyright{

    text-align:center;

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

}
/* =========================================
   KOTAK SARAN
========================================= */

.suggestion-wrapper {

    display: flex;

    align-items: flex-end;

    justify-content: center;

    gap: 20px;

    margin-top: 30px;

}


/* =========================================
   MASKOT
========================================= */

.suggestion-mascot {

    flex: 0 0 180px;

    display: flex;

    justify-content: center;

    align-items: flex-end;

}

.suggestion-mascot img {

    width: 180px;

    max-width: 100%;

    height: auto;

    object-fit: contain;

}


/* =========================================
   KOTAK TENGAH
========================================= */

.suggestion-card {

    flex: 1;

    max-width: 650px;

    min-height: 280px;

    background: #ffffff;

    border-radius: 28px;

    padding: 40px 45px;

    text-align: center;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

    border: 2px solid rgba(33, 81, 128, 0.08);

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================
   ICON
========================================= */

.suggestion-icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: #eef6ff;

    font-size: 30px;

    margin-bottom: 15px;

}


/* =========================================
   JUDUL
========================================= */

.suggestion-content h3 {

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 15px;

}


/* =========================================
   TEXT
========================================= */

.suggestion-content p {

    max-width: 520px;

    margin: 0 auto 10px;

    line-height: 1.7;

    color: #666;

}

.suggestion-subtitle {

    font-size: 14px;

}


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

.btn-suggestion {

    display: inline-block;

    margin-top: 18px;

    padding: 12px 28px;

    border-radius: 12px;

    background: #215180;

    color: #ffffff;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.3s ease;

}

.btn-suggestion:hover {

    transform: translateY(-3px);

    color: #6fa5f7;

    box-shadow: 0 8px 20px rgba(33, 81, 128, 0.25);

}


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

@media (max-width: 768px) {

    .suggestion-wrapper {

        gap: 5px;

    }

    .suggestion-mascot {

        flex: 0 0 90px;

    }

    .suggestion-mascot img {

        width: 90px;

    }

    .suggestion-card {

        padding: 30px 20px;

        min-height: auto;

    }

    .suggestion-content h3 {

        font-size: 22px;

    }

}


@media (max-width: 576px) {

    .suggestion-wrapper {

        flex-direction: column;

        align-items: center;

    }

    .suggestion-mascot {

        flex: none;

    }

    .mascot-left {

        display: none;

    }

    .mascot-right {

        margin-top: 10px;

    }

    .suggestion-mascot img {

        width: 130px;

    }

    .suggestion-card {

        width: 100%;

    }

}