.footer2{
    position: relative;
    margin-top: 0;
    padding: 80px 0 40px;
    background: linear-gradient(
            180deg,
            rgba(255,255,255,0.03),
            rgba(0,0,0,0.55)
    );
    border-top: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    color: rgba(255,255,255,0.88);
}

.footer-bg-grid{
    position:absolute;
    inset:0;
    background:
            radial-gradient(600px 300px at 20% 0%, rgba(120,180,255,0.12), transparent 60%),
            radial-gradient(600px 300px at 80% 0%, rgba(170,120,255,0.08), transparent 60%),
            repeating-linear-gradient(
                    90deg,
                    rgba(255,255,255,0.04) 0,
                    rgba(255,255,255,0.04) 1px,
                    transparent 1px,
                    transparent 100px
            );
    opacity: 0.4;
    pointer-events:none;
    z-index:0;
}

.footer-wrap{
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.footer-main{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-brand{
    max-width: 60%;
}

.footer-brand h3{
    font-size: 1.6rem;
    margin: 0 0 12px;
    letter-spacing: 0.04em;
}

.footer-brand p{
    line-height: 1.7;
    opacity: 0.8;
}

.footer-links{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a{
    text-decoration: none;
    font-weight: 600;
    opacity: 0.8;
    transition: opacity 120ms ease;
}

.footer-links a:hover{
    opacity: 1;
}

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}
