/*=========================================
                RESET CSS
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


/*=========================================
                ROOT COLOR
=========================================*/

:root{

    --primary-color:#6D28D9;
    --secondary-color:#8B5CF6;
    --white:#FFFFFF;
    --black:#111827;
    --gray:#6B7280;
    --light-gray:#F8FAFC;
    --shadow:0 10px 30px rgba(0,0,0,0.08);

}


/*=========================================
                    HTML
=========================================*/

html{
    scroll-behavior:smooth;
}


/*=========================================
                    BODY
=========================================*/

body{

    font-family:"Poppins",sans-serif;

    background-color:var(--white);

    color:var(--black);

    overflow-x:hidden;

    line-height:1.8;

}


/*=========================================
                CONTAINER
=========================================*/

.container{

    width:90%;
    max-width:1200px;

    margin:auto;

}


/*=========================================
                    SECTION
=========================================*/

section{

    padding:110px 0;

}


/*=========================================
                SECTION TITLE
=========================================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}


.section-title h2{

    font-size:42px;

    color:var(--primary-color);

    margin-bottom:15px;

    font-weight:700;

}


.section-title p{

    color:var(--gray);

    font-size:17px;

    max-width:700px;

    margin:auto;

}

/*=========================================
                    NAVBAR
=========================================*/

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    padding:18px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(255, 255, 255, 0.95);

    backdrop-filter:blur(10px);

    box-shadow:0 2px 20px rgba(0,0,0,0.05);

    z-index:1000;

}


.logo img{

    width:120px;

}


.nav-menu{

    display:flex;

    gap:30px;

}


.nav-menu a{

    text-decoration:none;

    color:var(--black);

    font-weight:500;

    transition:.3s;

}


.nav-menu a:hover{

    color:var(--primary-color);

}


.btn-navbar{

    text-decoration:none;

    padding:13px 28px;

    background:var(--primary-color);

    color:white;

    border-radius:30px;

    font-weight:600;

    transition:.3s;

}


.btn-navbar:hover{

    background:var(--secondary-color);

}


.hamburger{

    display:none;

    cursor:pointer;

}


.hamburger span{

    display:block;

    width:28px;

    height:3px;

    margin:5px 0;

    background:var(--black);

    border-radius:20px;

}




/*=========================================
                HERO SECTION
=========================================*/

.hero{

    position: relative;

    overflow: hidden;

    padding: 150px 8% 80px;

    background: #FFFFFF;

}


/*=========================================
                SHAPE BACKGROUND
=========================================*/

.hero::before{

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    top: -150px;

    right: -100px;

    border-radius: 50%;

    background: #EDE9FE;

    z-index: 0;

}


.hero::after{

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    bottom: -100px;

    left: -80px;

    border-radius: 50%;

    background: #DDD6FE;

    z-index: 0;

}


/*=========================================
                HERO CONTENT
=========================================*/

.hero-content{

    position:relative;

    z-index:1;

    max-width:1000px;

    margin:auto;

    padding:40px 50px;

    text-align:center;

    background:#FFFFFF;

    border-radius:45px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

}


/*=========================================
                LOGO
=========================================*/

.hero-logo img{

    width: 240px;

    margin-bottom: 20px;

}


/*=========================================
                TITLE
=========================================*/

.hero h1{

    font-size: 56px;

    font-weight: 800;

    line-height: 1.3;

    color: #5B21B6;

    margin-bottom: 25px;

}


/*=========================================
                DESCRIPTION
=========================================*/

.hero p{

    max-width: 750px;

    margin: auto;

    line-height: 1.9;

    font-size: 18px;

    color: #555;

    margin-bottom: 35px;

}


/*=========================================
                BADGE PROGRAM
=========================================*/

.hero-badge{

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 40px;

}


.hero-badge span{

    padding: 12px 22px;

    border-radius: 50px;

    background: #540369;

    color: #5B21B6;

    font-weight: 600;

}


/*=========================================
                BUTTON
=========================================*/

