diff --git a/musadaq-app/ios/Runner/Info.plist b/musadaq-app/ios/Runner/Info.plist index 02b2ee5..7575ff2 100644 --- a/musadaq-app/ios/Runner/Info.plist +++ b/musadaq-app/ios/Runner/Info.plist @@ -39,6 +39,10 @@ تطبيق مُصادَق يحتاج للوصول إلى الميكروفون لاستخدام المساعد الصوتي وتسجيل الملاحظات. NSPhotoLibraryUsageDescription تطبيق مُصادَق يحتاج للوصول إلى الصور لاختيار فواتير محفوظة مسبقاً في معرض الصور. + NSSpeechRecognitionUsageDescription + تطبيق مُصادَق يحتاج لإذن التعرف على الكلام لتحويل أوامرك الصوتية إلى أفعال داخل النظام. + NSLocationWhenInUseUsageDescription + تطبيق مُصادَق قد يحتاج للوصول إلى الموقع الجغرافي لتحسين تجربة المستخدم وتوفير خدمات مخصصة حسب المنطقة. NSSupportsLiveActivities UIApplicationSceneManifest @@ -81,8 +85,6 @@ UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight - NSSupportsLiveActivities - NSSupportsLiveActivitiesFrequentUpdates diff --git a/public/assets/css/landing.css b/public/assets/css/landing.css new file mode 100644 index 0000000..a0e7b5c --- /dev/null +++ b/public/assets/css/landing.css @@ -0,0 +1,423 @@ +/* === MUSADAQ LANDING PAGES — SHARED STYLES === */ +@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Noto+Kufi+Arabic:wght@300;400;500;600;700;800&display=swap'); + +:root { + --emerald: #10b981; + --emerald-light: #d1fae5; + --emerald-dark: #059669; + --emerald-glow: rgba(16,185,129,0.15); + --navy: #0f172a; + --navy-light: #1e293b; + --gold: #f59e0b; + --gold-light: #fef3c7; + --bg-primary: #ffffff; + --bg-secondary: #f8fafc; + --bg-accent: #f1f5f9; + --text-primary: #0f172a; + --text-secondary: #475569; + --text-light: #94a3b8; + --border-color: #e2e8f0; + --shadow-sm: 0 1px 2px rgba(0,0,0,0.05); + --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1); + --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1); + --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1); + --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25); + --radius-sm: 8px; + --radius-md: 12px; + --radius-lg: 20px; + --radius-xl: 30px; +} + +*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } +html { scroll-behavior: smooth; } +body { + font-family: 'Noto Kufi Arabic', 'Outfit', sans-serif; + background: var(--bg-primary); + color: var(--text-primary); + line-height: 1.7; + overflow-x: hidden; +} +a { color: var(--emerald-dark); text-decoration: none; transition: color 0.2s; } +img { max-width: 100%; height: auto; } + +/* === UTILITIES === */ +.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; } +.section-padding { padding: 6rem 0; } +.text-center { text-align: center; } +.text-gradient { + background: linear-gradient(135deg, var(--emerald), #0ea5e9); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; +} + +/* === ANIMATIONS === */ +@keyframes fadeInUp { + from { opacity: 0; transform: translateY(30px); } + to { opacity: 1; transform: translateY(0); } +} +@keyframes float { + 0%, 100% { transform: translateY(0); } + 50% { transform: translateY(-10px); } +} +@keyframes pulse-glow { + 0%, 100% { box-shadow: 0 0 20px var(--emerald-glow); } + 50% { box-shadow: 0 0 40px rgba(16,185,129,0.3); } +} +@keyframes counter { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } } +.animate-in { animation: fadeInUp 0.6s ease-out both; } +.delay-1 { animation-delay: 0.1s; } +.delay-2 { animation-delay: 0.2s; } +.delay-3 { animation-delay: 0.3s; } +.delay-4 { animation-delay: 0.4s; } + +/* === NAV === */ +.nav { + position: fixed; top: 0; width: 100%; z-index: 100; + padding: 0.75rem 5%; + display: flex; justify-content: space-between; align-items: center; + backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); + background: rgba(255,255,255,0.88); + border-bottom: 1px solid var(--border-color); + transition: all 0.3s ease; +} +.nav.scrolled { box-shadow: var(--shadow-md); background: rgba(255,255,255,0.95); } +.nav-logo { + font-size: 1.6rem; font-weight: 800; color: var(--emerald-dark); + display: flex; align-items: center; gap: 0.5rem; +} +.nav-logo-icon { + background: linear-gradient(135deg, var(--emerald), var(--emerald-dark)); + color: white; width: 42px; height: 42px; + display: flex; align-items: center; justify-content: center; + border-radius: 12px; font-weight: 800; font-size: 1.2rem; +} +.nav-links { display: flex; gap: 2rem; align-items: center; } +.nav-links a { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; } +.nav-links a:hover { color: var(--emerald-dark); } +.mobile-menu-btn { + display: none; background: none; border: none; + font-size: 1.5rem; cursor: pointer; color: var(--text-primary); +} + +/* === BUTTONS === */ +.btn { + display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; + padding: 0.75rem 1.75rem; border-radius: var(--radius-md); + font-weight: 600; font-size: 0.95rem; font-family: inherit; + transition: all 0.3s cubic-bezier(0.4,0,0.2,1); + cursor: pointer; border: none; text-decoration: none; +} +.btn-primary { + background: linear-gradient(135deg, var(--emerald), var(--emerald-dark)); + color: white; box-shadow: 0 4px 14px rgba(16,185,129,0.35); +} +.btn-primary:hover { + transform: translateY(-2px); + box-shadow: 0 8px 25px rgba(16,185,129,0.4); + color: white; +} +.btn-outline { + border: 2px solid var(--emerald); color: var(--emerald-dark); background: transparent; +} +.btn-outline:hover { background: var(--emerald-light); } +.btn-white { background: white; color: var(--emerald-dark); box-shadow: var(--shadow-md); } +.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); } +.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; border-radius: var(--radius-md); } + +/* === SECTION TITLES === */ +.section-header { text-align: center; margin-bottom: 4rem; } +.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; } +.section-header p { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; } +.section-badge { + display: inline-flex; align-items: center; gap: 0.5rem; + padding: 0.4rem 1.2rem; background: var(--emerald-light); + border: 1px solid rgba(16,185,129,0.2); border-radius: 50px; + font-size: 0.8rem; font-weight: 600; color: var(--emerald-dark); + margin-bottom: 1.5rem; +} + +/* === HERO === */ +.hero { + min-height: 100vh; display: flex; align-items: center; + padding: 7rem 5% 4rem; position: relative; + background: radial-gradient(ellipse at top right, var(--emerald-light) 0%, var(--bg-primary) 55%); + overflow: hidden; +} +.hero::before { + content: ''; position: absolute; width: 500px; height: 500px; + background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%); + top: -100px; left: -100px; border-radius: 50%; +} +.hero-content { flex: 1; max-width: 620px; z-index: 2; } +.hero-badge { + display: inline-flex; align-items: center; gap: 0.5rem; + padding: 0.4rem 1rem; background: white; + border: 1px solid var(--emerald-light); border-radius: 50px; + font-size: 0.85rem; font-weight: 600; color: var(--emerald-dark); + margin-bottom: 2rem; box-shadow: var(--shadow-sm); + animation: pulse-glow 3s ease-in-out infinite; +} +.hero h1 { + font-size: clamp(2.2rem, 4.5vw, 3.5rem); + font-weight: 800; line-height: 1.25; margin-bottom: 1.5rem; +} +.hero p { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 2.5rem; max-width: 540px; } +.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; } +.hero-visual { flex: 1; position: relative; z-index: 1; display: flex; justify-content: center; } +.hero-visual img { + width: 100%; max-width: 560px; border-radius: 20px; + box-shadow: var(--shadow-2xl); animation: float 6s ease-in-out infinite; +} +.hero-stats { + display: flex; gap: 2.5rem; margin-top: 3.5rem; + padding-top: 2rem; border-top: 1px solid var(--border-color); +} +.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--emerald-dark); } +.hero-stat-label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; margin-top: 0.2rem; } + +/* === TRUST BAR === */ +.trust-bar { + background: var(--bg-secondary); border-top: 1px solid var(--border-color); + border-bottom: 1px solid var(--border-color); padding: 2rem 0; +} +.trust-bar-inner { + display: flex; align-items: center; justify-content: center; + gap: 3rem; flex-wrap: wrap; +} +.trust-item { + display: flex; align-items: center; gap: 0.75rem; + color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; +} +.trust-item .icon { font-size: 1.5rem; } + +/* === FEATURES === */ +.features-grid { + display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; +} +.feature-card { + background: white; border: 1px solid var(--border-color); + border-radius: var(--radius-lg); padding: 2.5rem; + transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275); + box-shadow: var(--shadow-sm); position: relative; overflow: hidden; +} +.feature-card::before { + content: ''; position: absolute; top: 0; right: 0; + width: 100px; height: 100px; + background: radial-gradient(circle, var(--emerald-glow) 0%, transparent 70%); + opacity: 0; transition: opacity 0.4s; +} +.feature-card:hover { border-color: var(--emerald-light); transform: translateY(-6px); box-shadow: var(--shadow-xl); } +.feature-card:hover::before { opacity: 1; } +.feature-icon { + width: 56px; height: 56px; background: var(--emerald-light); + color: var(--emerald-dark); border-radius: 14px; + display: flex; align-items: center; justify-content: center; + font-size: 1.5rem; margin-bottom: 1.5rem; +} +.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; } +.feature-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.65; } + +/* === JOFOTARA SECTION === */ +.jofotara-section { + background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); + color: white; border-radius: var(--radius-xl); + padding: 4rem 3rem; display: flex; align-items: center; gap: 3rem; + position: relative; overflow: hidden; +} +.jofotara-section::before { + content: ''; position: absolute; width: 400px; height: 400px; + background: rgba(16,185,129,0.1); border-radius: 50%; + top: -150px; left: -150px; +} +.jofotara-content { flex: 1; z-index: 2; } +.jofotara-content h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; } +.jofotara-content p { opacity: 0.85; font-size: 1.05rem; margin-bottom: 2rem; max-width: 500px; } +.jofotara-logo-box { + flex: 0 0 auto; z-index: 2; background: white; border-radius: var(--radius-lg); + padding: 2rem 3rem; display: flex; flex-direction: column; align-items: center; + gap: 1rem; box-shadow: var(--shadow-2xl); +} +.jofotara-logo-box img { max-width: 180px; } +.jofotara-logo-box .badge { + background: var(--emerald-light); color: var(--emerald-dark); + padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 700; +} +.jofotara-features { list-style: none; margin-top: 1rem; } +.jofotara-features li { + padding: 0.5rem 0; display: flex; align-items: center; gap: 0.75rem; + font-size: 0.95rem; opacity: 0.9; +} +.jofotara-features li::before { content: '✓'; color: var(--emerald); font-weight: 700; } + +/* === APP DOWNLOAD === */ +.app-section { + background: linear-gradient(135deg, var(--emerald-dark), var(--emerald), #0ea5e9); + border-radius: var(--radius-xl); padding: 4rem 3rem; + display: flex; align-items: center; gap: 3rem; + color: white; position: relative; overflow: hidden; +} +.app-section::before { + content: ''; position: absolute; width: 600px; height: 600px; + background: rgba(255,255,255,0.08); border-radius: 50%; + top: -200px; right: -200px; +} +.app-content { flex: 1; z-index: 2; } +.app-content h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; } +.app-content p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 2rem; } +.store-buttons { display: flex; gap: 1rem; flex-wrap: wrap; } +.store-btn { + background: rgba(0,0,0,0.85); color: white; border-radius: var(--radius-md); + padding: 0.7rem 1.3rem; display: flex; align-items: center; gap: 0.7rem; + transition: all 0.3s; backdrop-filter: blur(10px); +} +.store-btn:hover { transform: translateY(-3px); background: #000; color: white; box-shadow: var(--shadow-lg); } +.store-btn svg { width: 28px; height: 28px; fill: white; } +.store-text { display: flex; flex-direction: column; text-align: right; } +.store-text small { font-size: 0.65rem; opacity: 0.8; } +.store-text strong { font-size: 1rem; font-weight: 600; letter-spacing: 0.3px; } +.app-visual { flex: 1; z-index: 2; display: flex; justify-content: center; } +.app-visual img { max-width: 320px; border-radius: var(--radius-xl); box-shadow: 0 25px 50px rgba(0,0,0,0.3); transform: rotate(-3deg); } + +/* === PRICING === */ +.pricing-grid { + display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; +} +.price-card { + background: white; border: 1px solid var(--border-color); + border-radius: var(--radius-lg); padding: 2.5rem 1.75rem; + text-align: center; position: relative; + transition: all 0.3s ease; box-shadow: var(--shadow-sm); +} +.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); } +.price-card.popular { + border: 2px solid var(--emerald); + box-shadow: 0 10px 40px var(--emerald-glow); + transform: scale(1.03); +} +.price-card.popular:hover { transform: scale(1.03) translateY(-5px); } +.popular-badge { + position: absolute; top: -14px; left: 50%; transform: translateX(-50%); + background: linear-gradient(135deg, var(--emerald), var(--emerald-dark)); + color: white; padding: 0.4rem 1.3rem; border-radius: 50px; + font-size: 0.8rem; font-weight: 700; +} +.price-name { font-size: 1.1rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 0.5rem; } +.price-amount { + font-size: 2.5rem; font-weight: 800; color: var(--text-primary); + margin: 1rem 0; display: flex; justify-content: center; align-items: baseline; gap: 0.25rem; +} +.price-amount span { font-size: 0.85rem; color: var(--text-light); font-weight: 500; } +.price-desc { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1.5rem; } +.price-features { + list-style: none; text-align: right; margin: 1.5rem 0; + padding-top: 1.5rem; border-top: 1px solid var(--border-color); +} +.price-features li { + padding: 0.45rem 0; font-size: 0.88rem; color: var(--text-secondary); + display: flex; align-items: center; gap: 0.6rem; +} +.feature-check { + color: var(--emerald); background: var(--emerald-light); + border-radius: 50%; width: 22px; height: 22px; min-width: 22px; + display: flex; align-items: center; justify-content: center; font-size: 0.7rem; +} + +/* === TESTIMONIALS === */ +.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } +.testimonial-card { + background: white; border: 1px solid var(--border-color); + border-radius: var(--radius-lg); padding: 2rem; + box-shadow: var(--shadow-sm); transition: transform 0.3s; +} +.testimonial-card:hover { transform: translateY(-4px); } +.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; } +.testimonial-text { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; } +.testimonial-author { display: flex; align-items: center; gap: 0.75rem; } +.testimonial-avatar { + width: 44px; height: 44px; border-radius: 50%; + background: var(--emerald-light); color: var(--emerald-dark); + display: flex; align-items: center; justify-content: center; + font-weight: 700; font-size: 1.1rem; +} +.testimonial-name { font-weight: 700; font-size: 0.9rem; } +.testimonial-role { font-size: 0.8rem; color: var(--text-light); } + +/* === FAQ === */ +.faq-list { max-width: 750px; margin: 0 auto; } +.faq-item { + border: 1px solid var(--border-color); border-radius: var(--radius-md); + margin-bottom: 1rem; overflow: hidden; background: white; +} +.faq-question { + width: 100%; padding: 1.25rem 1.5rem; background: none; border: none; + font-family: inherit; font-size: 1rem; font-weight: 600; + color: var(--text-primary); cursor: pointer; text-align: right; + display: flex; justify-content: space-between; align-items: center; + transition: background 0.2s; +} +.faq-question:hover { background: var(--bg-secondary); } +.faq-question .arrow { transition: transform 0.3s; font-size: 0.8rem; color: var(--text-light); } +.faq-item.active .arrow { transform: rotate(180deg); } +.faq-answer { + max-height: 0; overflow: hidden; transition: max-height 0.3s ease; + padding: 0 1.5rem; color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; +} +.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 1.25rem; } + +/* === CTA === */ +.cta-section { + background: var(--bg-secondary); text-align: center; + padding: 4rem 2rem; border-radius: var(--radius-xl); +} +.cta-section h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; } +.cta-section p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 550px; margin-left: auto; margin-right: auto; } + +/* === FOOTER === */ +.footer { + background: var(--navy); color: rgba(255,255,255,0.7); + padding: 4rem 0 2rem; +} +.footer-grid { + display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; + gap: 3rem; margin-bottom: 3rem; +} +.footer-brand h3 { color: var(--emerald); font-size: 1.5rem; margin-bottom: 1rem; } +.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; } +.footer-links h4 { color: white; margin-bottom: 1.2rem; font-size: 1rem; } +.footer-links ul { list-style: none; } +.footer-links li { margin-bottom: 0.6rem; } +.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; } +.footer-links a:hover { color: var(--emerald); } +.footer-bottom { + text-align: center; padding-top: 2rem; + border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; +} + +/* === RESPONSIVE === */ +@media (max-width: 992px) { + .hero { flex-direction: column; text-align: center; padding-top: 7rem; gap: 3rem; } + .hero-content { max-width: 100%; } + .hero p { margin-left: auto; margin-right: auto; } + .hero-cta, .hero-stats { justify-content: center; } + .jofotara-section, .app-section { flex-direction: column; text-align: center; } + .jofotara-content p, .app-content p { margin-left: auto; margin-right: auto; } + .jofotara-features { text-align: right; } + .store-buttons { justify-content: center; } + .footer-grid { grid-template-columns: 1fr 1fr; } +} +@media (max-width: 768px) { + .nav-links { display: none; } + .mobile-menu-btn { display: block; } + .hero h1 { font-size: 2rem; } + .section-header h2 { font-size: 1.8rem; } + .features-grid { grid-template-columns: 1fr; } + .pricing-grid { grid-template-columns: 1fr 1fr; } + .footer-grid { grid-template-columns: 1fr; } + .hero-stats { gap: 1.5rem; } + .app-visual img { max-width: 240px; } +} +@media (max-width: 480px) { + .pricing-grid { grid-template-columns: 1fr; } + .hero-stats { flex-direction: column; gap: 1rem; align-items: center; } +} diff --git a/public/investors.php b/public/investors.php new file mode 100644 index 0000000..8506797 --- /dev/null +++ b/public/investors.php @@ -0,0 +1,250 @@ + + + + + +مُصادَق — فرصة استثمارية | منصة الفوترة الإلكترونية بالذكاء الاصطناعي + + + + + + + + + + +
+
+
📊 فرصة استثمارية — جولة تمويلية
+

