.app-footer {
    display: block;
    width: 100% !important;
    max-width: none !important;
    margin-top: 2.5rem;
    
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 48%, #e5efff 100%);
    color: #334155;
}

.app-footer__container {
    width: min(1320px, calc(100% - 1.5rem));
    margin: 0 auto;
}

.app-footer__main {
    margin-top: 1rem;
    padding: 1rem 0 1.55rem;
    position: relative;
    margin-bottom: .6rem;
    border: 1px solid rgb(129 180 255 / 36%);
    border-radius: 1.2rem;
    overflow: hidden;
}

.app-footer__main::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(129, 180, 255, 0.14), rgba(186, 230, 253, 0.24));

   
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    pointer-events: none;
}

.app-footer__main > .row {
    position: relative;
    z-index: 1;
    padding: .5rem 1rem;
}

.app-footer__brand {
    display: inline-block;
    margin-bottom: .9rem;
    text-decoration: none;
}

.app-footer__brand-logo {
    display: block;
    width: clamp(140px, 20vw, 200px);
    max-width: 100%;
    height: auto;
    aspect-ratio: 667 / 393;
    object-fit: contain;
    border-radius: .85rem;
    background: rgba(255, 255, 255, 0.98);
    padding: .35rem;
    box-shadow: 0 12px 24px rgba(30, 41, 59, 0.16);
}

.app-footer__description {
    max-width: 20rem;
    margin-bottom: 0;
    color: #475569;
}

.app-footer__social {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-top: 1rem;
}

.app-footer__social-link {
    width: 2.1rem;
    height: 2.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #1d4ed8;
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(59, 130, 246, 0.25);
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.app-footer__social-link:hover,
.app-footer__social-link:focus-visible {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.88);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(30, 64, 175, 0.35);
}

.app-footer__social-link i {
    font-size: 1.02rem;
    line-height: 1;
}

.app-footer__title {
    color: #0f172a;
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: .8rem;
}

.app-footer__links {
    margin-bottom: 0;
}

.app-footer__links li + li {
    margin-top: .45rem;
}

.app-footer__link {
    color: #334155;
    text-decoration: none;
    transition: color .2s ease;
}

.app-footer__link:hover,
.app-footer__link:focus-visible {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.app-footer__link--soon {
    opacity: .82;
}

.app-footer__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: .4rem;
    padding: .08rem .4rem;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: #1d4ed8;
    background: rgba(59, 130, 246, 0.16);
    border: 1px solid rgba(59, 130, 246, 0.25);
}


.app-footer__nav--center {
    text-align: center;
    margin-left: -1rem;
}

.app-footer__nav--end {
    text-align: right;
}

.app-footer__bottom {
    
    padding: .9rem 0;
    text-align: center;
    color: #64748b;
    font-size: .9rem;
}

@media (max-width: 768px) {

    .app-footer__container {
        width: calc(100% - 1rem);
    }
    .app-footer__main {
        padding: 1.6rem 0 1rem;
    }

    .app-footer__main > .row {
        padding: 1rem .55rem;
    }

    .app-footer__brand-logo {
        width: min(220px, 100%);
    }

    .app-footer__nav--center,
    .app-footer__nav--end {
        text-align: left;
        margin-top: .6rem;
    }
    .app-footer__nav--center {
        margin-left: 0;
    }
}