@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

body{
background:#ffffff;
color:#111827;
line-height:1.6;
font-size:14px;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 8%;
border-bottom:1px solid #f0f0f0;
background:#fff;
}

.logo{
font-size:28px;
font-weight:800;
color:#e53935;
}

nav a{
margin:0 14px;
text-decoration:none;
color:#111827;
font-weight:600;
}

.btn{
background:#e53935;
color:#fff;
padding:12px 20px;
border-radius:8px;
text-decoration:none;
font-weight:600;
display:inline-block;
}

.hero{
padding:80px 8%;
text-align:center;
}

.hero-center{
max-width:900px;
margin:auto;
}

.hero h1{
font-size:48px;
font-weight:800;
margin-bottom:20px;
}

.hero p{
font-size:18px;
color:#666;
margin-bottom:30px;
}

.secondary{
background:#fff;
color:#2563eb;
border:2px solid #2563eb;
}

.box,
.feature-card,
.price-card{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.box{
max-width:500px;
margin:30px auto;
text-align:left;
}

.trusted,
.pricing{
background:#f8fafc;
padding:70px 8%;
text-align:center;
}

.features{
padding:70px 8%;
text-align:center;
}

.features h2,
.pricing h2,
.trusted h2{
font-size:36px;
margin-bottom:40px;
}

.logos,
.feature-grid,
.pricing-grid{
display:grid;
gap:20px;
}

.logos{
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
}

.feature-grid{
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
}

.pricing-grid{
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
}

.featured{
border:2px solid #e53935;
}

.tag{
background:#e53935;
color:white;
padding:6px 14px;
border-radius:20px;
display:inline-block;
margin-bottom:15px;
}

.price{
font-size:42px;
font-weight:800;
margin:20px 0;
}

footer{
padding:40px;
text-align:center;
background:#111827;
color:white;
}