

body{
font-family:'Inter',sans-serif;
color:#111;
background:#fff;
line-height:1.6;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* NAVBAR */

.navbar{
padding:20px 0;
border-bottom:1px solid #eee;
background:#fff;
}

.nav-wrapper{
display:flex;
justify-content:space-between;
align-items:center;
}

nav a{
margin:0 15px;
text-decoration:none;
color:#333;
font-weight:500;
}

/* HERO */

.hero{
padding:100px 0;
background:#f8fafc;
}

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

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

.hero-text p{
font-size:18px;
margin-bottom:25px;
color:#555;
}

.hero-image img{
width:100%;
border-radius:12px;
}

/* BUTTONS */

.btn-primary{
background:#5b5cf0;
color:white;
border:none;
padding:12px 22px;
border-radius:8px;
font-weight:600;
cursor:pointer;
}

.btn-outline{
background:transparent;
border:2px solid #5b5cf0;
color:#5b5cf0;
padding:12px 22px;
border-radius:8px;
margin-left:10px;
cursor:pointer;
}

/* LOGOS */

.logos{
padding:40px 0;
}

.logos-row{
display:flex;
justify-content:space-between;
align-items:center;
opacity:.7;
}

/* CARDS */

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

.card{
background:white;
border:1px solid #eee;
padding:30px;
border-radius:10px;
}

.feature{
background:#f8fafc;
padding:30px;
border-radius:10px;
}

/* SECTIONS */

section{
padding:80px 0;
}

section h2{
font-size:32px;
margin-bottom:20px;
}

/* TESTIMONIAL */

.testimonial{
background:#111;
color:white;
text-align:center;
padding:80px 20px;
}

blockquote{
font-size:22px;
max-width:800px;
margin:auto;
}

.author{
margin-top:20px;
opacity:.7;
}

/* CTA */

.cta-box{
background:#5b5cf0;
color:white;
padding:60px;
text-align:center;
border-radius:12px;
}

.cta-box h2{
margin-bottom:20px;
}

/* FOOTER */

.footer{
background:#111;
color:white;
padding:60px 0;
}

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

.footer h4{
margin-bottom:10px;
}

.footer p{
opacity:.7;
margin-bottom:6px;
}