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

body{
font-family:'Inter',sans-serif;
line-height:1.7;
color:#333;
}
.hero-content{
opacity:0;
transform:translateY(40px);
animation:fadeUp 1s ease forwards;
}

@keyframes fadeUp{
to{
opacity:1;
transform:translateY(0);
}
}
.btn-primary{
transition:all .3s ease;
}

.btn-primary:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,.15);
}
.feature-card{
transition:all .4s ease;
}

.feature-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.reveal{
opacity:0;
transform:translateY(60px);
transition:all .8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

.world-map{
animation:floatMap 5s ease-in-out infinite;
}

@keyframes floatMap{
0%{
transform:translateY(0);
}
50%{
transform:translateY(-15px);
}
100%{
transform:translateY(0);
}
}
.container{
width:90%;
max-width:1200px;
margin:auto;
}

.header{
padding:20px 0;
border-bottom:1px solid #eee;
background:#fff;
position:sticky;
top:0;
z-index:100;
}

.header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-weight:800;
font-size:22px;
color:#081f4d;
}

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

.nav-menu a{
text-decoration:none;
color:#222;
}

.hero{
padding:120px 0;
background:#f8fafc;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 400px;
gap:60px;
align-items:center;
}

.hero h1{
font-size:58px;
line-height:1.1;
margin:20px 0;
color:#081f4d;
}

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

.badge{
background:#e8eefc;
padding:8px 16px;
border-radius:30px;
font-size:14px;
}

.hero-card{
background:#fff;
padding:40px;
border-radius:16px;
box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.btn-primary{
background:#4972d1;
color:#fff;
padding:14px 28px;
text-decoration:none;
border-radius:6px;
display:inline-block;
}

.btn-secondary{
margin-left:15px;
text-decoration:none;
color:#081f4d;
}

.section{
padding:10px 0;
}

.grey-bg{
background:#f7f8fb;
}

.section-heading{
text-align:center;
margin-bottom:50px;
}

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

.feature-card,
.step,
.industry-grid div{
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.stats{
background:#081f4d;
color:white;
padding:50px 0;
text-align:center;
}

.counter{
font-size:42px;
font-weight:800;
}

.cta{
padding:120px 0;
text-align:center;
background:#081f4d;
color:white;
}

footer{
background:#111827;
color:white;
padding:60px 0;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:40px;
}

@media(max-width:768px){

.hero-grid{
grid-template-columns:1fr;
}

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

.nav-menu{
display:none;
}

.footer-grid{
grid-template-columns:1fr;
}

}