.hero{
padding:120px 20px 100px;
background:var(--color-bg-soft);
}

.hero-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
}

.hero-content{
max-width:600px;
}

.hero h1{
font-size:52px;
line-height:1.1;
margin-bottom:20px;
color:var(--color-text-main);
}

.hero h1 span{
color:var(--color-primary);
}

.hero p{
font-size:18px;
color:var(--color-text-muted);
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:16px;
margin-bottom:30px;
}

.btn-primary{
background:var(--color-primary);
color:#fff;
padding:14px 24px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:0.25s ease;
}

.btn-primary:hover{
transform:translateY(-2px);
box-shadow:var(--shadow-soft);
}

.btn-secondary{
border:1px solid var(--color-border);
padding:14px 24px;
border-radius:8px;
text-decoration:none;
color:var(--color-text-main);
font-weight:600;
transition:0.25s ease;
}

.btn-secondary:hover{
background:var(--color-bg-main);
}

.hero-trust{
display:flex;
gap:20px;
font-size:14px;
color:var(--color-text-muted);
}

.hero-visual{
flex:1;
display:flex;
justify-content:center;
}

.hero-card{
background:var(--color-bg-main);
padding:30px;
border-radius:12px;
box-shadow:var(--shadow-soft);
width:320px;
}

.hero-card h3{
margin-bottom:15px;
color:var(--color-text-main);
}

.hero-card ul{
list-style:none;
padding:0;
}

.hero-card li{
margin-bottom:10px;
color:var(--color-text-muted);
}

/* Responsive */

@media (max-width:900px){

.hero-container{
flex-direction:column;
text-align:center;
}

.hero-buttons{
justify-content:center;
}

.hero-trust{
justify-content:center;
flex-wrap:wrap;
}

}