أوّل منصة عربية لأتمتة
الفوترة الإلكترونية بالذكاء الاصطناعي

+

نبني البنية التحتية المالية الذكية للأسواق العربية التي تتحول إلزامياً للفوترة الإلكترونية — بدءاً من الأردن وتوسعاً نحو 8 أسواق عربية خلال 3 سنوات.

+احجز اجتماعاً +
+
$2.1B
TAM — السوق العربي الكلي
+
$180M
SAM — الأسواق المستهدفة
+
8+
أسواق عربية مستهدفة
+
SaaS
نموذج إيرادات متكررة
+
+
+
+ + +
+
+
+
🎯 الفرصة
+

لماذا الفوترة الإلكترونية العربية الآن؟

+

موجة تنظيمية إلزامية تجتاح المنطقة العربية — والحل الذكي غير موجود بعد.

+
+
+
+

📋 الإلزام الحكومي

+

الحكومات العربية تفرض الفوترة الإلكترونية بشكل إلزامي. الأردن (جوفوترة)، السعودية (فاتورة)، الإمارات (2027)، عُمان (2026)، مصر، والمغرب — كلها تتحول. هذا يخلق طلباً هائلاً وحتمياً على حلول الامتثال.

+طلب إلزامي متسارع +
+
+

🤖 الفجوة التقنية

