
.final-section {
    position: relative;
    width: 100%;
    padding: 180px 0;
    background-color: #080808;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
}

.final-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 95%, transparent);
    z-index: 1;
}

.final-glow-wrapper {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    min-height: 100vh;
    opacity: 0; 
    transition: all 1.8s cubic-bezier(0.16, 1, 0.5, 1) 0.3s;
    z-index: 2;
    pointer-events: none;
} 


.glow-ambient {
    position: absolute;
    width: 120%;
    height: 100%;
    left: -10%;
    background: radial-gradient(circle at 50% 100%, rgba(207, 206, 206, 0.15) 0%, transparent 65%);
    filter: blur(100px);
}

.final-section.is-active .final-glow-wrapper {
    opacity: 1;
    bottom: -50px;
}


.final-container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 30px;
}

.final-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: #fff;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    font-family: 'satoshi';
}

.final-description {
    font-size: 1.2rem;
    color: #c5c5c5;
    margin-bottom: 45px;
    line-height: 1.6;
    font-family: 'satoshi';

}

.final-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1.1rem;
transition: all .2s ease-in-out;
    font-family: 'satoshi';
border: 2px solid #fff;
}

.final-cta-button:hover {
color: #fff;
    background: #48484846; 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid #404040;
}




body { margin: 0; padding: 0; background: #0d0d0d; }

:root {
    --bg-page: #0d0d0d;
    --box-color: #121212;
    --accent: #ffffff;
    --text-muted: #888888;
    --radius: 20px;
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.linear-footer {
    display: grid;
    grid-template-columns: 10fr 80fr 10fr;
    gap: 4px;
    padding: 0;
    background-color: var(--bg-page);
    font-family: 'satoshi', sans-serif;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #222; 
}

.linear-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y), 
        rgba(255, 255, 255, 0.40), 
        transparent 50%
    );
    z-index: 1; 
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.linear-footer:hover::before {
    opacity: 1;
}

.f-box {
    background-color: rgba(18, 18, 18, 1); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); 
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
}

.f-box:nth-child(3n+1) { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.f-box:nth-child(3n) { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.f-box:nth-child(-n+3) { border-top-left-radius: 0; border-top-right-radius: 0; }
.f-box:nth-child(n+7) { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }

.main-content { padding: 40px; }
.logo-area { min-height: 100px; }
.logo-area img { height: 60px; object-fit: contain; }

.links-area {
    min-height: 300px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.link-col h4 {
    font-family: 'satoshi', sans-serif;
    color: var(--accent);
    font-size: 13px; 
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.6;
}

.link-col a {
    font-family: 'satoshi', sans-serif;
    display: flex;
    align-items: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 100;
    left: 0;
}

.link-col a:hover { color: #fff; left: 5px; }

.bottom-area { 
    min-height: 110px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.contact-txt { display: flex; flex-direction: column; }
.contact-txt small { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.contact-txt span { color: var(--accent); font-weight: 500; font-size: 16px; }

.copy-txt { color: var(--text-muted); font-size: 14px; }

.social-mini { display: flex; gap: 20px; z-index: 100; }
.social-mini img { width: 22px; height: 22px; opacity: 0.8; transition: 0.3s; }
.social-mini img:hover { opacity: 1; transform: translateY(-2px); }


@media (max-width: 1024px) {
    .linear-footer {
        grid-template-columns: 1fr; 
        gap: 2px;
    }

    .side-empty {
        display: none; 
    }

    .f-box {
        border-radius: 0 !important; 
        padding: 30px 20px;
    }

    .links-area {
        flex-wrap: wrap; 
        justify-content: flex-start;
        gap: 30px;
    }

    .link-col {
        min-width: 40%; 
    }

    .bottom-area {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding-bottom: 40px;
    }

    .contact-txt {
        align-items: center;
    }

    .social-mini {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .link-col {
        min-width: 100%; 
    }
    
    .logo-area img {
        height: 50px;
    }
    
    .copy-txt {
        order: 3; 
    }
}