731 lines
28 KiB
PHP
731 lines
28 KiB
PHP
<?php
|
|
|
|
namespace App\Views;
|
|
|
|
class LandingPage
|
|
{
|
|
public static function render(): string
|
|
{
|
|
return <<<'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>
|
|
|
|
<!-- Apple SF Pro & Alexandria Arabic Web Fonts -->
|
|
<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=Alexandria:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap" rel="stylesheet">
|
|
|
|
<!-- Apple-Grade Luxury Cupertino CSS Design System -->
|
|
<style>
|
|
:root {
|
|
--bg-base: #030712;
|
|
--bg-surface-1: rgba(17, 24, 39, 0.7);
|
|
--bg-surface-2: rgba(31, 41, 55, 0.5);
|
|
--bg-glass: rgba(255, 255, 255, 0.03);
|
|
--bg-glass-hover: rgba(255, 255, 255, 0.06);
|
|
--border-glass: rgba(255, 255, 255, 0.08);
|
|
--border-glass-bright: rgba(255, 255, 255, 0.18);
|
|
--text-primary: #F9FAFB;
|
|
--text-secondary: #D1D5DB;
|
|
--text-muted: #9CA3AF;
|
|
--apple-gold: #F59E0B;
|
|
--apple-gold-light: #FDE68A;
|
|
--apple-cyan: #06B6D4;
|
|
--apple-cyan-glow: #22D3EE;
|
|
--apple-green: #10B981;
|
|
--apple-purple: #8B5CF6;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Alexandria", "SF Pro Display", "SF Pro Text", "SF Arabic", "Segoe UI", Roboto, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--bg-base);
|
|
color: var(--text-primary);
|
|
min-height: 100vh;
|
|
overflow-x: hidden;
|
|
background-image:
|
|
radial-gradient(circle at 50% -10%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
|
|
radial-gradient(circle at 10% 40%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
|
|
radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
|
|
linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
|
|
linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
|
|
background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 24px;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Apple Glass Navigation Bar */
|
|
header {
|
|
border-bottom: 1px solid var(--border-glass);
|
|
background-color: rgba(3, 7, 18, 0.8);
|
|
backdrop-filter: blur(24px) saturate(180%);
|
|
-webkit-backdrop-filter: blur(24px) saturate(180%);
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
}
|
|
.header-content {
|
|
height: 72px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
.logo-area {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
text-decoration: none;
|
|
}
|
|
.logo-badge {
|
|
width: 42px;
|
|
height: 42px;
|
|
border-radius: 12px;
|
|
background: linear-gradient(135deg, #06B6D4, #3B82F6);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #FFFFFF;
|
|
font-size: 22px;
|
|
font-weight: 900;
|
|
box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35);
|
|
}
|
|
.brand-title {
|
|
font-size: 20px;
|
|
font-weight: 800;
|
|
color: #FFFFFF;
|
|
letter-spacing: -0.5px;
|
|
}
|
|
|
|
.nav-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
.nav-btn {
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
padding: 8px 18px;
|
|
border-radius: 980px;
|
|
text-decoration: none;
|
|
transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
.nav-btn-ghost {
|
|
color: var(--text-secondary);
|
|
border: 1px solid transparent;
|
|
}
|
|
.nav-btn-ghost:hover {
|
|
color: #FFF;
|
|
background: rgba(255, 255, 255, 0.06);
|
|
}
|
|
.nav-btn-gold {
|
|
background: rgba(245, 158, 11, 0.12);
|
|
color: #FBBF24;
|
|
border: 1px solid rgba(245, 158, 11, 0.3);
|
|
}
|
|
.nav-btn-gold:hover {
|
|
background: rgba(245, 158, 11, 0.2);
|
|
transform: translateY(-1px);
|
|
}
|
|
.nav-btn-primary {
|
|
background: #FFFFFF;
|
|
color: #030712 !important;
|
|
font-weight: 800;
|
|
box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
|
|
}
|
|
.nav-btn-primary:hover {
|
|
background: #F3F4F6;
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
|
|
}
|
|
|
|
/* Apple Hero Section */
|
|
.hero-section {
|
|
padding: 90px 0 60px;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
.hero-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid var(--border-glass-bright);
|
|
color: var(--text-primary);
|
|
padding: 6px 18px;
|
|
border-radius: 980px;
|
|
margin-bottom: 28px;
|
|
backdrop-filter: blur(12px);
|
|
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
|
|
}
|
|
.pill-dot {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
background: #06B6D4;
|
|
box-shadow: 0 0 8px #06B6D4;
|
|
}
|
|
.hero-title {
|
|
font-size: clamp(32px, 5.5vw, 56px);
|
|
font-weight: 900;
|
|
line-height: 1.25;
|
|
color: #FFFFFF;
|
|
max-width: 980px;
|
|
margin: 0 auto 24px;
|
|
letter-spacing: -1px;
|
|
}
|
|
.gradient-text-cyan {
|
|
background: linear-gradient(135deg, #22D3EE 0%, #3B82F6 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
.gradient-text-gold {
|
|
background: linear-gradient(135deg, #FDE68A 0%, #F59E0B 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
.hero-desc {
|
|
font-size: clamp(15px, 2vw, 18px);
|
|
color: var(--text-secondary);
|
|
max-width: 760px;
|
|
margin: 0 auto 40px;
|
|
line-height: 1.8;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.hero-cta-group {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 16px;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 60px;
|
|
}
|
|
.cta-btn-apple-main {
|
|
padding: 15px 36px;
|
|
font-size: 15px;
|
|
font-weight: 800;
|
|
border-radius: 980px;
|
|
text-decoration: none;
|
|
background: linear-gradient(135deg, #06B6D4, #2563EB);
|
|
color: #FFFFFF;
|
|
box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
|
|
transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.cta-btn-apple-main:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 12px 36px rgba(6, 182, 212, 0.55);
|
|
}
|
|
.cta-btn-apple-secondary {
|
|
padding: 15px 30px;
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
border-radius: 980px;
|
|
text-decoration: none;
|
|
background: var(--bg-glass);
|
|
color: #FFFFFF;
|
|
border: 1px solid var(--border-glass-bright);
|
|
backdrop-filter: blur(12px);
|
|
transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
|
|
}
|
|
.cta-btn-apple-secondary:hover {
|
|
background: var(--bg-glass-hover);
|
|
border-color: rgba(255, 255, 255, 0.3);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
/* Glass Trust Metrics Bar */
|
|
.trust-bar {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
gap: 20px;
|
|
background: var(--bg-glass);
|
|
border: 1px solid var(--border-glass);
|
|
border-radius: 24px;
|
|
padding: 28px 36px;
|
|
backdrop-filter: blur(20px);
|
|
margin-bottom: 90px;
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
|
|
}
|
|
.trust-item { text-align: center; }
|
|
.trust-num {
|
|
font-size: 36px;
|
|
font-weight: 900;
|
|
color: #FFFFFF;
|
|
display: block;
|
|
letter-spacing: -1px;
|
|
}
|
|
.trust-label {
|
|
font-size: 13px;
|
|
color: var(--text-muted);
|
|
font-weight: 600;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
/* Section Layouts */
|
|
.section-header {
|
|
text-align: center;
|
|
margin-bottom: 56px;
|
|
}
|
|
.section-tag {
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
color: #FBBF24;
|
|
background: rgba(245, 158, 11, 0.1);
|
|
border: 1px solid rgba(245, 158, 11, 0.25);
|
|
padding: 5px 16px;
|
|
border-radius: 980px;
|
|
display: inline-block;
|
|
margin-bottom: 14px;
|
|
}
|
|
.section-title {
|
|
font-size: clamp(26px, 4vw, 38px);
|
|
font-weight: 900;
|
|
color: #FFFFFF;
|
|
letter-spacing: -0.5px;
|
|
margin-bottom: 14px;
|
|
}
|
|
.section-subtitle {
|
|
font-size: 16px;
|
|
color: var(--text-muted);
|
|
max-width: 680px;
|
|
margin: 0 auto;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
/* Apple Grid Cards */
|
|
.features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
|
gap: 24px;
|
|
margin-bottom: 90px;
|
|
}
|
|
.feature-card {
|
|
background: var(--bg-glass);
|
|
border: 1px solid var(--border-glass);
|
|
border-radius: 24px;
|
|
padding: 36px;
|
|
backdrop-filter: blur(20px);
|
|
transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.feature-card:hover {
|
|
transform: translateY(-4px);
|
|
border-color: rgba(6, 182, 212, 0.4);
|
|
background: var(--bg-glass-hover);
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
|
|
}
|
|
.card-icon {
|
|
width: 52px;
|
|
height: 52px;
|
|
border-radius: 16px;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid var(--border-glass-bright);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 24px;
|
|
margin-bottom: 22px;
|
|
}
|
|
.card-title {
|
|
font-size: 19px;
|
|
font-weight: 800;
|
|
color: #FFFFFF;
|
|
margin-bottom: 10px;
|
|
letter-spacing: -0.3px;
|
|
}
|
|
.card-desc {
|
|
font-size: 14px;
|
|
color: var(--text-secondary);
|
|
line-height: 1.75;
|
|
font-weight: 400;
|
|
}
|
|
|
|
/* Institutional Special Feature Banner */
|
|
.b2g-banner {
|
|
background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(31, 41, 55, 0.8) 100%);
|
|
border: 1px solid rgba(245, 158, 11, 0.35);
|
|
border-radius: 28px;
|
|
padding: 48px;
|
|
display: grid;
|
|
grid-template-columns: 1.3fr 1fr;
|
|
gap: 40px;
|
|
align-items: center;
|
|
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
|
|
margin-bottom: 90px;
|
|
backdrop-filter: blur(20px);
|
|
}
|
|
@media (max-width: 880px) {
|
|
.b2g-banner { grid-template-columns: 1fr; padding: 32px; gap: 28px; }
|
|
}
|
|
|
|
.b2g-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
background: rgba(245, 158, 11, 0.15);
|
|
border: 1px solid rgba(245, 158, 11, 0.35);
|
|
color: #FBBF24;
|
|
padding: 4px 14px;
|
|
border-radius: 980px;
|
|
margin-bottom: 18px;
|
|
}
|
|
.b2g-title {
|
|
font-size: 28px;
|
|
font-weight: 900;
|
|
color: #FFFFFF;
|
|
margin-bottom: 14px;
|
|
line-height: 1.35;
|
|
letter-spacing: -0.5px;
|
|
}
|
|
.b2g-desc {
|
|
font-size: 15px;
|
|
color: var(--text-secondary);
|
|
line-height: 1.75;
|
|
margin-bottom: 24px;
|
|
}
|
|
.b2g-btn {
|
|
padding: 13px 30px;
|
|
font-size: 14.5px;
|
|
font-weight: 800;
|
|
border-radius: 980px;
|
|
text-decoration: none;
|
|
background: linear-gradient(135deg, #F59E0B, #D97706);
|
|
color: #FFFFFF;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
|
|
transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
|
|
}
|
|
.b2g-btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 10px 28px rgba(245, 158, 11, 0.5);
|
|
}
|
|
|
|
.b2g-card-stat {
|
|
background: rgba(3, 7, 18, 0.6);
|
|
border: 1px solid var(--border-glass);
|
|
border-radius: 20px;
|
|
padding: 26px;
|
|
}
|
|
.b2g-stat-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 14px;
|
|
margin-bottom: 18px;
|
|
}
|
|
.b2g-stat-item:last-child { margin-bottom: 0; }
|
|
.b2g-icon-check {
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 8px;
|
|
background: rgba(6, 182, 212, 0.15);
|
|
color: #22D3EE;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: 900;
|
|
font-size: 14px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* Apple Luxury Footer */
|
|
footer {
|
|
border-top: 1px solid var(--border-glass);
|
|
background: #020617;
|
|
padding: 56px 0 28px;
|
|
color: var(--text-muted);
|
|
font-size: 13px;
|
|
}
|
|
.footer-grid {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr 1fr;
|
|
gap: 48px;
|
|
margin-bottom: 40px;
|
|
}
|
|
@media (max-width: 768px) {
|
|
.footer-grid { grid-template-columns: 1fr; gap: 32px; }
|
|
}
|
|
.footer-col-title {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: #FFFFFF;
|
|
margin-bottom: 16px;
|
|
}
|
|
.footer-links {
|
|
list-style: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
.footer-links a {
|
|
color: var(--text-muted);
|
|
text-decoration: none;
|
|
transition: color 0.2s;
|
|
}
|
|
.footer-links a:hover { color: #22D3EE; }
|
|
.footer-bottom {
|
|
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
|
padding-top: 24px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Apple Navigation Bar -->
|
|
<header>
|
|
<div class="container">
|
|
<div class="header-content">
|
|
<a href="/" class="logo-area">
|
|
<div class="logo-badge">صـ</div>
|
|
<span class="brand-title">صَقِل</span>
|
|
</a>
|
|
|
|
<div class="nav-actions">
|
|
<a href="/military-culture" class="nav-btn nav-btn-gold">
|
|
<span>🇯🇴 خطة الثقافة العسكرية</span>
|
|
</a>
|
|
<a href="/teacher" class="nav-btn nav-btn-ghost">استوديو المعلمين</a>
|
|
<a href="/student" class="nav-btn nav-btn-primary">دخول الطلاب 🚀</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Apple Hero Section -->
|
|
<section class="hero-section">
|
|
<div class="container">
|
|
<div class="hero-pill">
|
|
<span class="pill-dot"></span>
|
|
<span>الجيل الثاني لمنصات التمكين الأكاديمي والتوجيهي في الأردن</span>
|
|
</div>
|
|
|
|
<h1 class="hero-title">
|
|
لا نكتفي بعرض الفيديوهات.. <br>
|
|
نحن <span class="gradient-text-cyan">نصقل فهم الطالب</span> ونضمن <span class="gradient-text-gold">جاهزيته للوزاري</span>
|
|
</h1>
|
|
|
|
<p class="hero-desc">
|
|
أول منظومة تعليمية تفاعلية تعتمد التعلم السقراطي (Socratic Learning)، التثبيت المعرفي التلقائي أثناء المشاهدة، ومؤشر الجاهزية للوزاري المدعوم بالذكاء الاصطناعي.
|
|
</p>
|
|
|
|
<div class="hero-cta-group">
|
|
<a href="/student" class="cta-btn-apple-main">
|
|
<span>ابدأ رحلة التميز كطالب ←</span>
|
|
</a>
|
|
<a href="/teacher" class="cta-btn-apple-secondary">
|
|
<span>انضم كأستاذ معتمد (استوديو صَقِل) 👨🏫</span>
|
|
</a>
|
|
<a href="/military-culture" class="cta-btn-apple-secondary" style="border-color: rgba(245, 158, 11, 0.4); color: #FBBF24;">
|
|
<span>مبادرة مديرية الثقافة العسكرية 🇯🇴</span>
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Trust Metrics Bar -->
|
|
<div class="trust-bar">
|
|
<div class="trust-item">
|
|
<span class="trust-num">100%</span>
|
|
<span class="trust-label">حماية محتوى DRM ضد التسريب</span>
|
|
</div>
|
|
<div class="trust-item">
|
|
<span class="trust-num">0ms</span>
|
|
<span class="trust-label">تأخير في الشات المباشر (Workerman)</span>
|
|
</div>
|
|
<div class="trust-item">
|
|
<span class="trust-num">4 مستويات</span>
|
|
<span class="trust-label">هرمية الامتحانات والتقييم المعرفي</span>
|
|
</div>
|
|
<div class="trust-item">
|
|
<span class="trust-num">91.4%</span>
|
|
<span class="trust-label">متوسط إتقان واستيعاب المفاهيم</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Core Pillars -->
|
|
<section style="padding: 20px 0 60px;">
|
|
<div class="container">
|
|
<div class="section-header">
|
|
<span class="section-tag">الفلسفة التربوية والتقنية</span>
|
|
<h2 class="section-title">لماذا تُحدث صَقِل فارقاً حقيقياً في علامة الطالب؟</h2>
|
|
<p class="section-subtitle">
|
|
المنصات التقليدية تقدم تعليماً سلبياً (مشاهدة بدون قياس). صَقِل تحول المشاهدة إلى اشتباك ذهني إجباري يرسخ المعلومة في الذاكرة طويلة المدى.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="features-grid">
|
|
<!-- Card 1 -->
|
|
<div class="feature-card">
|
|
<div class="card-icon">🎬</div>
|
|
<h3 class="card-title">محرك التثبيت المعرفي السقراطي (Active Recall)</h3>
|
|
<p class="card-desc">
|
|
فحص لحظي ذكي لاستيعاب الطالب أثناء الحصة؛ يُلزم الطالب بالاشتباك الذهني وتأكيد فهم كل مفهوم قبل الانتقال إلى الفكرة التالية لضمان التمكن التام.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Card 2 -->
|
|
<div class="feature-card">
|
|
<div class="card-icon">🧠</div>
|
|
<h3 class="card-title">مؤشر الجاهزية للوزاري (Tawjihi Readiness)</h3>
|
|
<p class="card-desc">
|
|
تحليل تراكمي دقيق لمستوى فهم الطالب في كل مبحث، يرصد نقاط القوة والضعف ويحدد بدقة نسبة الجاهزية لدخول الامتحان الوزاري بتفوق.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Card 3 -->
|
|
<div class="feature-card">
|
|
<div class="card-icon">⚡</div>
|
|
<h3 class="card-title">قناة الإشراف والتواصل المباشر مع المعلمين</h3>
|
|
<p class="card-desc">
|
|
بيئة تفاعلية لحظية تتيح للطالب الاستفسار المباشر من أستاذه ومناقشة المسائل المعقدة دون أي عوائق تقنية أو تأخير.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Card 4 -->
|
|
<div class="feature-card">
|
|
<div class="card-icon">🔒</div>
|
|
<h3 class="card-title">حماية المحتوى والأمان الرقمي (DRM Shield)</h3>
|
|
<p class="card-desc">
|
|
بنية تحتية سيادية مشفرة بالكامل تحمي المواد التعليمية وحقوق المعلمين والمؤسسات من أي تسريب أو تصوير غير مصرح به.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Card 5 -->
|
|
<div class="feature-card">
|
|
<div class="card-icon">📲</div>
|
|
<h3 class="card-title">الدخول الذكي المعتمد (Passwordless Access)</h3>
|
|
<p class="card-desc">
|
|
تجربة وصول فائقة السلاسة والأمان عبر بطاقات التوثيق المعتمدة على الواتساب وبصمة الجهاز الموحدة وفق أعلى معايير الخصوصية.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Card 6 -->
|
|
<div class="feature-card">
|
|
<div class="card-icon">👨👩👧</div>
|
|
<h3 class="card-title">منظومة إشعار ومتابعة أولياء الأمور</h3>
|
|
<p class="card-desc">
|
|
تقارير دورية موجزة تصل لولي الأمر لإبقائه في قلب المسيرة التعليمية ومتابعة تحصيل ابنه وساعات دراسته ومؤشر تفوقه.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- B2G Institutional Banner -->
|
|
<div class="b2g-banner">
|
|
<div>
|
|
<div class="b2g-badge">🇯🇴 مبادرة الشراكة الاستراتيجية والمؤسسية</div>
|
|
<h2 class="b2g-title">حلول مخصصة لمديرية التربية والتعليم والثقافة العسكرية</h2>
|
|
<p class="b2g-desc">
|
|
نقدم للمديرية نموذجاً متكاملاً لشراء المخرجات والإنتاج بأقل التكاليف التشغيلية، مع توحيد جودة التعليم في مدارس البادية والمحافظات وغرفة عمليات مركزية لمتابعة إنجاز كل طالب.
|
|
</p>
|
|
<a href="/military-culture" class="b2g-btn">
|
|
<span>استعرض ملف المبادرة الاستراتيجية الكاملة ←</span>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="b2g-card-stat">
|
|
<div class="b2g-stat-item">
|
|
<div class="b2g-icon-check">✓</div>
|
|
<div>
|
|
<strong style="color: #FFF; font-size: 14px; display: block;">عدالة تعليمية شاملة</strong>
|
|
<span style="font-size: 12.5px; color: var(--text-muted);">نفس جودة نخبة المعلمين لجميع أبناء القوات المسلحة في كل المحافظات.</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="b2g-stat-item">
|
|
<div class="b2g-icon-check">✓</div>
|
|
<div>
|
|
<strong style="color: #FFF; font-size: 14px; display: block;">لوحة قيادة مركزية للضباط</strong>
|
|
<span style="font-size: 12.5px; color: var(--text-muted);">متابعة تحصيل كل مدرسة وشعبة لحظياً بمؤشرات أداء واضحة.</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="b2g-stat-item">
|
|
<div class="b2g-icon-check">✓</div>
|
|
<div>
|
|
<strong style="color: #FFF; font-size: 14px; display: block;">توفير 80% من التكاليف</strong>
|
|
<span style="font-size: 12.5px; color: var(--text-muted);">إلغاء تكاليف المراكز والتنقل والطباعة مع مخرجات أعلى جودة.</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer>
|
|
<div class="container">
|
|
<div class="footer-grid">
|
|
<div>
|
|
<div class="logo-area" style="margin-bottom: 14px;">
|
|
<div class="logo-badge" style="width: 36px; height: 36px; font-size: 18px;">صـ</div>
|
|
<span class="brand-title" style="font-size: 19px;">منصة صَقِل</span>
|
|
</div>
|
|
<p style="font-size: 13.5px; line-height: 1.7; max-width: 380px;">
|
|
المنظومة الأردنية الرائدة في التمكين الأكاديمي والتعليم السقراطي الذكي لطلبة التوجيهي والمراحل الثانوية.
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h4 class="footer-col-title">البوابات والخدمات</h4>
|
|
<ul class="footer-links">
|
|
<li><a href="/student">بوابة الطالب الذكية</a></li>
|
|
<li><a href="/teacher">استوديو المعلمين ونظام الشراكة</a></li>
|
|
<li><a href="/military-culture">ملف مديرية الثقافة العسكرية</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div>
|
|
<h4 class="footer-col-title">الأمان والخصوصية</h4>
|
|
<ul class="footer-links">
|
|
<li><a href="#">حماية المحتوى DRM</a></li>
|
|
<li><a href="#">السيادة الرقمية وتشفير البيانات</a></li>
|
|
<li><a href="#">معايير Zero-Trust</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer-bottom">
|
|
<span>جميع الحقوق محفوظة © لمنصة صَقِل التعليمية 2026</span>
|
|
<span style="color: #22D3EE;">بنية تحتية سحابية موثوقة • عمان، الأردن 🇯🇴</span>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|
|
HTML;
|
|
}
|
|
}
|