304 lines
9.1 KiB
PHP
304 lines
9.1 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>وَصْل | المحفظة الرقمية الآمنة - WASL Wallet</title>
|
|
|
|
<!-- Google Fonts: Cairo & Outfit -->
|
|
<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 {
|
|
--primary: #0d9488;
|
|
--primary-dark: #0f766e;
|
|
--primary-light: #2dd4bf;
|
|
--bg-dark: #0b0f19;
|
|
--card-bg: rgba(17, 24, 39, 0.7);
|
|
--border-color: rgba(45, 212, 191, 0.15);
|
|
--text-light: #f3f4f6;
|
|
--text-muted: #9ca3af;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Cairo', 'Outfit', sans-serif;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--bg-dark);
|
|
color: var(--text-light);
|
|
overflow-x: hidden;
|
|
background-image:
|
|
radial-gradient(circle at 10% 20%, rgba(13, 148, 136, 0.15) 0%, transparent 40%),
|
|
radial-gradient(circle at 90% 80%, rgba(45, 212, 191, 0.1) 0%, transparent 40%);
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
/* ── Header ── */
|
|
header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 1.5rem 8%;
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 1000;
|
|
background: rgba(11, 15, 25, 0.8);
|
|
backdrop-filter: blur(12px);
|
|
border-bottom: 1px solid var(--border-color);
|
|
}
|
|
|
|
.logo {
|
|
font-size: 1.8rem;
|
|
font-weight: 800;
|
|
color: var(--text-light);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.logo span {
|
|
color: var(--primary-light);
|
|
}
|
|
|
|
.nav-links {
|
|
display: flex;
|
|
list-style: none;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.nav-links a {
|
|
color: var(--text-light);
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.nav-links a:hover {
|
|
color: var(--primary-light);
|
|
}
|
|
|
|
.btn-action {
|
|
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
|
|
color: white;
|
|
padding: 0.6rem 1.5rem;
|
|
border-radius: 50px;
|
|
text-decoration: none;
|
|
font-weight: 700;
|
|
box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.btn-action:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 20px rgba(45, 212, 191, 0.4);
|
|
}
|
|
|
|
/* ── Hero Section ── */
|
|
.hero {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
padding: 8rem 8% 5rem 8%;
|
|
min-height: 80vh;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 3.5rem;
|
|
font-weight: 800;
|
|
line-height: 1.3;
|
|
margin-bottom: 1.5rem;
|
|
background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.25rem;
|
|
color: var(--text-muted);
|
|
max-width: 700px;
|
|
margin-bottom: 2.5rem;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
/* ── Features Section ── */
|
|
.section-title {
|
|
text-align: center;
|
|
font-size: 2.2rem;
|
|
font-weight: 700;
|
|
margin-bottom: 3rem;
|
|
position: relative;
|
|
}
|
|
|
|
.section-title::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -10px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 60px;
|
|
height: 4px;
|
|
background-color: var(--primary-light);
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.features {
|
|
padding: 5rem 8%;
|
|
}
|
|
|
|
.grid-features {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
}
|
|
|
|
.card {
|
|
background: var(--card-bg);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 16px;
|
|
padding: 2.5rem;
|
|
backdrop-filter: blur(8px);
|
|
transition: all 0.3s;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, transparent 100%);
|
|
opacity: 0;
|
|
transition: opacity 0.3s;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
border-color: var(--primary-light);
|
|
box-shadow: 0 10px 30px rgba(13, 148, 136, 0.1);
|
|
}
|
|
|
|
.card:hover::before {
|
|
opacity: 1;
|
|
}
|
|
|
|
.card-icon {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 1.5rem;
|
|
color: var(--primary-light);
|
|
}
|
|
|
|
.card h3 {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.card p {
|
|
color: var(--text-muted);
|
|
line-height: 1.7;
|
|
}
|
|
|
|
/* ── Footer ── */
|
|
footer {
|
|
padding: 3rem 8%;
|
|
text-align: center;
|
|
border-top: 1px solid var(--border-color);
|
|
background: rgba(11, 15, 25, 0.95);
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
footer p {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.footer-logo {
|
|
font-weight: 800;
|
|
color: var(--text-light);
|
|
font-size: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
header {
|
|
padding: 1rem 5%;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 2.2rem;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.1rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Header -->
|
|
<header>
|
|
<div class="logo">
|
|
وَصْل <span>WASL</span>
|
|
</div>
|
|
<ul class="nav-links">
|
|
<li><a href="#features">المميزات</a></li>
|
|
<li><a href="#about">عن المشروع</a></li>
|
|
</ul>
|
|
<a href="https://git.intaleqapp.com/Hamza/wasl.git" class="btn-action" target="_blank">المستودع البرمجي</a>
|
|
</header>
|
|
|
|
<!-- Hero Section -->
|
|
<section class="hero">
|
|
<h1>المحفظة الرقمية الأكثر أماناً وموثوقية</h1>
|
|
<p>بوابتك المالية المتكاملة للدفع الرقمي وخدمات النظير للنظير (P2P) في سوريا، مصممة بأعلى معايير الحماية وموثوقية المعاملات المالية.</p>
|
|
<a href="#features" class="btn-action">استكشف مميزات وَصْل</a>
|
|
</section>
|
|
|
|
<!-- Features Section -->
|
|
<section class="features" id="features">
|
|
<h2 class="section-title">لماذا محفظة وَصْل؟</h2>
|
|
<div class="grid-features">
|
|
<!-- Card 1 -->
|
|
<div class="card">
|
|
<div class="card-icon">🔒</div>
|
|
<h3>أمان بمستوى بنكي</h3>
|
|
<p>تشفير البيانات الحساسة وثنائية التحقق مع تتبع كامل وجرد فوري ومقاوم للاحتيال.</p>
|
|
</div>
|
|
<!-- Card 2 -->
|
|
<div class="card">
|
|
<div class="card-icon">💸</div>
|
|
<h3>تحويل فوري (P2P)</h3>
|
|
<p>أرسل واستقبل الأموال فورياً برقم الهاتف، وبشكل فوري وبأقل عمولة ممكنة.</p>
|
|
</div>
|
|
<!-- Card 3 -->
|
|
<div class="card">
|
|
<div class="card-icon">📊</div>
|
|
<h3>قيد مزدوج (Double-Entry)</h3>
|
|
<p>كل معاملة مالية تقيد بدقة لضمان توازن الحسابات والشفافية التامة في النظام المالي.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer id="about">
|
|
<div class="footer-logo">وَصْل | WASL</div>
|
|
<p>© <?php echo date('Y'); ?> محفظة وَصْل الرقمية. جميع الحقوق محفوظة.</p>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|