*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050816;
    color:white;
    overflow-x:hidden;
}

.container{
    width:92%;
    max-width:1200px;
    margin:auto;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:80px 0;
    position:relative;
}

.hero::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:#2563eb;
    opacity:.15;
    filter:blur(120px);
    top:-120px;
    right:-100px;
}

.hero::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:#10b981;
    opacity:.15;
    filter:blur(120px);
    bottom:-120px;
    left:-100px;
}

.badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    margin-bottom:25px;
    font-size:14px;
}

.hero h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.hero span{
    background:linear-gradient(
        90deg,
        #60a5fa,
        #06b6d4,
        #10b981
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    max-width:800px;
    margin:auto;
    color:#cbd5e1;
    line-height:1.9;
    font-size:20px;
}

.btn{
    display:inline-block;
    margin-top:35px;
    padding:16px 36px;
    border-radius:14px;
    text-decoration:none;
    background:linear-gradient(
        135deg,
        #2563eb,
        #06b6d4
    );
    color:white;
    font-weight:700;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

/* STATS */

.stats{
    padding:30px 0 80px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    padding:30px;
    border-radius:20px;
    text-align:center;
}

.stat h3{
    color:#06b6d4;
    font-size:34px;
    margin-bottom:10px;
}

/* SECTIONS */

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:30px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
}

.card h3{
    margin-bottom:15px;
    color:#60a5fa;
}

.card p{
    color:#cbd5e1;
    line-height:1.8;
}

/* HIGHLIGHT */

.highlight{
    padding:100px 0;
}

.highlight-box{
    text-align:center;
    padding:60px;
    border-radius:30px;
    background:linear-gradient(
        135deg,
        rgba(37,99,235,.25),
        rgba(6,182,212,.15)
    );
}

.highlight-box h2{
    font-size:42px;
    margin-bottom:20px;
}

.highlight-box p{
    color:#d1d5db;
    max-width:800px;
    margin:auto;
    line-height:1.9;
}

/* FORM */

.form-section{
    padding:100px 0;
}

form{
    max-width:850px;
    margin:auto;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:40px;
}

input,
textarea{
    width:100%;
    margin-bottom:18px;
    padding:16px;
    border:none;
    border-radius:14px;
    background:#111827;
    color:white;
    font-size:16px;
}

textarea{
    min-height:180px;
}

button{
    width:100%;
    border:none;
    border-radius:14px;
    padding:16px;
    cursor:pointer;
    font-size:16px;
    font-weight:700;
    color:white;
    background:linear-gradient(
        135deg,
        #2563eb,
        #06b6d4
    );
}

footer{
    text-align:center;
    padding:40px 20px;
    color:#94a3b8;
}

/* MOBILE */

@media(max-width:992px){

.grid{
    grid-template-columns:repeat(2,1fr);
}

.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

.hero h1{
    font-size:54px;
}

}

@media(max-width:768px){

.hero{
    min-height:auto;
    padding:100px 0 60px;
}

.hero h1{
    font-size:38px;
}

.hero p{
    font-size:16px;
}

.section-title{
    font-size:32px;
}

.highlight-box{
    padding:35px 25px;
}

.highlight-box h2{
    font-size:28px;
}

.grid{
    grid-template-columns:1fr;
}

.stats-grid{
    grid-template-columns:1fr;
}

form{
    padding:25px;
}

.btn{
    width:100%;
    max-width:320px;
}

}

@media(max-width:480px){

.hero h1{
    font-size:32px;
}

.hero p{
    font-size:15px;
}

.section-title{
    font-size:28px;
}

.highlight-box h2{
    font-size:24px;
}

}