/* HERO */
.hero{
 padding:100px 20px;
 text-align:center;
 background:linear-gradient(135deg,#1e3c72,#2a5298);
}

.hero h1{
 font-size:42px;
 margin-bottom:10px;
}

.hero p{
 font-size:18px;
 opacity:0.9;
}

.hero-buttons{
 margin-top:20px;
}

.secondary{
 background:transparent;
 border:2px solid #fff;
}

/* STATS */
.hero-stats{
 display:flex;
 justify-content:center;
 gap:40px;
 margin-top:40px;
}

.hero-stats div{
 text-align:center;
}

/* SERVICES */
.services{
 padding:60px 0;
 text-align:center;
}

.services h2{
 margin-bottom:30px;
}

/* WHY */
.why{
 padding:60px 0;
 text-align:center;
}

/* CTA */
.cta{
 background:#020617;
 padding:60px 0;
 text-align:center;
}

/* MOBILE */
@media(max-width:768px){
 .hero h1{font-size:26px;}
 .hero-stats{flex-direction:column;}
}