+

الحلول الموجودة حالياً هي أنظمة إدخال يدوي تقليدية. لا يوجد منافس عربي يستخدم الذكاء الاصطناعي لأتمتة الاستخراج والتدقيق. مُصادَق يسد هذه الفجوة بتقنية متقدمة.

+ميزة المُبادر الأول +
+
+

👨‍💼 السوق المستهدف

+

آلاف مكاتب المحاسبة والشركات الملزمة بنظام جوفوترة في الأردن وحده. كل مكتب محاسبة يدير 5-50 شركة — مما يعني تأثير مضاعف لكل عميل نكتسبه.

+عائد مضاعف لكل عميل +
+
+

💰 نموذج SaaS متكرر

+

إيرادات شهرية متكررة (MRR) من 5 باقات اشتراك تتراوح بين 0-249 دينار. معدل الاحتفاظ مرتفع لأن النظام إلزامي — العميل لا يستطيع الاستغناء عن الحل.

+Retention طبيعي عالي +
+
+
+
+ + +
+
+
+
📈 حجم السوق
+

TAM · SAM · SOM

+
+
+
+
TAM
+

$2.1 مليار

+

سوق الفوترة الإلكترونية في المنطقة العربية كاملة (الأردن، السعودية، الإمارات، مصر، عُمان، المغرب، البحرين، الكويت، قطر، سوريا)

