.footer-landing {
    background: linear-gradient(180deg, #ffffff 0%, #fafaf7 100%);
    border-top: 1px solid rgba(0,62,59,.08);
    font-family: 'Inter', system-ui, sans-serif;
    color: #5a5a5a;
    font-size: .8rem;
    padding: 18px 0;
    margin-top: 32px;
}
.footer-landing::before {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201,152,82,0) 8%,
        rgba(201,152,82,.35) 50%,
        rgba(201,152,82,0) 92%,
        transparent 100%);
    margin: -19px auto 14px;
    max-width: 1140px;
}
.fl-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(14px, 4vw, 32px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 20px;
}
.fl-brand strong {
    color: #003E3B;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .1px;
}
.fl-soft { color: #888; font-weight: 500; }
.fl-contact, .fl-legal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.fl-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #003E3B;
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}
.fl-link:hover { color: #C99852; }
.fl-link svg { opacity: .8; flex-shrink: 0; }
.fl-link.fl-wa { color: #16a34a; }
.fl-link.fl-wa:hover { color: #15803d; }
.fl-sep {
    color: #C99852;
    opacity: .55;
    font-weight: 400;
    user-select: none;
}
.fl-legal a {
    color: #6a6a6a;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}
.fl-legal a:hover { color: #003E3B; }

@media (max-width: 768px) {
    .footer-landing {
        padding: 16px 0 80px;
        font-size: .74rem;
    }
    .fl-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    .fl-contact, .fl-legal {
        gap: 7px;
        justify-content: center;
    }
    .fl-link svg { width: 10px; height: 10px; }
}