* {

margin:0;
padding:0;

box-sizing:border-box;

}


body {

font-family:Arial, sans-serif;

color:#111827;

line-height:1.6;

}




header {

position:absolute;

width:100%;

z-index:5;

}



.nav {

display:flex;

justify-content:space-between;

align-items:center;

padding:30px 8%;

color:white;

}



.logo {

font-weight:bold;

letter-spacing:.05em;

}



nav a {

color:white;

text-decoration:none;

margin-left:30px;

}






.hero {


height:100vh;

display:flex;

align-items:center;

padding:0 8%;


background:

linear-gradient(
rgba(0,0,0,.6),
rgba(0,0,0,.6)
),

#1e293b;


color:white;

}



.hero-content {

max-width:650px;

}



.hero h1 {

font-size:clamp(3rem,6vw,5rem);

line-height:1;

margin-bottom:25px;

}



.hero p {

font-size:1.3rem;

margin-bottom:40px;

}





.button {

display:inline-block;

background:#f59e0b;

color:#111827;

padding:15px 30px;

border-radius:30px;

font-weight:bold;

}





section {

padding:100px 8%;

}





h2 {

font-size:3rem;

text-align:center;

margin-bottom:50px;

}







.services {

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}



.services div {

background:#f3f4f6;

padding:35px;

border-radius:15px;

}







.split {

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

background:#f8fafc;

}



.split h2 {

text-align:left;

}



.image-box {

height:350px;

background:#cbd5e1;

display:flex;

align-items:center;

justify-content:center;

font-weight:bold;

}







.steps {

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}



.steps div {

border-top:3px solid #f59e0b;

padding-top:25px;

}



.steps span {

color:#f59e0b;

font-weight:bold;

}







.contact {

background:#0f172a;

color:white;

text-align:center;

}



.contact .button {

margin-top:30px;

}





footer {

background:#020617;

color:white;

text-align:center;

padding:40px;

}





@media(max-width:800px){


.services,
.steps,
.split {

grid-template-columns:1fr;

}


nav {

display:none;

}


}