/* BLACK / RED / GOLD CLEANING THEME */
:root {
    --luno-black: #050505;
    --luno-black-soft: #0b0b0b;
    --luno-black-card: #111111;

    --luno-red: #e1443f;
    --luno-red-hover: #ff5f56;

    --luno-gold: #d7a629;
    --luno-gold-hover: #ecc34b;

    --luno-white: #ffffff;
    --luno-text-soft: rgba(255, 255, 255, 0.74);
    --luno-border: rgba(255, 255, 255, 0.12);
}

/* FOOTER */
.br-footer {
    background: var(--luno-black);
    color: var(--luno-white);
    margin-top: 0;
}

.br-footer__container {
    width: min(100% - 32px, 1120px);
    margin: 0 auto;
}

/* CTA TOP */
.br-footer-cta {
    padding: 88px 0 78px;
    background:
        radial-gradient(circle at 50% 0%, rgba(215, 166, 41, 0.16) 0%, transparent 34%),
        radial-gradient(circle at 18% 100%, rgba(225, 68, 63, 0.16) 0%, transparent 32%),
        linear-gradient(180deg, #101010 0%, #050505 100%);
    border-top: 1px solid rgba(215, 166, 41, 0.14);
}

.br-footer-cta__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.br-footer-cta__inner h2 {
    margin: 0;
    color: var(--luno-white);
    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 h2 span,
.br-footer-cta__inner strong {
    color: var(--luno-gold);
}

.br-footer-cta__inner p {
    max-width: 720px;
    margin: 18px auto 0;
    color: var(--luno-text-soft);
    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 30px;
    border-radius: 999px;
    background: var(--luno-red);
    color: var(--luno-white);
    border: 1px solid var(--luno-red);
    box-shadow: 0 16px 38px rgba(225, 68, 63, 0.26);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.br-footer-cta__button:hover {
    background: var(--luno-red-hover);
    border-color: var(--luno-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(225, 68, 63, 0.34);
}

/* MAIN FOOTER */
.br-footer-main {
    padding: 56px 0 52px;
    background: var(--luno-black);
    border-top: 1px solid var(--luno-border);
}

.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: var(--luno-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.br-footer__brand:hover {
    color: var(--luno-gold);
}

.br-footer__text {
    margin: 0;
    max-width: 290px;
    color: var(--luno-text-soft);
    font-size: 16px;
    line-height: 1.7;
}

.br-footer__col h3 {
    position: relative;
    margin: 0 0 22px;
    color: var(--luno-white);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.br-footer__col h3::after {
    content: "";
    display: block;
    width: 38px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: var(--luno-gold);
}

.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: var(--luno-text-soft);
    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: var(--luno-red-hover);
}

.br-footer__contact li {
    color: var(--luno-text-soft);
    font-size: 16px;
    line-height: 1.7;
}

.br-footer__contact span {
    display: block;
    margin-bottom: 2px;
    color: var(--luno-gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* BOTTOM */
.br-footer-bottom {
    padding: 18px 0 20px;
    border-top: 1px solid rgba(215, 166, 41, 0.14);
    background: #000000;
}

.br-footer-bottom p {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.56);
    font-size: 14px;
    line-height: 1.5;
}

/* CTA IMAGE BLOCK */
.luno-plan-cta {
    position: relative;
    min-height: clamp(260px, 32vw, 390px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--luno-black);
    color: var(--luno-white);
}

.luno-plan-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.luno-plan-cta__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

.luno-plan-cta__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 45%, rgba(215, 166, 41, 0.12) 0%, transparent 30%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.78) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.68) 100%);
}

.luno-plan-cta__container {
    position: relative;
    z-index: 2;
    width: min(100% - 32px, 1050px);
    margin: 0 auto;
    padding: clamp(58px, 7vw, 96px) 0;
    text-align: center;
}

.luno-plan-cta__title {
    max-width: 920px;
    margin: 0 auto;
    color: var(--luno-white);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.luno-plan-cta__button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: clamp(24px, 3vw, 34px);
    padding: 15px 34px;
    border-radius: 999px;
    color: #050505;
    background: var(--luno-gold);
    border: 1px solid var(--luno-gold);
    box-shadow: 0 16px 36px rgba(215, 166, 41, 0.26);
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.luno-plan-cta__button span {
    font-size: 24px;
    line-height: 1;
}

.luno-plan-cta__button:hover {
    transform: translateY(-2px);
    background: var(--luno-red);
    border-color: var(--luno-red);
    color: var(--luno-white);
    box-shadow: 0 20px 44px rgba(225, 68, 63, 0.34);
}

.luno-plan-cta__button:focus-visible,
.br-footer-cta__button:focus-visible,
.br-footer__links a:focus-visible,
.br-footer__contact a:focus-visible {
    outline: 4px solid rgba(215, 166, 41, 0.75);
    outline-offset: 5px;
}

/* 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;
    }

    .luno-plan-cta {
        min-height: 320px;
    }

    .luno-plan-cta__container {
        width: min(100% - 24px, 1050px);
        padding: 64px 0;
    }

    .luno-plan-cta__title {
        font-size: clamp(28px, 9vw, 40px);
        line-height: 1.18;
    }

    .luno-plan-cta__button {
        width: 100%;
        max-width: 320px;
        margin-top: 28px;
    }

    .luno-plan-cta__overlay {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.66) 100%),
            linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.7) 100%);
    }
}
/*  */
.br-footer__legal-row {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(215, 166, 41, 0.14);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 26px;
}

.br-footer__legal-row a {
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.br-footer__legal-row a:hover {
    color: #d7a629;
}

@media (max-width: 640px) {
    .br-footer__legal-row {
        justify-content: flex-start;
        gap: 10px 18px;
    }
}
/*  */
.br-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #ffffff;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        color 0.2s ease,
        opacity 0.2s ease;
}

.br-footer__brand:hover {
    transform: translateY(-1px);
    color: #d7a629;
    opacity: 0.96;
}

.br-footer__brand-logo {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
}

.br-footer__brand-text {
    color: currentColor;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

@media (max-width: 520px) {
    .br-footer__brand-logo {
        width: 36px;
        height: 36px;
    }

    .br-footer__brand-text {
        font-size: 22px;
    }
}