+
+
+
SAM
+

$180 مليون

+

الأسواق ذات الإلزام النشط أو القريب: الأردن، السعودية، مصر، الإمارات، عُمان، المغرب — حيث يمكننا تقديم خدماتنا فوراً

+
+
+
SOM
+

$8 مليون

+

الحصة المستهدفة في 3 سنوات: 5% من السوق الأردني + 1-2% من السعودية والإمارات عبر شراكات محلية

+
+
+
+
+ + +
+
+
+
⚡ القدرات التقنية
+

تقنيات متقدمة يصعب تقليدها

+

بنية تحتية مبنية بأحدث التقنيات مع حماية على مستوى البنوك.

+
+
+
🧠

ذكاء اصطناعي متقدم

محرك استخراج بيانات بدقة 99% يقرأ أي فاتورة (صورة أو PDF) ويحولها لبيانات منظمة في ثوانٍ

+
🔒

تشفير AES-256-GCM

نفس مستوى تشفير البنوك العالمية. بيانات العملاء مشفرة بالكامل حتى على مستوى قاعدة البيانات

+
🏗️

بنية Multi-Tenant

عزل كامل للبيانات بين المستأجرين مع قابلية توسع أفقي لملايين الفواتير شهرياً

+
📱

تطبيقات iOS و Android

