.br-footer {
    background: #041a23;
    color: #eaf7f8;
    margin-top: 0;
}

.br-footer__container {
    width: min(100% - 32px, 1120px);
    margin: 0 auto;
}

/* CTA TOP */
.br-footer-cta {
    padding: 88px 0 78px;
    background: #041a23;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.br-footer-cta__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.br-footer-cta__inner h2 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4.6vw, 62px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.br-footer-cta__inner p {
    max-width: 720px;
    margin: 18px auto 0;
    color: rgba(234, 247, 248, 0.78);
    font-size: 18px;
    line-height: 1.65;
}

.br-footer-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 34px;
    min-width: 260px;
    min-height: 54px;
    padding: 14px 28px;
    border-radius: 8px;
    background: #11c6c0;
    color: #03141b;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.br-footer-cta__button:hover {
    background: #2ddbd5;
    transform: translateY(-2px);
}

/* MAIN FOOTER */
.br-footer-main {
    padding: 56px 0 52px;
    background: #041a23;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.br-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1.2fr;
    gap: 42px;
    align-items: start;
}

.br-footer__brand {
    display: inline-block;
    margin-bottom: 18px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.br-footer__brand:hover {
    color: #11c6c0;
}

.br-footer__text {
    margin: 0;
    max-width: 290px;
    color: rgba(234, 247, 248, 0.76);
    font-size: 16px;
    line-height: 1.7;
}

.br-footer__col h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.br-footer__links,
.br-footer__contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

.br-footer__links li,
.br-footer__contact li {
    margin-bottom: 14px;
}

.br-footer__links a,
.br-footer__contact a {
    color: rgba(234, 247, 248, 0.78);
    font-size: 16px;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.br-footer__links a:hover,
.br-footer__contact a:hover {
    color: #11c6c0;
}

.br-footer__contact li {
    color: rgba(234, 247, 248, 0.78);
    font-size: 16px;
    line-height: 1.7;
}

.br-footer__contact span {
    display: block;
    margin-bottom: 2px;
    color: #11c6c0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* BOTTOM */
.br-footer-bottom {
    padding: 18px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #03141b;
}

.br-footer-bottom p {
    margin: 0;
    text-align: center;
    color: rgba(234, 247, 248, 0.62);
    font-size: 14px;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .br-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 28px;
    }
}

@media (max-width: 640px) {
    .br-footer__container {
        width: min(100% - 24px, 1120px);
    }

    .br-footer-cta {
        padding: 64px 0 54px;
    }

    .br-footer-cta__inner h2 {
        font-size: 34px;
    }

    .br-footer-cta__inner p {
        font-size: 16px;
    }

    .br-footer-cta__button {
        width: 100%;
        min-width: 0;
    }

    .br-footer-main {
        padding: 42px 0 38px;
    }

    .br-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .br-footer__text,
    .br-footer__contact li,
    .br-footer__links a {
        font-size: 15px;
    }

    .br-footer-bottom {
        padding: 16px 0 18px;
    }

    .br-footer-bottom p {
        font-size: 13px;
    }
}