.hero-button{

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}


.btn-primary{

    text-decoration: none;

    padding: 18px 35px;

    border-radius: 50px;

    background: #FACC15;

    color: #222;

    font-weight: 700;

    transition: .3s ease;

}


.btn-primary:hover{

    transform: translateY(-5px);

}


.btn-secondary{

    text-decoration: none;

    padding: 18px 35px;

    border-radius: 50px;

    border: 2px solid #5B21B6;

    color: #5B21B6;

    font-weight: 700;

    transition: .3s ease;

}


.btn-secondary:hover{

    background: #5B21B6;

    color: rgb(114, 2, 127);

}


/*=========================================
                STATISTIK
=========================================*/

.hero-stats{

    display: grid;

    grid-template-columns:
    repeat(4,1fr);

    gap: 20px;

    margin-top: 50px;

}


.stat-card{

    padding: 25px;

    background: #FFFFFF;

    border-radius: 25px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.07);

}


.stat-card h2{

    font-size: 34px;

    color: #5B21B6;

    margin-bottom: 10px;

}


.stat-card p{

    margin: 0;

    color: #666;

    font-size: 15px;

}


/*=========================================
                RESPONSIVE
=========================================*/

@media(max-width:768px){

.hero{

    padding:120px 5% 60px;

}


.hero-content{

    padding:40px 25px;

}


.hero h1{

    font-size:34px;

}


.hero p{

    font-size:16px;

}


.hero-logo img{

    width:180px;

}


.hero-badge{

    gap:10px;

}


.hero-badge span{

    font-size:14px;

}


.hero-button{

    flex-direction:column;

}


.btn-primary,
.btn-secondary{

    width:100%;

    text-align:center;

}


.hero-stats{

    grid-template-columns:1fr;

}

}

/*=========================================
                TENTANG KAMI
=========================================*/

.tentang{

    background:var(--light-gray);

}


.tentang-wrapper{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:60px;

}


.tentang-image{

    flex:1;

}


.tentang-image img{

    width:100%;

    border-radius:25px;

    box-shadow:var(--shadow);

    object-fit:cover;

}


.tentang-text{

    flex:1;

}


.tentang-text h2{

    color:var(--primary-color);

    font-size:42px;

    margin-bottom:25px;

}


.tentang-text p{

    margin-bottom:18px;

    color:var(--gray);

    font-size:16px;

}



/*=========================================
              PROGRAM BELAJAR
=========================================*/

.program{

    background:var(--white);

}


.program-tabs{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:40px;

}


.tab-button{

    border:none;

    cursor:pointer;

    padding:15px 30px;

    border-radius:50px;

    background:#F3F4F6;

    color:var(--black);

    font-weight:600;

    transition:.3s;

}


.tab-button:hover{

    background:var(--secondary-color);

    color:white;

}


.tab-button.active{

    background:var(--primary-color);

    color:white;

}


/* CONTENT PROGRAM */

.program-content{

    display:none;

    max-width:900px;

    margin:auto;

    padding:40px;

    border-radius:25px;

    background:var(--light-gray);

    box-shadow:var(--shadow);

}


.program-content.active{

    display:block;

}


.program-content ul{

    list-style:none;

}


.program-content ul li{

    position:relative;

    padding-left:35px;

    margin-bottom:18px;

    font-size:17px;

    color:var(--black);

}


.program-content ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--primary-color);

    font-weight:bold;

}


/* BUTTON PROGRAM */

.program-btn{

    text-align:center;

    margin-top:35px;

}


.btn-program{

    display:inline-block;

    text-decoration:none;

    padding:16px 35px;

    border-radius:50px;

    background:var(--primary-color);

    color:white;

    font-weight:600;

    transition:.3s;

}


.btn-program:hover{

    background:var(--secondary-color);

}

/*=========================================
            MENGAPA MEMILIH KAMI
=========================================*/

.mengapa-kami{

    background:var(--light-gray);

}


.mengapa-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}


