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

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
color:#1f2937;
background:#f8fafc;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#ffffff;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo{
height:60px;
}

nav{
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
color:#1f2937;
font-weight:500;
transition:.3s;
}

nav a:hover{
    color:#2f7cad;
}

.hero{
padding:80px 0;
background:linear-gradient(135deg,#eef7ff,#ffffff);
}

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

.badge{
display:inline-block;
padding:8px 15px;
background:#dbeafe;
color:#2563eb;
border-radius:30px;
font-size:14px;
margin-bottom:20px;
}

.hero h1{
font-size:3rem;
line-height:1.2;
margin-bottom:20px;
}

.hero p{
font-size:1.1rem;
color:#4b5563;
margin-bottom:30px;
}

.hero-image img{
width:100%;
max-width:420px;
display:block;
margin:auto;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn-primary{
background:#2f7cad;
color:white;
text-decoration:none;
padding:14px 24px;
border-radius:10px;
font-weight:600;
transition:.3s;
}

.btn-primary:hover{
transform:translateY(-2px);
}

.btn-secondary{
border:2px solid #2f7cad;
color:#2f7cad;
text-decoration:none;
padding:12px 24px;
border-radius:10px;
font-weight:600;
}

.section{
padding:80px 0;
}

.section-title{
text-align:center;
font-size:2.3rem;
margin-bottom:50px;
}

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

.card{
background:white;
padding:25px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
transition:.3s;
}

.card:hover{
transform:translateY(-5px);
}

.card h3{
margin-bottom:10px;
color:#2f7cad;
}

.assistant-section{
background:white;
padding:80px 0;
}

.assistant-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.assistant-img{
width:100%;
max-width:380px;
display:block;
margin:auto;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.assistant-grid h2{
margin-bottom:20px;
font-size:2rem;
}

.assistant-grid ul{
margin-top:20px;
padding-left:20px;
}

.assistant-grid li{
margin-bottom:10px;
}

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

.screen-card{
background:white;
border-radius:20px;
overflow:hidden;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.screen-card img{
width:100%;
height:500px;
object-fit:cover;
}

.screen-card h4{
padding:15px;
}

.why-us{
background:#eef7ff;
padding:80px 0;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.why-grid div{
background:white;
padding:20px;
border-radius:15px;
font-weight:500;
}

.pricing{
text-align:center;
padding:80px 0;
background:white;
}

.pricing h2{
margin-bottom:15px;
}

.pricing p{
max-width:700px;
margin:auto;
margin-bottom:30px;
}

.contact-section{
padding:80px 0;
}

.contact-box{
background:white;
max-width:700px;
margin:auto;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.contact-box p{
margin-bottom:15px;
}

.contact-box a{
color:#2f7cad;
}

footer{
background:#111827;
color:white;
text-align:center;
padding:25px;
}

@media(max-width:768px){


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

.assistant-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.hero h1{
    font-size:2.2rem;
}

nav{
    gap:15px;
    font-size:14px;
}

.logo{
    height:50px;
}

.section-title{
    font-size:1.8rem;
}

.screen-card img{
    height:auto;
}

}