        #xpera-isolated-footer {
            background-color: #0a0312;
            background-image: radial-gradient(circle at 50% 0%, rgba(126, 34, 206, 0.12) 0%, transparent 60%);
            position: relative;
            width: 100%;
            padding: 4rem 5rem 2rem 5rem;
            overflow: hidden;
            font-family: 'Heebo', sans-serif;
            z-index: 999999;
            box-sizing: border-box;
            color: #d8b4fe;
            border-top: 1px solid rgba(126, 34, 206, 0.15);
        }
        #xpera-isolated-footer * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        #xpera-isolated-footer a {
            text-decoration: none;
            color: rgba(233, 213, 255, 0.7);
            transition: color 0.3s ease;
        }
        #xpera-isolated-footer a:hover {
            color: #ffffff;
        }
        .xif-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .xif-brand-col {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .xif-logo-text {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 0.15em;
            color: #b366ff;
            text-shadow: 0 0 20px rgba(126, 34, 206, 0.4);
        }
        .xif-logo-img {
            height: 2.5rem;
            max-width: 200px;
            width: auto;
            object-fit: contain;
        }
        .xif-tagline {
            font-size: 0.9rem;
            font-weight: 300;
            color: rgba(233, 213, 255, 0.6);
            line-height: 1.6;
            max-width: 280px;
        }
        .xif-social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 0.5rem;
        }
        .xif-social-icons a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(179, 102, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #b366ff;
            transition: all 0.3s ease;
        }
        .xif-social-icons a:hover {
            background: rgba(126, 34, 206, 0.2);
            border-color: #b366ff;
            color: #fff;
            transform: translateY(-2px);
        }
        .xif-links-col, .xif-contact-col {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .xif-col-title {
            font-size: 0.85rem;
            font-weight: 600;
            color: #b366ff;
            letter-spacing: 0.05em;
            margin-bottom: 0.25rem;
        }
        .xif-links-col a, .xif-contact-col a {
            font-size: 0.85rem;
            font-weight: 300;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .xif-contact-col a i {
            font-size: 0.8rem;
            color: #7e22ce;
        }
        #xpera-isolated-footer .xif-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(126, 34, 206, 0.25), transparent);
            margin: 2rem 0;
        }
        .xif-bottom-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
            color: rgba(233, 213, 255, 0.35);
        }
        .xif-bottom-bar a {
            color: rgba(233, 213, 255, 0.35);
            font-size: 0.75rem;
        }
        @media (max-width: 768px) {
            #xpera-isolated-footer {
                padding: 3rem 1.5rem 1.5rem 1.5rem;
            }
            .xif-main {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            .xif-brand-col { align-items: center; }
            .xif-tagline { max-width: none; }
            .xif-social-icons { justify-content: center; }
            .xif-links-col, .xif-contact-col { align-items: center; }
            .xif-bottom-bar {
                flex-direction: column;
                gap: 0.75rem;
                text-align: center;
            }
        }
