724 lines
29 KiB
PHP
724 lines
29 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>
|
|
<link rel="icon" type="image/jpeg" href="/assets/images/saqel_logo.jpg">
|
|
<link rel="apple-touch-icon" href="/assets/images/saqel_logo.jpg">
|
|
|
|
<!-- 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;500;600;700;800&display=swap" rel="stylesheet">
|
|
|
|
<!-- Apple Official Design System (Cupertino Dark Mode) -->
|
|
<style>
|
|
:root {
|
|
--apple-bg: #000000;
|
|
--apple-surface: #121214;
|
|
--apple-surface-card: #161617;
|
|
--apple-surface-hover: #1C1C1E;
|
|
--apple-border: rgba(255, 255, 255, 0.08);
|
|
--apple-border-focus: rgba(255, 255, 255, 0.2);
|
|
--apple-text-white: #F5F5F7;
|
|
--apple-text-silver: #A1A1A6;
|
|
--apple-text-muted: #6E6E73;
|
|
--apple-blue: #0071E3;
|
|
--apple-blue-hover: #0077ED;
|
|
--apple-cyan: #00F5D4;
|
|
--apple-gold: #F59E0B;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, "SF Pro AR", "SF Pro Display", "SF Pro Text", "SF Arabic", "Alexandria", "Segoe UI", Roboto, sans-serif;
|
|
letter-spacing: -0.015em;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--apple-bg);
|
|
color: var(--apple-text-white);
|
|
min-height: 100vh;
|
|
overflow-x: hidden;
|
|
background-image:
|
|
radial-gradient(circle at 50% 0%, rgba(0, 113, 227, 0.18) 0%, transparent 60%),
|
|
radial-gradient(circle at 85% 30%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
|
|
radial-gradient(circle at 15% 70%, rgba(0, 245, 212, 0.06) 0%, transparent 50%);
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1180px;
|
|
margin: 0 auto;
|
|
padding: 0 24px;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Apple Glass Navigation */
|
|
header {
|
|
border-bottom: 1px solid var(--apple-border);
|
|
background-color: rgba(0, 0, 0, 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: 64px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
.logo-area {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
text-decoration: none;
|
|
}
|
|
.logo-img {
|
|
width: 38px;
|
|
height: 38px;
|
|
border-radius: 10px;
|
|
object-fit: cover;
|
|
box-shadow: 0 0 16px rgba(0, 245, 212, 0.35);
|
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
|
|
}
|
|
.logo-area:hover .logo-img {
|
|
transform: scale(1.06);
|
|
}
|
|
.brand-title {
|
|
font-size: 19px;
|
|
font-weight: 800;
|
|
color: #FFFFFF;
|
|
letter-spacing: -0.03em;
|
|
}
|
|
|
|
.nav-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
.apple-pill-btn {
|
|
font-size: 12.5px;
|
|
font-weight: 600;
|
|
padding: 7px 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;
|
|
}
|
|
.btn-nav-ghost {
|
|
color: var(--apple-text-silver);
|
|
border: 1px solid transparent;
|
|
}
|
|
.btn-nav-ghost:hover {
|
|
color: #FFFFFF;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
}
|
|
.btn-nav-military {
|
|
background: rgba(245, 158, 11, 0.12);
|
|
color: #FBBF24;
|
|
border: 1px solid rgba(245, 158, 11, 0.3);
|
|
}
|
|
.btn-nav-military:hover {
|
|
background: rgba(245, 158, 11, 0.22);
|
|
transform: scale(1.02);
|
|
}
|
|
.btn-nav-primary {
|
|
background: var(--apple-blue);
|
|
color: #FFFFFF !important;
|
|
box-shadow: 0 2px 10px rgba(0, 113, 227, 0.3);
|
|
}
|
|
.btn-nav-primary:hover {
|
|
background: var(--apple-blue-hover);
|
|
transform: scale(1.02);
|
|
box-shadow: 0 4px 16px rgba(0, 113, 227, 0.45);
|
|
}
|
|
|
|
/* Apple Hero Section */
|
|
.hero-section {
|
|
padding: 96px 0 64px;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
.apple-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
background: rgba(255, 255, 255, 0.06);
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
color: var(--apple-text-silver);
|
|
padding: 6px 18px;
|
|
border-radius: 980px;
|
|
margin-bottom: 28px;
|
|
backdrop-filter: blur(12px);
|
|
}
|
|
.badge-dot {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
background: var(--apple-cyan);
|
|
box-shadow: 0 0 10px var(--apple-cyan);
|
|
}
|
|
.hero-title {
|
|
font-size: clamp(34px, 5.5vw, 60px);
|
|
font-weight: 800;
|
|
line-height: 1.15;
|
|
color: var(--apple-text-white);
|
|
max-width: 960px;
|
|
margin: 0 auto 24px;
|
|
letter-spacing: -0.03em;
|
|
}
|
|
.hero-title-gradient {
|
|
background: linear-gradient(180deg, #FFFFFF 0%, #A1A1A6 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
.hero-cyan-glow {
|
|
background: linear-gradient(135deg, #00F5D4 0%, #0071E3 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
.hero-desc {
|
|
font-size: clamp(16px, 2vw, 19px);
|
|
color: var(--apple-text-silver);
|
|
max-width: 740px;
|
|
margin: 0 auto 44px;
|
|
line-height: 1.7;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.hero-cta-group {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 16px;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 72px;
|
|
}
|
|
.apple-main-btn {
|
|
padding: 14px 34px;
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
border-radius: 980px;
|
|
text-decoration: none;
|
|
background: var(--apple-blue);
|
|
color: #FFFFFF;
|
|
box-shadow: 0 6px 24px rgba(0, 113, 227, 0.4);
|
|
transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.apple-main-btn:hover {
|
|
background: var(--apple-blue-hover);
|
|
transform: scale(1.02);
|
|
box-shadow: 0 10px 32px rgba(0, 113, 227, 0.55);
|
|
}
|
|
.apple-secondary-btn {
|
|
padding: 14px 28px;
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
border-radius: 980px;
|
|
text-decoration: none;
|
|
background: rgba(255, 255, 255, 0.06);
|
|
color: var(--apple-text-white);
|
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
backdrop-filter: blur(12px);
|
|
transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
|
|
}
|
|
.apple-secondary-btn:hover {
|
|
background: rgba(255, 255, 255, 0.12);
|
|
border-color: rgba(255, 255, 255, 0.3);
|
|
transform: scale(1.02);
|
|
}
|
|
|
|
/* Apple Metric Bar */
|
|
.metrics-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
gap: 16px;
|
|
background: var(--apple-surface-card);
|
|
border: 1px solid var(--apple-border);
|
|
border-radius: 24px;
|
|
padding: 28px 36px;
|
|
margin-bottom: 96px;
|
|
}
|
|
.metric-col { text-align: center; }
|
|
.metric-val {
|
|
font-size: 38px;
|
|
font-weight: 800;
|
|
color: #FFFFFF;
|
|
display: block;
|
|
letter-spacing: -0.03em;
|
|
}
|
|
.metric-label {
|
|
font-size: 13px;
|
|
color: var(--apple-text-muted);
|
|
font-weight: 500;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
/* Bento Grid Showcase */
|
|
.section-header {
|
|
text-align: center;
|
|
margin-bottom: 56px;
|
|
}
|
|
.section-tag {
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
color: var(--apple-cyan);
|
|
background: rgba(0, 245, 212, 0.1);
|
|
border: 1px solid rgba(0, 245, 212, 0.25);
|
|
padding: 5px 16px;
|
|
border-radius: 980px;
|
|
display: inline-block;
|
|
margin-bottom: 14px;
|
|
}
|
|
.section-title {
|
|
font-size: clamp(28px, 4vw, 42px);
|
|
font-weight: 800;
|
|
color: var(--apple-text-white);
|
|
letter-spacing: -0.025em;
|
|
margin-bottom: 14px;
|
|
}
|
|
.section-subtitle {
|
|
font-size: 16px;
|
|
color: var(--apple-text-silver);
|
|
max-width: 660px;
|
|
margin: 0 auto;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.bento-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
|
gap: 20px;
|
|
margin-bottom: 96px;
|
|
}
|
|
.bento-card {
|
|
background: var(--apple-surface-card);
|
|
border: 1px solid var(--apple-border);
|
|
border-radius: 28px;
|
|
padding: 38px;
|
|
transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.bento-card:hover {
|
|
transform: translateY(-4px);
|
|
border-color: var(--apple-border-focus);
|
|
background: var(--apple-surface-hover);
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
|
|
}
|
|
.bento-icon {
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 14px;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 22px;
|
|
margin-bottom: 22px;
|
|
}
|
|
.bento-title {
|
|
font-size: 19px;
|
|
font-weight: 700;
|
|
color: var(--apple-text-white);
|
|
margin-bottom: 10px;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
.bento-desc {
|
|
font-size: 14px;
|
|
color: var(--apple-text-silver);
|
|
line-height: 1.75;
|
|
font-weight: 400;
|
|
}
|
|
|
|
/* Institutional Banner */
|
|
.military-banner {
|
|
background: linear-gradient(135deg, #121214 0%, #1A1A1E 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.7);
|
|
margin-bottom: 96px;
|
|
}
|
|
@media (max-width: 880px) {
|
|
.military-banner { grid-template-columns: 1fr; padding: 32px; gap: 28px; }
|
|
}
|
|
|
|
.banner-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
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;
|
|
}
|
|
.banner-title {
|
|
font-size: 28px;
|
|
font-weight: 800;
|
|
color: var(--apple-text-white);
|
|
margin-bottom: 14px;
|
|
line-height: 1.35;
|
|
letter-spacing: -0.025em;
|
|
}
|
|
.banner-desc {
|
|
font-size: 15px;
|
|
color: var(--apple-text-silver);
|
|
line-height: 1.75;
|
|
margin-bottom: 24px;
|
|
}
|
|
.banner-btn {
|
|
padding: 13px 30px;
|
|
font-size: 14.5px;
|
|
font-weight: 600;
|
|
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);
|
|
}
|
|
.banner-btn:hover {
|
|
transform: scale(1.02);
|
|
box-shadow: 0 10px 28px rgba(245, 158, 11, 0.5);
|
|
}
|
|
|
|
.banner-card-box {
|
|
background: rgba(0, 0, 0, 0.6);
|
|
border: 1px solid var(--apple-border);
|
|
border-radius: 20px;
|
|
padding: 26px;
|
|
}
|
|
.banner-stat-row {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 14px;
|
|
margin-bottom: 18px;
|
|
}
|
|
.banner-stat-row:last-child { margin-bottom: 0; }
|
|
.banner-check-icon {
|
|
width: 26px;
|
|
height: 26px;
|
|
border-radius: 50%;
|
|
background: rgba(0, 245, 212, 0.15);
|
|
color: var(--apple-cyan);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: 800;
|
|
font-size: 13px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* Apple Footer */
|
|
footer {
|
|
border-top: 1px solid var(--apple-border);
|
|
background: #000000;
|
|
padding: 56px 0 28px;
|
|
color: var(--apple-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-title {
|
|
font-size: 13.5px;
|
|
font-weight: 700;
|
|
color: var(--apple-text-white);
|
|
margin-bottom: 16px;
|
|
}
|
|
.footer-list {
|
|
list-style: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
.footer-list a {
|
|
color: var(--apple-text-muted);
|
|
text-decoration: none;
|
|
transition: color 0.2s;
|
|
}
|
|
.footer-list a:hover { color: var(--apple-text-white); }
|
|
.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">
|
|
<img src="/assets/images/saqel_logo.jpg" alt="صَقِل" class="logo-img">
|
|
<span class="brand-title">صَقِل</span>
|
|
</a>
|
|
|
|
<div class="nav-actions">
|
|
<a href="/military-culture" class="apple-pill-btn btn-nav-military">
|
|
<span>🇯🇴 خطة الثقافة العسكرية</span>
|
|
</a>
|
|
<a href="/guardian" class="apple-pill-btn btn-nav-ghost">بوابة أولياء الأمور</a>
|
|
<a href="/teacher" class="apple-pill-btn btn-nav-ghost">استوديو المعلمين</a>
|
|
<a href="/student" class="apple-pill-btn btn-nav-primary">دخول الطلاب 🚀</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Apple Hero Section -->
|
|
<section class="hero-section">
|
|
<div class="container">
|
|
<div class="apple-badge">
|
|
<span class="badge-dot"></span>
|
|
<span>الجيل الثاني لمنصات التمكين الأكاديمي والتوجيهي في الأردن</span>
|
|
</div>
|
|
|
|
<h1 class="hero-title">
|
|
لا نكتفي بعرض الفيديوهات.. <br>
|
|
<span class="hero-title-gradient">نحن نصقل فهم الطالب</span> ونضمن <span class="hero-cyan-glow">جاهزيته للوزاري</span>
|
|
</h1>
|
|
|
|
<p class="hero-desc">
|
|
أول منظومة تعليمية تفاعلية تعتمد التعلم السقراطي (Socratic Learning)، التثبيت المعرفي التلقائي أثناء المشاهدة، ومؤشر الجاهزية للوزاري المدعوم بالذكاء الاصطناعي.
|
|
</p>
|
|
|
|
<div class="hero-cta-group">
|
|
<a href="/student" class="apple-main-btn">
|
|
<span>ابدأ رحلة التميز كطالب ←</span>
|
|
</a>
|
|
<a href="/teacher" class="apple-secondary-btn">
|
|
<span>انضم كأستاذ معتمد (استوديو صَقِل) 👨🏫</span>
|
|
</a>
|
|
<a href="/military-culture" class="apple-secondary-btn" style="border-color: rgba(245, 158, 11, 0.35); color: #FBBF24;">
|
|
<span>مبادرة مديرية الثقافة العسكرية 🇯🇴</span>
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Apple Metric Bar -->
|
|
<div class="metrics-grid">
|
|
<div class="metric-col">
|
|
<span class="metric-val">100%</span>
|
|
<span class="metric-label">حماية محتوى DRM ضد التسريب</span>
|
|
</div>
|
|
<div class="metric-col">
|
|
<span class="metric-val">0ms</span>
|
|
<span class="metric-label">تأخير في الشات المباشر (Workerman)</span>
|
|
</div>
|
|
<div class="metric-col">
|
|
<span class="metric-val">4 مستويات</span>
|
|
<span class="metric-label">هرمية الامتحانات والتقييم المعرفي</span>
|
|
</div>
|
|
<div class="metric-col">
|
|
<span class="metric-val">91.4%</span>
|
|
<span class="metric-label">متوسط إتقان واستيعاب المفاهيم</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Core Pillars Bento Grid -->
|
|
<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="bento-grid">
|
|
<!-- Card 1 -->
|
|
<div class="bento-card">
|
|
<div class="bento-icon">🎬</div>
|
|
<h3 class="bento-title">محرك التثبيت المعرفي السقراطي (Active Recall)</h3>
|
|
<p class="bento-desc">
|
|
فحص لحظي ذكي لاستيعاب الطالب أثناء الحصة؛ يُلزم الطالب بالاشتباك الذهني وتأكيد فهم كل مفهوم قبل الانتقال إلى الفكرة التالية لضمان التمكن التام.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Card 2 -->
|
|
<div class="bento-card">
|
|
<div class="bento-icon">🧠</div>
|
|
<h3 class="bento-title">مؤشر الجاهزية للوزاري (Tawjihi Readiness)</h3>
|
|
<p class="bento-desc">
|
|
تحليل تراكمي دقيق لمستوى فهم الطالب في كل مبحث، يرصد نقاط القوة والضعف ويحدد بدقة نسبة الجاهزية لدخول الامتحان الوزاري بتفوق.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Card 3 -->
|
|
<div class="bento-card">
|
|
<div class="bento-icon">⚡</div>
|
|
<h3 class="bento-title">قناة الإشراف والتواصل المباشر مع المعلمين</h3>
|
|
<p class="bento-desc">
|
|
بيئة تفاعلية لحظية تتيح للطالب الاستفسار المباشر من أستاذه ومناقشة المسائل المعقدة دون أي عوائق تقنية أو تأخير.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Card 4 -->
|
|
<div class="bento-card">
|
|
<div class="bento-icon">🔒</div>
|
|
<h3 class="bento-title">حماية المحتوى والأمان الرقمي (DRM Shield)</h3>
|
|
<p class="bento-desc">
|
|
بنية تحتية سيادية مشفرة بالكامل تحمي المواد التعليمية وحقوق المعلمين والمؤسسات من أي تسريب أو تصوير غير مصرح به.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Card 5 -->
|
|
<div class="bento-card">
|
|
<div class="bento-icon">📲</div>
|
|
<h3 class="bento-title">الدخول الذكي المعتمد (Passwordless Access)</h3>
|
|
<p class="bento-desc">
|
|
تجربة وصول فائقة السلاسة والأمان عبر بطاقات التوثيق المعتمدة على الواتساب وبصمة الجهاز الموحدة وفق أعلى معايير الخصوصية.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Card 6 -->
|
|
<div class="bento-card">
|
|
<div class="bento-icon">👨👩👧</div>
|
|
<h3 class="bento-title">منظومة إشعار ومتابعة أولياء الأمور</h3>
|
|
<p class="bento-desc">
|
|
تقارير دورية موجزة تصل لولي الأمر لإبقائه في قلب المسيرة التعليمية ومتابعة تحصيل ابنه وساعات دراسته ومؤشر تفوقه.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- B2G Institutional Banner -->
|
|
<div class="military-banner">
|
|
<div>
|
|
<div class="banner-pill">🇯🇴 مبادرة الشراكة الاستراتيجية والمؤسسية</div>
|
|
<h2 class="banner-title">حلول مخصصة لمديرية التربية والتعليم والثقافة العسكرية</h2>
|
|
<p class="banner-desc">
|
|
نقدم للمديرية نموذجاً متكاملاً لشراء المخرجات والإنتاج بأقل التكاليف التشغيلية، مع توحيد جودة التعليم في مدارس البادية والمحافظات وغرفة عمليات مركزية لمتابعة إنجاز كل طالب.
|
|
</p>
|
|
<a href="/military-culture" class="banner-btn">
|
|
<span>استعرض ملف المبادرة الاستراتيجية الكاملة ←</span>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="banner-card-box">
|
|
<div class="banner-stat-row">
|
|
<div class="banner-check-icon">✓</div>
|
|
<div>
|
|
<strong style="color: #FFFFFF; font-size: 14px; display: block;">عدالة تعليمية شاملة</strong>
|
|
<span style="font-size: 12.5px; color: var(--apple-text-muted);">نفس جودة نخبة المعلمين لجميع أبناء القوات المسلحة في كل المحافظات.</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="banner-stat-row">
|
|
<div class="banner-check-icon">✓</div>
|
|
<div>
|
|
<strong style="color: #FFFFFF; font-size: 14px; display: block;">لوحة قيادة مركزية للضباط</strong>
|
|
<span style="font-size: 12.5px; color: var(--apple-text-muted);">متابعة تحصيل كل مدرسة وشعبة لحظياً بمؤشرات أداء واضحة.</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="banner-stat-row">
|
|
<div class="banner-check-icon">✓</div>
|
|
<div>
|
|
<strong style="color: #FFFFFF; font-size: 14px; display: block;">توفير 80% من التكاليف</strong>
|
|
<span style="font-size: 12.5px; color: var(--apple-text-muted);">إلغاء تكاليف المراكز والتنقل والطباعة مع مخرجات أعلى جودة.</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Apple Footer -->
|
|
<footer>
|
|
<div class="container">
|
|
<div class="footer-grid">
|
|
<div>
|
|
<div class="logo-area" style="margin-bottom: 14px;">
|
|
<img src="/assets/images/saqel_logo.jpg" alt="صَقِل" class="logo-img" style="width: 32px; height: 32px;">
|
|
<span class="brand-title" style="font-size: 18px;">منصة صَقِل</span>
|
|
</div>
|
|
<p style="font-size: 13px; line-height: 1.7; max-width: 380px; color: var(--apple-text-muted);">
|
|
المنظومة الأردنية الرائدة في التمكين الأكاديمي والتعليم السقراطي الذكي لطلبة التوجيهي والمراحل الثانوية.
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h4 class="footer-title">البوابات والخدمات</h4>
|
|
<ul class="footer-list">
|
|
<li><a href="/student">بوابة الطالب الذكية</a></li>
|
|
<li><a href="/guardian">بوابة أولياء الأمور لمتابعة الجاهزية</a></li>
|
|
<li><a href="/teacher">استوديو المعلمين ونظام الشراكة</a></li>
|
|
<li><a href="/military-culture">ملف مديرية الثقافة العسكرية</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div>
|
|
<h4 class="footer-title">الأمان والخصوصية</h4>
|
|
<ul class="footer-list">
|
|
<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: var(--apple-text-silver);">بنية تحتية سحابية موثوقة • عمان، الأردن 🇯🇴</span>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|
|
HTML;
|
|
}
|
|
}
|