.footer-brand-wave {
    width: 100%;
    margin-top: 4rem;
}

.footer-brand-top {
    background: #2c2c2c;
    color: #fff;
    padding: 3.5rem 0 7rem;
    position: relative;
    overflow: hidden;
}

.footer-brand-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.02), rgba(255,255,255,.02)),
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.02) 0 18%, transparent 19%),
        radial-gradient(circle at 80% 40%, rgba(255,255,255,.02) 0 15%, transparent 16%);
    pointer-events: none;
}

.footer-brand-title {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: 1;
    letter-spacing: .03em;
    color: #ffffff;
}

.footer-brand-title .thin {
    font-weight: 300;
    opacity: .95;
}

.footer-brand-title .bold {
    font-weight: 800;
}

.footer-brand-subline {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.footer-brand-subline span {
    width: 110px;
    height: 12px;
    border-radius: 2px;
    background: linear-gradient(90deg, #2f7cf6, #58a8ff);
    display: inline-block;
}

.footer-brand-subline p {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .14em;
    color: #ffffff;
    white-space: nowrap;
}

.footer-brand-bottom {
    position: relative;
    margin-top: -4.2rem;
    background: #3b82f6;
    color: #fff;
    padding: 5.5rem 0 2rem;
    overflow: hidden;
}

.footer-brand-bottom::before,
.footer-brand-bottom::after {
    content: "";
    position: absolute;
    top: -45px;
    left: 0;
    width: 100%;
    height: 100px;
    border-radius: 50% 50% 0 0;
}

.footer-brand-bottom::before {
    background: rgba(255,255,255,.10);
    transform: scaleX(1.15);
}

.footer-brand-bottom::after {
    top: -28px;
    background: rgba(255,255,255,.07);
    transform: scaleX(1.35);
}

.footer-brand-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1.35rem;
    position: relative;
    z-index: 2;
}

.footer-brand-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: .9rem;
    text-decoration: none;
    background: rgba(255,255,255,.10);
    transition: all .25s ease;
}

.footer-brand-social a:hover {
    background: rgba(255,255,255,.22);
    transform: translateY(-2px);
}

.footer-brand-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.footer-brand-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 500;
    opacity: .95;
}

.footer-brand-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-brand-copy {
    text-align: center;
    font-size: .88rem;
    opacity: .92;
    position: relative;
    z-index: 2;
}

@media (max-width: 767.98px) {
    .footer-brand-top {
        padding: 2.8rem 0 6rem;
    }

    .footer-brand-title {
        font-size: 2rem;
    }

    .footer-brand-subline {
        gap: .65rem;
    }

    .footer-brand-subline span {
        width: 55px;
        height: 9px;
    }

    .footer-brand-subline p {
        font-size: .78rem;
        letter-spacing: .08em;
    }

    .footer-brand-bottom {
        padding: 5rem 0 2rem;
    }

    .footer-brand-links {
        gap: .8rem 1rem;
    }
}