*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f7f9fc;
color:#222;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:1000;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-size:30px;
font-weight:700;
color:#0066ff;
}

.chat-btn,
.primary-btn{
background:#0066ff;
color:#fff;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:600;
display:inline-block;
}

.secondary-btn{
border:2px solid #0066ff;
color:#0066ff;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:600;
display:inline-block;
}

.hero{
padding:100px 0;
background:linear-gradient(135deg,#0066ff,#0f3d9e);
color:#fff;
text-align:center;
}

.badge{
display:inline-block;
background:rgba(255,255,255,.15);
padding:10px 18px;
border-radius:50px;
margin-bottom:20px;
}

.hero h1{
font-size:56px;
margin-bottom:20px;
}

.hero p{
max-width:800px;
margin:auto;
font-size:20px;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.stats{
padding:60px 0;
background:#fff;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.stat-box{
background:#f5f7fb;
padding:30px;
text-align:center;
border-radius:12px;
}

.stat-box h3{
font-size:32px;
color:#0066ff;
}

.services,
.why-us,
.faq{
padding:90px 0;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:40px;
margin-bottom:10px;
}

.service-grid,
.why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.card,
.why-box,
.faq-item{
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 4px 20px rgba(0,0,0,.06);
}

.card h3,
.why-box h3,
.faq-item h3{
margin-bottom:15px;
}

.cta-section,
.bottom-cta{
background:#0066ff;
color:#fff;
text-align:center;
padding:80px 20px;
}

.cta-section h2,
.bottom-cta h2{
font-size:42px;
margin-bottom:15px;
}

footer{
background:#111827;
color:#fff;
text-align:center;
padding:25px;
}

.floating-chat{
position:fixed;
bottom:25px;
right:25px;
background:#00c853;
color:#fff;
text-decoration:none;
padding:16px 28px;
border-radius:50px;
font-weight:700;
box-shadow:0 10px 30px rgba(0,0,0,.25);
}

@media(max-width:992px){

.hero h1{
font-size:42px;
}

.stats-grid,
.service-grid,
.why-grid{
grid-template-columns:1fr 1fr;
}
}

@media(max-width:768px){

.hero{
padding:70px 0;
}

.hero h1{
font-size:34px;
}

.hero p{
font-size:18px;
}

.stats-grid,
.service-grid,
.why-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:32px;
}
}