/**
 * İç sayfalarda ana sayfa ile aynı tam footer + nav vurgusu
 */
:root {
    --primary: #1c82ff;
    --grd-blue: linear-gradient(135deg, #1c82ff, #60b0ff);
    --dark: #0a0f1a;
    --gray: #64748b;
}

.nav__link--on,
.nav__link--active {
    color: var(--primary) !important;
    font-weight: 600;
}

.footer {
    background: var(--dark);
    color: #94a3b8;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 130, 255, 0.05), transparent 70%);
    bottom: -250px;
    left: -150px;
}

.footer::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.04), transparent 70%);
    top: -150px;
    right: -100px;
}

.footer a {
    color: #cbd5e1;
    transition: color 0.25s;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.footer__top {
    padding: 72px 0 56px;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.footer__brand {
    max-width: 280px;
}

.footer__brand img {
    height: 24px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer__brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__social a:hover {
    background: var(--grd-blue);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(28, 130, 255, 0.3);
}

.footer__social svg {
    width: 16px;
    height: 16px;
}

.footer__col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 20px;
}

.footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__col li a {
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer__col li a:hover {
    color: #fff;
}

.footer__col li a .fc-new {
    font-size: 9px;
    padding: 2px 6px;
    background: var(--grd-blue);
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.footer__divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0;
    position: relative;
    z-index: 1;
}

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

@media (max-width: 640px) {
    .footer__top {
        grid-template-columns: 1fr;
    }
}
