:root {
            --bg-dark-1: #0F172A;
            --bg-dark-2: #1E293B;
            --primary: #2563EB;
            --primary-hover: #1D4ED8;
            --primary-light: #3B82F6;
            --accent: #38BDF8;
            --bg-light: #F8FAFC;
            --white: #FFFFFF;
            --text-main: #334155;
            --text-muted: #64748b;
            --text-dark: #0f172a;
            --orange-highlight: #F97316;
            
            --glass-bg-dark: rgba(30, 41, 59, 0.7);
            --glass-border-dark: rgba(255, 255, 255, 0.1);
            --glass-bg-light: rgba(255, 255, 255, 0.7);
            --glass-border-light: rgba(255, 255, 255, 0.4);
            
            --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
            --shadow-hover: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-sm: 8px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            line-height: 1.8;
            color: var(--text-main);
            background-color: var(--bg-light);
            margin: 0;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.3;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .section-header p {
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .badge-premium {
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        footer {
            background-color: #020617; 
            color: #94A3B8;
            padding: 80px 0 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-brand {
            margin-bottom: 30px;
        }
        .footer-brand .brand-logo {
            font-size: 24px;
            display: block;
            margin-bottom: 15px;
        }
        .footer-desc {
            font-size: 0.95rem;
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-title {
            color: var(--white);
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #94A3B8;
            font-size: 0.95rem;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-contact li {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        .footer-contact i {
            color: var(--accent);
            font-size: 1.1rem;
            margin-top: 3px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .social-icons a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .footer-bottom { justify-content: center; text-align: center; }
        }