/* TRUST BAR */

.homepage-trust-bar{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin:40px 0;
}

.trust-item{
background:#fff;
padding:22px;
text-align:center;
border-radius:14px;
box-shadow:0 2px 12px rgba(0,0,0,0.06);
}

.trust-item span{
font-size:32px;
display:block;
margin-bottom:12px;
}

.trust-item h4{
font-size:18px;
font-weight:700;
margin-bottom:8px;
}

.trust-item p{
font-size:14px;
line-height:1.6;
color:#666;
margin:0;
}

/* PROMO BANNER */

.homepage-promo-banner{
text-align:center;
padding:70px 25px;
background:#f8f9fa;
border-radius:18px;
margin:50px 0;
}

.homepage-promo-banner h2{
font-size:42px;
font-weight:700;
margin-bottom:18px;
line-height:1.3;
}

.homepage-promo-banner p{
font-size:17px;
line-height:1.8;
max-width:750px;
margin:auto;
color:#666;
}

.promo-btn{
display:inline-block;
margin-top:25px;
padding:14px 36px;
background:#22a559;
color:#fff !important;
border-radius:10px;
font-weight:700;
text-decoration:none;
}

.promo-btn:hover{
background:#1b8a48;
}

/* MOBILE */

@media(max-width:992px){

.homepage-trust-bar{
grid-template-columns:repeat(2,1fr);
}

.homepage-promo-banner h2{
font-size:32px;
}

}

@media(max-width:576px){

.homepage-trust-bar{
grid-template-columns:1fr;
}

.homepage-promo-banner{
padding:50px 20px;
}

.homepage-promo-banner h2{
font-size:26px;
}

.promo-btn{
width:100%;
text-align:center;
}

}

/* CLEAN FOOTER FEATURES */

.footer-features{
list-style:none;
padding:0;
margin:0;
}

.footer-features li{
position:relative;
padding:12px 0 12px 34px;
font-size:15px;
font-weight:600;
color:#000 !important;
border-bottom:1px solid #ececec;
line-height:1.7;
transition:0.3s ease;
}

.footer-features li:last-child{
border-bottom:none;
}

.footer-features li:before{
content:"✓";
position:absolute;
left:0;
top:12px;
width:22px;
height:22px;
background:#22a559;
color:#fff;
font-size:13px;
font-weight:700;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

.footer-features li:hover{
padding-left:40px;
color:#22a559 !important;
}

/* MOBILE */

@media(max-width:768px){

.footer-features li{
font-size:14px;
padding:10px 0 10px 32px;
}

}