<!doctype html>
<html lang="ar" dir="rtl">
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>EduPlus</title>
    <style>
        body {
            font-family: system-ui, sans-serif;
            margin: 0;
            background: #f8fafc;
            color: #0f172a;
        }

        main {
            max-width: 980px;
            margin: auto;
            padding: 48px 20px;
        }

        h1 {
            font-size: 40px;
            margin-bottom: 12px;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 16px;
            margin-top: 28px;
        }

        .card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 20px;
        }

        a {
            display: inline-block;
            margin-top: 12px;
            color: #2563eb;
            font-weight: 700;
        }
    </style>
</head>
<body>
    <main>
        <h1>EduPlus</h1>
        <p>اختار النسخة المناسبة وجربها مباشرة قبل قرار الشراء.</p>

        <section class="grid">
            <article class="card">
                <h2>Starter</h2>
                <p>مناسبة للبداية وإدارة محتوى تعليمي أساسي.</p>
                <a href="https://starter.vipcardshops.com">جرّب النسخة</a>
            </article>

            <article class="card">
                <h2>Professional</h2>
                <p>خصائص أوسع للطلاب، أولياء الأمور، والمدفوعات.</p>
                <a href="https://professional.vipcardshops.com">جرّب النسخة</a>
            </article>

            <article class="card">
                <h2>Enterprise</h2>
                <p>إدارة متقدمة، تقارير، فرق، وصلاحيات أوسع.</p>
                <a href="https://enterprise.vipcardshops.com">جرّب النسخة</a>
            </article>
        </section>
    </main>
</body>
</html>