.mengapa-card{

    padding:35px 25px;

    background:white;

    border-radius:25px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.3s;

}


.mengapa-card:hover{

    transform:translateY(-8px);

}


.mengapa-card i{

    font-size:45px;

    color:var(--primary-color);

    margin-bottom:20px;

}


.mengapa-card h3{

    margin-bottom:15px;

    font-size:20px;

}


.mengapa-card p{

    color:var(--gray);

    font-size:15px;

}


/*=========================================
                FASILITAS
=========================================*/

.fasilitas{

    padding:100px 8%;

    background:#ffffff;

}


/*=========================================
              VIDEO TOUR
=========================================*/

.video-tour{

    display:flex;
    justify-content:center;
    align-items:center;

    margin-top:40px;
    margin-bottom:50px;

}


.video-tour video{

    width:100%;
    max-width:850px;

    max-height:480px;

    object-fit:cover;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}


/*=========================================
            CARD FASILITAS
=========================================*/

.facility-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit, minmax(280px,1fr));

    gap:25px;

}


.facility-card{

    background:#ffffff;

    padding:30px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s ease;

}


.facility-card:hover{

    transform:translateY(-8px);

}


.facility-card i{

    font-size:40px;

    color:#7c3aed;

    margin-bottom:15px;

}


.facility-card h3{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

    color:#111827;

}


.facility-card p{

    line-height:1.8;

    color:#6b7280;

    font-size:16px;

}


/*=========================================
            TEKS PENUTUP
=========================================*/

.facility-footer{

    margin-top:60px;

    text-align:center;

}


.facility-footer p{

    max-width:850px;

    margin:auto;

    line-height:1.9;

    font-size:18px;

    color:#4b5563;

}


/*=========================================
          RESPONSIVE TABLET
=========================================*/

@media(max-width:1024px){


    .fasilitas{

        padding:90px 7%;

    }


    .video-tour video{

        max-width:700px;

        max-height:400px;

    }


    .facility-grid{

        gap:20px;

    }

}


/*=========================================
            RESPONSIVE MOBILE
=========================================*/

@media(max-width:768px){


    .fasilitas{

        padding:80px 6%;

    }


    .video-tour{

        margin-top:30px;

        margin-bottom:40px;

    }


    .video-tour video{

        width:100%;

        max-width:100%;

        max-height:280px;

        border-radius:20px;

    }


    .facility-grid{

        grid-template-columns:1fr;

    }


    .facility-card{

        padding:25px;

    }


    .facility-card i{

        font-size:35px;

    }


    .facility-card h3{

        font-size:20px;

    }


    .facility-card p{

        font-size:15px;

    }


    .facility-footer{

        margin-top:40px;

    }


    .facility-footer p{

        font-size:16px;

        line-height:1.8;

    }

}


/*=========================================
          RESPONSIVE HP KECIL
=========================================*/

@media(max-width:480px){


    .video-tour video{

        max-height:230px;

        border-radius:18px;

    }


    .facility-card{

        padding:22px;

    }


    .facility-card h3{

        font-size:18px;

    }


    .facility-card p{

        font-size:14px;

    }


    .facility-footer p{

        font-size:15px;

    }

}

/*=========================================
                    FAQ
=========================================*/

.faq{

    background:var(--light-gray);

}


.faq-item{

    max-width:900px;

    margin:0 auto 20px;

    background:var(--white);

    border-radius:20px;

    box-shadow:var(--shadow);

    overflow:hidden;

}


.faq-question{

    width:100%;

    padding:25px 30px;

    border:none;

    background:transparent;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

    text-align:left;

    color:var(--black);

}


.faq-answer{

    max-height:0;

    overflow:hidden;

    padding:0 30px;

    color:var(--gray);

    line-height:1.8;

    transition:all .4s ease;

}


.faq-item.active .faq-answer{

    max-height:250px;

    padding:0 30px 25px;

}



/*=========================================
                  KONTAK
=========================================*/

.kontak{

    background:var(--white);

}


.kontak-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}


