*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f8fafc;
color:#1e293b;
line-height:1.6;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 10%;
background:white;
box-shadow:0 3px 15px rgba(0,0,0,.05);
position:sticky;
top:0;
z-index:100;
}

.logo{
font-weight:700;
font-size:22px;
color:#2563eb;
}

.logo span{
color:#22c55e;
}

.nav-links{
display:flex;
align-items:center;
}

.nav-links a{
margin-left:20px;
text-decoration:none;
color:#ebeef3;
font-weight:500;
}

.nav-btn{
background:#2563eb;
color:white;
padding:8px 18px;
border-radius:6px;
}

/* HERO */

.hero{
padding:90px 10%;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
background:linear-gradient(135deg,#2563eb,#1e3a8a);
color:white;
}

.hero h1{
font-size:46px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
margin-bottom:30px;
opacity:.95;
}

.btn{
display:inline-block;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-primary{
background:#22c55e;
color:white;
}

.btn-primary:hover{
background:#16a34a;
transform:translateY(-2px);
}

.hero img{
width:100%;
border-radius:12px;
box-shadow:0 25px 50px rgba(0,0,0,.3);
}

/* TRUST */

.trust{
padding:30px 10%;
text-align:center;
background:#f1f5f9;
font-weight:500;
}

/* SECTION */

.section{
padding:80px 10%;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:36px;
margin-bottom:10px;
}

/* BENEFITS */

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

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

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

.card h3{
margin-bottom:10px;
}

/* STEPS */

.steps{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
text-align:center;
}

.step{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.step h3{
font-size:30px;
color:#2563eb;
margin-bottom:10px;
}

/* TEMPLATES */

.templates{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.templates img{
width:100%;
border-radius:12px;
box-shadow:0 15px 30px rgba(0,0,0,.1);
}

/* TESTIMONIALS */

.testimonials{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.testimonial{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

/* PRICING */

.pricing{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.price-card{
background:white;
padding:40px;
text-align:center;
border-radius:14px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;
}

.price-card:hover{
transform:scale(1.04);
}

.price{
font-size:40px;
margin:20px 0;
color:#2563eb;
font-weight:700;
}

.price-card ul{
list-style:none;
margin:20px 0;
}

.price-card li{
margin:10px 0;
}

/* FAQ */

.faq{
max-width:800px;
margin:auto;
}

.faq-item{
margin-bottom:25px;
}

.faq-item h4{
margin-bottom:5px;
}

/* CTA */

.cta{
text-align:center;
padding:90px 20px;
background:#1e293b;
color:white;
}

.cta h2{
font-size:34px;
margin-bottom:20px;
}

/* FOOTER */

footer{
background:#0f172a;
color:#94a3b8;
text-align:center;
padding:25px;
font-size:14px;
}

/* RESPONSIVE */

@media(max-width:900px){

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

.benefits,
.steps,
.templates,
.testimonials,
.pricing{
grid-template-columns:1fr;
}

}

html{
scroll-behavior:smooth;
}

.featured{
transform:scale(1.05);
border:2px solid #4f46e5;
}


.nav-links a{
margin-left:20px;
text-decoration:none;
color:#1e293b;
font-weight:500;
transition:all .25s ease;
}

.nav-links a:hover{
color:#2563eb;
}


.nav-btn{
background:#2563eb;
color:#ffffff;
padding:10px 20px;
border-radius:8px;
font-weight:600;
transition:all .25s ease;
}

.nav-btn:hover{
background:#1d4ed8;
transform:translateY(-2px);
box-shadow:0 8px 18px rgba(37,99,235,.35);
}


.btn{
display:inline-block;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:all .25s ease;
}

.btn-primary{
background:#22c55e;
color:#ffffff;
box-shadow:0 10px 20px rgba(34,197,94,.25);
}

.btn-primary:hover{
background:#16a34a;
transform:translateY(-3px);
box-shadow:0 14px 28px rgba(34,197,94,.35);
}

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

.card:hover{
transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.price-card{
background:white;
padding:40px;
text-align:center;
border-radius:14px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:all .25s ease;
}

.price-card:hover{
transform:translateY(-6px) scale(1.03);
box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.logo a{
text-decoration:none;
color:#2563eb;
}


.nav-btn{
background:#2563eb;
color:#ffffff !important;
padding:10px 20px;
border-radius:8px;
font-weight:600;
transition:all .25s ease;
text-decoration:none;
display:inline-block;
}

.nav-btn:hover{
background:#1d4ed8;
color:#ffffff !important;
transform:translateY(-2px);
box-shadow:0 6px 15px rgba(37,99,235,.35);
}

.nav-links a{
margin-left:20px;
text-decoration:none;
color:#1e293b;
font-weight:500;
transition:0.25s;
}

.nav-links a:hover{
color:#2563eb;
}

.hero img{
width:100%;
max-width:520px;
border-radius:12px;
box-shadow:0 25px 50px rgba(0,0,0,.3);
object-fit:cover;
}

.card a{

display:inline-block;
margin-top:10px;

color:#4f46e5;
font-weight:500;

text-decoration:none;

}

.card a:hover{
text-decoration:underline;
}