Files
nabeh/backend/public/landing.html
2026-05-26 22:13:38 +03:00

943 lines
38 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>نبيه | منصة المحادثة الذكية وأتمتة خدمة العملاء بالذكاء الاصطناعي</title>
<!-- Google Fonts: Cairo for Arabic, Outfit for numbers & code -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&family=Outfit:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-color: #0b071e;
--panel-bg: rgba(22, 16, 48, 0.7);
--border-color: rgba(255, 255, 255, 0.08);
--primary: #9d4edd;
--primary-glow: rgba(157, 78, 221, 0.2);
--secondary: #240046;
--accent: #00f5d4;
--accent-glow: rgba(0, 245, 212, 0.15);
--text-main: #f8f9fa;
--text-muted: #b3b3b3;
--success: #00f5d4;
--warning: #ffb703;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Cairo', 'Outfit', sans-serif;
scroll-behavior: smooth;
}
body {
background-color: var(--bg-color);
color: var(--text-main);
overflow-x: hidden;
position: relative;
}
/* Ambient Glow Backgrounds */
.glow-sphere {
position: absolute;
border-radius: 50%;
filter: blur(140px);
z-index: -1;
pointer-events: none;
opacity: 0.6;
}
.glow-1 {
top: -10%;
left: -10%;
width: 45vw;
height: 45vw;
background: radial-gradient(circle, var(--primary) 0%, rgba(0,0,0,0) 70%);
}
.glow-2 {
top: 35%;
right: -10%;
width: 50vw;
height: 50vw;
background: radial-gradient(circle, var(--accent) 0%, rgba(0,0,0,0) 70%);
}
.glow-3 {
bottom: -5%;
left: 10%;
width: 35vw;
height: 35vw;
background: radial-gradient(circle, #5a189a 0%, rgba(0,0,0,0) 70%);
}
/* Container & Grid layout */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
}
/* Navbar Styling */
header {
border-bottom: 1px solid var(--border-color);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
background: rgba(11, 7, 30, 0.8);
position: sticky;
top: 0;
z-index: 100;
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
height: 80px;
}
.logo {
display: flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
color: var(--text-main);
font-weight: 800;
font-size: 1.6rem;
letter-spacing: -0.5px;
}
.logo-icon {
width: 42px;
height: 42px;
background: linear-gradient(135deg, var(--primary), var(--accent));
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 20px rgba(157, 78, 221, 0.4);
}
.logo-icon svg {
width: 24px;
height: 24px;
fill: white;
}
.nav-links {
display: flex;
gap: 2rem;
list-style: none;
align-items: center;
}
.nav-links a {
color: var(--text-muted);
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
transition: color 0.3s ease;
}
.nav-links a:hover {
color: var(--text-main);
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.75rem 1.6rem;
border-radius: 12px;
font-weight: 700;
text-decoration: none;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
border: none;
font-size: 0.95rem;
}
.btn-primary {
background: linear-gradient(135deg, var(--primary), #e0aaff);
color: #0b071e;
box-shadow: 0 4px 20px rgba(157, 78, 221, 0.35);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(157, 78, 221, 0.5);
background: linear-gradient(135deg, #e0aaff, var(--primary));
}
.btn-secondary {
background: rgba(255, 255, 255, 0.04);
color: var(--text-main);
border: 1px solid var(--border-color);
}
.btn-secondary:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
}
.btn-accent {
background: linear-gradient(135deg, var(--accent), #e0aaff);
color: #0b071e;
box-shadow: 0 4px 20px rgba(0, 245, 212, 0.3);
}
.btn-accent:hover {
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(0, 245, 212, 0.5);
}
/* Hero Section */
.hero {
padding: 6rem 0;
position: relative;
}
.hero-grid {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 4rem;
align-items: center;
}
.hero-content h1 {
font-size: 3.5rem;
font-weight: 800;
line-height: 1.25;
margin-bottom: 1.5rem;
background: linear-gradient(to left, #ffffff, #e0aaff, #00f5d4);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-content p {
font-size: 1.2rem;
color: var(--text-muted);
line-height: 1.8;
margin-bottom: 2.5rem;
}
.hero-actions {
display: flex;
gap: 1.25rem;
}
.hero-visual {
position: relative;
display: flex;
justify-content: center;
}
.mockup-wrapper {
position: relative;
background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 24px;
padding: 0.5rem;
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
overflow: hidden;
width: 100%;
transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mockup-wrapper:hover {
transform: translateY(-5px) scale(1.01);
border-color: rgba(157, 78, 221, 0.4);
}
.mockup-img {
width: 100%;
height: auto;
border-radius: 18px;
display: block;
}
/* Features Section */
.features {
padding: 6.5rem 0;
border-top: 1px solid var(--border-color);
}
.section-header {
text-align: center;
max-width: 650px;
margin: 0 auto 4.5rem auto;
}
.section-header h2 {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 1rem;
background: linear-gradient(to left, #ffffff, #e0aaff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.section-header p {
color: var(--text-muted);
font-size: 1.1rem;
line-height: 1.6;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}
.feature-card {
background: var(--panel-bg);
border: 1px solid var(--border-color);
border-radius: 24px;
padding: 2.5rem;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
.feature-card:hover {
transform: translateY(-8px);
border-color: rgba(157, 78, 221, 0.4);
box-shadow: 0 12px 30px rgba(157, 78, 221, 0.15);
}
.feature-icon {
width: 60px;
height: 60px;
border-radius: 14px;
background: rgba(157, 78, 221, 0.1);
border: 1px solid rgba(157, 78, 221, 0.2);
color: var(--primary);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
margin-bottom: 1.5rem;
box-shadow: 0 4px 15px rgba(157, 78, 221, 0.1);
}
.feature-card:nth-child(even) .feature-icon {
background: rgba(0, 245, 212, 0.1);
border: 1px solid rgba(0, 245, 212, 0.2);
color: var(--accent);
box-shadow: 0 4px 15px rgba(0, 245, 212, 0.1);
}
.feature-card h3 {
font-size: 1.35rem;
font-weight: 700;
margin-bottom: 0.75rem;
color: var(--text-main);
}
.feature-card p {
color: var(--text-muted);
font-size: 0.98rem;
line-height: 1.6;
}
/* Pricing Section */
.pricing {
padding: 6.5rem 0;
border-top: 1px solid var(--border-color);
}
.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 2rem;
align-items: stretch;
margin: 0 auto;
}
.price-card {
background: var(--panel-bg);
border: 1px solid var(--border-color);
border-radius: 24px;
padding: 2.5rem 2rem;
text-align: center;
display: flex;
flex-direction: column;
justify-content: space-between;
position: relative;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.price-card:hover {
transform: translateY(-5px);
border-color: rgba(255, 255, 255, 0.15);
}
.price-card.featured {
border-color: var(--primary);
box-shadow: 0 10px 40px rgba(157, 78, 221, 0.15);
background: linear-gradient(180deg, rgba(22, 16, 48, 0.9) 0%, rgba(36, 0, 70, 0.6) 100%);
}
.price-card.featured .popular-tag {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(135deg, var(--primary), #e0aaff);
color: #0b071e;
padding: 0.3rem 1.2rem;
border-radius: 30px;
font-size: 0.8rem;
font-weight: 800;
box-shadow: 0 4px 15px rgba(157, 78, 221, 0.4);
}
.price-name {
font-size: 1.35rem;
font-weight: 700;
color: var(--text-main);
margin-bottom: 0.5rem;
}
.price-desc {
font-size: 0.85rem;
color: var(--text-muted);
margin-bottom: 1.5rem;
}
.price-val {
font-size: 2.8rem;
font-weight: 800;
color: var(--text-main);
margin-bottom: 1.5rem;
display: flex;
align-items: baseline;
justify-content: center;
gap: 0.25rem;
}
.price-val span {
font-size: 1.1rem;
font-weight: 600;
color: var(--text-muted);
}
.price-features {
list-style: none;
margin-bottom: 2.5rem;
text-align: right;
display: flex;
flex-direction: column;
gap: 0.85rem;
}
.price-features li {
font-size: 0.92rem;
color: var(--text-main);
display: flex;
align-items: center;
gap: 0.65rem;
}
.price-features li svg {
width: 16px;
height: 16px;
fill: var(--accent);
flex-shrink: 0;
}
/* Simulated Chat Area */
.chat-demo {
padding: 6.5rem 0;
border-top: 1px solid var(--border-color);
}
.chat-container {
max-width: 650px;
margin: 0 auto;
background: var(--panel-bg);
border: 1px solid var(--border-color);
border-radius: 24px;
overflow: hidden;
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
}
.chat-header {
background: rgba(255, 255, 255, 0.03);
border-bottom: 1px solid var(--border-color);
padding: 1.2rem 1.5rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.chat-header-user {
display: flex;
align-items: center;
gap: 1rem;
}
.chat-avatar {
width: 45px;
height: 45px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary), var(--accent));
display: flex;
align-items: center;
justify-content: center;
color: #0b071e;
font-weight: 800;
font-size: 1.2rem;
}
.chat-header-info h4 {
font-size: 1.05rem;
font-weight: 700;
}
.chat-header-info span {
font-size: 0.8rem;
color: var(--success);
display: flex;
align-items: center;
gap: 0.35rem;
}
.chat-body {
height: 350px;
padding: 1.5rem;
overflow-y: auto;
display: flex;
flex-direction: column;
gap: 1rem;
}
.msg {
max-width: 80%;
padding: 0.85rem 1.2rem;
border-radius: 16px;
font-size: 0.95rem;
line-height: 1.5;
}
.msg-in {
align-self: flex-start;
background: rgba(255, 255, 255, 0.05);
color: var(--text-main);
border-bottom-right-radius: 4px;
border: 1px solid rgba(255, 255, 255, 0.03);
}
.msg-out {
align-self: flex-end;
background: linear-gradient(135deg, var(--primary), #7209b7);
color: white;
border-bottom-left-radius: 4px;
}
.chat-footer {
padding: 1rem 1.5rem;
background: rgba(0, 0, 0, 0.2);
border-top: 1px solid var(--border-color);
display: flex;
gap: 1rem;
}
.chat-input {
flex-grow: 1;
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border-color);
padding: 0.75rem 1.2rem;
border-radius: 12px;
color: white;
outline: none;
font-size: 0.95rem;
}
.chat-input:focus {
border-color: var(--primary);
}
/* Coming Soon / Roadmap Section */
.roadmap {
padding: 6.5rem 0;
border-top: 1px solid var(--border-color);
background: linear-gradient(180deg, rgba(8,11,17,0) 0%, rgba(157, 78, 221, 0.03) 50%, rgba(8,11,17,0) 100%);
}
.roadmap-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 2rem;
}
.roadmap-card {
background: rgba(22, 16, 48, 0.4);
border: 1px solid var(--border-color);
border-radius: 24px;
padding: 2.2rem;
position: relative;
overflow: hidden;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
.roadmap-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--primary), var(--accent));
}
.badge-soon {
position: absolute;
top: 1.2rem;
left: 1.2rem;
background: rgba(255, 183, 3, 0.15);
border: 1px solid rgba(255, 183, 3, 0.3);
color: var(--warning);
padding: 0.25rem 0.75rem;
border-radius: 30px;
font-size: 0.75rem;
font-weight: 700;
}
.roadmap-card h3 {
font-size: 1.3rem;
font-weight: 700;
margin-top: 1.5rem;
margin-bottom: 0.75rem;
color: var(--text-main);
}
.roadmap-card p {
color: var(--text-muted);
font-size: 0.92rem;
line-height: 1.6;
}
/* Footer */
footer {
border-top: 1px solid var(--border-color);
background: #060411;
padding: 5rem 0 2rem 0;
color: var(--text-muted);
font-size: 0.9rem;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 4rem;
margin-bottom: 3.5rem;
}
.footer-logo {
font-size: 1.5rem;
font-weight: 800;
color: var(--text-main);
margin-bottom: 1.2rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.footer-col h5 {
color: var(--text-main);
font-size: 1.05rem;
font-weight: 700;
margin-bottom: 1.25rem;
}
.footer-links {
list-style: none;
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.footer-links a {
color: var(--text-muted);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: var(--text-main);
}
.copyright {
text-align: center;
padding-top: 2rem;
border-top: 1px solid var(--border-color);
color: rgba(255,255,255,0.3);
}
/* Responsive adjustments */
@media (max-width: 900px) {
.hero-grid {
grid-template-columns: 1fr;
gap: 3rem;
text-align: center;
}
.hero-actions {
justify-content: center;
}
.footer-grid {
grid-template-columns: 1fr;
gap: 2.5rem;
}
.nav-links {
display: none;
}
}
</style>
</head>
<body>
<!-- Ambient Glowing Spheres -->
<div class="glow-sphere glow-1"></div>
<div class="glow-sphere glow-2"></div>
<div class="glow-sphere glow-3"></div>
<!-- Header / Navbar -->
<header>
<div class="container nav-container">
<a href="#" class="logo">
<div class="logo-icon">
<svg viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12c0 1.84.5 3.56 1.37 5.04L2 22l5.12-1.34C8.54 21.5 10.2 22 12 22c5.52 0 10-4.48 10-10S17.52 2 12 2zm0 18c-1.63 0-3.15-.45-4.47-1.23l-.32-.19-3 .79.8-2.93-.21-.34C4.04 14.78 3.5 13.45 3.5 12c0-4.69 3.81-8.5 8.5-8.5s8.5 3.81 8.5 8.5-3.81 8.5-8.5 8.5z"/></svg>
</div>
<span>نبيه</span>
</a>
<ul class="nav-links">
<li><a href="#features">الميزات</a></li>
<li><a href="#pricing">باقات الاشتراك</a></li>
<li><a href="#demo">التجربة التفاعلية</a></li>
<li><a href="#coming-soon">قريباً</a></li>
<li><a href="/login" class="btn btn-secondary" style="padding: 0.5rem 1.25rem;">تسجيل الدخول</a></li>
<li><a href="/register" class="btn btn-accent" style="padding: 0.5rem 1.25rem;">ابدأ مجاناً</a></li>
</ul>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="container hero-grid">
<div class="hero-content">
<h1>أتمتة خدمة العملاء والردود الذكية المتكاملة</h1>
<p>منصة نبيه تمنحك إمكانية ربط قنوات الاتصال والواتساب وتشغيل مساعد ذكي مدعوم بـ AI يقوم بقراءة الرسائل والصور والإجابة على العملاء فورياً لزيادة مبيعات متجرك وتفعيل أتمتة الدعم والعمليات بمعدل 5 أضعاف.</p>
<div class="hero-actions">
<a href="/register" class="btn btn-accent">ابدأ تجربتك المجانية (14 يوم)</a>
<a href="#demo" class="btn btn-secondary">جرب المحاكاة التفاعلية</a>
</div>
</div>
<div class="hero-visual">
<div class="mockup-wrapper">
<img src="/landing_mockup.php" alt="لوحة تحكم نبيه الذكية" class="mockup-img">
</div>
</div>
</div>
</section>
<!-- Key Features Section -->
<section class="features" id="features">
<div class="container">
<div class="section-header">
<h2>لماذا تختار منصة نبيه لأعمالك؟</h2>
<p>نجمع لك أفضل تقنيات المحادثة الذكية وأدوات التفاعل المتكاملة لتوفير الوقت وتحسين تجربة العميل.</p>
</div>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">🤖</div>
<h3>مساعد ذكي بالذكاء الاصطناعي</h3>
<p>مساعد مخصص يفهم سياق الحديث، ويجيب على الاستفسارات المعقدة بلغات ولهجات مختلفة، ويقرأ الصور والملفات المرفقة (OCR).</p>
</div>
<div class="feature-card">
<div class="feature-icon"></div>
<h3>محرك المحادثات التفاعلية</h3>
<p>صياغة مسارات محادثات تفاعلية خطوة بخطوة للتحقق من أرقام الهواتف، تسجيل السائقين الجدد، أو أخذ بيانات الحجز بكل سلاسة.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🛍️</div>
<h3>تكامل المتاجر الإلكترونية</h3>
<p>الربط المباشر مع سلة (Salla) و WooCommerce لإرسال تحديثات حالة الطلب تلقائياً وتذكير العملاء بالسلات المتروكة.</p>
</div>
<div class="feature-card">
<div class="feature-icon">📢</div>
<h3>حملات الرسائل الجماعية</h3>
<p>أرسل عروضك وحملاتك التسويقية إلى قائمة عملائك بكبسة زر واحدة، مع متابعة فورية لمعدلات التسليم والقراءة.</p>
</div>
</div>
</div>
</section>
<!-- Interactive Chat Simulator Section -->
<section class="chat-demo" id="demo">
<div class="container">
<div class="section-header">
<h2>تفاعل مع محاكاة البوت الذكي</h2>
<p>قم بكتابة أي رسالة للتعرف على سرعة ردود المساعد التلقائي ومحرك المحادثات التفاعلية:</p>
</div>
<div class="chat-container">
<div class="chat-header">
<div class="chat-header-user">
<div class="chat-avatar">ن</div>
<div class="chat-header-info">
<h4>مساعد نبيه الافتراضي</h4>
<span>🟢 متصل ومستعد للرد</span>
</div>
</div>
</div>
<div class="chat-body" id="chat-box">
<div class="msg msg-in">أهلاً بك! أنا مساعد منصة نبيه المخصص لخدمتك. ما الذي يمكنني إرشادك إليه اليوم؟</div>
</div>
<div class="chat-footer">
<input type="text" id="chat-input" class="chat-input" placeholder="مثال: 'كم سعر الباقة الفضية؟' أو 'أريد تجربة الخدمة'" onkeypress="handleKeyPress(event)">
<button class="btn btn-accent" style="padding: 0.5rem 1.25rem;" onclick="sendMessage()">إرسال</button>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section class="pricing" id="pricing">
<div class="container">
<div class="section-header">
<h2>باقات اشتراك مرنة لكل مستويات الأعمال</h2>
<p>ابدأ بفترة تجريبية مجانية واستكشف كافة الميزات دون الحاجة لبطاقة ائتمان.</p>
</div>
<div class="pricing-grid">
<!-- Free Trial (Plan ID: 4) -->
<div class="price-card">
<div>
<div class="price-name">الفترة التجريبية</div>
<div class="price-desc">استكشف جميع ميزات المنصة مجاناً</div>
<div class="price-val">0 <span>د.أ / 14 يوم</span></div>
<ul class="price-features">
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> خط واتساب واحد نشط</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> 5,000 رسالة تجريبية</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> 100 رسالة صوتية مدمجة</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> 100 عملية تحليل مستندات OCR</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> اختبار متكامل مع المتاجر</li>
</ul>
</div>
<a href="/register" class="btn btn-secondary">ابدأ التجربة مجاناً</a>
</div>
<!-- Starter (Plan ID: 1) -->
<div class="price-card">
<div>
<div class="price-name">الباقة الأساسية</div>
<div class="price-desc">مثالية للمتاجر الصغيرة والناشئة</div>
<div class="price-val">19 <span>د.أ / شهرياً</span></div>
<ul class="price-features">
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> خط واتساب واحد نشط</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> 1,000 رسالة / شهرياً</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> بوت رد تلقائي أساسي</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> إدارة الحملات التسويقية</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> تقارير وإحصائيات أساسية</li>
</ul>
</div>
<a href="/register" class="btn btn-secondary">اشترك الآن</a>
</div>
<!-- Growth (Plan ID: 2 - Featured) -->
<div class="price-card featured">
<div class="popular-tag">الأكثر طلباً</div>
<div>
<div class="price-name">الباقة المتقدمة</div>
<div class="price-desc">للشركات والمتاجر متوسطة الحجم</div>
<div class="price-val">49 <span>د.أ / شهرياً</span></div>
<ul class="price-features">
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> خطين واتساب متصلين</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> 5,000 رسالة / شهرياً</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> 500 رسالة صوتية شهرياً</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> 500 عملية تحليل مستندات OCR</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> ربط متاجر سلة و WooCommerce</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> محادثات تفاعلية ومساعد ذكي AI</li>
</ul>
</div>
<a href="/register" class="btn btn-accent">اشترك الآن</a>
</div>
<!-- Professional (Plan ID: 3) -->
<div class="price-card">
<div>
<div class="price-name">باقة المحترفين</div>
<div class="price-desc">للشركات الكبرى والعمليات الواسعة</div>
<div class="price-val">99 <span>د.أ / شهرياً</span></div>
<ul class="price-features">
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> 5 خطوط واتساب نشطة</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> 15,000 رسالة / شهرياً</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> 2,000 رسالة صوتية شهرياً</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> 2,000 عملية تحليل OCR</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> تكامل مع الويب هوك والربط الخارجي</li>
<li><svg viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z"/></svg> ذكاء اصطناعي تفاعلي وصوتي كامل</li>
</ul>
</div>
<a href="/register" class="btn btn-secondary">اشترك الآن</a>
</div>
</div>
</div>
</section>
<!-- Coming Soon Section -->
<section class="roadmap" id="coming-soon">
<div class="container">
<div class="section-header">
<h2>رؤيتنا المستقبلية وقنوات الاتصال القادمة</h2>
<p>نعمل باستمرار على تمكينك من إدارة كافة تفاعلاتك مع العملاء من منصة واحدة وموحدة:</p>
</div>
<div class="roadmap-grid">
<div class="roadmap-card">
<span class="badge-soon">الربع الحالي</span>
<h3>بوتات تيليجرام (Telegram)</h3>
<p>أتمتة المحادثات والرد التلقائي وإدارة مجموعات وقنوات التيليجرام بمساعد الذكاء الاصطناعي مباشرة.</p>
</div>
<div class="roadmap-card">
<span class="badge-soon">الربع الحالي</span>
<h3>ماسنجر وإنستغرام (Meta APIs)</h3>
<p>استقبال وإرسال الرسائل لصفحات الفيسبوك وحسابات الإنستغرام وإطلاق ردود ذكية ومسارات حجز تلقائية.</p>
</div>
<div class="roadmap-card">
<span class="badge-soon">قريباً جداً</span>
<h3>تكامل شوبيفاي المباشر (Shopify)</h3>
<p>تزامن فوري للمنتجات وحالة الطلب وتتبع الشحنات لعملاء متاجر شوبيفاي لتقليل تذاكر الدعم الفني.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container footer-grid">
<div class="footer-col">
<div class="footer-logo">
<span style="font-weight: 800; color: white;">نبيه</span>
</div>
<p style="line-height: 1.6; margin-bottom: 1.5rem;">منصة المحادثة الفورية المتكاملة لربط أعمالك مع الذكاء الاصطناعي وأتمتة خدمة العملاء على مدار الساعة.</p>
</div>
<div class="footer-col">
<h5>روابط سريعة</h5>
<ul class="footer-links">
<li><a href="#features">الميزات الأساسية</a></li>
<li><a href="#pricing">باقات الاشتراك</a></li>
<li><a href="#demo">التجربة التفاعلية</a></li>
</ul>
</div>
<div class="footer-col">
<h5>تواصل معنا</h5>
<p style="line-height: 1.6;">البريد الإلكتروني: support@nabeh.app<br>عمان، الأردن</p>
</div>
</div>
<div class="copyright">
جميع الحقوق محفوظة لمنصة نبيه © 2026
</div>
</footer>
<script>
function handleKeyPress(event) {
if (event.key === 'Enter') {
sendMessage();
}
}
function sendMessage() {
const input = document.getElementById('chat-input');
const message = input.value.trim();
if (!message) return;
const chatBox = document.getElementById('chat-box');
// Append user message
const userMsgDiv = document.createElement('div');
userMsgDiv.className = 'msg msg-out';
userMsgDiv.textContent = message;
chatBox.appendChild(userMsgDiv);
input.value = '';
chatBox.scrollTop = chatBox.scrollHeight;
// Generate reply based on keywords
setTimeout(() => {
const replyDiv = document.createElement('div');
replyDiv.className = 'msg msg-in';
let reply = 'أهلاً بك! لقد استلمت رسالتك بنجاح. مساعد نبيه الذكي قيد التشغيل وسيقوم بالتواصل معك بكافة التفاصيل.';
const msgLower = message.toLowerCase();
if (msgLower.includes('سعر') || msgLower.includes('باق') || msgLower.includes('أسعار') || msgLower.includes('بكم')) {
reply = 'منصة نبيه توفر 4 باقات:\n1. الباقة التجريبية: مجاناً لـ 14 يوماً.\n2. الباقة الأساسية: 19 د.أ / شهرياً.\n3. الباقة المتقدمة: 49 د.أ / شهرياً.\n4. باقة المحترفين: 99 د.أ / شهرياً.';
} else if (msgLower.includes('تجرب') || msgLower.includes('مجانا') || msgLower.includes('trial')) {
reply = 'يمكنك بدء التجربة المجانية لمدة 14 يوماً فوراً دون الحاجة لبطاقة ائتمان من خلال الضغط على زر "ابدأ مجاناً" أعلى الصفحة.';
} else if (msgLower.includes('سلة') || msgLower.includes('woocommerce') || msgLower.includes('متجر')) {
reply = 'نعم! تدعم باقاتنا المتقدمة والاحترافية التكامل الفوري والمباشر مع متاجر سلة و WooCommerce لمتابعة الطلبات وتذكير السلات المتروكة.';
}
replyDiv.innerText = reply;
chatBox.appendChild(replyDiv);
chatBox.scrollTop = chatBox.scrollHeight;
}, 800);
}
</script>
</body>
</html>