*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Inter,sans-serif;
background:#f8fafc;
color:#111827;
line-height:1.7;
overflow-x:hidden;
}

a{
text-decoration:none;
color:inherit;
}

img{
max-width:100%;
display:block;
}

.glow{
position:fixed;
top:-280px;
left:50%;
transform:translateX(-50%);
width:850px;
height:850px;
background:#2563eb;
opacity:.08;
filter:blur(120px);
border-radius:50%;
z-index:-1;
pointer-events:none;
}

.wrapper{
max-width:1280px;
margin:auto;
padding:30px;
}

/* ==========================
HEADER
========================== */

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 0 20px;
}

.logo img{
height:58px;
}

.header nav{
display:flex;
gap:30px;
}

.header nav a{
font-weight:600;
color:#6b7280;
transition:.2s;
}

.header nav a:hover{
color:#111827;
}

/* ==========================
HERO
========================== */

.hero{
padding:60px 0 100px;
text-align:center;
}

.badge{
display:inline-block;
padding:10px 18px;
background:#dbeafe;
color:#2563eb;
border-radius:999px;
font-size:24px;
font-weight:700;
margin-bottom:28px;
}

.hero h1{
font-size:50px;
font-weight:800;
line-height:1.05;
max-width:900px;
margin:0 auto 30px;
letter-spacing:-2px;
}

.hero p{
max-width:760px;
margin:auto;
font-size:20px;
color:#6b7280;
}

.hero-buttons{
margin-top:45px;
display:flex;
justify-content:center;
gap:18px;
flex-wrap:wrap;
}

/* ==========================
BUTTONS
========================== */

.btn-primary,
.btn-secondary{
display:inline-flex;
align-items:center;
justify-content:center;
height:56px;
padding:0 34px;
border-radius:999px;
font-weight:700;
font-size:17px;
transition:.2s;
}

.btn-primary{
background:#4253f4;
color:#fff;
}

.btn-primary:hover{
background:#3345ee;
}

.btn-secondary{
background:#c2d4eb;
border:1px solid #d1d5db;
color:#111827;
}

.btn-secondary:hover{
background:#f3f4f6;
}

/* ==========================
SECTIONS
========================== */

section{
padding:90px 0;
}

section h2{
text-align:center;
font-size:42px;
font-weight:800;
margin-bottom:18px;
letter-spacing:-1px;
}

section>p{
text-align:center;
max-width:760px;
margin:0 auto 60px;
color:#6b7280;
font-size:18px;
}

/* ==========================
FEATURES
========================== */

.feature-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
margin-top:55px;
}

.feature-card{
background:#fff;
padding:34px 28px;
border-radius:22px;
border:1px solid #e5e7eb;
box-shadow:0 10px 30px rgba(0,0,0,.04);
transition:.25s;
}

.feature-card:hover{
transform:translateY(-5px);
box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.feature-card h3{
font-size:22px;
margin-bottom:16px;
}

.feature-card p{
color:#6b7280;
font-size:15px;
}

/* ==========================
ABOUT
========================== */

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.about h2{
text-align:left;
margin-bottom:24px;
}

.about p{
margin-bottom:22px;
color:#6b7280;
font-size:18px;
}

.about-right{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.stat-card{
background:#fff;
padding:32px;
border-radius:22px;
border:1px solid #e5e7eb;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.stat-card h3{
font-size:28px;
margin-bottom:12px;
}

.stat-card p{
margin:0;
font-size:15px;
color:#6b7280;
}

/* ==========================
AUDIENCE
========================== */

.audience-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
margin-top:50px;
}

.audience-card{
background:#fff;
padding:30px;
border-radius:22px;
border:1px solid #e5e7eb;
box-shadow:0 10px 30px rgba(0,0,0,.04);
text-align:center;
}

.audience-card h3{
font-size:22px;
margin-bottom:12px;
}

.audience-card p{
color:#6b7280;
}

/* ==========================
PROCESS
========================== */

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
margin-top:50px;
}

.step{
background:#fff;
padding:34px;
border-radius:22px;
border:1px solid #e5e7eb;
box-shadow:0 10px 30px rgba(0,0,0,.04);
text-align:center;
}

.number{
width:58px;
height:58px;
border-radius:50%;
background:#4253f4;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
font-weight:800;
margin:auto auto 22px;
}

.step h3{
font-size:22px;
margin-bottom:12px;
}

.step p{
color:#6b7280;
}

/* ==========================
CTA
========================== */

.cta{
background:#fff;
border:1px solid #e5e7eb;
border-radius:28px;
padding:80px 40px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.04);
margin:100px 0;
}

.cta h2{
margin-bottom:22px;
}

.cta p{
max-width:720px;
margin:0 auto 36px;
font-size:19px;
color:#6b7280;
}

/* ==========================
FOOTER
========================== */

.footer{
padding:30px 0 60px;
text-align:center;
color:#6b7280;
border-top:1px solid #e5e7eb;
}

.footer-links{
display:flex;
justify-content:center;
gap:35px;
margin-bottom:22px;
flex-wrap:wrap;
}

.footer-links a{
font-weight:600;
transition:.2s;
}

.footer-links a:hover{
color:#111827;
}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:1100px){

.feature-grid,
.audience-grid,
.process-grid{
grid-template-columns:repeat(2,1fr);
}

.about{
grid-template-columns:1fr;
}

.about h2{
text-align:center;
}

.about p{
text-align:center;
}

}

@media(max-width:768px){

.wrapper{
padding:22px;
}

.header{
flex-direction:column;
gap:24px;
padding-bottom:40px;
}

.hero{
padding:30px 0 70px;
}

.hero h1{
font-size:46px;
letter-spacing:-1px;
}

.hero p{
font-size:18px;
}

.hero-buttons{
flex-direction:column;
}

.btn-primary,
.btn-secondary{
width:100%;
}

.feature-grid,
.audience-grid,
.process-grid,
.about-right{
grid-template-columns:1fr;
}

section{
padding:60px 0;
}

section h2{
font-size:34px;
}

.cta{
padding:60px 25px;
}

}























