:root{
--dark:#0B1120;
--navy:#111827;
--primary:#0EA5E9;
--light:#F8FAFC;
}

*{margin:0;padding:0;box-sizing:border-box}

body{
font-family:'Inter',sans-serif;
background:var(--dark);
color:white;
line-height:1.7;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* NAVBAR */
.navbar{
position:fixed;
width:100%;
background:rgba(11,17,32,0.9);
backdrop-filter:blur(10px);
padding:18px 0;
z-index:1000;
}

.nav-wrapper{
display:flex;
justify-content:space-between;
align-items:center;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav ul li a{
color:white;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

nav ul li a:hover{
color:var(--primary);
}

.nav-cta{
background:var(--primary);
padding:8px 20px;
border-radius:30px;
}

/* HERO */
.hero{
padding:160px 0 120px;
background:var(--dark);
}

.hero-text h1{
font-family:'Poppins';
font-size:48px;
margin-bottom:20px;
}

.hero-text span{
color:var(--primary);
}

.hero-buttons{
margin-top:30px;
}

.btn-primary{
background:var(--primary);
padding:14px 30px;
border-radius:30px;
color:white;
text-decoration:none;
margin-right:15px;
transition:0.3s;
}

.btn-primary:hover{
transform:translateY(-3px);
}

.btn-outline{
border:1px solid white;
padding:14px 30px;
border-radius:30px;
color:white;
text-decoration:none;
}

/* STATS */
.stats{
background:var(--navy);
padding:60px 0;
text-align:center;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
}

.stats h3{
color:var(--primary);
font-size:36px;
}

/* SECTIONS */
.section{
padding:100px 0;
}

.light{
background:var(--light);
color:var(--dark);
}

.dark{
background:var(--dark);
}

.section-title{
text-align:center;
margin-bottom:60px;
font-size:36px;
}

/* ABOUT */
.about-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:50px;
align-items:center;
}

.about-card{
background:white;
padding:40px;
border-radius:15px;
box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* SERVICES */
.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.service-card{
background:#111827;
padding:40px;
border-radius:15px;
text-align:center;
transition:0.3s;
}

.service-card:hover{
transform:translateY(-8px);
background:#1f2937;
}

.service-card i{
font-size:40px;
color:var(--primary);
margin-bottom:15px;
}

/* PROCESS */
.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
text-align:center;
}

.process-step{
background:white;
padding:30px;
border-radius:15px;
color:var(--dark);
}

.process-step span{
display:block;
color:var(--primary);
font-weight:600;
margin-bottom:10px;
}

/* CONTACT */
.contact-box{
text-align:center;
}

/* FOOTER */
footer{
background:#111827;
padding:80px 0;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:40px;
}

footer a{
color:white;
text-decoration:none;
display:block;
margin-bottom:10px;
}

.footer-logo{
height:50px;
margin-bottom:20px;
}

/* RESPONSIVE */
@media(max-width:768px){
.hero-text h1{font-size:34px}
nav ul{display:none}
}