.kontak-card{

    padding:35px 25px;

    background:var(--light-gray);

    border-radius:25px;

    text-align:center;

    transition:.3s;

}


.kontak-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}


.kontak-card h3{

    margin-bottom:15px;

    color:var(--primary-color);

    font-size:22px;

}


.kontak-card p{

    color:var(--gray);

    font-size:15px;

    line-height:1.8;

}

/*=========================================
                GOOGLE MAPS
=========================================*/

.maps{

    padding:0;

}


.maps iframe{

    width:100%;

    display:block;

}



/*=========================================
                    FOOTER
=========================================*/

.footer{

    background: linear-gradient(
        135deg,
        #5b21b6,
        #7c3aed
    );

    color: white;

    padding: 80px 8% 30px;

}


/*=========================================
                LOGO FOOTER
=========================================*/

.footer-logo{

    text-align: center;

    margin-bottom: 60px;

}


.footer-logo img{

    width: 140px;

    margin-bottom: 20px;

}


.footer-logo h2{

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 15px;

}


.footer-logo p{

    max-width: 700px;

    margin: auto;

    line-height: 1.8;

    color: #e5e7eb;

    font-size: 16px;

}


/*=========================================
                GRID FOOTER
=========================================*/

.footer-grid{

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(250px,1fr));

    gap: 40px;

}


.footer-box{

    text-align: center;

}


.footer-box h3{

    font-size: 22px;

    margin-bottom: 20px;

    font-weight: 600;

}


.footer-box ul{

    list-style: none;

    padding: 0;

}


.footer-box li{

    margin-bottom: 15px;

    color: #f3f4f6;

    line-height: 1.8;

}


/*=========================================
                COPYRIGHT
=========================================*/

.copyright{

    margin-top: 60px;

    padding-top: 25px;

    border-top: 1px solid
    rgba(255,255,255,.25);

    text-align: center;

}


.copyright p{

    color: #e5e7eb;

    font-size: 15px;

}


/*=========================================
                HOVER
=========================================*/

.footer-box li{

    transition: .3s ease;

}


.footer-box li:hover{

    transform: translateY(-2px);

    color: white;

}


/*=========================================
            RESPONSIVE TABLET
=========================================*/

@media(max-width:768px){


    .footer{

        padding: 70px 6% 25px;

    }


    .footer-logo{

        margin-bottom: 45px;

    }


    .footer-logo img{

        width: 120px;

    }


    .footer-logo h2{

        font-size: 26px;

    }


    .footer-logo p{

        font-size: 15px;

    }


    .footer-grid{

        gap: 30px;

    }


    .footer-box h3{

        font-size: 20px;

    }


}


/*=========================================
            RESPONSIVE MOBILE
=========================================*/

@media(max-width:480px){


    .footer{

        padding: 60px 5% 20px;

    }


    .footer-logo img{

        width: 100px;

    }


    .footer-logo h2{

        font-size: 22px;

    }


    .footer-logo p{

        font-size: 14px;

        line-height: 1.7;

    }


    .footer-box h3{

        font-size: 18px;

    }


    .footer-box li{

        font-size: 14px;

    }


    .copyright p{

        font-size: 13px;

    }

}


/*=========================================
            FLOATING WHATSAPP
=========================================*/

.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:30px;

    z-index:999;

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 22px;

    background:#25D366;

    color:white;

    border-radius:50px;

    cursor:pointer;

    box-shadow:var(--shadow);

    transition:.3s;

}


.floating-whatsapp:hover{

    transform:translateY(-5px);

}


.floating-whatsapp i{

    font-size:26px;

}


.floating-whatsapp span{

    font-weight:600;

}



/*=========================================
                BACK TO TOP
=========================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:95px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary-color);

    color:white;

    cursor:pointer;

    box-shadow:var(--shadow);

    display:none;

    transition:.3s;

}


.back-to-top:hover{

    background:var(--secondary-color);

}


.back-to-top i{

    font-size:18px;

}

/*=========================================
            RESPONSIVE MOBILE
=========================================*/

