.pro-footer {
                background: var(--clr-bg-2);
                padding: 4rem 0 2rem 0;
                margin-top: auto;
                text-align: center;
                border-top: 1px solid var(--clr-border);
            }
            body.dark-theme .pro-footer {
                background: #0f172a;
                border-top: 1px solid rgba(255,255,255,0.05);
            }
                        .pro-footer-label {
                font-size: 0.85rem;
                font-weight: 800;
                letter-spacing: 3px;
                text-transform: uppercase;
                color: var(--clr-text-faint);
                margin-bottom: 2rem;
                display: inline-block;
                position: relative;
                padding-bottom: 12px;
            }
            .pro-footer-label::before {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 50px;
                height: 3px;
                background: linear-gradient(90deg, var(--clr-red) 0%, var(--clr-yellow) 50%, var(--clr-green) 100%);
                border-radius: 3px;
            }
            .pro-footer-label::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 50%;
                transform: translateX(-50%);
                border-left: 6px solid transparent;
                border-right: 6px solid transparent;
                border-top: 5px solid var(--clr-yellow);
            }
            .pro-footer-socials {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 1.5rem;
                margin-bottom: 2.5rem;
            }
            .pro-footer-social-link {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 50px;
                height: 50px;
                border-radius: 14px;
                background: var(--clr-surface);
                color: var(--clr-text-muted);
                font-size: 1.8rem;
                box-shadow: 0 4px 15px rgba(0,0,0,0.05);
                border: 1px solid var(--clr-border);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                text-decoration: none;
            }
            .pro-footer-social-link i {
                transition: transform 0.3s ease;
            }
            .pro-footer-social-link:hover {
                transform: translateY(-5px);
                background: var(--clr-green-dark);
                color: white;
                box-shadow: 0 10px 25px rgba(0, 95, 39, 0.25);
                border-color: var(--clr-green-dark);
            }
            .pro-footer-social-link:hover i {
                transform: scale(1.1);
            }
            body.dark-theme .pro-footer-social-link {
                background: var(--clr-surface-2);
                border-color: rgba(255,255,255,0.05);
                color: #cbd5e1;
            }
            body.dark-theme .pro-footer-social-link:hover {
                background: var(--clr-yellow);
                color: var(--clr-green-dark);
                box-shadow: 0 10px 25px rgba(249, 225, 30, 0.2);
            }
            .pro-footer-text {
                color: var(--clr-text-muted);
                font-size: 0.95rem;
                margin-bottom: 0.5rem;
                font-weight: 500;
            }
            .pro-footer-credit {
                color: var(--clr-text-faint);
                font-size: 0.85rem;
            }
            .pro-footer-divider {
                border-top: 1px solid var(--clr-border);
                padding-top: 2rem;
                max-width: 800px;
                margin: 0 auto;
            }
            body.dark-theme .pro-footer-divider {
                border-top-color: rgba(255,255,255,0.05);
            }
