/* =============================================================================
   BotFlow Site Footer
   ============================================================================= */

.bf-footer {
    background: #030303;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 20px 32px;
    color: #808080;
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.bf-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.bf-footer__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #B8B8B8;
    font-size: 15px;
}

.bf-footer__brand strong {
    color: #00D47E;
    font-weight: 700;
}

.bf-footer__brand a {
    color: #B8B8B8;
    text-decoration: none;
    transition: color 0.2s;
}

.bf-footer__brand a:hover {
    color: #00D47E;
}

.bf-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.bf-footer__links a {
    color: #808080;
    text-decoration: none;
    transition: color 0.2s;
}

.bf-footer__links a:hover {
    color: #00D47E;
}

.bf-footer__address {
    color: #606060;
    font-size: 13px;
}

.bf-footer__copy {
    color: #505050;
    font-size: 12px;
    margin-top: 8px;
}

@media (max-width: 680px) {
    .bf-footer {
        padding: 32px 16px 24px;
    }
    .bf-footer__links {
        flex-direction: column;
        gap: 12px;
    }
}