تطبيقات أصلية منشورة على App Store و Google Play مع دعم العمل بدون إنترنت

+
🔗

API تكاملي

واجهة برمجية كاملة تسمح بالتكامل مع أنظمة ERP و أنظمة المحاسبة الأخرى

+

تدقيق ضريبي ذكي

مطابقة تلقائية مع جداول الضرائب المحلية ومنع الأخطاء قبل الإرسال للجهات الحكومية

+
+
+
+ + +
+
+
+
🌍 التوسع الإقليمي
+

خارطة التوسع للأسواق العربية

+

أسواق عربية تتحول إلزامياً للفوترة الإلكترونية — ونحن سبّاقون بالحل.

+
+
+

🇯🇴 الأردن (السوق الأساسي)

نظام جوفوترة أصبح إلزامياً منذ أبريل 2025 لجميع الأعمال فوق 75,000 دينار. المنصة جاهزة ومنشورة على المتاجر. نستهدف 500+ مكتب محاسبة في السنة الأولى.

✅ جاهز ومُطلق
+

🇸🇦 السعودية

نظام FATOORAH مفعّل بالكامل مع موجات إلزامية مستمرة. أكبر سوق عربي للفوترة الإلكترونية. التوسع عبر شراكة محلية مع مزوّد معتمد من ZATCA.

