    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', sans-serif;
        }

        body {
            background: #f8fafc;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Navigation */
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #7c3aed;
        }

        .nav-links {
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #7c3aed;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            margin-top: 60px;
            border-radius: 0 0 20px 20px;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Mini Features */
        .mini-features {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
            margin: 40px 0;
            padding: 0 15px;
        }

        .mini-feature {
            background: white;
            padding: 15px 10px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .mini-feature:hover {
            transform: translateY(-5px);
        }

        .mini-feature i {
            font-size: 1.5rem;
            color: #7c3aed;
            margin-bottom: 8px;
        }

        .mini-feature p {
            font-size: 0.8rem;
            color: #666;
            font-weight: 600;
            margin: 0;
        }

        /* Pricing Plans */
        .pricing-section {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 10px;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
        }

        .plan-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: #7c3aed;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .popular-badge {
            background: #ff6b6b;
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
            margin: 20px 0 10px;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: bold;
            color: #7c3aed;
            margin-bottom: 20px;
        }

        .plan-price span {
            font-size: 1rem;
            color: #666;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin: 25px 0;
        }

        .feature-item {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 8px 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: #555;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: #eee;
            transform: translateY(-2px);
        }

        .feature-item i {
            color: #10b981;
            font-size: 0.8rem;
        }

        .btn-primary {
            background: #7c3aed;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
            width: 100%;
            margin-bottom: 10px;
        }

        .btn-primary:hover {
            background: #6d28d9;
        }

        .support-link {
            color: #7c3aed;
            text-decoration: none;
            font-size: 0.9rem;
            display: block;
            text-align: center;
        }

        /* Features Section */
        .features-section {
            padding: 60px 0;
            background: #f8fafc;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-box {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .feature-box:hover {
            transform: translateY(-5px);
        }

        .feature-top {
            position: relative;
            height: 120px;
            overflow: hidden;
        }

        .feature-top img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .feature-top p {
            position: absolute;
            bottom: 10px;
            left: 15px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 4px 8px;
            border-radius: 5px;
            font-size: 0.75rem;
            margin: 0;
        }

        .feature-bottom {
            padding: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .feature-icon {
            background: #7c3aed;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .feature-content h3 {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .feature-content p {
            color: #666;
            font-size: 0.85rem;
            line-height: 1.4;
            margin: 0;
        }

        /* Footer */
        .footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 50px 0 20px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .footer-logo {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            border: 2px solid #7c3aed;
        }

        .company-name {
            font-size: 1.3rem;
            font-weight: bold;
            color: white;
        }

        .footer-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .contact-item i {
            color: #7c3aed;
            width: 20px;
        }

        .social-section {
            text-align: center;
            margin: 40px 0;
        }

        .social-label {
            background: linear-gradient(135deg, #7c3aed, #10b981);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            display: inline-block;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-link:hover {
            transform: translateY(-3px);
        }

        .social-link.whatsapp:hover { background: #25D366; }
        .social-link.tiktok:hover { background: #000000; }
        .social-link.facebook:hover { background: #1877F2; }
        .social-link.instagram:hover { 
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #94a3b8;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mini-features {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .mini-features {
                grid-template-columns: repeat(2, 1fr);
            }
        }