@media (max-width: 992px){


/*====================
      NAVBAR
====================*/

.nav-menu{

    position:fixed;

    top:80px;
    right:-100%;

    width:280px;

    height:100vh;

    background:var(--white);

    flex-direction:column;

    align-items:center;

    padding-top:50px;

    gap:30px;

    box-shadow:var(--shadow);

    transition:.4s;

}


.nav-menu.active{

    right:0;

}


.hamburger{

    display:block;

}


.btn-navbar{

    display:none;

}



/*====================
        HERO
====================*/

.hero{

    padding:140px 0 80px;

    min-height:auto;

}


.hero h1{

    font-size:38px;

}


.hero p{

    font-size:16px;

}


.hero-button{

    flex-direction:column;

}


.btn-primary,
.btn-secondary{

    width:100%;

    max-width:300px;

    margin:auto;

}



/*====================
      TENTANG
====================*/

.tentang-wrapper{

    flex-direction:column;

}


.tentang-text{

    text-align:center;

}



/*====================
     MENGAPA KAMI
====================*/

.mengapa-grid{

    grid-template-columns:1fr 1fr;

}



/*====================
       KONTAK
====================*/

.kontak-grid{

    grid-template-columns:1fr 1fr;

}


}



/*=========================================
              MOBILE PHONE
=========================================*/

@media (max-width:768px){


.section-title h2{

    font-size:32px;

}



/*====================
      PROGRAM
====================*/

.program-tabs{

    gap:10px;

}


.tab-button{

    width:100%;

}


.program-content{

    padding:25px;

}



/*====================
     MENGAPA KAMI
====================*/

.mengapa-grid{

    grid-template-columns:1fr;

}



/*====================
      FASILITAS
====================*/

.fasilitas-preview img{

    height:280px;

}


.facility-list{

    gap:10px;

}


.facility-btn{

    width:100%;

}



/*====================
       KONTAK
====================*/

.kontak-grid{

    grid-template-columns:1fr;

}



/*====================
       FOOTER
====================*/

.footer h2{

    font-size:28px;

}


.footer p{

    font-size:15px;

}



/*====================
 FLOATING WHATSAPP
====================*/

.floating-whatsapp{

    padding:12px 18px;

}


.floating-whatsapp span{

    display:none;

}



/*====================
    BACK TO TOP
====================*/

.back-to-top{

    width:50px;
    height:50px;

}


}



/*=========================================
              SMALL MOBILE
=========================================*/

@media (max-width:480px){


.hero h1{

    font-size:30px;

}


.hero-tag{

    font-size:13px;

}


.hero p{

    font-size:15px;

}


.trial-class{

    font-size:14px;

    padding:12px 18px;

}


.section{

    padding:80px 0;

}


.program-content ul li{

    font-size:15px;

}


.facility-description h3{

    font-size:25px;

}


}

/*=========================================
                ANIMATION
=========================================*/


/* FADE IN */

.hidden{

    opacity:0;

    transform:translateY(40px);

    transition:
    opacity .8s ease,
    transform .8s ease;

}


.show{

    opacity:1;

    transform:translateY(0);

}




/*=========================================
            NAVBAR SCROLL EFFECT
=========================================*/

.navbar{

    transition:.3s ease;

}


.navbar.scroll{

    padding:15px 8%;

    box-shadow:
    0 10px 30px
    rgba(0,0,0,.08);

}




/*=========================================
            BUTTON HOVER EFFECT
=========================================*/

.btn-primary,
.btn-secondary,
.btn-navbar,
.btn-program{

    transition:
    transform .3s ease,
    box-shadow .3s ease;

}


.btn-primary:hover,
.btn-secondary:hover,
.btn-navbar:hover,
.btn-program:hover{

    transform:translateY(-4px);

    box-shadow:
    0 12px 25px
    rgba(0,0,0,.15);

}




/*=========================================
                CARD EFFECT
=========================================*/

