/* ============================================================
   TRUSTED BY BAR — above footer, global
   ============================================================ */

.trusted-bar {
    background-color: #ffffff;
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trusted-bar__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    margin: 0 0 1.5rem;
}

.trusted-bar__logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.trusted-bar__logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: filter 0.2s, opacity 0.2s;
}

.trusted-bar__logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */

.site-footer {
    background-color: #0D1B35;
    color: rgba(255,255,255,0.65);
}

/* ============================================================
   FOOTER MAIN
   ============================================================ */

.site-footer__main {
    padding-block: 4rem 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
    }
}

/* ============================================================
   BRAND COLUMN
   ============================================================ */

.footer-brand__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-brand__logo img {
    display: none;
}

.footer-brand__logo-text {
    font-size: 1.0625rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.footer-brand__logo-text strong {
    font-weight: 800;
    color: #ffffff;
}

.footer-brand__tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer-brand__contact {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

.footer-brand__contact a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-brand__contact a:hover {
    color: var(--color-white);
}

/* ============================================================
   NAV COLUMNS
   ============================================================ */

.footer-nav__heading {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1rem;
}

.footer-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-nav__link {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-nav__link:hover {
    color: var(--color-white);
}

/* ============================================================
   BOTTOM BAR
   ============================================================ */

.site-footer__bottom {
    padding-block: 1.25rem;
}

.site-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}

.site-footer__bottom a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer__bottom a:hover {
    color: var(--color-white);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}
