body{
font-family:Inter;
margin:0;
background:#f7f8fa;
color:#111;
line-height: 1.5;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#000000;
border-bottom:1px solid #eee;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 0;
}

.logo span{
color:#2f6fff;
}

.logo img{
height:68px;
}

nav a{
margin:0 15px;
text-decoration:none;
color:#ffffff;
}

.cta{
background:#2f6fff;
color:white;
padding:10px 18px;
border-radius:6px;
}

.hero{
padding:90px 0;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
}

.hero h1{
font-size:52px;
line-height: 1.2;
}

.hero-buttons{
margin-top:25px;
}

.btn-primary{
background:#2f6fff;
color:white;
padding:12px 20px;
border:none;
margin-right:10px;
margin-bottom: 7px;
}

.btn-secondary{
padding:12px 20px;
}

.hero-img img{
width:100%;
}

.section{
padding:80px 0;
}

.grey{
background:#f0f2f5;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.stats{
display:flex;
gap:30px;
}

.stats h3{
color:#2f6fff;
font-size:30px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:white;
padding:25px;
border-radius:8px;
}

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.industries{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
gap:15px;
}

.industries div{
background:white;
padding:20px;
text-align:center;
border-radius:8px;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

form input,textarea{
width:100%;
padding:12px;
margin-bottom:12px;
}

button{
background:#2f6fff;
color:white;
border:none;
padding:12px;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:12px 18px;
border-radius:25px;
text-decoration:none;
}

footer{
text-align:center;
padding:20px;
background:#111;
color:white;
}

.card i,
.feature i{
width:32px;
height:32px;
color:#2f6fff;
margin-bottom:10px;
}

.industries i{
width:22px;
margin-right:6px;
color:#2f6fff;
}


svg.lucide{
width:28px;
height:28px;
color:#2f6fff;
stroke:#2f6fff;
margin-bottom:10px;
}

.industries svg{
width:20px;
height:20px;
color:#2f6fff;
margin-right:6px;
}

.card:hover svg,
.feature:hover svg{
color:#1e50d8;
stroke:#1e50d8;
}

.contact-info{
margin-top:20px;
}

.contact-item{
display:flex;
align-items:center;
gap:12px;
margin-bottom:18px;
font-size:15px;
}

.contact-item svg{
width:22px;
height:22px;
color:#2f6fff;
stroke:#2f6fff;
flex-shrink:0;
}

.contact-item span{
line-height:1.4;
}

/* MOBILE HEADER FIX */

@media (max-width:768px){

.nav{
flex-direction:row;
align-items:center;
justify-content:space-between;
}

.menu-toggle{
display:block;
margin-left:auto;
}

#nav-menu{
position:absolute;
top:70px;
left:0;
width:100%;
background:#111;
flex-direction:column;
padding:20px;
display:none;
}

#nav-menu.active{
display:flex;
}

nav{
display:flex;
flex-direction:column;
gap:8px;
}

nav a{
margin:0;
font-size:14px;
}

.cta{
align-self:flex-start;
}

.logo img{
height:60px;
}

}

@media (max-width:768px){

.hero-grid{
grid-template-columns:1fr;
gap:30px;
}

.hero h1{
font-size:36px;
line-height: 1.2;
}

.hero-buttons .cta {
display:flex;
gap:12px;
flex-wrap:wrap;
}

}

@media (max-width:768px){

.industries{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:768px){

.contact-grid{
grid-template-columns:1fr;
gap:40px;
}

}

footer{
text-align:center;
padding:20px;
background:#111;
color:white;
margin-top:40px;
}

body{
padding-bottom:80px;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:12px 18px;
border-radius:30px;
font-size:14px;
box-shadow:0 6px 16px rgba(0,0,0,0.2);
z-index:999;
}

/* MOBILE MENU */

.menu-toggle{
display:none;
cursor:pointer;
}

/* Desktop menu */

#nav-menu{
display:flex;
align-items:center;
gap:20px;
}

/* Mobile */

@media (max-width:768px){

.menu-toggle{
display:block;
}

#nav-menu{
position:absolute;
top:70px;
left:0;
width:100%;
background:#111;
flex-direction:column;
align-items:flex-start;
padding:20px;
display:none;
}

#nav-menu a{
color:white;
padding:10px 0;
width:100%;
padding-left: 10px;
}

#nav-menu.active{
display:flex;
}

}

.menu-toggle svg{
width:30px;
height:30px;
color:#2f6fff;
}

header{
position:sticky;
top:0;
background:#000000;
z-index:1000;
}

.captcha-box{
margin:15px 0;
display:flex;
flex-direction:column;
gap:6px;
}

#captcha-question{
font-weight:600;
color:#2f6fff;
}