*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

:root{
--navy:#0F172A;
--emerald:#10B981;
--light:#F8FAFC;
--white:#FFFFFF;
}

body{
background:var(--light);
color:var(--navy);
}

html{
scroll-behavior:smooth;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:white;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 15px rgba(0,0,0,.05);
}

.logo{
font-size:30px;
font-weight:700;
color:var(--emerald);
}

.nav-links{
display:flex;
list-style:none;
gap:30px;
}

.nav-links a{
text-decoration:none;
color:var(--navy);
font-weight:600;
}

.nav-btn{
background:var(--emerald);
color:white;
padding:12px 24px;
border-radius:12px;
text-decoration:none;
}

.hero{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
padding:80px 8%;
background:linear-gradient(135deg,#0F172A,#1E293B);
color:white;
}

.badge{
display:inline-block;
padding:12px 18px;
border-radius:50px;
background:rgba(16,185,129,.15);
border:1px solid rgba(16,185,129,.3);
margin-bottom:25px;
}

.hero h1{
font-size:64px;
line-height:1.1;
margin-bottom:25px;
}

.hero p{
font-size:20px;
line-height:1.8;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:15px;
}

.primary-btn{
background:var(--emerald);
color:white;
padding:15px 30px;
border-radius:12px;
text-decoration:none;
}

.secondary-btn{
border:2px solid white;
color:white;
padding:15px 30px;
border-radius:12px;
text-decoration:none;
}

.dashboard-image{
width:100%;
border-radius:24px;
box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.trust-bar{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
padding:50px 8%;
}

.trust-item{
background:white;
padding:25px;
border-radius:20px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,.08);
font-weight:600;
}

.metrics{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
padding:50px 8%;
}

.metric-box{
background:white;
padding:35px;
border-radius:20px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.metric-box h2{
color:var(--emerald);
font-size:40px;
margin-bottom:10px;
}

section{
padding:80px 8%;
}

.section-title{
font-size:42px;
text-align:center;
margin-bottom:50px;
}

.services-grid,
.solutions-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.card,
.solution-card{
background:white;
padding:35px;
border-radius:24px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.card h3{
margin-bottom:15px;
color:var(--emerald);
}

.solution-card span{
display:inline-block;
margin-top:15px;
color:var(--emerald);
font-weight:600;
}

.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.about-left,
.about-right{
background:white;
padding:40px;
border-radius:24px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.about-left ul{
list-style:none;
line-height:2.2;
}

.steps{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-top:20px;
}

.step{
background:var(--emerald);
color:white;
padding:20px;
border-radius:12px;
text-align:center;
font-weight:600;
}

.cta{
background:linear-gradient(135deg,#0F172A,#1E293B);
color:white;
text-align:center;
}

.cta h2{
font-size:48px;
margin-bottom:20px;
}

.cta p{
margin-bottom:30px;
}

footer{
background:#020617;
color:white;
padding:60px 8%;
}

.footer-content{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:30px;
}

.copyright{
margin-top:30px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,.1);
}

@media(max-width:900px){

.hero{
grid-template-columns:1fr;
}

.hero h1{
font-size:42px;
}

.about-container{
grid-template-columns:1fr;
}

.nav-links{
display:none;
}

}