/* =========================
NAVIGATIE
========================= */

.site-header{
position:sticky;
top:0;
width:100%;
background:white;
z-index:9999;
box-shadow:0 4px 20px rgba(0,0,0,0.05);
transition:all .3s ease;
}

.nav-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:18px 20px;
}

/* LOGO */

.logo a{
font-size:24px;
font-weight:800;
text-decoration:none;
Color:white;
letter-spacing:-0.5px;
}

/* MENU */

.nav-menu{
display:flex;
gap:35px;
list-style:none;
align-items:center;
}

.nav-menu li a{
text-decoration:none;
Color:white;
font-weight:500;
font-size:16px;
transition:.25s;
position:relative;
}

/* hover underline animatie */

.nav-menu li a:after{
content:"";
position:absolute;
bottom:-6px;
left:0;
width:0%;
height:2px;
background:#ff3366;
transition:.3s;
}

.nav-menu li a:hover:after{
width:100%;
}

.nav-menu li a:hover{
color:#ff3366;
}

/* CTA BUTTON */

.nav-cta{
background:linear-gradient(135deg,#ff3366,#ff6b81);
color:white;
padding:12px 26px;
border-radius:8px;
text-decoration:none;
font-weight:700;
transition:.25s;
box-shadow:0 10px 20px rgba(255,51,102,0.25);
}

.nav-cta:hover{
transform:translateY(-2px);
box-shadow:0 15px 30px rgba(255,51,102,0.35);
}

/* HAMBURGER */

.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
}

.hamburger span{
width:26px;
height:3px;
background:#111;
border-radius:2px;
transition:.3s;
}

/* MOBILE */

@media(max-width:900px){

.nav-menu{
position:absolute;
top:75px;
left:0;
width:100%;
background:white;
flex-direction:column;
padding:35px;
gap:25px;
display:none;
box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.nav-menu.active{
display:flex;
}

.nav-cta{
display:none;
}

.hamburger{
display:flex;
}

}

body{
font-family: Arial;
margin:0;
}

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

.site-header{
background:black;
color:white;
}

.main-nav ul{
display:flex;
gap:20px;
list-style:none;
}

.hero{
padding:120px 0;
text-align:center;
}

.cta{
background:#ff3366;
color:white;
padding:15px 30px;
text-decoration:none;
}

@media(max-width:768px){
.main-nav ul{
display:none;
flex-direction:column;
}
.main-nav.active ul{
display:flex;
}
}

.container{
max-width:1150px;
margin:auto;
padding:0 25px;
}

.narrow{
max-width:850px;
}

.hero{
padding:160px 0 120px;
text-align:center;
Background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/header.jpg');
background-size:cover;
background-position:center;
background-repeat:no-repeat;

}

.hero-container{
max-width:900px;
}

.hero h1{
font-size:48px;
line-height:1.2;
margin-bottom:20px;
color: white;
}

.hero-sub{
font-size:20px;
Color:grey;
margin-bottom:40px;
}

/* TRUST */

.trust-bar{
background:white;
border-top:1px solid #eee;
border-bottom:1px solid #eee;
}

.trust-container{
display:flex;
justify-content:center;
gap:50px;
padding:25px 0;
font-weight:600;
}

/* PROCESS */

.process{
padding:120px 0;
text-align:center;
}

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

.step{
padding:30px;
border-radius:12px;
background:#fafafa;
}

/* REVIEWS */

.reviews{
padding:120px 0;
background:#f9f9f9;
text-align:center;
}

.review{
margin-top:30px;
font-size:20px;
font-style:italic;
}

/* CTA */

.cta{
display:inline-block;
background:#ff3366;
color:white;
padding:18px 38px;
border-radius:10px;
text-decoration:none;
font-weight:700;
transition:.25s;
}

.cta:hover{
transform:translateY(-3px);
box-shadow:0 20px 40px rgba(255,51,102,0.3);
}

.big{
font-size:20px;
}

.huge{
font-size:24px;
padding:22px 55px;
}

/* FINAL CTA */

.final-cta{
padding:150px 0;
background:black;
color:white;
text-align:center;
}

/* MOBILE */

@media(max-width:900px){

.hero h1{
font-size:34px;
}

.steps-grid{
grid-template-columns:1fr;
}

.trust-container{
flex-direction:column;
gap:15px;
}

}