.bt-footer {
    background: #1A1D23;
    color: #bfc5d2;
    font-family: 'Roboto', sans-serif;
}

.bt-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

.bt-footer-box h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.bt-footer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bt-footer-box ul li {
    margin-bottom: 8px;
}

.bt-footer-box ul li a {
    color: #bfc5d2;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    transition: color .2s;
}

.bt-footer-box ul li a:hover {
    color: #ffffff;
}

.bt-footer-brand img {
    max-width: 160px;
    margin-bottom: 12px;
}

.bt-footer-brand p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.bt-footer-social {
    display: flex;
    gap: 8px;
}

.bt-footer-social a {
    width: 32px;
    height: 32px;
    background-color: #272C35;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bfc5d2;
    font-size: 16px;
    transition: background .2s, color .2s;
    text-decoration: none !important;
    border-bottom: none !important;
}

.bt-footer-social a:hover {
    color: #ffffff;
}

.bt-footer-divider {
    height: 1px;
    background: #272C35;
    margin: 0 20px;
}

.bt-footer-bottom {
    border-top: 1px solid #272C35;
}

.bt-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bt-footer-copy p {
    margin: 0;
    font-size: 12px;
    color: #9aa1b2;
}

.bt-footer-copy a {
    color: #9aa1b2;
    text-decoration: none;
}

.bt-footer-copy a:hover {
    color: #ffffff;
}

.bt-footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bt-footer-payments img {
    height: 22px;
    opacity: 0.9;
}

.bt-footer-more {
    font-size: 10px;
    color: #9aa1b2;
    margin-left: 6px;
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
    .bt-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .bt-footer-payments {
        flex-wrap: wrap;
        justify-content: center;
    }
}
