*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Inter,sans-serif;
}

body{
background:#030817;
color:#fff;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 8%;
position:fixed;
width:100%;
top:0;
background:rgba(3,8,23,.95);
z-index:100;
}

nav ul{
display:flex;
gap:35px;
list-style:none;
}

nav a{
color:#cbd5e1;
text-decoration:none;
}

.btn-primary{
background:#facc15;
color:#000;
padding:14px 28px;
border:none;
border-radius:30px;
font-weight:700;
cursor:pointer;
}

.btn-secondary{
background:#101827;
border:1px solid #25324a;
color:white;
padding:14px 28px;
border-radius:30px;
cursor:pointer;
}

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:140px 8%;
min-height:100vh;
background:
radial-gradient(circle at left,#3b2a00 0%,transparent 35%),
radial-gradient(circle at right,#004d3b 0%,transparent 35%);
}

.hero-content{
max-width:600px;
}

.badge{
background:#1b2233;
padding:10px 18px;
border-radius:30px;
color:#facc15;
display:inline-block;
margin-bottom:20px;
}

.hero h1{
font-size:72px;
line-height:1.1;
margin-bottom:20px;
}

.hero h1 span{
color:#22c55e;
}

.hero p{
color:#94a3b8;
font-size:18px;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:15px;
margin-bottom:40px;
}

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
}

.stat-card{
background:#091122;
padding:25px;
border-radius:20px;
border:1px solid #172036;
}

.hero-image img{
width:450px;
max-width:100%;
}

.features,
.steps,
.testimonials{
padding:120px 8%;
}

.features h2,
.steps h2,
.testimonials h2{
text-align:center;
font-size:42px;
margin-bottom:60px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#091122;
padding:30px;
border-radius:24px;
border:1px solid #18253d;
transition:.3s;
}

.card:hover{
transform:translateY(-6px);
}

.step-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.step{
background:#091122;
padding:35px;
border-radius:24px;
border:1px solid #18253d;
}

.step span{
font-size:40px;
font-weight:700;
color:#facc15;
}

.cta{
margin:120px 8%;
padding:80px;
text-align:center;
border-radius:30px;
background:
radial-gradient(circle at left,#5c4500 0%,transparent 40%),
radial-gradient(circle at right,#006d55 0%,transparent 40%),
#091122;
border:1px solid #22324f;
}

.cta h2{
font-size:52px;
margin-bottom:15px;
}

.cta p{
margin-bottom:30px;
color:#cbd5e1;
}

footer{
padding:40px;
text-align:center;
border-top:1px solid #1d2940;
color:#94a3b8;
}

@media(max-width:992px){

.hero{
flex-direction:column;
text-align:center;
gap:50px;
}

.stats{
grid-template-columns:repeat(2,1fr);
}

.step-grid{
grid-template-columns:1fr;
}

nav ul{
display:none;
}

.hero h1{
font-size:48px;
}
}