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

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#050816;
color:#ffffff;
line-height:1.7;
}

.hero{
min-height:100vh;
background:
radial-gradient(circle at top right, rgba(0,140,255,0.18), transparent 30%),
linear-gradient(180deg,#08101f 0%, #050816 100%);
padding:30px 8%;
display:flex;
flex-direction:column;
justify-content:center;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:80px;
}

.logo{
font-size:28px;
font-weight:800;
color:#4ea8ff;
}

.nav-links{
list-style:none;
display:flex;
gap:30px;
}

.nav-links a{
color:#dbeafe;
text-decoration:none;
font-size:15px;
}

.hero-content{
max-width:850px;
}

.badge{
display:inline-block;
padding:8px 14px;
border:1px solid rgba(78,168,255,0.3);
border-radius:50px;
color:#7cc0ff;
margin-bottom:25px;
font-size:13px;
letter-spacing:1px;
}

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

.hero p{
color:#cbd5e1;
max-width:750px;
margin-bottom:35px;
font-size:18px;
}

.buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
}

.btn{
padding:15px 28px;
border-radius:10px;
text-decoration:none;
font-weight:700;
transition:0.3s ease;
}

.primary{
background:#1683ff;
color:white;
}

.primary:hover{
background:#0d6fe0;
}

.secondary{
border:1px solid rgba(255,255,255,0.15);
color:white;
}

.section{
padding:100px 8%;
}

.dark{
background:#08101f;
}

.section h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
}

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

.card{
background:#101827;
border:1px solid rgba(255,255,255,0.05);
padding:30px;
border-radius:16px;
transition:0.3s ease;
}

.card:hover{
transform:translateY(-5px);
border-color:rgba(78,168,255,0.35);
box-shadow:0 0 30px rgba(78,168,255,0.12);
}

.card h3{
margin-bottom:15px;
color:#60b3ff;
}

.card p{
color:#cbd5e1;
}

.content-box{
max-width:900px;
margin:auto;
text-align:center;
}

.content-box p{
color:#d1d5db;
font-size:18px;
}

.contact-section{
text-align:center;
}

.contact-box{
background:#101827;
border:1px solid rgba(255,255,255,0.06);
border-radius:16px;
padding:40px;
max-width:700px;
margin:auto;
}

.contact-box p{
margin-bottom:12px;
color:#dbeafe;
}

footer{
border-top:1px solid rgba(255,255,255,0.06);
padding:25px;
text-align:center;
color:#94a3b8;
background:#050816;
}

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:20px;
}

.nav-links{
gap:18px;
flex-wrap:wrap;
justify-content:center;
}

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

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

.section h2{
font-size:34px;
}
}
