    *{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Inter,sans-serif;
background:#f7f8ff;
color:#1f2937;

}

a{
text-decoration:none;
}

header{

max-width:1300px;
margin:auto;

padding:30px;

display:flex;
justify-content:space-between;
align-items:center;

}

.logo{

font-size:28px;
font-weight:700;

display:flex;
gap:10px;

align-items:center;

}

nav{

display:flex;
gap:35px;

}

nav a{

color:#555;
font-weight:500;

}

.header-buttons{

display:flex;
gap:20px;

align-items:center;

}

.button{

background:#5B5DF5;
padding:15px 30px;

border-radius:14px;

color:white;

font-weight:600;

transition:.3s;

}

.button:hover{

background:#4547d8;

}

.login{

color:#555;

}

.hero{

max-width:1300px;

margin:auto;

padding:80px 30px;

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:60px;

}

.hero h1{

font-size:70px;

line-height:1.05;

margin-bottom:30px;

}

.hero h1 span{

color:#5B5DF5;

}

.hero p{

font-size:22px;

line-height:1.8;

margin-bottom:40px;

color:#666;

}

.big{

font-size:20px;

}

.hero img{

width:100%;

}

.features{

max-width:1300px;

margin:auto;

padding:80px 30px;

display:grid;

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

gap:25px;

}

.card{

background:white;

padding:40px;

border-radius:25px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.icon{

font-size:50px;

margin-bottom:20px;

}

.card h3{

margin-bottom:15px;

}

.card p{

color:#777;

}

.steps{

padding:100px 30px;

max-width:1200px;

margin:auto;

}

.steps h2{

text-align:center;

font-size:46px;

margin-bottom:70px;

}

.step-grid{

display:grid;

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

gap:40px;

}

.step{

background:white;

padding:45px;

border-radius:25px;

box-shadow:0 15px 40px rgba(0,0,0,.05);

text-align:center;

}

.number{

width:60px;

height:60px;

background:#5B5DF5;

color:white;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-weight:700;

margin:auto;

margin-bottom:25px;

}

.cta{

max-width:1300px;

margin:80px auto;

padding:90px;

background:linear-gradient(120deg,#edf0ff,#d9dcff);

border-radius:35px;

text-align:center;

}

.cta h2{

font-size:52px;

margin-bottom:25px;

}

.cta p{

margin-bottom:35px;

font-size:20px;

color:#555;

}

footer{

padding:50px;

text-align:center;

color:#777;

}

@media(max-width:900px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero h1{

font-size:50px;

}

.features{

grid-template-columns:1fr;

}

.step-grid{

grid-template-columns:1fr;

}

nav{

display:none;

}

header{

flex-wrap:wrap;

gap:20px;

}

}