@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#F7F8FA;
color:#1E293B;
line-height:1.6;
}

.container{
max-width:1200px;
margin:auto;
padding:0 24px;
}

.hero{
padding:100px 0 80px;
text-align:center;
}

.hero h1{
font-size:56px;
font-weight:800;
line-height:1.1;
margin-bottom:20px;
}

.hero p{
max-width:760px;
margin:0 auto 32px;
font-size:20px;
color:#475569;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:16px;
flex-wrap:wrap;
}

.btn-primary{
background:#1E40AF;
color:white;
padding:16px 28px;
border-radius:14px;
text-decoration:none;
font-weight:600;
}

.btn-secondary{
background:white;
border:1px solid #CBD5E1;
color:#1E293B;
padding:16px 28px;
border-radius:14px;
text-decoration:none;
font-weight:600;
}

.section{
padding:80px 0;
}

.section-title{
font-size:36px;
font-weight:800;
margin-bottom:16px;
text-align:center;
}

.section-subtitle{
text-align:center;
color:#64748B;
max-width:700px;
margin:0 auto 50px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:24px;
}

.card{
background:white;
border-radius:20px;
padding:28px;
box-shadow:0 4px 20px rgba(0,0,0,0.05);
transition:0.2s ease;
}

.card:hover{
transform:translateY(-3px);
}

.card h3{
font-size:22px;
margin-bottom:10px;
}

.card p{
color:#64748B;
}

.cta{
background:#1E40AF;
color:white;
border-radius:28px;
padding:60px 40px;
text-align:center;
}

.cta h2{
font-size:40px;
margin-bottom:16px;
}

.cta p{
max-width:700px;
margin:0 auto 24px;
opacity:0.95;
}

.cta .btn-primary{
background:white;
color:#1E40AF;
display:inline-block;
}

.footer{
padding:40px 0;
text-align:center;
color:#64748B;
font-size:14px;
}

@media(max-width:768px){

.hero{
padding:70px 0 50px;
}

.hero h1{
font-size:40px;
}

.hero p{
font-size:18px;
}

.section-title{
font-size:30px;
}

.cta h2{
font-size:30px;
}

}
