/* =========================================
   RESET & GLOBAL
========================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --bg-light:#F7FBFD;
    --card-bg:#FFFFFF;
    --neon-blue:#009DCC;
    --neon-green:#28C90A;
    --text-dark:#10212B;
    --text-muted:#667985;

    --glow-blue:
        0 0 8px rgba(0,157,204,.18),
        0 0 18px rgba(0,157,204,.10);

    --glow-green:
        0 0 8px rgba(40,201,10,.16),
        0 0 18px rgba(40,201,10,.10);
}

body{
    font-family:'Inter',sans-serif;
    background:#F7FBFD;
    color:#14242E;
    scroll-behavior:smooth;
}

.container{
    max-width:1280px;
    margin:auto;
    padding:0 24px;
}

/* =========================================
   NAVBAR
========================================= */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
    border-bottom:1px solid rgba(0,157,204,.18);
    position:relative;
    background:#FFFFFF;
}

.logo h1{
    font-size:1.8rem;
    font-weight:800;
    background:linear-gradient(135deg,#009DCC,#28C90A);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.logo span{
    font-size:.8rem;
    color:var(--neon-green);
}

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-links a{
    text-decoration:none;
    color:#304854;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--neon-blue);
    text-shadow:0 0 4px rgba(0,157,204,.15);
}

/* =========================================
   MOBILE MENU
========================================= */

.menu-btn{
    display:none;
    background:#FFFFFF;
    border:1.5px solid var(--neon-blue);
    color:var(--neon-blue);
    font-size:1.6rem;
    padding:6px 14px;
    border-radius:12px;
    cursor:pointer;
}

.mobile-menu{
    display:none;
    flex-direction:column;
    gap:22px;
    background:#FFFFFF;
    position:absolute;
    top:85px;
    left:0;
    width:100%;
    padding:24px;
    border-radius:28px;
    border:1px solid rgba(0,157,204,.35);
    box-shadow:0 15px 40px rgba(20,50,70,.12);
    z-index:999;
}

.mobile-menu.show{
    display:flex;
}

.mobile-menu a{
    text-decoration:none;
    color:#213943;
    font-size:1.1rem;
    border-bottom:1px solid rgba(0,157,204,.15);
    padding-bottom:10px;
}

/* =========================================
   BUTTONS
========================================= */

.btn-neon-solid{
    background:linear-gradient(95deg,#00B9E8,#29D90D);
    border:none;
    color:#FFFFFF;
    padding:10px 22px;
    border-radius:40px;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 7px 20px rgba(0,157,204,.18);
    transition:.3s;
}

.btn-neon-solid:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,157,204,.25);
}

