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

body{
background:#f5f7fb;
color:#1e293b;
}

.navbar{
height:60px;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 25px;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
position:fixed;
width:100%;
z-index:100;
}

.logo{
font-weight:600;
display:flex;
align-items:center;
gap:8px;
}

.menu-btn{
font-size:22px;
cursor:pointer;
}

.menu{
position:fixed;
top:60px;
right:-220px;
width:200px;
background:white;
display:flex;
flex-direction:column;
padding:20px;
gap:15px;
transition:0.3s;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.menu.open{
right:20px;
}

.menu a{
text-decoration:none;
color:#1e293b;
font-weight:500;
}

.hero{
height:100vh;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
}

.hero-icon{
color:#3b82f6;
margin-top: 50px;
}

h1{
font-size:60px;
}

.line{
width:70px;
height:4px;
background:#3b82f6;
margin:20px auto;
}

.subtitle{
font-size:20px;
color:#64748b;
margin-bottom:40px;
}

.tags span{
background:white;
padding:10px 20px;
border-radius:25px;
margin:5px;
display:inline-block;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

footer{
margin-top:50px;
color:#94a3b8;
font-size:14px;
}

.section{
padding:60px 10%;
text-align:center;
}

.section-sub{
max-width:700px;
margin:10px auto 30px auto;
color:#64748b;
}

.grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:15px;
max-width:900px;
margin:0 auto;
}

.card{
background:white;
padding:15px;
border-radius:10px;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
text-align:center;
flex:1 1 calc(33.333% - 10px);
min-width:180px;
max-width:280px;
}

.card i{
font-size:18px;
color:#3b82f6;
margin-bottom:8px;
display:block;
}

.card h3{
font-size:14px;
font-weight:600;
color:#1e293b;
margin:0 0 6px 0;
}

.card p{
font-size:12px;
color:#64748b;
line-height:1.3;
margin:0;
}

.card.coming-soon{
background:transparent;
border:2px dashed #cbd5e1;
box-shadow:none;
}

.card.coming-soon i{
color:#94a3b8;
}

.card.coming-soon h3{
color:#64748b;
}

.card.coming-soon p{
color:#94a3b8;
font-style:italic;
}

.highlight{
color:#e11d48;
font-weight:600;
}

.dashboard{
margin-top:30px;
padding:20px;
background:white;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.dashboard img{
width:100%;
height:auto;
display:block;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

.steps{
display:flex;
justify-content:center;
align-items:center;
gap:40px;
flex-wrap:wrap;
margin-top:30px;
min-height:200px;
}

.step{
text-align:center;
max-width:200px;
}

.circle{
width:80px;
height:80px;
border-width: 2px;
border-style: solid;
border-color: #3b82f6;
color:grey;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
margin-bottom:10px;
font-weight:600;
font-size:20px;
}

.step-icon{
font-size:36px;
color:#3b82f6;
margin:15px 0;
}

.features-list{
margin-top:15px;
}

.features-list p{
margin:5px 0;
font-size:14px;
color:#64748b;
background:#f8fafc;
padding:8px 12px;
border-radius:8px;
border-left:3px solid #3b82f6;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stats-container{
max-width:1000px;
margin:0 auto;
}

.stats-main{
display:flex;
justify-content:center;
gap:40px;
margin-bottom:40px;
flex-wrap:wrap;
}

.stat-item{
text-align:center;
max-width:200px;
}

.stat-icon-wrapper{
width:60px;
height:60px;
background:linear-gradient(135deg, #3b82f6, #2563eb);
color:white;
border-radius:15px;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
margin:0 auto 15px auto;
box-shadow:0 8px 20px rgba(59, 130, 246, 0.25);
}

.stat-item h1{
font-size:48px;
background:linear-gradient(135deg, #3b82f6, #2563eb);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
background-clip:text;
margin:0 0 8px 0;
}

.stat-item p{
font-size:16px;
font-weight:600;
color:#1e293b;
margin:0 0 8px 0;
}

.stat-item .stat-desc{
font-size:12px;
color:#64748b;
line-height:1.4;
}

.benefits-grid{
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:20px;
margin-top:30px;
}

.benefit-card{
background:white;
padding:18px;
border-radius:12px;
box-shadow:0 4px 12px rgba(0,0,0,0.06);
text-align:center;
transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.benefit-card i{
font-size:24px;
color:#3b82f6;
margin-bottom:12px;
display:block;
}

.benefit-card h4{
font-size:14px;
font-weight:600;
color:#1e293b;
margin:0 0 8px 0;
}

.benefit-card p{
font-size:12px;
color:#64748b;
line-height:1.4;
margin:0;
}

.ai-container{
display:flex;
flex-direction:column;
gap:30px;
margin-top:30px;
}

.ai-image{
text-align:center;
margin-bottom:20px;
}

.ai-image img{
max-width:80%;
height:auto;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.ai-content{
width:100%;
}

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

.ai-feature-small{
display:flex;
flex-direction:column;
gap:12px;
padding:18px;
background:white;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.ai-icon-small{
width:40px;
height:40px;
background:#e0f2fe;
color:#3b82f6;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
font-size:16px;
align-self:flex-start;
}

.ai-feature-small h3{
margin:0;
font-size:15px;
color:#1e293b;
}

.ai-feature-small p{
margin:0;
font-size:13px;
color:#64748b;
line-height:1.4;
}

.ai-box{
margin-top:40px;
padding:60px;
background:white;
border-radius:20px;
box-shadow:0 10px 20px rgba(0,0,0,0.05);
}

.subheading{
color:#3b82f6;
font-weight:600;
font-size:14px;
text-transform:uppercase;
letter-spacing:1px;
display:block;
margin-bottom:10px;
}

.ai-feature{
display:flex;
align-items:flex-start;
gap:20px;
margin-bottom:40px;
}

.ai-feature:last-child{
margin-bottom:0;
}

.ai-icon{
width:60px;
height:60px;
background:#e0f2fe;
color:#3b82f6;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
flex-shrink:0;
}

.ai-feature h3{
margin:0 0 10px 0;
font-size:20px;
color:#1e293b;
}

.ai-feature p{
margin:0;
color:#64748b;
line-height:1.6;
}

.btn-demo{
margin:30px auto 0 auto;
padding:14px 35px;
font-size:16px;
background:#3b82f6;
color:white;
border:none;
border-radius:40px;
cursor:pointer;
display:flex;
align-items:center;
gap:10px;
}

.btn-demo i{
font-size:18px;
}

.cta-features{
display:flex;
justify-content:center;
gap:15px;
margin-top:30px;
flex-wrap:wrap;
}

.cta-feature-item{
display:flex;
align-items:center;
gap:10px;
background:white;
padding:12px 20px;
border-radius:25px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.cta-feature-item i{
color:#3b82f6;
font-size:16px;
}

.cta-feature-item p{
margin:0;
font-size:14px;
color:#1e293b;
font-weight:500;
}

.contact{
display:flex;
justify-content:center;
gap:40px;
margin-top:40px;
flex-wrap:wrap;
}

.contact-item{
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
gap:6px;
}

.contact-icon-wrapper{
width:50px;
height:50px;
background:#e0f2fe;
color:#3b82f6;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
}

.contact-item span{
font-size:11px;
color:#94a3b8;
font-weight:600;
letter-spacing:1px;
text-transform:uppercase;
}

.contact-item p{
margin:0;
font-size:14px;
color:#1e293b;
font-weight:600;
}

/* Responsive Design */
@media (max-width: 768px) {
.section{
padding:40px 5%;
}

h1{
font-size:40px;
}

h2{
font-size:28px;
}

.grid{
flex-direction:column;
max-width:100%;
gap:15px;
}

.card{
padding:12px;
flex:1 1 100%;
max-width:100%;
min-width:100%;
}

.card i{
font-size:20px;
margin-bottom:6px;
}

.card h3{
font-size:13px;
}

.card p{
font-size:11px;
}

.dashboard{
padding:15px;
}

.circle{
width:60px;
height:60px;
font-size:16px;
}

.step-icon{
font-size:28px;
}

.step{
max-width:150px;
}

.features-list p{
font-size:12px;
padding:6px 10px;
}

.stats-main{
gap:30px;
margin-bottom:30px;
}

.stat-item{
max-width:180px;
}

.stat-icon-wrapper{
width:50px;
height:50px;
font-size:20px;
}

.stat-item h1{
font-size:40px;
}

.stat-item p{
font-size:14px;
}

.stat-item .stat-desc{
font-size:11px;
}

.benefits-grid{
grid-template-columns:repeat(2, 1fr);
gap:15px;
margin-top:25px;
}

.benefit-card{
padding:14px;
}

.benefit-card i{
font-size:20px;
margin-bottom:10px;
}

.benefit-card h4{
font-size:12px;
}

.benefit-card p{
font-size:10px;
}

.ai-features-grid{
grid-template-columns:1fr;
gap:20px;
}

.ai-feature-small{
padding:15px;
}

.ai-icon-small{
width:35px;
height:35px;
font-size:14px;
}

.ai-feature-small h3{
font-size:14px;
}

.ai-feature-small p{
font-size:12px;
}

.cta-features{
gap:10px;
}

.cta-feature-item{
padding:10px 15px;
}

.contact{
gap:20px;
}

.contact-icon-wrapper{
width:40px;
height:40px;
font-size:16px;
}

.contact-item span{
font-size:10px;
}

.contact-item p{
font-size:12px;
}

.modules-grid{
grid-template-columns:repeat(2, 1fr);
gap:20px;
}

.module-card{
padding:15px;
}

.module-icon{
width:45px;
height:45px;
font-size:18px;
}

.module-card h4{
font-size:14px;
}

.module-card p{
font-size:11px;
}

}

@media (max-width: 480px) {
.section{
padding:30px 3%;
}

h1{
font-size:32px;
}

h2{
font-size:24px;
}

.hero-icon img{
width:40%;
}

.subtitle{
font-size:16px;
}

.tags span{
padding:8px 15px;
font-size:14px;
margin:3px;
}

.grid{
flex-direction:column;
max-width:100%;
gap:12px;
}

.card{
padding:10px;
flex:1 1 100%;
max-width:100%;
min-width:100%;
}

.card i{
font-size:18px;
margin-bottom:5px;
}

.card h3{
font-size:12px;
margin:0 0 4px 0;
}

.card p{
font-size:10px;
line-height:1.2;
}

.dashboard{
padding:10px;
}

.circle{
width:50px;
height:50px;
font-size:14px;
}

.step-icon{
font-size:24px;
}

.step{
max-width:120px;
}

.features-list p{
font-size:11px;
padding:5px 8px;
}

.stats-main{
gap:20px;
margin-bottom:20px;
}

.stat-item{
max-width:150px;
}

.stat-icon-wrapper{
width:40px;
height:40px;
font-size:16px;
}

.stat-item h1{
font-size:32px;
}

.stat-item p{
font-size:12px;
}

.stat-item .stat-desc{
font-size:10px;
}

.benefits-grid{
grid-template-columns:1fr;
gap:12px;
margin-top:20px;
}

.benefit-card{
padding:12px;
}

.benefit-card i{
font-size:18px;
margin-bottom:8px;
}

.benefit-card h4{
font-size:11px;
}

.benefit-card p{
font-size:9px;
}

.ai-feature-small{
padding:12px;
}

.ai-icon-small{
width:30px;
height:30px;
font-size:12px;
}

.ai-feature-small h3{
font-size:13px;
}

.ai-feature-small p{
font-size:11px;
}

.cta-feature-item{
padding:8px 12px;
font-size:13px;
}

.contact{
gap:15px;
flex-direction:column;
}

.contact-icon-wrapper{
width:35px;
height:35px;
font-size:14px;
}

.contact-item span{
font-size:9px;
}

.contact-item p{
font-size:11px;
}

.btn-demo{
padding:12px 25px;
font-size:14px;
}

.btn-demo i{
font-size:16px;
}

.modules-grid{
grid-template-columns:1fr;
gap:15px;
}

.module-card{
padding:12px;
}

.module-icon{
width:40px;
height:40px;
font-size:16px;
}

.module-card h4{
font-size:12px;
}

.module-card p{
font-size:10px;
}

}

.product-highlights{

display:flex;
justify-content:center;
gap:60px;
margin-top:60px;
flex-wrap:wrap;

}

.modules-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
gap:25px;
margin-top:40px;
}

.module-card{
background:white;
padding:18px;
border-radius:16px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
text-align:center;
transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.module-icon{
width:50px;
height:50px;
background:linear-gradient(135deg, #3b82f6, #2563eb);
color:white;
border-radius:15px;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
margin:0 auto 15px auto;
}

.module-card h4{
font-size:16px;
font-weight:600;
color:#1e293b;
margin:0 0 10px 0;
}

.module-card p{
font-size:13px;
color:#64748b;
line-height:1.4;
margin:0;
}

.highlight-item{

display:flex;
align-items:center;
gap:15px;

background:white;
padding:15px 25px;

border-radius:14px;

box-shadow:0 5px 15px rgba(0,0,0,0.05);

}

.highlight-icon{

width:45px;
height:45px;

background:#e0f2fe;

color:#3b82f6;

border-radius:10px;

display:flex;
align-items:center;
justify-content:center;

font-size:20px;

}

.highlight-item h4{

margin:0;
font-size:16px;

}

.highlight-item p{

margin:0;
font-size:13px;
color:#64748b;

}