            /* ========================================
           FOOTER / FOOTER
           ======================================== */

        footer {
            background-color: var(--industry-dark);
            color: white;
            padding: 5rem 1rem;
            border-radius: 2.5rem 2.5rem 0 0;
        }

        @media (min-width: 768px) {
            footer {
                padding: 5rem 2rem;
            }
        }

        .footer-logo {
            font-size: 14vw;
            font-weight: 700;
            line-height: 1;
            color: rgba(190, 242, 100, 0.9);
            margin-bottom: 4rem;
            letter-spacing: -0.02em;
        }

        @media (min-width: 1024px) {
            .footer-logo {
                font-size: 12rem;
            }
        }

        .footer-logo-light {
            font-style: italic;
            font-weight: 300;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-bottom: 4rem;
        }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .footer-grid > div:first-child {
            grid-column: span 2;
        }

        @media (min-width: 1024px) {
            .footer-grid > div:first-child {
                grid-column: span 1;
            }
        }

        .footer-section-title {
            font-size: 0.625rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.125em;
            margin-bottom: 1.5rem;
            color: var(--industry-accent);
        }

        .footer-section-text {
            color: #cbd5e1;
            font-size: 0.875rem;
            line-height: 1.625;
        }

        .footer-section-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-section-list li {
            margin-bottom: 1rem;
            color: #cbd5e1;
            font-size: 0.875rem;
        }

        .footer-section-list a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color var(--transition-duration) ease;
            display: block;
        }

        .footer-section-list a:hover {
            color: white;
        }

        .footer-bottom {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.625rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.09em;
            color: #666;
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: #666;
            text-decoration: none;
            transition: color var(--transition-duration) ease;
        }

        .footer-links a:hover {
            color: #a1aac7;
        }
