/* Standardized Institutional Footer for Nifty Algo Pro */
.zen-footer {
    margin-top: 80px;
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 10;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFF 0%, var(--nifty-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: var(--nifty-blue);
    transform: translateX(8px);
}

.sebi-disclaimer-node {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
}

.sebi-disclaimer-node h4 {
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 16px;
}

.sebi-disclaimer-node h4 i {
    color: var(--nifty-blue);
}

.sebi-disclaimer-node p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    opacity: 0.8;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .zen-footer {
        padding: 60px 0 30px;
    }
    .footer-container {
        padding: 0 24px;
    }
}
