/* Footer */
@import url("root.css");
        .footer {
            background: #0F172A;
            padding: 60px 0 30px;
            color: rgba(255,255,255,0.7);
        }
        
        .footer-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
        }
        
        .footer-link {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s;
        }
        
        .footer-link:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        .social-icons {
            display: flex;
            gap: 16px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            color: white;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-title { font-size: 2.5rem; }
            .hero-subtitle { font-size: 1.1rem; }
            .section-title { font-size: 2rem; }
            .cta-title { font-size: 2rem; }
            .pricing-card.featured { transform: none; margin-top: 30px; }
        }