388 lines
15 KiB
HTML
388 lines
15 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ar" dir="rtl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Jordan Bot - مساعدك الذكي للتوصيل</title>
|
|
<!-- Google Fonts -->
|
|
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;800&display=swap" rel="stylesheet">
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
<style>
|
|
:root {
|
|
--primary: #00D4AA;
|
|
--secondary: #FFD700;
|
|
--dark: #121222;
|
|
--card-bg: #1A1A2E;
|
|
--text-light: #FFFFFF;
|
|
--text-muted: #AAAAAA;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Cairo', sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--dark);
|
|
color: var(--text-light);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
header {
|
|
text-align: center;
|
|
padding: 80px 20px;
|
|
background: linear-gradient(180deg, #1A1A2E 0%, var(--dark) 100%);
|
|
}
|
|
|
|
header h1 {
|
|
color: var(--primary);
|
|
font-size: 3.5rem;
|
|
margin-bottom: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 15px;
|
|
}
|
|
|
|
header p {
|
|
font-size: 1.2rem;
|
|
color: var(--text-muted);
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.btn-download {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
background-color: var(--primary);
|
|
color: #000;
|
|
padding: 15px 40px;
|
|
border-radius: 30px;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
font-size: 1.2rem;
|
|
margin-top: 30px;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.btn-download:hover {
|
|
transform: translateY(-5px);
|
|
background-color: #00FFCC;
|
|
}
|
|
|
|
section {
|
|
padding: 60px 0;
|
|
}
|
|
|
|
h2.section-title {
|
|
text-align: center;
|
|
font-size: 2.5rem;
|
|
margin-bottom: 50px;
|
|
color: var(--text-light);
|
|
}
|
|
|
|
/* Features */
|
|
.features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 30px;
|
|
}
|
|
|
|
.feature-card {
|
|
background-color: var(--card-bg);
|
|
padding: 40px 30px;
|
|
border-radius: 15px;
|
|
text-align: center;
|
|
border: 1px solid #333;
|
|
transition: transform 0.3s;
|
|
}
|
|
|
|
.feature-card:hover {
|
|
transform: translateY(-5px);
|
|
border-color: var(--primary);
|
|
}
|
|
|
|
.feature-icon {
|
|
font-size: 3rem;
|
|
color: var(--primary);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.feature-card h3 {
|
|
color: var(--text-light);
|
|
margin-bottom: 15px;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
/* Pricing */
|
|
.pricing-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 30px;
|
|
align-items: center;
|
|
}
|
|
|
|
.pricing-card {
|
|
background-color: var(--card-bg);
|
|
padding: 40px 30px;
|
|
border-radius: 20px;
|
|
text-align: center;
|
|
border: 1px solid #333;
|
|
transition: transform 0.3s;
|
|
position: relative;
|
|
}
|
|
|
|
.pricing-card:hover {
|
|
transform: translateY(-10px);
|
|
}
|
|
|
|
.pricing-card.premium {
|
|
border: 2px solid var(--primary);
|
|
box-shadow: 0 10px 30px rgba(0, 212, 170, 0.2);
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.pricing-card.premium:hover {
|
|
transform: scale(1.05) translateY(-10px);
|
|
}
|
|
|
|
.pricing-icon {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 15px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.pricing-card.premium .pricing-icon {
|
|
color: var(--primary);
|
|
}
|
|
|
|
.price {
|
|
font-size: 2.5rem;
|
|
color: var(--text-light);
|
|
font-weight: bold;
|
|
margin: 20px 0;
|
|
direction: ltr;
|
|
}
|
|
|
|
.price span {
|
|
font-size: 1.2rem;
|
|
color: var(--primary);
|
|
}
|
|
|
|
ul.plan-features {
|
|
list-style: none;
|
|
margin-bottom: 30px;
|
|
text-align: right;
|
|
}
|
|
|
|
ul.plan-features li {
|
|
margin-bottom: 15px;
|
|
color: var(--text-muted);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
ul.plan-features li i {
|
|
color: var(--primary);
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
/* Guide Steps */
|
|
.guide-step {
|
|
background-color: var(--card-bg);
|
|
padding: 30px;
|
|
border-radius: 15px;
|
|
margin-bottom: 30px;
|
|
border-right: 5px solid var(--primary);
|
|
}
|
|
|
|
.guide-step h3 {
|
|
color: var(--secondary);
|
|
font-size: 1.5rem;
|
|
margin-bottom: 15px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.guide-step p {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.placeholder-img {
|
|
width: 100%;
|
|
max-width: 400px;
|
|
height: 250px;
|
|
background-color: #333;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 10px;
|
|
color: #777;
|
|
font-size: 1.2rem;
|
|
border: 2px dashed #555;
|
|
margin: 10px auto;
|
|
gap: 10px;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
padding: 30px;
|
|
border-top: 1px solid #333;
|
|
margin-top: 50px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.pricing-card.premium {
|
|
transform: scale(1);
|
|
}
|
|
.pricing-card.premium:hover {
|
|
transform: translateY(-10px);
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Header -->
|
|
<header>
|
|
<div class="container">
|
|
<h1><i class="fa-solid fa-robot"></i> Jordan Bot</h1>
|
|
<p>المساعد الذكي الأول لكباتن تطبيقات التوصيل في الأردن. يعمل في الخلفية لضمان قبول أفضل الطلبات تلقائياً بناءً على فلاترك الخاصة.</p>
|
|
<a href="installer-release.apk" class="btn-download"><i class="fa-brands fa-android"></i> تحميل المثبت التلقائي (APK)</a>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Features -->
|
|
<section class="container">
|
|
<h2 class="section-title">لماذا تختار Jordan Bot؟</h2>
|
|
<div class="features-grid">
|
|
<div class="feature-card">
|
|
<i class="fa-solid fa-bolt feature-icon"></i>
|
|
<h3>قبول تلقائي وسريع</h3>
|
|
<p>يلتقط الطلبات في أجزاء من الثانية قبل أي سائق آخر، بدون استنزاف البطارية بفضل الخوارزميات الذكية.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<i class="fa-solid fa-filter feature-icon"></i>
|
|
<h3>فلاتر ذكية</h3>
|
|
<p>حدد الحد الأدنى للسعر والحد الأقصى للمسافة، وسيتكفل البوت برفض الطلبات الخاسرة وقبول المربحة فقط.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<i class="fa-solid fa-mobile-screen feature-icon"></i>
|
|
<h3>يدعم جميع التطبيقات</h3>
|
|
<p>يعمل بكفاءة مع تطبيقات Uber، Careem، Jeeny، Petra Ride، و TaxiF في وقت واحد.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Pricing -->
|
|
<section class="container" id="pricing">
|
|
<h2 class="section-title">باقات الاشتراك السنوية</h2>
|
|
<div class="pricing-grid">
|
|
<!-- Free -->
|
|
<div class="pricing-card">
|
|
<i class="fa-solid fa-gift pricing-icon"></i>
|
|
<h3>الخطة المجانية</h3>
|
|
<div class="price">0 <span>JOD / مدى الحياة</span></div>
|
|
<ul class="plan-features">
|
|
<li><i class="fa-solid fa-check"></i> رحلة واحدة يومياً للتجربة</li>
|
|
<li><i class="fa-solid fa-check"></i> تجربة الفلاتر الأساسية</li>
|
|
<li><i class="fa-solid fa-check"></i> تطبيق واحد فقط</li>
|
|
</ul>
|
|
<p style="color: var(--text-muted); font-size: 0.9rem;">مثالية للتجربة قبل الاشتراك</p>
|
|
</div>
|
|
|
|
<!-- Basic Annual -->
|
|
<div class="pricing-card">
|
|
<i class="fa-solid fa-star-half-stroke pricing-icon"></i>
|
|
<h3>الخطة الأساسية (سنوي)</h3>
|
|
<div class="price">10.0 <span>JOD / سنة</span></div>
|
|
<ul class="plan-features">
|
|
<li><i class="fa-solid fa-check"></i> طلبات غير محدودة (Unlimited)</li>
|
|
<li><i class="fa-solid fa-check"></i> أولوية في سرعة القبول</li>
|
|
<li><i class="fa-solid fa-check"></i> تدعم <strong>3 تطبيقات</strong> فقط</li>
|
|
</ul>
|
|
<p style="color: var(--text-muted); font-size: 0.9rem;"><i class="fa-solid fa-wallet"></i> تفعيل فوري عبر CliQ</p>
|
|
</div>
|
|
|
|
<!-- Pro Annual -->
|
|
<div class="pricing-card premium">
|
|
<i class="fa-solid fa-crown pricing-icon"></i>
|
|
<h3>الخطة الاحترافية (سنوي)</h3>
|
|
<div class="price">17.0 <span>JOD / سنة</span></div>
|
|
<ul class="plan-features">
|
|
<li><i class="fa-solid fa-check"></i> طلبات غير محدودة (Unlimited)</li>
|
|
<li><i class="fa-solid fa-check"></i> أقصى سرعة وقوة في القبول</li>
|
|
<li><i class="fa-solid fa-check"></i> تدعم جميع <strong>الـ 5 تطبيقات</strong></li>
|
|
</ul>
|
|
<p style="color: var(--secondary); font-size: 0.9rem;"><i class="fa-solid fa-wallet"></i> تفعيل فوري عبر CliQ</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Installation Guide -->
|
|
<section class="container" id="download">
|
|
<h2 class="section-title">دليل التثبيت والإعداد الشامل</h2>
|
|
|
|
<div class="guide-step">
|
|
<h3><i class="fa-solid fa-shield-halved"></i> الخطوة 1: إيقاف حماية Google Play</h3>
|
|
<p>لأن التطبيق من خارج المتجر ويتحكم بالشاشة لخدمتك، قد يمنعه Google Play من التثبيت. يجب إيقاف الحماية مؤقتاً.</p>
|
|
<ol style="margin-right: 20px; line-height: 2;">
|
|
<li>افتح تطبيق متجر <strong>Google Play</strong>.</li>
|
|
<li>اضغط على صورة حسابك في الأعلى.</li>
|
|
<li>اختر <strong>Play Protect</strong> (للحماية).</li>
|
|
<li>اضغط على أيقونة الإعدادات (الترس) في الأعلى.</li>
|
|
<li>قم بإيقاف الخيارين الموجودين.</li>
|
|
</ol>
|
|
<div class="tutorial-img-container" style="text-align: center; margin-top: 20px;">
|
|
<img src="tutorial/step1.png" alt="إيقاف حماية Google Play" style="width: 100%; max-width: 350px; border-radius: 15px; border: 2px solid var(--primary);">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="guide-step">
|
|
<h3><i class="fa-solid fa-unlock-keyhole"></i> الخطوة 2: السماح بالإعدادات المقيدة (أندرويد 13+)</h3>
|
|
<p>في الأجهزة الحديثة، يمنع نظام أندرويد التطبيقات الخارجية من الوصول لـ "خدمة الوصول". لحل هذه المشكلة:</p>
|
|
<ol style="margin-right: 20px; line-height: 2;">
|
|
<li>اذهب إلى <strong>إعدادات الهاتف</strong> > <strong>التطبيقات</strong>.</li>
|
|
<li>ابحث عن تطبيق <strong>Jordan Bot</strong> واضغط عليه.</li>
|
|
<li>اضغط على <strong>الثلاث نقاط</strong> في أعلى الزاوية.</li>
|
|
<li>اختر <strong>"السماح بالإعدادات المقيدة" (Allow restricted settings)</strong> وقم بتأكيد البصمة.</li>
|
|
</ol>
|
|
<div class="tutorial-img-container" style="text-align: center; margin-top: 20px;">
|
|
<img src="tutorial/step2.png" alt="السماح بالإعدادات المقيدة" style="width: 100%; max-width: 350px; border-radius: 15px; border: 2px solid var(--primary);">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="guide-step">
|
|
<h3><i class="fa-solid fa-toggle-on"></i> الخطوة 3: تفعيل صلاحيات البوت</h3>
|
|
<p>الآن اصبح بإمكانك فتح التطبيق وتفعيل الصلاحيات المطلوبة بسهولة:</p>
|
|
<ul style="margin-right: 20px; line-height: 2; list-style: none;">
|
|
<li><i class="fa-solid fa-universal-access" style="color:var(--primary); margin-left:10px;"></i> <strong>خدمة الوصول (Accessibility):</strong> ضرورية لقراءة الشاشة.</li>
|
|
<li><i class="fa-regular fa-window-restore" style="color:var(--primary); margin-left:10px;"></i> <strong>الظهور فوق التطبيقات:</strong> لإظهار واجهة البوت الشفافة.</li>
|
|
<li><i class="fa-solid fa-location-dot" style="color:var(--primary); margin-left:10px;"></i> <strong>الموقع (Location):</strong> لحساب المسافات بدقة.</li>
|
|
</ul>
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<p>© 2026 Jordan Bot. جميع الحقوق محفوظة.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|