.hero{
padding:90px 0;
text-align:center;
background:
radial-gradient(circle at 80% 20%,rgba(124,58,237,.20),transparent 28%),
radial-gradient(circle at 15% 10%,rgba(37,99,235,.18),transparent 25%),
linear-gradient(135deg,#eff6ff,#ffffff 55%,#f5f3ff);
}

.hero h1{
font-size:48px;
margin-bottom:20px;
color:#0f172a;
}

.hero p{
max-width:700px;
margin:auto;
font-size:18px;
line-height:2;
color:#64748b;
}

.features-page{
padding:80px 0;
}

.grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.box{
background:#fff;
padding:30px;
border-radius:24px;
border:1px solid #e5e7eb;
text-align:center;
transition:.3s;
box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.box:hover{
transform:translateY(-8px);
}

.icon{
font-size:46px;
margin-bottom:18px;
}

.box h2{
font-size:22px;
margin-bottom:12px;
color:#0f172a;
}

.box p{
color:#64748b;
line-height:2;
font-size:15px;
}

.cta{
margin:80px auto;
width:90%;
max-width:1200px;
padding:70px 30px;
border-radius:30px;
text-align:center;
background:linear-gradient(135deg,#2563eb,#7c3aed);
color:#fff;
}

.cta h2{
font-size:36px;
margin-bottom:15px;
}

.cta p{
margin-bottom:30px;
color:#e2e8f0;
}

@media(max-width:1000px){

.grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:700px){

.grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:36px;
}

}