.btn-neon-outline{
    background:#FFFFFF;
    border:1.5px solid var(--neon-blue);
    color:var(--neon-blue);
    padding:10px 22px;
    border-radius:40px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-neon-outline:hover{
    background:#EAF9FD;
}

.btn-neon-green{
    background:#FFFFFF;
    border:1.5px solid var(--neon-green);
    color:#22A80A;
    padding:10px 28px;
    border-radius:40px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.btn-neon-green:hover{
    background:#F0FFED;
}

/* =========================================
   HERO SECTION
========================================= */

.hero{
    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    padding:60px 5%;
    overflow:hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(0,212,255,.08), transparent 30%),
        radial-gradient(circle at 90% 85%, rgba(57,255,20,.07), transparent 30%),
        #F7FBFD;
}

.hero::before,
.hero::after{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    filter:blur(180px);
    opacity:.16;
}

.hero::before{
    left:-150px;
    top:-150px;
    background:#00D4FF;
}

.hero::after{
    right:-150px;
    bottom:-150px;
    background:#39FF14;
}

.hero-center{
    width:90%;
    max-width:1400px;
    margin:auto;
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 24px;
    border-radius:50px;
    background:#EAF9FD;
    border:1px solid rgba(0,157,204,.22);
    color:#008CB8;
    font-weight:600;
    margin-bottom:15px;
}

.hero h1{
    font-size:4.5rem;
    font-weight:800;
    line-height:1.1;
    margin-bottom:15px;
    color:#10212B;
}

.hero h1 span{
    display:block;
    background:linear-gradient(135deg,#009DCC,#28C90A);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.hero-desc{
    width:90%;
    margin:10px auto;
    font-size:1.1rem;
    line-height:1.8;
    color:#516773;
    text-align:justify;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-top:25px;
}

.hero-stats{
    width:90%;
    margin:35px auto 0;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* =========================================
   CARDS
========================================= */

.card{
    background:var(--card-bg);
    border-radius:28px;
    padding:28px;
    border:1px solid #DDE8ED;
    box-shadow:0 10px 30px rgba(23,58,75,.06);
    transition:.3s;
}

.card:hover{
    transform:translateY(-4px);
    border-color:var(--neon-blue);
    box-shadow:0 15px 35px rgba(0,157,204,.12);
}

.stat-card{
    background:#FFFFFF;
    padding:22px;
    border-radius:22px;
    border:1px solid rgba(0,157,204,.16);
    box-shadow:0 7px 22px rgba(20,55,70,.06);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-5px);
    border-color:#00A7D5;
    box-shadow:0 12px 28px rgba(0,157,204,.12);
}

.stat-card h3{
    color:#26B80A;
    font-size:1.8rem;
    margin-bottom:8px;
}

.stat-card span{
    color:#607682;
}

/* =========================================
   ABOUT SECTION
========================================= */

#about{
    padding:80px 0;
    background:#FFFFFF;
}

.about-main{
    padding:40px;
    border-radius:30px;
    margin-bottom:40px;
    background:#FFFFFF;
    border:1px solid #E2ECEF;
    box-shadow:0 10px 35px rgba(23,58,75,.06);
}

.about-main h2{
    font-size:2.2rem;
    margin-bottom:25px;
    background:linear-gradient(135deg,#009DCC,#28C90A);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.about-main p{
    line-height:2;
    color:#546975;
    margin-bottom:18px;
    text-align:justify;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.about-card{
    text-align:center;
    padding:35px 25px;
}

.about-card i{
    font-size:40px;
    color:#28C90A;
    margin-bottom:15px;
}

/* =========================================
   COMMON SECTIONS
========================================= */

.section-title{
    font-size:2.2rem;
    text-align:center;
    margin-bottom:30px;
    background:linear-gradient(135deg,#009DCC,#28C90A);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.grid-3{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
    margin:40px 0;
}

.mv-flex{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    margin:50px 0;
}

.mv-card{
    flex:1;
    background:#FFFFFF;
    border-left:5px solid var(--neon-blue);
    border-top:1px solid #E3ECEF;
    border-right:1px solid #E3ECEF;
    border-bottom:1px solid #E3ECEF;
    box-shadow:0 10px 30px rgba(23,58,75,.06);
    padding:28px;
    border-radius:24px;
    color:#203640;
}

/* =========================================
   FAQ
========================================= */

.faq-item{
    background:#FFFFFF;
    border:1px solid #E1EAEE;
    box-shadow:0 6px 20px rgba(23,58,75,.05);
    border-radius:20px;
    margin-bottom:16px;
    padding:0 20px;
}

.faq-question{
    padding:18px 0;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    cursor:pointer;
    color:#172E38;
}

.faq-answer{
    display:none;
    padding-bottom:20px;
    color:#617783;
}

.faq-item.active .faq-answer{
    display:block;
}

/* =========================================
   FOOTER
========================================= */

.footer{
    background:#EFF7FA;
    color:#263E48;
    padding:40px 0 20px;
    margin-top:60px;
    border-top:1px solid rgba(0,157,204,.18);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .menu-btn{
        display:block;
    }

    .hero{
        min-height:auto;
        padding:40px 15px;
    }

    .hero-center,
    .hero-desc,
    .hero-stats{
        width:100%;
    }

    .hero h1{
        font-size:2.4rem;
    }

    .hero-desc{
        font-size:.95rem;
        text-align:left;
    }

    .hero-stats{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .about-main{
        padding:25px 20px;
    }
}