
body{
margin:0;
font-family:'Inter', sans-serif;
background:#eef1f4;
color:#1f2933;
}

.container{width:min(1100px,90%);margin:auto;}
.narrow{max-width:720px;}

.header{
background:white;
border-bottom:1px solid #d6dbe0;
}

.header-inner{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.brand{
font-family:'Manrope', sans-serif;
font-weight:700;
letter-spacing:.08em;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#334155;
font-size:14px;
}

.hero{
padding:80px 0;
background:white;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.hero h1{
font-family:'Manrope', sans-serif;
font-size:48px;
margin:0 0 20px;
}

.hero p{
color:#475569;
margin-bottom:20px;
}

.hero img{
width:100%;
border:1px solid #d6dbe0;
}

.btn{
display:inline-block;
padding:12px 20px;
background:#2f4f6f;
color:white;
text-decoration:none;
font-size:14px;
}

.stats{
background:#e2e8f0;
padding:50px 0;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
text-align:center;
}

.stats-grid b{
font-family:'Manrope', sans-serif;
font-size:24px;
display:block;
}

.stats-grid span{
color:#475569;
font-size:14px;
}

.section{
padding:80px 0;
background:white;
}

.footer{
background:#1f2933;
color:white;
padding:30px 0;
text-align:center;
font-size:14px;
}


.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.light-band{
background:#f8fafc;
}

@media(max-width:900px){
.services-grid{grid-template-columns:1fr;}
}