🔴 أولوية عالية — 2026
+

🇦🇪 الإمارات

اعتمدت نموذج PEPPOL. اختيار مزوّدي الخدمة يبدأ يوليو 2026 والإلزام يناير 2027. فرصة دخول مبكر قبل المنافسين. سوق عالي القيمة.

🟡 دخول مبكر — 2027
+

🇴🇲 عُمان

برنامج "فوتره" يعتمد PEPPOL. المرحلة التجريبية تبدأ أغسطس 2026. سوق ناشئ بمنافسة محدودة.

🟡 تجريبي — 2026
+

🇪🇬 مصر

نظام فوترة إلكترونية ناضج يغطي جميع الأعمال المسجلة ضريبياً. سوق ضخم (100M+ نسمة). التوسع عبر تخصيص المنصة للمعايير المصرية.

🔴 سوق ضخم — 2027
+

🇲🇦 المغرب

الإلزام يبدأ 2026 بشكل تدريجي. سوق فرانكوفوني يتطلب تخصيص لغوي. فرصة لدخول سوق شمال أفريقيا.

🟡 بداية — 2027
+

🇸🇾 سوريا

فرصة استراتيجية فريدة: الحكومة الانتقالية تنفذ استراتيجية تحول رقمي 2025-2030 تشمل الفوترة الإلكترونية الإلزامية. وقّعت اتفاقيات مع ELM و Visa لرقمنة العمليات المالية. سوق بلا منافسة مع حاجة ماسة لحلول جاهزة.

