946 lines
32 KiB
PHP
946 lines
32 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 rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Noto+Kufi+Arabic:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
|
|
<style>
|
|
:root {
|
|
--emerald: #10b981;
|
|
--emerald-light: #d1fae5;
|
|
--emerald-dark: #059669;
|
|
--emerald-glow: rgba(16,185,129,0.15);
|
|
--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 0 rgba(0, 0, 0, 0.05);
|
|
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
}
|
|
|
|
* {
|
|
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 ease;
|
|
}
|
|
|
|
/* === NAV === */
|
|
.nav {
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
z-index: 100;
|
|
padding: 1rem 5%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
backdrop-filter: blur(12px);
|
|
background: rgba(255, 255, 255, 0.85);
|
|
border-bottom: 1px solid var(--border-color);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.nav-logo {
|
|
font-size: 1.75rem;
|
|
font-weight: 700;
|
|
color: var(--emerald-dark);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.nav-logo-icon {
|
|
background: var(--emerald-light);
|
|
color: var(--emerald-dark);
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 10px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.nav-links {
|
|
display: flex;
|
|
gap: 2.5rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.nav-links a {
|
|
color: var(--text-secondary);
|
|
font-size: 0.95rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.nav-links a:hover {
|
|
color: var(--emerald-dark);
|
|
}
|
|
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.5rem;
|
|
padding: 0.75rem 1.75rem;
|
|
border-radius: 12px;
|
|
font-weight: 600;
|
|
font-size: 0.95rem;
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
cursor: pointer;
|
|
border: none;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--emerald);
|
|
color: white;
|
|
box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: var(--emerald-dark);
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 20px 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);
|
|
}
|
|
|
|
/* === HERO === */
|
|
.hero {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 8rem 5% 4rem;
|
|
position: relative;
|
|
background: radial-gradient(circle at top right, var(--emerald-light) 0%, var(--bg-primary) 60%);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero-content {
|
|
flex: 1;
|
|
max-width: 650px;
|
|
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);
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: clamp(2.5rem, 5vw, 4rem);
|
|
font-weight: 800;
|
|
line-height: 1.2;
|
|
margin-bottom: 1.5rem;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.hero h1 span {
|
|
background: linear-gradient(135deg, var(--emerald), #0ea5e9);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.15rem;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 2.5rem;
|
|
max-width: 550px;
|
|
}
|
|
|
|
.hero-cta {
|
|
display: flex;
|
|
gap: 1rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.hero-image {
|
|
flex: 1;
|
|
position: relative;
|
|
z-index: 1;
|
|
perspective: 1000px;
|
|
}
|
|
|
|
.hero-image img {
|
|
width: 100%;
|
|
max-width: 600px;
|
|
height: auto;
|
|
border-radius: 24px;
|
|
box-shadow: var(--shadow-xl);
|
|
transform: rotateY(-5deg) rotateX(5deg);
|
|
transition: transform 0.5s ease;
|
|
}
|
|
|
|
.hero-image img:hover {
|
|
transform: rotateY(0deg) rotateX(0deg);
|
|
}
|
|
|
|
.hero-stats {
|
|
display: flex;
|
|
gap: 2.5rem;
|
|
margin-top: 4rem;
|
|
padding-top: 2rem;
|
|
border-top: 1px solid var(--border-color);
|
|
}
|
|
|
|
.hero-stat-num {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
color: var(--emerald-dark);
|
|
margin-bottom: 0.2rem;
|
|
}
|
|
|
|
.hero-stat-label {
|
|
font-size: 0.9rem;
|
|
color: var(--text-secondary);
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* === SECTIONS === */
|
|
section {
|
|
padding: 6rem 5%;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.section-title {
|
|
text-align: center;
|
|
margin-bottom: 4rem;
|
|
}
|
|
|
|
.section-title h2 {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.section-title p {
|
|
color: var(--text-secondary);
|
|
font-size: 1.1rem;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* === FEATURES === */
|
|
.features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
|
gap: 2rem;
|
|
}
|
|
|
|
.feature-card {
|
|
background: white;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 20px;
|
|
padding: 2.5rem;
|
|
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
|
box-shadow: var(--shadow-sm);
|
|
}
|
|
|
|
.feature-card:hover {
|
|
border-color: var(--emerald-light);
|
|
transform: translateY(-8px);
|
|
box-shadow: var(--shadow-xl);
|
|
}
|
|
|
|
.feature-icon {
|
|
width: 60px;
|
|
height: 60px;
|
|
background: var(--emerald-light);
|
|
color: var(--emerald-dark);
|
|
border-radius: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.75rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.feature-card h3 {
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.feature-card p {
|
|
color: var(--text-secondary);
|
|
font-size: 0.95rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* === HOW IT WORKS === */
|
|
.steps-wrapper {
|
|
background: var(--bg-secondary);
|
|
border-radius: 30px;
|
|
padding: 4rem 2rem;
|
|
}
|
|
|
|
.steps {
|
|
display: flex;
|
|
gap: 3rem;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.step {
|
|
flex: 1;
|
|
min-width: 250px;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
.step:not(:last-child)::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 40px;
|
|
left: -30px;
|
|
width: calc(100% - 80px);
|
|
height: 2px;
|
|
background: dashed 2px var(--emerald-light);
|
|
z-index: 0;
|
|
}
|
|
|
|
.step-num {
|
|
width: 80px;
|
|
height: 80px;
|
|
background: white;
|
|
border: 4px solid var(--emerald-light);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.75rem;
|
|
font-weight: 800;
|
|
color: var(--emerald-dark);
|
|
margin: 0 auto 1.5rem;
|
|
position: relative;
|
|
z-index: 1;
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
.step h3 {
|
|
font-size: 1.2rem;
|
|
margin-bottom: 0.75rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.step p {
|
|
color: var(--text-secondary);
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
/* === APP DOWNLOAD === */
|
|
.app-download {
|
|
background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
|
|
border-radius: 30px;
|
|
padding: 5rem 3%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
color: white;
|
|
position: relative;
|
|
overflow: hidden;
|
|
box-shadow: var(--shadow-xl);
|
|
}
|
|
|
|
.app-download::before {
|
|
content: '';
|
|
position: absolute;
|
|
width: 600px;
|
|
height: 600px;
|
|
background: rgba(255,255,255,0.1);
|
|
border-radius: 50%;
|
|
top: -200px;
|
|
left: -200px;
|
|
}
|
|
|
|
.app-content {
|
|
flex: 1;
|
|
max-width: 500px;
|
|
z-index: 2;
|
|
}
|
|
|
|
.app-content h2 {
|
|
font-size: 2.5rem;
|
|
font-weight: 800;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.app-content p {
|
|
font-size: 1.1rem;
|
|
opacity: 0.9;
|
|
margin-bottom: 2.5rem;
|
|
}
|
|
|
|
.store-buttons {
|
|
display: flex;
|
|
gap: 1rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.store-btn {
|
|
background: #000;
|
|
color: white;
|
|
border-radius: 12px;
|
|
padding: 0.75rem 1.5rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
transition: transform 0.2s, background 0.2s;
|
|
}
|
|
|
|
.store-btn:hover {
|
|
transform: translateY(-3px);
|
|
background: #222;
|
|
}
|
|
|
|
.store-btn svg {
|
|
width: 30px;
|
|
height: 30px;
|
|
fill: white;
|
|
}
|
|
|
|
.store-text {
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: right;
|
|
}
|
|
|
|
.store-text small {
|
|
font-size: 0.7rem;
|
|
opacity: 0.8;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.store-text strong {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
font-family: sans-serif;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.app-image {
|
|
flex: 1;
|
|
z-index: 2;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.app-image img {
|
|
max-width: 350px;
|
|
border-radius: 30px;
|
|
box-shadow: 0 25px 50px rgba(0,0,0,0.3);
|
|
transform: rotate(-5deg);
|
|
}
|
|
|
|
/* === PRICING === */
|
|
.pricing-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 2rem;
|
|
}
|
|
|
|
.price-card {
|
|
background: white;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 24px;
|
|
padding: 3rem 2rem;
|
|
text-align: center;
|
|
position: relative;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.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.02);
|
|
}
|
|
|
|
.popular-badge {
|
|
position: absolute;
|
|
top: -16px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
background: var(--emerald);
|
|
color: white;
|
|
padding: 0.5rem 1.5rem;
|
|
border-radius: 50px;
|
|
font-size: 0.85rem;
|
|
font-weight: 700;
|
|
box-shadow: var(--shadow-sm);
|
|
}
|
|
|
|
.price-name {
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.price-amount {
|
|
font-size: 3rem;
|
|
font-weight: 800;
|
|
color: var(--text-primary);
|
|
margin: 1.5rem 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: baseline;
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
.price-amount span {
|
|
font-size: 1rem;
|
|
color: var(--text-light);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.price-features {
|
|
list-style: none;
|
|
text-align: right;
|
|
margin: 2rem 0;
|
|
padding-top: 2rem;
|
|
border-top: 1px solid var(--border-color);
|
|
}
|
|
|
|
.price-features li {
|
|
padding: 0.6rem 0;
|
|
font-size: 0.95rem;
|
|
color: var(--text-secondary);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.feature-check {
|
|
color: var(--emerald);
|
|
background: var(--emerald-light);
|
|
border-radius: 50%;
|
|
width: 24px;
|
|
height: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
/* === CTA SECTION === */
|
|
.cta-bottom {
|
|
background: var(--bg-secondary);
|
|
text-align: center;
|
|
padding: 5rem 2rem;
|
|
border-radius: 30px;
|
|
margin-top: 4rem;
|
|
}
|
|
|
|
.cta-bottom h2 {
|
|
font-size: 2.2rem;
|
|
font-weight: 800;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
/* === FOOTER === */
|
|
footer {
|
|
background: var(--bg-accent);
|
|
padding: 4rem 5% 2rem;
|
|
border-top: 1px solid var(--border-color);
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.footer-content {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 3rem;
|
|
margin-bottom: 3rem;
|
|
max-width: 1200px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.footer-brand h3 {
|
|
font-size: 1.5rem;
|
|
color: var(--emerald-dark);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.footer-links h4 {
|
|
color: var(--text-primary);
|
|
margin-bottom: 1.2rem;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.footer-links ul {
|
|
list-style: none;
|
|
}
|
|
|
|
.footer-links li {
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.footer-links a {
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
color: var(--emerald);
|
|
}
|
|
|
|
.footer-bottom {
|
|
text-align: center;
|
|
padding-top: 2rem;
|
|
border-top: 1px solid var(--border-color);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
/* === RESPONSIVE === */
|
|
@media (max-width: 992px) {
|
|
.hero {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
padding-top: 8rem;
|
|
}
|
|
.hero-content {
|
|
margin-bottom: 3rem;
|
|
}
|
|
.hero p {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
.hero-cta, .hero-stats {
|
|
justify-content: center;
|
|
}
|
|
.app-download {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
gap: 3rem;
|
|
}
|
|
.store-buttons {
|
|
justify-content: center;
|
|
}
|
|
.app-image img {
|
|
transform: rotate(0);
|
|
}
|
|
.step::after {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.nav-links { display: none; }
|
|
.hero h1 { font-size: 2.2rem; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- NAV -->
|
|
<nav class="nav">
|
|
<div class="nav-logo">
|
|
<div class="nav-logo-icon">م</div>
|
|
مُصادَق
|
|
</div>
|
|
<div class="nav-links">
|
|
<a href="#features">المميزات</a>
|
|
<a href="#how">كيف يعمل</a>
|
|
<a href="#app">التطبيق</a>
|
|
<a href="#pricing">الباقات</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 class="hero-content">
|
|
<div class="hero-badge">
|
|
<span style="color: var(--emerald); font-size: 1.2rem;">✓</span>
|
|
متوافق 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>
|
|
<div class="hero-stat-num">3s</div>
|
|
<div class="hero-stat-label">لاستخراج البيانات</div>
|
|
</div>
|
|
<div>
|
|
<div class="hero-stat-num">99%</div>
|
|
<div class="hero-stat-label">دقة الذكاء الاصطناعي</div>
|
|
</div>
|
|
<div>
|
|
<div class="hero-stat-num">0 JOD</div>
|
|
<div class="hero-stat-label">للبدء (بدون بطاقة)</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="hero-image">
|
|
<!-- Using a beautiful unsplash image as a placeholder for the mockup -->
|
|
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80" alt="Musadaq Dashboard">
|
|
</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. سيقوم محرك Gemini باستخراج اسم المورد، الرقم الضريبي، المبالغ، والبنود بدقة متناهية ودون تدخل بشري.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🏛️</div>
|
|
<h3>ربط مباشر بجوفوترا</h3>
|
|
<p>إرسال تلقائي للفواتير بصيغة UBL 2.1 المعتمدة من دائرة الضريبة والمبيعات الأردنية، مع توليد رمز الاستجابة السريعة (QR Code) تلقائياً.</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>تطبيق ميداني Offline</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">
|
|
<div class="container">
|
|
<div class="steps-wrapper">
|
|
<div class="section-title" style="margin-bottom: 3rem;">
|
|
<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>بضغطة زر، يتم اعتماد الفاتورة وتوليد ملف XML وإرسالها فوراً إلى منصة جوفوترا بنجاح.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- APP DOWNLOAD SECTION -->
|
|
<section id="app">
|
|
<div class="container">
|
|
<div class="app-download">
|
|
<div class="app-content">
|
|
<h2>حمّل تطبيق مُصادَق الآن</h2>
|
|
<p>اجعل أتمتة الفواتير في جيبك. صوّر الفواتير مباشرة من كاميرا الهاتف، وتابع الإحصائيات، وتلقى الإشعارات الذكية في أي وقت وأي مكان. متوافق تماماً مع أجهزة أندرويد وآيفون.</p>
|
|
|
|
<div class="store-buttons">
|
|
<!-- Apple App Store Button -->
|
|
<a href="#" class="store-btn">
|
|
<svg viewBox="0 0 384 512"><path d="M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"/></svg>
|
|
<div class="store-text">
|
|
<small>Download on the</small>
|
|
<strong>App Store</strong>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- Google Play Button -->
|
|
<a href="#" class="store-btn">
|
|
<svg viewBox="0 0 512 512"><path d="M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z"/></svg>
|
|
<div class="store-text">
|
|
<small>GET IT ON</small>
|
|
<strong>Google Play</strong>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="app-image">
|
|
<!-- Placeholder for mobile mockup -->
|
|
<img src="https://images.unsplash.com/photo-1616348436168-de43ad0db179?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80" alt="Musadaq Mobile App">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- PRICING -->
|
|
<section id="pricing">
|
|
<div class="container">
|
|
<div class="section-title">
|
|
<h2>باقات شفافة تناسب حجم أعمالك</h2>
|
|
<p>لا رسوم خفية. ابدأ مجاناً وقم بالترقية عندما تحتاج إلى المزيد من السعة.</p>
|
|
</div>
|
|
<div class="pricing-grid">
|
|
<!-- Free Plan -->
|
|
<div class="price-card">
|
|
<div class="price-name">تريال (Trial)</div>
|
|
<div class="price-amount">0 <span>JOD / شهر</span></div>
|
|
<ul class="price-features">
|
|
<li><span class="feature-check">✔</span> إدارة شركة واحدة</li>
|
|
<li><span class="feature-check">✔</span> 15 فاتورة شهرياً</li>
|
|
<li><span class="feature-check">✔</span> استخراج بالذكاء الاصطناعي</li>
|
|
<li><span class="feature-check">✔</span> ربط مباشر بجوفوترا</li>
|
|
</ul>
|
|
<a href="/register.php" class="btn btn-outline" style="width:100%; margin-top: 1rem;">ابدأ مجاناً</a>
|
|
</div>
|
|
|
|
<!-- Basic Plan -->
|
|
<div class="price-card">
|
|
<div class="price-name">أساسية (Basic)</div>
|
|
<div class="price-amount">15 <span>JOD / شهر</span></div>
|
|
<ul class="price-features">
|
|
<li><span class="feature-check">✔</span> إدارة 3 شركات</li>
|
|
<li><span class="feature-check">✔</span> 100 فاتورة شهرياً</li>
|
|
<li><span class="feature-check">✔</span> 3 مستخدمين للمكتب</li>
|
|
<li><span class="feature-check">✔</span> تقارير شهرية وتنبيهات</li>
|
|
</ul>
|
|
<a href="/register.php" class="btn btn-outline" style="width:100%; margin-top: 1rem;">اشترك الآن</a>
|
|
</div>
|
|
|
|
<!-- Office Plan -->
|
|
<div class="price-card popular">
|
|
<div class="popular-badge">الأكثر اختياراً</div>
|
|
<div class="price-name">مكتبية (Office)</div>
|
|
<div class="price-amount">45 <span>JOD / شهر</span></div>
|
|
<ul class="price-features">
|
|
<li><span class="feature-check">✔</span> إدارة حتى 10 شركات</li>
|
|
<li><span class="feature-check">✔</span> 500 فاتورة شهرياً</li>
|
|
<li><span class="feature-check">✔</span> 10 مستخدمين مع صلاحيات</li>
|
|
<li><span class="feature-check">✔</span> تصدير Excel متقدم</li>
|
|
<li><span class="feature-check">✔</span> أولوية الدعم الفني</li>
|
|
</ul>
|
|
<a href="/register.php" class="btn btn-primary" style="width:100%; margin-top: 1rem;">اشترك الآن</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- CTA -->
|
|
<section>
|
|
<div class="container">
|
|
<div class="cta-bottom">
|
|
<h2>جاهز لتغيير طريقة عملك للأبد؟</h2>
|
|
<p style="color: var(--text-secondary); margin-bottom: 2.5rem; font-size: 1.1rem;">انضم إلى المئات من المحاسبين والشركات الذين وفروا مئات الساعات شهرياً بفضل أتمتة مُصادَق.</p>
|
|
<a href="/register.php" class="btn btn-primary" style="padding: 1rem 3rem; font-size: 1.1rem;">إنشاء حساب مجاني</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- FOOTER -->
|
|
<footer>
|
|
<div class="container">
|
|
<div class="footer-content">
|
|
<div class="footer-brand">
|
|
<h3>مُصادَق</h3>
|
|
<p>المنصة الرائدة في الأردن لأتمتة الفواتير الإلكترونية باستخدام الذكاء الاصطناعي والتكامل مع منصة جوفوترا الوطنية.</p>
|
|
</div>
|
|
<div class="footer-links">
|
|
<h4>روابط سريعة</h4>
|
|
<ul>
|
|
<li><a href="#features">المميزات</a></li>
|
|
<li><a href="#pricing">الباقات والأسعار</a></li>
|
|
<li><a href="#how">كيف نعمل</a></li>
|
|
<li><a href="/login.php">تسجيل الدخول</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="footer-links">
|
|
<h4>المساعدة والدعم</h4>
|
|
<ul>
|
|
<li><a href="#">الأسئلة الشائعة</a></li>
|
|
<li><a href="#">دليل الاستخدام</a></li>
|
|
<li><a href="#">سياسة الخصوصية</a></li>
|
|
<li><a href="#">تواصل معنا</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="footer-bottom">
|
|
<p>صُنع بفخر في الأردن 🇯🇴 | © 2026 مُصادَق. جميع الحقوق محفوظة.</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|