
*{box-sizing:border-box}
body{
margin:0;
font-family:Arial,sans-serif;
background:#08111f;
color:white;
}
.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:30px;
background:radial-gradient(circle at top,#1d4ed8,#08111f 65%);
}
.glass{
max-width:900px;
text-align:center;
padding:50px;
border-radius:28px;
background:rgba(255,255,255,.08);
backdrop-filter:blur(12px);
border:1px solid rgba(255,255,255,.15);
}
.brand{
font-family:'Montserrat',sans-serif;
font-size:clamp(2.5rem,6vw,4.8rem);
font-weight:900;
letter-spacing:-3px;
margin:0;
}
.brand span{
color:#f5b301;
position:relative;
}
.brand span:after{
content:'';
position:absolute;
left:0;
bottom:-8px;
width:100%;
height:4px;
background:#f5b301;
border-radius:20px;
}
.subtitle{
font-size:1.3rem;
color:#d1d5db;
}
.tagline{
font-size:1.2rem;
max-width:700px;
margin:auto;
}
.buttons{
display:flex;
gap:12px;
justify-content:center;
flex-wrap:wrap;
margin-top:25px;
}
.buttons a{
background:#f5b301;
color:#111;
text-decoration:none;
padding:15px 24px;
border-radius:12px;
font-weight:bold;
}
.services{
max-width:1200px;
margin:auto;
padding:60px 20px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
}
.card{
background:#0f172a;
padding:25px;
border-radius:18px;
}
footer{
text-align:center;
padding:25px;
border-top:1px solid rgba(255,255,255,.1);
}
footer a{color:#f5b301;text-decoration:none;}

.seo-content{
max-width:1100px;
margin:auto;
padding:40px 20px;
font-size:.95rem;
opacity:.9;
}
