.modern-footer{
    position:relative;
    overflow:hidden;
    margin-top:54px;
    padding:0 0 28px;
    border-top:1px solid var(--border);
    background:linear-gradient(180deg,rgba(255,255,255,.42),rgba(0,184,156,.04));
}
.footer-trust-bar{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
    padding:22px 0 24px;
    border-bottom:1px solid var(--border);
}
.footer-trust-item{
    min-height:92px;
    padding:16px;
    border-radius:18px;
    background:#fff;
    border:1px solid var(--border);
    display:flex;
    gap:12px;
    align-items:center;
    box-shadow:var(--shadow);
}
.footer-trust-item h4{
    margin:0 0 6px;
    font-size:1rem;
    color:var(--ink);
}
.footer-trust-item p{
    margin:0;
    color:var(--muted);
    line-height:1.6;
    font-size:.92rem;
}
.footer-trust-icon{
    width:48px;
    height:48px;
    border-radius:16px;
    display:grid;
    place-items:center;
    flex:0 0 auto;
    color:#fff;
    font-size:1.2rem;
}
.footer-trust-icon.google-icon{background:linear-gradient(135deg,var(--teal),var(--teal-d));}
.footer-trust-icon.sold-icon{background:linear-gradient(135deg,#111318,#2b3442);}
.footer-trust-icon.years-icon{background:linear-gradient(135deg,#f6c34f,#cf8b1f);}
.footer-main-grid{
    display:grid;
    grid-template-columns:1.15fr .72fr .72fr 1.05fr;
    gap:16px;
    padding:24px 0;
}
.footer-brand{
    display:grid;
    gap:16px;
    align-content:start;
}
.footer-logo-wrap{
    position:relative;
    display:inline-flex;
    align-items:center;
    width:max-content;
}
.footer-logo{
    width:172px;
    height:auto;
    display:block;
    border-radius:0;
}
.footer-description{
    margin:0;
    color:var(--muted);
    line-height:1.7;
    max-width:34ch;
}
.footer-socials{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.footer-socials a{
    width:42px;
    height:42px;
    border-radius:14px;
    display:grid;
    place-items:center;
    border:1px solid var(--border);
    background:#fff;
    box-shadow:var(--shadow);
    color:var(--ink);
}
.footer-title{
    margin:0 0 14px;
    font-size:1rem;
    color:var(--ink);
}
.footer-links{
    display:grid;
    gap:10px;
}
.footer-links a{
    color:var(--muted);
    line-height:1.6;
}
.footer-links a:hover{
    color:var(--teal-d);
}
.footer-newsletter p{
    margin:0 0 14px;
    color:var(--muted);
    line-height:1.6;
}
.footer-newsletter-form{
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto;
    gap:8px;
    align-items:start;
}
.footer-newsletter-form input{
    grid-column:1;
    grid-row:1;
    width:100%;
    min-width:0;
    min-height:46px;
    border:1px solid var(--border);
    border-radius:14px;
    background:#fff;
    color:var(--ink);
    padding:0 14px;
    outline:none;
    font:inherit;
}
.footer-newsletter-form button{
    grid-column:2;
    grid-row:1;
    width:46px;
    height:46px;
    border:0;
    border-radius:14px;
    background:var(--teal);
    color:#fff;
    display:grid;
    place-items:center;
    flex:0 0 auto;
}
.footer-newsletter-form [data-turnstile-widget]{
    grid-column:1/-1;
}
.footer-newsletter-form .form-response{
    grid-column:1/-1;
    min-height:18px;
    color:var(--muted);
    font-size:.88rem;
}
.footer-powered{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:14px;
}
.footer-powered-chip{
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:36px;
    padding:0 12px;
    border-radius:999px;
    border:1px solid var(--border);
    background:#fff;
    color:var(--ink);
    font-size:.85rem;
    box-shadow:var(--shadow);
}
.footer-bottom{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:16px;
    padding-top:18px;
    border-top:1px solid var(--border);
    color:var(--muted);
    font-size:.92rem;
    text-align:center;
}
.footer-bottom-links{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    justify-content:center;
}
.footer-bottom-links a{
    color:var(--muted);
}

@media (max-width: 980px){
    .footer-main-grid{
        grid-template-columns:1fr 1fr;
    }
    .footer-brand,
    .footer-newsletter{
        grid-column:1/-1;
    }
}

@media (max-width: 680px){
    .modern-footer{
        margin-top:30px;
        padding:10px 0 20px;
        background:
            linear-gradient(180deg,rgba(255,255,255,.65),rgba(224,247,243,.52)),
            var(--off-white);
    }
    .footer-trust-bar{
        display:flex;
        overflow-x:auto;
        gap:10px;
        padding:8px 0 14px;
        border-bottom:0;
        scroll-snap-type:x proximity;
        scrollbar-width:none;
    }
    .footer-trust-bar::-webkit-scrollbar{
        display:none;
    }
    .footer-trust-item{
        flex:0 0 76%;
        min-height:82px;
        padding:14px;
        border-radius:18px;
        scroll-snap-align:start;
        box-shadow:0 10px 28px rgba(17,19,24,.08);
    }
    .footer-trust-icon{
        width:42px;
        height:42px;
        border-radius:14px;
    }
    .footer-trust-item h4{
        font-size:.94rem;
    }
    .footer-trust-item p{
        font-size:.82rem;
        line-height:1.45;
    }
    .footer-main-grid{
        grid-template-columns:1fr 1fr;
        gap:12px;
        padding:8px 0 14px;
    }
    .footer-brand,
    .footer-newsletter{
        grid-column:1/-1;
        padding:16px;
        border:1px solid var(--border);
        border-radius:22px;
        background:rgba(255,255,255,.92);
        box-shadow:0 14px 36px rgba(17,19,24,.09);
    }
    .footer-brand{
        grid-template-columns:1fr auto;
        align-items:center;
        gap:12px;
    }
    .footer-logo-wrap{
        grid-column:1/-1;
    }
    .footer-logo{
        width:138px;
    }
    .footer-description{
        grid-column:1/-1;
        max-width:none;
        font-size:.92rem;
        line-height:1.62;
    }
    .footer-socials{
        grid-column:1/-1;
        gap:8px;
    }
    .footer-socials a{
        width:40px;
        height:40px;
        border-radius:14px;
        box-shadow:none;
        background:var(--teal-l);
        color:var(--teal-d);
    }
    .footer-title{
        margin-bottom:10px;
        font-size:.95rem;
    }
    .footer-links{
        gap:8px;
    }
    .footer-links a{
        min-height:42px;
        padding:9px 10px;
        border-radius:14px;
        background:rgba(255,255,255,.92);
        border:1px solid var(--border);
        color:var(--ink);
        font-size:.9rem;
        box-shadow:0 8px 22px rgba(17,19,24,.06);
    }
    .footer-newsletter p{
        font-size:.92rem;
        line-height:1.55;
    }
    .footer-powered{
        gap:8px;
    }
    .footer-powered-chip{
        box-shadow:none;
        background:var(--teal-l);
        border-color:rgba(0,184,156,.12);
        color:var(--teal-d);
    }
    .footer-bottom{
        align-items:center;
        justify-content:center;
        text-align:center;
        font-size:.82rem;
        padding:14px 0 0;
    }
    .footer-bottom-links{
        width:100%;
        justify-content:center;
        gap:8px;
    }
    .footer-bottom-links a{
        padding:6px 8px;
        border-radius:999px;
        background:rgba(255,255,255,.76);
    }
    .footer-newsletter-form{
        grid-template-columns:minmax(0, 1fr) 48px;
    }
    .footer-newsletter-form input{
        min-height:48px;
        border-radius:16px;
    }
    .footer-newsletter-form button{
        width:48px;
        height:48px;
        border-radius:16px;
    }
}
