:root { --primary-color: #6366f1; --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%); --text-color: #f8fafc; --accent: #a855f7; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', sans-serif; background-color: #ffffff; color: #1e293b; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: #ffffff; padding: 15px 0; border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 1000; }
        .nav-container { display: flex; justify-content: space-between; align-items: center; }
        .nav-links { display: flex; gap: 0; align-items: center; }
        .nav-links a { padding: 10px 15px; text-decoration: none; color: #334155; font-weight: 500; font-size: 14px; }
        .hero { padding: 100px 0; background: var(--bg-gradient); color: var(--text-color); text-align: center; }
        .hero h1 { font-size: 3rem; margin-bottom: 20px; background: linear-gradient(to right, #fff, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .btn-primary { display: inline-block; padding: 12px 30px; background: var(--accent); color: white; border-radius: 8px; text-decoration: none; font-weight: bold; margin-top: 20px; transition: transform 0.3s; }
        .btn-primary:hover { transform: translateY(-3px); }
        .section { padding: 80px 0; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .card { padding: 30px; border-radius: 16px; background: #f8fafc; border: 1px solid #e2e8f0; transition: 0.3s; }
        .card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
        .table-responsive { overflow-x: auto; }
        table { width: 100%; border-collapse: collapse; margin-top: 20px; }
        th, td { padding: 15px; border: 1px solid #e2e8f0; text-align: left; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid #e2e8f0; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; background: #f1f5f9; display: flex; justify-content: space-between; }
        .faq-answer { padding: 15px; display: none; }
        footer { background: #0f172a; color: #94a3b8; padding: 40px 0; text-align: center; }
        .ai-page-home-link { color: #fff; }