🟣 فرصة استراتيجية — 2027-2028
+

🇧🇭🇰🇼🇶🇦 الخليج

البحرين والكويت وقطر في مراحل مبكرة لتطوير أنظمة الفوترة الإلكترونية. الدخول المبكر يضمن موقعاً تنافسياً عند الإلزام.

🟣 مراقبة — 2028+
+
+
+
+ + +
+
+
+
🇸🇾 تقرير خاص
+

الفرصة السورية: سوق بلا منافسة

+

سوريا تمر بتحول رقمي تاريخي يفتح فرصاً غير مسبوقة.

+
+
+

🏛️ الدعم الحكومي

وزارة الاتصالات تنفذ استراتيجية تحول رقمي من 3 مراحل حتى 2030. المرحلة الانتقالية (2025-2027) تركز على رقمنة الخدمات المالية والضريبية.

+

🤝 شراكات دولية

اتفاقيات مع ELM السعودية لرقمنة العمليات المالية، ومع Visa لتطوير البنية التحتية المالية، ومع Türksat التركية للبنية الرقمية.

+

📊 حجم السوق

22 مليون نسمة، اقتصاد في مرحلة إعادة بناء. الحاجة ماسة لأنظمة فوترة حديثة. عدم وجود منافسين محليين يعني فرصة احتكار مبكر.

+

🎯 استراتيجية الدخول

التواصل مع وزارة المالية ودائرة الضرائب لتقديم مُصادَق كحل جاهز ومُجرّب. بناء شراكة مع القطاع الخاص السوري عبر مكتب تمثيلي في دمشق.

+
+
+
+ + +
+
+
+
🗺️ خارطة الطريق
+

خطة النمو — 3 سنوات

+
+
+
الربع الثاني 2026

الإطلاق والتثبيت — الأردن

إطلاق التطبيق على المتاجر، اكتساب أول 200 مكتب محاسبة، تفعيل نظام الإحالة والنمو العضوي.

+
الربع الرابع 2026

التوسع — السعودية

شراكة مع مزوّد معتمد من ZATCA، تخصيص المنصة للمعايير السعودية، إطلاق تجريبي.

+
الربع الأول 2027

دخول الإمارات وعُمان

استغلال توقيت الإلزام في الإمارات (يناير 2027) وعُمان للدخول المبكر.

+
الربع الثالث 2027

مصر والمغرب

تخصيص المنصة للمعايير المصرية والمغربية. دخول أكبر سوقين عربيين بعد الخليج.

+
2028

سوريا والخليج

دخول السوق السوري عبر شراكة حكومية. استكشاف البحرين والكويت وقطر.

+
+
+
+ + +
+
+
+

مهتم بالاستثمار في مُصادَق؟

+

نرحب بالتواصل مع المستثمرين الاستراتيجيين. احجز اجتماعاً لمناقشة الفرصة بالتفصيل.

+📧 invest@musadaq.com +
+
+
+ + +
+
+ +
+
+ + + + diff --git a/public/landing.php b/public/landing.php index d578a08..372e198 100644 --- a/public/landing.php +++ b/public/landing.php @@ -1,957 +1,320 @@ - - - مُصادَق — أتمتة الفواتير الإلكترونية الأردنية بالذكاء الاصطناعي - - - - - - + + +مُصادَق — مساعدك المالي الذكي | أتمتة الفوترة الإلكترونية في الأردن + + + + + + + + + - -