*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
background:#fff;
color:#222;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 6%;
border-bottom:1px solid #eee;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-size:24px;
font-weight:700;
color:#4f46e5;
cursor: pointer;
}

nav{
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
color:#333;
font-weight:500;
}

.hero{
padding:70px 6%;
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:50px;
padding-bottom: 20px;
padding-top: 20px;
}

.hero h1{
font-size:60px;
line-height:1.1;
margin:15px 0;
}

.hero p{
font-size:20px;
color:#666;
}

.badge{
display:inline-block;
padding:8px 14px;
background:#eef2ff;
color:#4f46e5;
border-radius:50px;
font-weight:600;
}

.hero-features{
margin-top:25px;
display:flex;
gap:20px;
flex-wrap:wrap;
}

.hero-right img{
width:100%;
}

.upload-box{
padding:0 6% 70px;
}

.upload-inner{
border:2px dashed #c7d2fe;
border-radius:25px;
padding:80px 20px;
text-align:center;
}

.upload-inner i{
font-size:60px;
color:#4f46e5;
margin-bottom:20px;
}

.upload-btn{
padding:14px 30px;
border:none;
background:#4f46e5;
color:#fff;
border-radius:10px;
cursor:pointer;
margin-top:15px;
}

.tools{
padding:70px 6%;
padding-top: 0px;
}

.tools h2{
text-align:center;
margin-bottom:40px;
font-size:42px;
}

.tool-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
}

.tool-card{
text-decoration:none;
color:#222;
border:1px solid #eee;
border-radius:20px;
padding:30px 20px;
text-align:center;
transition:.3s;
}

.tool-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.tool-icon{
width:70px;
height:70px;
margin:auto;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
margin-bottom:20px;
}

.red{background:#fee2e2;color:#dc2626;}
.green{background:#dcfce7;color:#16a34a;}
.blue{background:#dbeafe;color:#2563eb;}
.orange{background:#ffedd5;color:#ea580c;}
.purple{background:#ede9fe;color:#7c3aed;}

.benefits{
padding:70px 6%;
background:#fafafa;
}

.benefits h2{
text-align:center;
margin-bottom:50px;
}

.benefit-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.benefit{
background:#fff;
padding:30px;
border-radius:20px;
text-align:center;
}

.benefit i{
font-size:35px;
color:#4f46e5;
margin-bottom:15px;
}

.stats{
padding:70px 6%;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
text-align:center;
}

.stat{
padding:25px;
border-radius:20px;
background:#f9fafb;
}

.stat h3{
font-size:40px;
color:#4f46e5;
}

footer{
padding:40px;
text-align:center;
border-top:1px solid #eee;
}

@media(max-width:992px){

.hero{
grid-template-columns:1fr;
}

.tool-grid{
grid-template-columns:repeat(2,1fr);
}

.benefit-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:768px){

nav{
display:none;
}

.hero h1{
font-size:38px;
}

.tool-grid{
grid-template-columns:1fr;
}

.benefit-grid{
grid-template-columns:1fr;
}

.stats{
grid-template-columns:1fr 1fr;
}
}

.hero-left{
position:relative;
}

.hero-buttons{
margin-top:40px;
display:flex;
gap:15px;
}

.buy-now-btn{
padding:12px 22px;
background:#4f46e5;
color:#fff;
border:none;
border-radius:10px;
cursor:pointer;
font-weight:600;
transition:0.3s;
}

.buy-now-btn:hover{
background:#3730a3;
}

.home-btn{
padding:12px 22px;
background:#fff;
color:#4f46e5;
border:2px solid #4f46e5;
border-radius:10px;
cursor:pointer;
font-weight:600;
transition:0.3s;
}

.home-btn:hover{
background:#eef2ff;
}