.echo-hero{
padding:100px 20px;
background:linear-gradient(180deg,#FCFAF7,#F3FAFA);
overflow:hidden;
}
.echo-container{
max-width:1180px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}
.echo-badge{
display:inline-block;
padding:10px 18px;
background:#E2F2F0;
border-radius:50px;
font-size:13px;
letter-spacing:.08em;
color:#5A8D89;
margin-bottom:25px;
}
.echo-left h1{
font-family:Fraunces,serif;
font-size:62px;
line-height:1.05;
font-weight:500;
color:#36444D;
margin-bottom:30px;
}
.echo-left h1 span{
display:block;
color:#69A79F;
}
.intro{
font-size:20px;
line-height:1.8;
color:#65717A;
margin-bottom:40px;
}
.echo-btn{
display:inline-block;
background:#69A79F;
padding:18px 42px;
border-radius:50px;
color:white;
text-decoration:none;
font-weight:600;
transition:.3s;
box-shadow:0 15px 35px rgba(95,170,160,.35);
}
.echo-btn:hover{
transform:translateY(-4px);
}
.echo-security{
margin-top:18px;
font-size:12px;
letter-spacing:.08em;
text-transform:uppercase;
color:#8A949C;
}
.echo-small{
margin-top:15px;
font-size:14px;
color:#777;
max-width:420px;
line-height:1.6;
}
.echo-infos{
display:flex;
gap:30px;
margin-top:35px;
flex-wrap:wrap;
font-size:14px;
color:#6D737A;
}
.echo-right{
position:relative;
}
.echo-right img{
width:100%;
border-radius:40px;
box-shadow:0 30px 70px rgba(0,0,0,.12);
}
.floating-card{
position:absolute;
background:white;
padding:16px 20px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.10);
display:flex;
gap:15px;
align-items:center;
font-size:14px;
}
.floating-card.top{
top:25px;
right:-20px;
}
.floating-card.bottom{
bottom:25px;
left:-20px;
}
@media(max-width:900px){
.echo-container{
grid-template-columns:1fr;
}
.echo-right{
order:-1;
}
.echo-left{
text-align:center;
}
.echo-left h1{
font-size:42px;
}
.echo-small{
margin:auto;
}
.echo-infos{
justify-content:center;
}
.floating-card{
display:none;
}
}