322 lines
20 KiB
PHP
322 lines
20 KiB
PHP
<!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>
|
|
<meta name="description" content="مُصادَق: منصة أتمتة الفواتير الإلكترونية الأردنية بالذكاء الاصطناعي. صوّر الفاتورة والباقي علينا. متوافق مع جوفوترا.">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
:root {
|
|
--emerald: #10b981; --emerald-dark: #059669; --emerald-glow: rgba(16,185,129,0.15);
|
|
--bg: #060a12; --bg2: #0c1220; --bg3: #111827;
|
|
--text: #f0f6fc; --text2: #8b949e; --border: rgba(255,255,255,0.08);
|
|
--gold: #f59e0b; --navy: #16325c;
|
|
}
|
|
html { scroll-behavior: smooth; }
|
|
body { font-family: 'IBM Plex Sans Arabic', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; overflow-x: hidden; }
|
|
a { color: var(--emerald); text-decoration: none; }
|
|
|
|
/* === NAV === */
|
|
.nav { position: fixed; top: 0; width: 100%; z-index: 100; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; backdrop-filter: blur(20px); background: rgba(6,10,18,0.8); border-bottom: 1px solid var(--border); transition: all 0.3s; }
|
|
.nav-logo { font-size: 1.5rem; font-weight: 700; color: var(--emerald); }
|
|
.nav-links { display: flex; gap: 2rem; align-items: center; }
|
|
.nav-links a { color: var(--text2); font-size: 0.9rem; transition: color 0.2s; }
|
|
.nav-links a:hover { color: var(--emerald); }
|
|
.btn { display: inline-block; padding: 0.7rem 1.8rem; border-radius: 8px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; cursor: pointer; border: none; }
|
|
.btn-primary { background: var(--emerald); color: #000; }
|
|
.btn-primary:hover { background: var(--emerald-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(16,185,129,0.3); }
|
|
.btn-outline { border: 1px solid var(--emerald); color: var(--emerald); background: transparent; }
|
|
.btn-outline:hover { background: var(--emerald-glow); }
|
|
|
|
/* === HERO === */
|
|
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 8rem 2rem 4rem; position: relative; }
|
|
.hero::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%); pointer-events: none; }
|
|
.hero-badge { display: inline-block; padding: 0.4rem 1.2rem; border: 1px solid var(--emerald); border-radius: 50px; font-size: 0.8rem; color: var(--emerald); margin-bottom: 2rem; animation: pulse-border 2s infinite; }
|
|
@keyframes pulse-border { 0%,100% { border-color: var(--emerald); } 50% { border-color: rgba(16,185,129,0.3); } }
|
|
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.3; margin-bottom: 1.5rem; }
|
|
.hero h1 span { color: var(--emerald); }
|
|
.hero p { font-size: 1.2rem; color: var(--text2); max-width: 600px; margin: 0 auto 2.5rem; }
|
|
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
|
|
.hero-stats { display: flex; gap: 3rem; justify-content: center; margin-top: 4rem; }
|
|
.hero-stat { text-align: center; }
|
|
.hero-stat-num { font-size: 2rem; font-weight: 700; color: var(--emerald); }
|
|
.hero-stat-label { font-size: 0.85rem; color: var(--text2); }
|
|
|
|
/* === SECTIONS === */
|
|
section { padding: 6rem 2rem; }
|
|
.container { max-width: 1100px; margin: 0 auto; }
|
|
.section-title { text-align: center; margin-bottom: 4rem; }
|
|
.section-title h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 1rem; }
|
|
.section-title p { color: var(--text2); max-width: 500px; margin: 0 auto; }
|
|
|
|
/* === FEATURES === */
|
|
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
|
|
.feature-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; transition: all 0.3s; }
|
|
.feature-card:hover { border-color: rgba(16,185,129,0.3); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
|
|
.feature-icon { width: 48px; height: 48px; background: var(--emerald-glow); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem; }
|
|
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.7rem; }
|
|
.feature-card p { color: var(--text2); font-size: 0.9rem; }
|
|
|
|
/* === HOW IT WORKS === */
|
|
.steps { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
|
|
.step { flex: 1; min-width: 220px; max-width: 280px; text-align: center; position: relative; }
|
|
.step-num { width: 56px; height: 56px; background: linear-gradient(135deg, var(--emerald), var(--emerald-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; color: #000; margin: 0 auto 1.2rem; }
|
|
.step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
|
|
.step p { color: var(--text2); font-size: 0.85rem; }
|
|
|
|
/* === PRICING === */
|
|
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
|
|
.price-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; text-align: center; position: relative; transition: all 0.3s; }
|
|
.price-card:hover { transform: translateY(-4px); }
|
|
.price-card.popular { border-color: var(--emerald); box-shadow: 0 0 40px rgba(16,185,129,0.1); }
|
|
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--emerald); color: #000; padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
|
|
.price-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
|
|
.price-amount { font-size: 2.5rem; font-weight: 700; margin: 1rem 0; }
|
|
.price-amount span { font-size: 0.9rem; color: var(--text2); font-weight: 400; }
|
|
.price-features { list-style: none; text-align: right; margin: 1.5rem 0; }
|
|
.price-features li { padding: 0.4rem 0; font-size: 0.85rem; color: var(--text2); }
|
|
.price-features li::before { content: '✓'; color: var(--emerald); margin-left: 0.5rem; font-weight: 700; }
|
|
|
|
/* === FAQ === */
|
|
.faq-list { max-width: 700px; margin: 0 auto; }
|
|
.faq-item { border-bottom: 1px solid var(--border); }
|
|
.faq-q { padding: 1.2rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
|
|
.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--emerald); transition: transform 0.3s; }
|
|
.faq-item.open .faq-q::after { transform: rotate(45deg); }
|
|
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--text2); font-size: 0.9rem; }
|
|
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.2rem; }
|
|
|
|
/* === CTA === */
|
|
.cta-section { text-align: center; background: linear-gradient(135deg, rgba(16,185,129,0.05), rgba(16,185,129,0.02)); border: 1px solid rgba(16,185,129,0.1); border-radius: 24px; padding: 4rem 2rem; margin: 0 auto; max-width: 800px; }
|
|
.cta-section h2 { font-size: 2rem; margin-bottom: 1rem; }
|
|
.cta-section p { color: var(--text2); margin-bottom: 2rem; }
|
|
|
|
/* === FOOTER === */
|
|
footer { padding: 3rem 2rem; border-top: 1px solid var(--border); text-align: center; color: var(--text2); font-size: 0.85rem; }
|
|
|
|
/* === RESPONSIVE === */
|
|
@media (max-width: 768px) {
|
|
.nav-links { display: none; }
|
|
.hero-stats { flex-direction: column; gap: 1.5rem; }
|
|
.pricing-grid { grid-template-columns: 1fr; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- NAV -->
|
|
<nav class="nav">
|
|
<div class="nav-logo">مُصادَق</div>
|
|
<div class="nav-links">
|
|
<a href="#features">المميزات</a>
|
|
<a href="#how">كيف يعمل</a>
|
|
<a href="#pricing">الباقات</a>
|
|
<a href="#faq">الأسئلة</a>
|
|
<a href="/login.php" class="btn btn-outline">دخول</a>
|
|
<a href="/register.php" class="btn btn-primary">ابدأ مجاناً</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- HERO -->
|
|
<section class="hero">
|
|
<div>
|
|
<div class="hero-badge">🚀 متوافق 100% مع منظومة جوفوترا الأردنية</div>
|
|
<h1>صوّر الفاتورة<br><span>والذكاء الاصطناعي يكمل الباقي</span></h1>
|
|
<p>منصة أتمتة الفواتير الإلكترونية للمحاسبين ومكاتب المحاسبة. استخراج البيانات تلقائياً، تدقيق ضريبي ذكي، وإرسال مباشر لجوفوترا — من صورة واحدة.</p>
|
|
<div class="hero-cta">
|
|
<a href="/register.php" class="btn btn-primary">ابدأ تجربة مجانية ←</a>
|
|
<a href="#how" class="btn btn-outline">شاهد كيف يعمل</a>
|
|
</div>
|
|
<div class="hero-stats">
|
|
<div class="hero-stat"><div class="hero-stat-num">3 ثوانٍ</div><div class="hero-stat-label">لاستخراج بيانات الفاتورة</div></div>
|
|
<div class="hero-stat"><div class="hero-stat-num">99%</div><div class="hero-stat-label">دقة الذكاء الاصطناعي</div></div>
|
|
<div class="hero-stat"><div class="hero-stat-num">0 دينار</div><div class="hero-stat-label">للبدء — بدون بطاقة</div></div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- FEATURES -->
|
|
<section id="features">
|
|
<div class="container">
|
|
<div class="section-title">
|
|
<h2>ليش مُصادَق مختلف؟</h2>
|
|
<p>مش مجرد برنامج فوترة — مساعدك المالي بالذكاء الاصطناعي</p>
|
|
</div>
|
|
<div class="features-grid">
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🤖</div>
|
|
<h3>استخراج ذكي بالـ AI</h3>
|
|
<p>صوّر الفاتورة أو ارفع PDF — الذكاء الاصطناعي يستخرج كل البيانات تلقائياً: اسم المورد، المبلغ، الضريبة، وبنود الفاتورة.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🔗</div>
|
|
<h3>ربط مباشر بجوفوترا</h3>
|
|
<p>إرسال الفاتورة بصيغة UBL 2.1 لمنظومة جوفوترا الأردنية بضغطة واحدة، مع رمز QR تلقائي.</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>أدِر حتى 25 شركة من حساب واحد. لكل شركة إعدادات مستقلة وربط منفصل بجوفوترا.</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>تشفير AES-256-GCM لكل البيانات، مصادقة ثنائية، وفصل كامل لبيانات كل مكتب محاسبي.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- HOW IT WORKS -->
|
|
<section id="how" style="background: var(--bg2);">
|
|
<div class="container">
|
|
<div class="section-title">
|
|
<h2>كيف يعمل مُصادَق؟</h2>
|
|
<p>من الصورة للإرسال الرسمي — بـ 3 خطوات</p>
|
|
</div>
|
|
<div class="steps">
|
|
<div class="step">
|
|
<div class="step-num">1</div>
|
|
<h3>صوّر أو ارفع</h3>
|
|
<p>صوّر الفاتورة من الهاتف أو ارفع ملف PDF/صورة من الكمبيوتر</p>
|
|
</div>
|
|
<div class="step">
|
|
<div class="step-num">2</div>
|
|
<h3>الـ AI يستخرج ويدقق</h3>
|
|
<p>الذكاء الاصطناعي يستخرج البيانات ويتحقق من صحة الضرائب تلقائياً</p>
|
|
</div>
|
|
<div class="step">
|
|
<div class="step-num">3</div>
|
|
<h3>اعتمد وأرسل</h3>
|
|
<p>راجع البيانات واضغط إرسال — الفاتورة تصل جوفوترا بصيغة UBL 2.1</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- PRICING -->
|
|
<section id="pricing">
|
|
<div class="container">
|
|
<div class="section-title">
|
|
<h2>باقات تناسب كل حجم</h2>
|
|
<p>ابدأ مجاناً — وترقّى مع نمو عملك</p>
|
|
</div>
|
|
<div class="pricing-grid">
|
|
<div class="price-card">
|
|
<div class="price-name">مجانية</div>
|
|
<div class="price-amount">0 <span>دينار/شهر</span></div>
|
|
<ul class="price-features">
|
|
<li>شركة واحدة</li>
|
|
<li>15 فاتورة شهرياً</li>
|
|
<li>استخراج بالذكاء الاصطناعي</li>
|
|
<li>ربط مع جوفوترا</li>
|
|
</ul>
|
|
<a href="/register.php" class="btn btn-outline" style="width:100%;">ابدأ مجاناً</a>
|
|
</div>
|
|
<div class="price-card">
|
|
<div class="price-name">أساسية</div>
|
|
<div class="price-amount">15 <span>دينار/شهر</span></div>
|
|
<ul class="price-features">
|
|
<li>حتى 3 شركات</li>
|
|
<li>100 فاتورة شهرياً</li>
|
|
<li>3 مستخدمين</li>
|
|
<li>تقارير شهرية</li>
|
|
</ul>
|
|
<a href="/register.php" class="btn btn-outline" style="width:100%;">اشترك الآن</a>
|
|
</div>
|
|
<div class="price-card popular">
|
|
<div class="popular-badge">الأكثر طلباً</div>
|
|
<div class="price-name">مكتبية</div>
|
|
<div class="price-amount">45 <span>دينار/شهر</span></div>
|
|
<ul class="price-features">
|
|
<li>حتى 10 شركات</li>
|
|
<li>500 فاتورة شهرياً</li>
|
|
<li>10 مستخدمين</li>
|
|
<li>تقارير متقدمة + تصدير</li>
|
|
<li>دعم فني بالأولوية</li>
|
|
</ul>
|
|
<a href="/register.php" class="btn btn-primary" style="width:100%;">اشترك الآن</a>
|
|
</div>
|
|
<div class="price-card">
|
|
<div class="price-name">احترافية</div>
|
|
<div class="price-amount">99 <span>دينار/شهر</span></div>
|
|
<ul class="price-features">
|
|
<li>حتى 25 شركة</li>
|
|
<li>2,000 فاتورة شهرياً</li>
|
|
<li>تدقيق ذكي بالـ AI</li>
|
|
<li>API كامل</li>
|
|
<li>مدير حساب مخصص</li>
|
|
</ul>
|
|
<a href="/register.php" class="btn btn-outline" style="width:100%;">اشترك الآن</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- FAQ -->
|
|
<section id="faq" style="background: var(--bg2);">
|
|
<div class="container">
|
|
<div class="section-title">
|
|
<h2>أسئلة شائعة</h2>
|
|
</div>
|
|
<div class="faq-list">
|
|
<div class="faq-item" onclick="this.classList.toggle('open')">
|
|
<div class="faq-q">هل مُصادَق متوافق مع منظومة جوفوترا؟</div>
|
|
<div class="faq-a">نعم، مُصادَق يولّد فواتير بصيغة UBL 2.1 المتوافقة كلياً مع متطلبات دائرة ضريبة الدخل والمبيعات الأردنية، ويرسلها مباشرة عبر API جوفوترا.</div>
|
|
</div>
|
|
<div class="faq-item" onclick="this.classList.toggle('open')">
|
|
<div class="faq-q">هل يمكنني استخدامه بدون إنترنت؟</div>
|
|
<div class="faq-a">نعم، تطبيق الهاتف يعمل بدون إنترنت. يمكنك تصوير الفواتير وتخزينها محلياً، وعند توفر الاتصال يتم رفعها تلقائياً.</div>
|
|
</div>
|
|
<div class="faq-item" onclick="this.classList.toggle('open')">
|
|
<div class="faq-q">كيف يعمل الذكاء الاصطناعي في استخراج البيانات؟</div>
|
|
<div class="faq-a">نستخدم نماذج Gemini المتقدمة من Google لتحليل صور الفواتير واستخراج كل البيانات (اسم المورد، الرقم الضريبي، المبالغ، بنود الفاتورة) بدقة تصل لـ 99%.</div>
|
|
</div>
|
|
<div class="faq-item" onclick="this.classList.toggle('open')">
|
|
<div class="faq-q">هل بياناتي آمنة؟</div>
|
|
<div class="faq-a">نستخدم تشفير AES-256-GCM لكل البيانات الحساسة، مع فصل كامل لبيانات كل مكتب محاسبي (Multi-Tenancy). بياناتك لا يراها أحد غيرك.</div>
|
|
</div>
|
|
<div class="faq-item" onclick="this.classList.toggle('open')">
|
|
<div class="faq-q">هل يمكنني إلغاء اشتراكي في أي وقت؟</div>
|
|
<div class="faq-a">نعم، يمكنك إلغاء أو تغيير باقتك في أي وقت. بياناتك تبقى محفوظة لمدة 90 يوماً بعد الإلغاء.</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- CTA -->
|
|
<section>
|
|
<div class="container">
|
|
<div class="cta-section">
|
|
<h2>جاهز تختصر ساعات من العمل اليدوي؟</h2>
|
|
<p>ابدأ مجاناً الآن — بدون بطاقة ائتمانية، بدون التزام.</p>
|
|
<a href="/register.php" class="btn btn-primary">ابدأ تجربتك المجانية ←</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- FOOTER -->
|
|
<footer>
|
|
<div class="container">
|
|
<p style="margin-bottom: 0.5rem; font-size: 1.1rem; color: var(--emerald); font-weight: 600;">مُصادَق</p>
|
|
<p>منصة أتمتة الفواتير الإلكترونية — صُنع في الأردن 🇯🇴</p>
|
|
<p style="margin-top: 1rem;">© 2026 مُصادَق. جميع الحقوق محفوظة.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|