*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:white;

color:#111827;

}

.container{

width:90%;

max-width:1200px;

margin:auto;

}

nav{

padding:25px 0;

border-bottom:1px solid #eee;

position:sticky;

top:0;

background:white;

z-index:100;

}

.nav-container{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{

font-size:28px;

font-weight:700;

color:#2563EB;

}

nav ul{

display:flex;

list-style:none;

gap:40px;

}

nav ul a{

text-decoration:none;

color:#111827;

font-weight:500;

}

.btn-nav{

background:#2563EB;

color:white;

padding:12px 22px;

border-radius:8px;

text-decoration:none;

font-weight:600;

}

.hero{

padding:140px 0;

text-align:center;

background:linear-gradient(
180deg,
#EFF6FF 0%,
#ffffff 100%
);

}

.hero h1{

font-size:24px;

color:#2563EB;

margin-bottom:20px;

font-weight:600;

}

.hero h2{

font-size:58px;

line-height:1.2;

max-width:900px;

margin:auto;

margin-bottom:30px;

font-weight:700;

}

.hero p{

max-width:720px;

margin:auto;

font-size:20px;

color:#6B7280;

line-height:1.8;

margin-bottom:45px;

}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.btn-primary{

background:#2563EB;

padding:16px 34px;

border-radius:10px;

text-decoration:none;

color:white;

font-weight:600;

}

.btn-secondary{

border:2px solid #2563EB;

padding:16px 34px;

border-radius:10px;

text-decoration:none;

color:#2563EB;

font-weight:600;

}

.btn-secondary:hover{

transform:translateY(-4px);

background:#2563EB;

color:white;

box-shadow:0 15px 35px rgba(37,99,235,.15);

}

@media(max-width:768px){

nav ul{

display:none;

}

.hero{

padding:80px 0;

}

.hero h2{

font-size:38px;

}

.hero p{

font-size:18px;

}

}
/* =======================
ABOUT
======================= */

.about{

padding:120px 0;

background:#ffffff;

}

.section-tag{

color:#2563EB;

font-weight:700;

letter-spacing:2px;

margin-bottom:18px;

text-transform:uppercase;

text-align:center;

}

.about h2{

font-size:46px;

text-align:center;

max-width:800px;

margin:auto;

margin-bottom:30px;

line-height:1.3;

}

.section-text{

max-width:850px;

margin:auto;

font-size:20px;

line-height:1.9;

color:#6B7280;

text-align:center;

}



/* =======================
PROCESS
======================= */

.process{

padding:120px 0;

background:#F8FAFC;

}

.process h2{

font-size:46px;

text-align:center;

margin-bottom:70px;

}

.process-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.card{

background:white;

padding:45px;

border-radius:18px;

box-shadow:0 10px 35px rgba(0,0,0,.06);

transition:.3s;

}

.card:hover{

transform:translateY(-10px);

}

.number{

width:65px;

height:65px;

background:#2563EB;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:white;

font-size:24px;

font-weight:700;

margin-bottom:30px;

}

.card h3{

margin-bottom:18px;

font-size:28px;

}

.card p{

font-size:18px;

line-height:1.8;

color:#6B7280;

}

@media(max-width:900px){

.process-grid{

grid-template-columns:1fr;

}

.about h2{

font-size:34px;

}

.process h2{

font-size:34px;

}

}
/* =======================
PROVEN RESULTS
======================= */

.results{

padding:120px 0;

background:white;

}

.results h2{

font-size:46px;

text-align:center;

margin-bottom:20px;

}

.results-text{

max-width:760px;

margin:auto;

text-align:center;

font-size:19px;

line-height:1.8;

color:#6B7280;

margin-bottom:70px;

}

.results-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:40px;

}

.result-card{

background:white;

border-radius:18px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.3s;

}

.result-card:hover{

transform:translateY(-8px);

}

.result-card img{

width:100%;

display:block;

}

.result-info{

padding:30px;

}

.result-info h3{

font-size:28px;

margin-bottom:10px;

}

.result-info p{

font-size:18px;

color:#6B7280;

}

@media(max-width:900px){

.results-grid{

grid-template-columns:1fr;

}

.results h2{

font-size:34px;

}

}
/* =======================
FAQ
======================= */

.faq{

padding:120px 0;

background:#F8FAFC;

}

.faq h2{

text-align:center;

font-size:46px;

margin-bottom:60px;

}

.faq-container{

max-width:900px;

margin:auto;

display:flex;

flex-direction:column;

gap:25px;

}

.faq-item{

background:white;

padding:35px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.faq-item h3{

margin-bottom:15px;

font-size:24px;

}

.faq-item p{

font-size:18px;

line-height:1.8;

color:#6B7280;

}



/* =======================
CTA
======================= */

.cta{

padding:120px 0;

text-align:center;

background:#2563EB;

color:white;

}

.cta h2{

font-size:48px;

margin-bottom:25px;

}

.cta p{

max-width:700px;

margin:auto;

margin-bottom:45px;

font-size:20px;

line-height:1.8;

}

.cta .btn-primary{

background:white;

color:#2563EB;

}



/* =======================
FOOTER
======================= */

footer{

padding:60px 0;

background:#111827;

color:white;

text-align:center;

}

footer h3{

font-size:30px;

margin-bottom:15px;

}

footer p{

color:#D1D5DB;

margin-bottom:10px;

line-height:1.8;

}

.copyright{

margin-top:20px;

font-size:15px;

color:#9CA3AF;

}

@media(max-width:768px){

.faq h2,
.cta h2{

font-size:34px;

}

}
/* =======================
SCROLL ANIMATIONS
======================= */

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}
.btn-primary,
.btn-secondary,
.btn-nav{
transition:all .3s ease;
}

.btn-primary:hover{

transform:translateY(-4px);

box-shadow:0 15px 35px rgba(37,99,235,.25);

}

.btn-secondary:hover{

transform:translateY(-4px);

box-shadow:0 15px 35px rgba(37,99,235,.15);

}

.btn-nav:hover{

transform:translateY(-3px);

box-shadow:0 10px 25px rgba(37,99,235,.2);

}
.about-container{

display:grid;

grid-template-columns:1fr 1.2fr;

gap:70px;

align-items:center;

}


.about-image img{

width:100%;

max-width:400px;

border-radius:20px;

display:block;

}


.about-content .section-tag{

text-align:left;

}


.about-content h2{

text-align:left;

}


.about-content .section-text{

text-align:left;

margin:0;

}


@media(max-width:900px){

.about-container{

grid-template-columns:1fr;

text-align:center;

}


.about-image img{

margin:auto;

}


.about-content .section-tag,
.about-content h2,
.about-content .section-text{

text-align:center;

}

}