﻿
.footer {
    background: var(--color-surface);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--color-border);
}

.footer__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer__brand img {
/*    height: 42px;*/
    margin-bottom: 0.75rem;
}

.footer__brand p {
    color: var(--color-text-muted);
    margin: 0;
}

.footer__title {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

    .footer__links a {
        color: var(--color-text-muted);
    }

        .footer__links a:hover {
            color: var(--color-primary);
        }

.footer__trust {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer__trust-seal {
    border: 1px dashed var(--color-border);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

    .footer__social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid var(--color-border);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--color-text);
    }

.footer__bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}
