*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Inter',sans-serif;

background:#ffffff;

color:#111827;

}

.container{

width:min(1180px,92%);

margin:auto;

}

header{

padding:22px 0;

position:fixed;

top:0;

width:100%;

background:rgba(255,255,255,.75);

backdrop-filter:blur(14px);

z-index:999;

}

header .container{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{

font-size:28px;

font-weight:800;

text-decoration:none;

color:#111827;

}

.header-btn{

background:#111827;

color:#fff;

padding:12px 24px;

border-radius:12px;

text-decoration:none;

}

.hero{

padding:150px 0 80px;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:60px;

}

.badge{

display:inline-block;

padding:10px 18px;

background:#EEF6FF;

border-radius:40px;

margin-bottom:25px;

font-weight:600;

}

.hero h1{

font-size:64px;

line-height:1.1;

margin-bottom:25px;

}

.hero p{

font-size:20px;

color:#6B7280;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:18px;

margin-bottom:35px;

}

.btn-primary{

background:#111827;

color:white;

padding:18px 38px;

border-radius:14px;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.btn-primary:hover{

transform:translateY(-4px);

}

.btn-secondary{

border:2px solid #111827;

padding:18px 38px;

border-radius:14px;

text-decoration:none;

color:#111827;

font-weight:700;

}

.trust{

display:flex;

gap:30px;

font-weight:600;

}

.hero-right img{

width:100%;

border-radius:24px;

box-shadow:0 30px 80px rgba(0,0,0,.15);

}

@media(max-width:900px){

.hero-grid{

grid-template-columns:1fr;

}

.hero{

padding-top:120px;

}

.hero h1{

font-size:42px;

}

.hero-buttons{

flex-direction:column;

}

.trust{

flex-direction:column;

gap:12px;

}

}