.trust{
background:#fafafa;
padding:40px 0;
}

.trust-grid{
display:flex;
justify-content:space-around;
flex-wrap:wrap;
gap:20px;
font-weight:600;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:50px;
}

.card{
padding:35px;
border:1px solid #eee;
border-radius:10px;
}

/* WhatsApp */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
padding:16px 24px;
border-radius:50px;
color:white;
text-decoration:none;
font-weight:bold;
}

/* POPUP */

/* PREMIUM POPUP */

.popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.6);
backdrop-filter:blur(6px);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
padding:20px;
}

.popup-box{
background:white;
border-radius:14px;
overflow:hidden;
display:flex;
max-width:900px;
width:100%;
box-shadow:0 25px 80px rgba(0,0,0,.4);
animation:popupFade .4s ease;
}

@keyframes popupFade{
from{transform:translateY(20px);opacity:0;}
to{transform:translateY(0);opacity:1;}
}

.popup-image{
width:50%;
background:url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=2070');
background-size:cover;
background-position:center;
}

.popup-content{
width:50%;
padding:50px;
position:relative;
}

.popup-content h3{
font-size:28px;
margin-bottom:20px;
}

.popup-content input{
width:100%;
padding:14px;
margin-bottom:14px;
border:1px solid #ddd;
border-radius:6px;
}

.popup-close{
position:absolute;
top:15px;
right:20px;
cursor:pointer;
font-size:22px;
}

/* MOBILE */

@media(max-width:900px){
.popup-box{
flex-direction:column;
}
.popup-image{
width:100%;
height:200px;
}
.popup-content{
width:100%;
padding:30px;
}
}