.mengapa-card,
.kontak-card{

    transition:
    transform .3s ease,
    box-shadow .3s ease;

}


.mengapa-card:hover,
.kontak-card:hover{

    transform:translateY(-8px);

}




/*=========================================
            PROGRAM TAB EFFECT
=========================================*/

.tab-button{

    transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;

}


.tab-button:hover{

    transform:translateY(-2px);

}




/*=========================================
            FASILITAS EFFECT
=========================================*/

#facility-image{

    transition:
    opacity .4s ease;

}


.facility-btn{

    transition:
    .3s ease;

}


.facility-btn:hover{

    transform:translateY(-3px);

}




/*=========================================
                FAQ EFFECT
=========================================*/

.faq-item{

    transition:
    .3s ease;

}


.faq-item:hover{

    box-shadow:
    0 15px 30px
    rgba(0,0,0,.08);

}




/*=========================================
            FLOATING WHATSAPP
=========================================*/

.floating-whatsapp{

    transition:
    transform .3s ease;

}


.floating-whatsapp:hover{

    transform:translateY(-5px);

}




/*=========================================
                BACK TO TOP
=========================================*/

.back-to-top{

    transition:
    .3s ease;

}


.back-to-top:hover{

    transform:translateY(-5px);

}




/*=========================================
            HERO SECTION EFFECT
=========================================*/

.hero-content{

    animation:
    fadeHero 1.2s ease;

}


@keyframes fadeHero{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* =========================================
   HERO SECTION
========================================= */

.hero {

    min-height: 90vh;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 120px 20px 50px;

}

.hero-overlay {

    width: 100%;

}

.hero-content {

    width: 100%;

    max-width: 1200px;

    margin: auto;

}

.hero-text {

    max-width: 900px;

    margin: auto;

    text-align: center;

}

/* =========================================
   LOGO HERO
========================================= */

.hero-logo{

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0;

}


.hero-logo img{

    width: 450px;

    height: auto;

    object-fit: contain;

}


/* =========================================
   JUDUL HERO
========================================= */

.hero-text h1{

    font-size: 58px;
    font-weight: 800;

    line-height: 1.15;

    margin: 0;

}
/* =========================================
   DESKRIPSI HERO
========================================= */

.hero-description {

    font-size: 22px;

    line-height: 1.8;

    max-width: 750px;

    margin: auto;
    margin-bottom: 25px;

}


/* =========================================
   BUTTON HERO
========================================= */

.hero-button {

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

    margin-bottom: 25px;

}


/* =========================================
   HERO STATISTIC
========================================= */

.hero-stats {

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

    margin-bottom: 25px;

}


.stat-card {

    min-width: 170px;

    padding: 20px 25px;

    border-radius: 20px;

    text-align: center;

    background: rgba(255,255,255,.15);

    backdrop-filter: blur(10px);

    box-shadow: 0 10px 30px rgba(0,0,0,.15);

}


.stat-card h3 {

    font-size: 36px;

    font-weight: 800;

    margin-bottom: 8px;

}


.stat-card p {

    font-size: 15px;

    font-weight: 500;

    line-height: 1.5;

}


/* =========================================
   HERO BADGE
========================================= */

.hero-badge {

    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

}


.hero-badge span {

    padding: 10px 18px;

    border-radius: 30px;

    background: rgba(255,255,255,.18);

    backdrop-filter: blur(10px);

    font-size: 16px;

    font-weight: 600;

}


/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width:768px) {

    .hero {

        min-height: auto;

        padding: 80px 20px 60px;

    }


    .hero-content {

        transform: none;

    }


    .hero-logo img {

        width: 280px;

    }


    .hero-text h1 {

        font-size: 38px;

        transform: none;

    }


    .hero-description {

        font-size: 18px;

    }


    .hero-button {

        flex-direction: column;

    }


    .hero-stats {

        gap: 15px;

    }


    .stat-card {

        width: 45%;

        min-width: 140px;

        padding: 18px;

    }


    .stat-card h3 {

        font-size: 28px;

    }

}