@charset "utf-8";
/* ==========================================================================
   مسار الاعمال والتخطيط — نظام التصميم
   الهوية: أخضر مسار #0F3D33 · أخضر فاتح #7FA89C · خلايا #DBE5E1
   الخطوط: Alexandria (العناوين) · Almarai (النصوص) · الأرقام Arial
   ========================================================================== */

/* ---------- 1. الأرقام بخط Arial في كل الموقع ---------- */
@font-face {
  font-family: "NumArial";
  src: local("Arial"), local("Helvetica Neue"), local("Helvetica"),
       local("Liberation Sans"), local("Arimo");
  unicode-range: U+0030-0039, U+002C, U+002E, U+0025, U+002B, U+002D;
  font-display: swap;
}

/* ---------- 2. التوكنات ---------- */
:root {
  /* الألوان */
  --green: #0f3d33;
  --green-d: #0b2e27;
  --green-m: #12493c;
  --green-l: #2f6155;
  --sage: #7fa89c;
  --sage-2: #c8d6d1;
  --mist: #dbe5e1;
  --mist-2: #edf2f0;
  --cream: #f7f5f0;
  --sand: #efebe1;
  --sand-2: #e7e3d9;
  --gold: #c98a2e;
  --gold-d: #a9721f;
  --gold-l: #e0b167;
  --gold-t: #8a5c14;   /* الذهبي للنصوص على الخلفيات الفاتحة (5.4:1) */
  --ink: #0f1a17;
  --ink-2: #12211f;
  --mut: #55655f;
  --mut-2: #5f726c;
  --line: #ddd8cd;
  --line-2: #e6eae8;
  --white: #fff;

  /* الخطوط */
  --f-head: "NumArial", "Alexandria", "Segoe UI", system-ui, sans-serif;
  --f-body: "NumArial", "Almarai", "Alexandria", "Segoe UI", system-ui, sans-serif;

  /* المقاييس */
  --u: 8px;
  --shell: 1240px;
  --r-s: 4px;
  --r: 6px;
  --r-l: 10px;
  --hdr-h: 78px;

  /* الظلال */
  --sh-s: 0 1px 2px rgba(15, 61, 51, .05);
  --sh: 0 6px 24px -12px rgba(15, 61, 51, .18);
  --sh-l: 0 24px 60px -30px rgba(15, 61, 51, .32);

  /* الحركة */
  --e: cubic-bezier(.22, .68, .18, 1);
  --e-out: cubic-bezier(.16, 1, .3, 1);
}

html[lang="en"] {
  --f-body: "NumArial", "Alexandria", "Segoe UI", system-ui, sans-serif;
}

/* ---------- 3. إعادة الضبط ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr-h) + 16px);
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* قفل المحور الأفقي على الجذر معاً.
   السبب: `overflow-x:hidden` يبقى قابلاً للتمرير برمجياً (focus / scrollIntoView)،
   وفي RTL كان أي انزلاق أفقي يزيح الصفحة كلها ويقصّها. `clip` لا يُنشئ حاوية تمرير أصلاً. */
html, body { overflow-x: hidden; }
@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}

img, svg, video, canvas, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

::selection { background: var(--green); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* الأرقام */
.num { font-variant-numeric: tabular-nums lining-nums; letter-spacing: .01em; }
/* أي قيمة لاتينية مركّبة (هاتف/بريد) داخل نص عربي تُعزل لئلا ينقلب ترتيبها */
[dir="ltr"].num, .num[dir="ltr"] { direction: ltr; unicode-bidi: isolate; text-align: start; }

.sr, .skip:not(:focus) {
  position: absolute !important;
  width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip {
  position: fixed; inset-block-start: 12px; inset-inline-start: 12px;
  z-index: 999; background: var(--green); color: #fff;
  padding: 10px 18px; border-radius: var(--r); font-size: 14px;
}

/* ---------- 4. الطباعة ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-head);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -.005em;
  color: var(--green);
}
h1 { font-size: clamp(2rem, 1.25rem + 3.2vw, 3.65rem); line-height: 1.16; font-weight: 500; }
h2 { font-size: clamp(1.55rem, 1.1rem + 1.9vw, 2.6rem); }
h3 { font-size: clamp(1.08rem, .98rem + .45vw, 1.32rem); }

p { text-wrap: pretty; }
strong, b { font-weight: 700; }

.lead { font-size: clamp(1rem, .96rem + .2vw, 1.09rem); color: #2b3a36; margin-block-end: 1.1em; }

/* ---------- 5. أدوات التخطيط ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 40px);
}
.shell--nar { max-width: 900px; }

.sec { padding-block: clamp(64px, 8vw, 118px); position: relative; }
.sec--tint { background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%); }
.sec--dark { background: var(--green); color: #e8f0ed; overflow: hidden; }
.sec--dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 10%, transparent 78%);
          mask-image: radial-gradient(120% 80% at 50% 0%, #000 10%, transparent 78%);
}
.sec--dark > * { position: relative; z-index: 1; }
.sec--dark h1, .sec--dark h2, .sec--dark h3 { color: #fff; }

/* الرمز (المصفوفة) */
.mk { inline-size: 1em; block-size: 1em; flex: none; }
.mk__c { fill: currentColor; opacity: .26; }
.mk__d { fill: currentColor; }

/* عنوان القسم */
.eyeb {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-head); font-size: .74rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--green-l); margin-block-end: 16px;
}
.eyeb .mk { font-size: 14px; color: var(--gold); }
.eyeb--l, .shead--l .eyeb, .sec--dark .eyeb, .phero .eyeb, .cta .eyeb, .nf .eyeb { color: #a9c6be; }
.eyeb--l .mk, .shead--l .eyeb .mk, .sec--dark .eyeb .mk, .phero .eyeb .mk, .cta .eyeb .mk, .nf .eyeb .mk { color: var(--gold-l); }

.shead { max-width: 760px; margin-block-end: clamp(34px, 5vw, 58px); }
.shead--c { margin-inline: auto; text-align: center; }
.shead--l .shead__x { color: #bcd0ca; }
.shead__t { margin-block-end: 14px; }
.shead__x { color: var(--mut); font-size: 1.03rem; }

/* أزرار */
.btn {
  --bg: var(--green); --fg: #fff; --bd: var(--green);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-block-size: 52px; padding: 14px 28px;
  font-family: var(--f-head); font-size: .95rem; font-weight: 500; line-height: 1;
  color: var(--fg); background: var(--bg);
  border: 1px solid var(--bd); border-radius: var(--r);
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .35s var(--e), box-shadow .35s var(--e), background .3s var(--e), color .3s var(--e), border-color .3s var(--e);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--ink); transform: scaleX(0); transform-origin: var(--to, right);
  transition: transform .45s var(--e-out);
}
html[dir="ltr"] .btn::before { --to: left; }
.btn:hover::before { transform: scaleX(1); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.btn:active { transform: translateY(0); }
.btn .ic { inline-size: 18px; block-size: 18px; flex: none; transition: transform .35s var(--e); }
.btn:hover .ic--dir { transform: translateX(var(--tx, -4px)); }
html[dir="ltr"] .btn:hover .ic--dir { --tx: 4px; }

.btn--gold { --bg: var(--gold); --bd: var(--gold); --fg: #fff; }
.btn--gold::before { background: var(--gold-d); }
.btn--dark { --bg: var(--green); --bd: var(--green); }
.btn--outline { --bg: transparent; --fg: var(--green); --bd: rgba(15,61,51,.28); }
.btn--outline::before { background: var(--green); }
.btn--outline:hover { --fg: #fff; --bd: var(--green); color: #fff; }
/* أي خلفية داكنة: الزر الشفاف يجب أن يكون أبيضاً وإلا اختفى تماماً */
.sec--dark .btn--outline, .hero .btn--outline, .nf .btn--outline,
.phero .btn--outline, .cta .btn--outline, .bld .btn--outline {
  --fg: #fff; --bd: rgba(255,255,255,.34); color: #fff;
}
.sec--dark .btn--outline::before, .hero .btn--outline::before, .nf .btn--outline::before,
.phero .btn--outline::before, .cta .btn--outline::before, .bld .btn--outline::before { background: #fff; }
.sec--dark .btn--outline:hover, .hero .btn--outline:hover, .nf .btn--outline:hover,
.phero .btn--outline:hover, .cta .btn--outline:hover, .bld .btn--outline:hover { color: var(--green); --fg: var(--green); }
.btn--ghost { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.3); }
.btn--ghost::before { background: rgba(255,255,255,.14); }
.btn--sm { min-block-size: 42px; padding: 10px 20px; font-size: .87rem; }
.btn--block { display: flex; inline-size: 100%; }

.lnk {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-head); font-weight: 500; color: var(--green);
  padding-block-end: 4px; border-block-end: 1px solid rgba(15,61,51,.24);
  transition: gap .3s var(--e), border-color .3s var(--e), color .3s var(--e);
}
.lnk .ic { inline-size: 17px; block-size: 17px; }
.lnk:hover { gap: 14px; border-color: var(--gold); color: var(--gold-d); }
.ic--dir { transform: scaleX(1); }
html[dir="rtl"] .ic--dir { transform: scaleX(-1); }
html[dir="rtl"] .btn:hover .ic--dir { transform: scaleX(-1) translateX(4px); }

.mid-cta { display: flex; justify-content: center; margin-block-start: clamp(34px, 5vw, 52px); }

.ticks { display: grid; gap: 12px; margin-block: 22px 26px; }
.ticks li { display: flex; align-items: flex-start; gap: 11px; font-size: .97rem; }
.ticks .ic { inline-size: 19px; block-size: 19px; flex: none; margin-block-start: 4px; color: var(--gold); stroke-width: 2; }

.note {
  display: flex; align-items: center; gap: 11px; justify-content: center;
  margin-block-start: 26px; font-size: .88rem; color: var(--mut);
}
.note .ic { inline-size: 17px; block-size: 17px; color: var(--gold); flex: none; }

/* ---------- 6. المحمّل وشريط التقدم ---------- */
.ldr {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center; background: var(--green);
  transition: opacity .5s var(--e), visibility .5s;
}
.ldr.done { opacity: 0; visibility: hidden; }
.ldr__mk { color: #fff; font-size: 64px; }
.ldr__mk .mk { animation: pulse 1.4s var(--e) infinite; }
.ldr__mk .mk__c { animation: cellOn 1.4s var(--e) infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .95 } 50% { transform: scale(1.07); opacity: 1 } }
@keyframes cellOn { 0%,100% { opacity: .18 } 50% { opacity: .45 } }

.prog {
  position: fixed; inset-block-start: 0; inset-inline-start: 0; z-index: 200;
  block-size: 2px; inline-size: 0; background: var(--gold);
  transition: inline-size .1s linear;
}

/* ---------- 7. الهيدر ---------- */
.hdr {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 150;
  background: rgba(247, 245, 240, 0);
  transition: background .4s var(--e), box-shadow .4s var(--e), border-color .4s var(--e);
  border-block-end: 1px solid transparent;
}
.hdr__in {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  min-block-size: var(--hdr-h);
}
.hdr.is-stuck {
  background: rgba(247, 245, 240, .92);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
          backdrop-filter: saturate(160%) blur(14px);
  border-block-end-color: var(--line);
  box-shadow: 0 1px 20px -14px rgba(15,61,51,.5);
}
/* كل الصفحات تبدأ ببنر داكن ⇒ الهيدر الشفاف يُعرض بالنسخة الفاتحة */
.hdr:not(.is-stuck) .lock,
.hdr:not(.is-stuck) .hdr__ln,
.hdr:not(.is-stuck) .lang,
.hdr:not(.is-stuck) .burger { color: #fff; }
.hdr:not(.is-stuck) .hdr__ln.is-on { color: #fff; }
.hdr:not(.is-stuck) .lock__tx em { color: var(--sage-2); }
.hdr:not(.is-stuck) .lang { border-color: rgba(255,255,255,.32); }
.hdr:not(.is-stuck) .burger { border-color: rgba(255,255,255,.28); }
.hdr:not(.is-stuck) .burger span { background: #fff; }
.hdr:not(.is-stuck) .hdr__cta { background: transparent; border-color: rgba(255,255,255,.42); color: #fff; }
.hdr:not(.is-stuck) .hdr__cta::before { background: #fff; }
.hdr:not(.is-stuck) .hdr__cta:hover { color: var(--green); }

/* اللوقو */
.lock { display: inline-flex; align-items: center; gap: 12px; color: var(--green); min-inline-size: 0; }
.lock__mk { font-size: 34px; }
.lock__tx { display: flex; flex-direction: column; line-height: 1.15; min-inline-size: 0; }
.lock__tx strong {
  font-family: var(--f-head); font-weight: 500; font-size: clamp(.92rem, .84rem + .32vw, 1.08rem);
  letter-spacing: 0; white-space: nowrap;
}
.lock__tx em {
  font-style: normal; font-size: .66rem; letter-spacing: .06em;
  color: var(--sage); white-space: nowrap; margin-block-start: 2px;
}
.lock--rev { color: #fff; }
.lock--rev .lock__tx em { color: var(--sage); }
.lock:hover .lock__mk { animation: markStep .6s var(--e); }
@keyframes markStep { 50% { transform: translate(-2px, -2px) } }
html[dir="ltr"] .lock:hover .lock__mk { animation: markStepL .6s var(--e); }
@keyframes markStepL { 50% { transform: translate(2px, -2px) } }

/* التنقل */
.hdr__nav ul { display: flex; align-items: center; gap: clamp(6px, 1.4vw, 22px); }
.hdr__ln {
  position: relative; display: block; padding: 10px 8px;
  font-family: var(--f-head); font-size: .93rem; font-weight: 400; color: var(--ink);
  transition: color .3s var(--e);
}
.hdr__ln::after {
  content: ""; position: absolute; inset-block-end: 4px; inset-inline-start: 8px;
  inline-size: 0; block-size: 2px; background: var(--gold);
  transition: inline-size .35s var(--e-out);
}
.hdr__ln:hover::after, .hdr__ln.is-on::after { inline-size: calc(100% - 16px); }
.hdr__ln.is-on { color: var(--green); font-weight: 500; }

.hdr__act { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.lang {
  display: inline-grid; place-items: center; min-inline-size: 44px; min-block-size: 40px;
  padding-inline: 10px; border: 1px solid rgba(15,61,51,.2); border-radius: var(--r);
  font-family: var(--f-head); font-size: .8rem; font-weight: 500; letter-spacing: .06em;
  transition: background .3s var(--e), color .3s var(--e), border-color .3s var(--e);
}
.lang:hover { background: var(--green); color: #fff !important; border-color: var(--green); }

.burger {
  display: none; inline-size: 46px; block-size: 46px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border: 1px solid rgba(15,61,51,.2); border-radius: var(--r);
}
.burger span {
  display: block; inline-size: 20px; block-size: 1.7px; background: var(--green);
  transition: transform .35s var(--e), opacity .25s var(--e), width .35s var(--e);
}
.burger span:nth-child(2) { inline-size: 14px; align-self: flex-end; margin-inline-end: 13px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.7px) rotate(-45deg); }

/* ---------- 8. القائمة الجانبية للجوال ---------- */
.dwr { position: fixed; inset: 0; z-index: 200; }
.dwr[hidden] { display: none; }
.dwr::before {
  content: ""; position: absolute; inset: 0; background: rgba(11,46,39,.5);
  opacity: 0; transition: opacity .4s var(--e);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
}
.dwr.is-open::before { opacity: 1; }
.dwr__pane {
  position: absolute; inset-block: 0; inset-inline-end: 0;
  inline-size: min(400px, 88vw); background: var(--green);
  display: flex; flex-direction: column;
  padding: 20px clamp(20px, 5vw, 32px) calc(24px + env(safe-area-inset-bottom));
  transform: translateX(var(--out, 100%));
  transition: transform .5s var(--e-out);
  overflow-y: auto; overscroll-behavior: contain;
}
html[dir="rtl"] .dwr__pane { --out: -100%; }
.dwr.is-open .dwr__pane { transform: translateX(0); }
.dwr__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-block-end: 26px; }
.dwr__x { inline-size: 44px; block-size: 44px; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.2); border-radius: var(--r); }
.dwr__x .ic { inline-size: 20px; block-size: 20px; }
.dwr__list { display: grid; gap: 2px; border-block-start: 1px solid rgba(255,255,255,.1); }
.dwr__list li { border-block-end: 1px solid rgba(255,255,255,.1); }
.dwr__ln {
  display: flex; align-items: center; gap: 14px; padding: 17px 4px;
  font-family: var(--f-head); font-size: 1.12rem; color: #fff;
  transition: gap .3s var(--e), color .3s var(--e);
}
.dwr__no { font-size: .68rem; color: var(--gold-l); letter-spacing: .1em; }
.dwr__ln:hover { gap: 20px; color: var(--sage-2); }
.dwr__ln.is-on { color: var(--gold-l); }
.dwr__foot { margin-block-start: auto; padding-block-start: 26px; display: grid; gap: 16px; }
.dwr__meta { display: grid; gap: 10px; }
.dwr__mi { display: flex; align-items: center; gap: 10px; color: var(--sage-2); font-size: .88rem; }
.dwr__mi .ic { inline-size: 17px; block-size: 17px; color: var(--gold-l); }
.dwr__lang {
  justify-self: start; padding: 8px 16px; border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--r); color: #fff; font-size: .84rem; font-family: var(--f-head);
}

/* ---------- 9. البنر الرئيسي ---------- */
.hero {
  position: relative; min-block-size: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-block: calc(var(--hdr-h) + 48px) 88px;
  background: var(--green-d); color: #fff; overflow: hidden; isolation: isolate;
}
.hero__cv { position: absolute; inset: 0; inline-size: 100%; block-size: 100%; z-index: 0; }
.hero__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 90% at var(--vx, 78%) 18%, rgba(47,97,85,.5) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(11,46,39,.42) 0%, rgba(11,46,39,.72) 62%, var(--green-d) 100%);
}
html[dir="ltr"] .hero__veil { --vx: 22%; }
.hero__in { position: relative; z-index: 2; max-width: 940px; }
.hero__eb { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-head); font-size: .78rem; letter-spacing: .14em; color: var(--sage-2); margin-block-end: 22px; opacity: 0; animation: fadeUp .8s var(--e-out) .25s forwards; }
.hero__mk { font-size: 15px; color: var(--gold-l); }
.hero__t { color: #fff; margin-block-end: 22px; font-weight: 400; }
.hw { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hw > span {
  display: inline-block; transform: translateY(105%);
  animation: wordUp .9s var(--e-out) forwards;
  animation-delay: calc(.35s + var(--i) * .12s);
}
.hw--hl > span {
  color: var(--gold-l); position: relative;
  padding-inline: .1em;
}
.hw--hl > span::after {
  content: ""; position: absolute; inset-inline: 0; inset-block-end: .06em;
  block-size: .09em; background: var(--gold); transform: scaleX(0); transform-origin: var(--to, right);
  animation: lineIn .7s var(--e-out) 1.15s forwards;
}
html[dir="ltr"] .hw--hl > span::after { --to: left; }
@keyframes wordUp { to { transform: translateY(0) } }
@keyframes lineIn { to { transform: scaleX(1) } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px) } to { opacity: 1; transform: none } }

.hero__rot {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-head); font-size: clamp(1rem, .9rem + .5vw, 1.3rem);
  color: var(--sage-2); min-block-size: 34px; margin-block-end: 20px;
  opacity: 0; animation: fadeUp .8s var(--e-out) 1s forwards;
}
.hero__rotbar { inline-size: 3px; block-size: 22px; background: var(--gold); flex: none; }
#heroRot { transition: opacity .35s var(--e), transform .35s var(--e); }
#heroRot.out { opacity: 0; transform: translateY(-8px); }

.hero__x {
  max-width: 620px; color: #c6d6d1; font-size: clamp(1rem, .95rem + .28vw, 1.11rem);
  margin-block-end: 32px; opacity: 0; animation: fadeUp .8s var(--e-out) 1.1s forwards;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; opacity: 0; animation: fadeUp .8s var(--e-out) 1.2s forwards; }
.hero__note {
  display: flex; align-items: center; gap: 10px; margin-block-start: 26px;
  font-size: .84rem; color: #9fb6b0; opacity: 0; animation: fadeUp .8s var(--e-out) 1.35s forwards;
}
.hero__note .ic { inline-size: 16px; block-size: 16px; color: var(--sage); flex: none; }

.hero__sc {
  position: absolute; inset-block-end: 26px; inset-inline-start: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--f-head); font-size: .68rem; letter-spacing: .16em; color: rgba(255,255,255,.5);
  opacity: 0; animation: fadeUp .8s var(--e-out) 1.6s forwards;
}
.hero__sc i { display: block; inline-size: 1px; block-size: 34px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.6)); }
.hero__sc i::after { content: ""; display: block; inline-size: 5px; block-size: 5px; background: var(--gold); margin-inline-start: -2px; animation: scDot 2s var(--e) infinite; }
@keyframes scDot { 0% { transform: translateY(-30px); opacity: 0 } 40% { opacity: 1 } 100% { transform: translateY(4px); opacity: 0 } }

/* ---------- 10. شريط الإحصائيات ---------- */
.stats { background: var(--green); position: relative; z-index: 3; }
.stats__in {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-inline-start: 1px solid rgba(255,255,255,.1);
}
.stat {
  padding: clamp(26px, 4vw, 42px) clamp(14px, 2vw, 28px);
  border-inline-end: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; align-items: flex-start;
  position: relative; overflow: hidden;
}
.stat::before {
  content: ""; position: absolute; inset-block-start: 0; inset-inline-start: 0;
  inline-size: 100%; block-size: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: var(--to, right); transition: transform .6s var(--e-out);
}
html[dir="ltr"] .stat::before { --to: left; }
.stat.in::before { transform: scaleX(1); }
.stat__v, .stat__s {
  font-family: var(--f-head); font-size: clamp(1.9rem, 1.3rem + 2.2vw, 3.05rem);
  font-weight: 500; color: #fff; line-height: 1;
}
.stat__s { color: var(--gold-l); }
.stat__l { font-size: .84rem; color: #a9c0ba; margin-block-start: 12px; line-height: 1.55; }
.stat__v + .stat__s { margin-inline-start: 2px; }
.stat { flex-direction: row; flex-wrap: wrap; align-items: baseline; }
.stat__l { flex-basis: 100%; }

/* ---------- 11. قسم التعريف ---------- */
.intro__in { display: grid; grid-template-columns: 1.25fr .85fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.intro__art { position: relative; }
.mgrid {
  /* ltr إلزامي: يحافظ على اتجاه القطر في الرمز الرسمي دون عكسه */
  direction: ltr;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  aspect-ratio: 1; max-inline-size: 400px; margin-inline: auto;
}
.mgrid span {
  background: var(--mist); border-radius: 2px; position: relative;
  animation: cellIdle 5s var(--e) infinite;
  animation-delay: calc(var(--i) * .18s);
}
.mgrid span:nth-child(3), .mgrid span:nth-child(5), .mgrid span:nth-child(7) { background: var(--green); }
@keyframes cellIdle { 0%,100% { transform: scale(1) } 45% { transform: scale(.93) } }
.mgrid__cap {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  margin-block-start: 22px; color: var(--mut);
}
.mgrid__cap strong { font-family: var(--f-head); font-size: 1.6rem; color: var(--gold-t); }
.mgrid__cap span { font-size: .82rem; letter-spacing: .04em; }

/* ---------- 12. المحاور ---------- */
.pils { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.2vw, 26px); }
.pil {
  position: relative; background: var(--white); border: 1px solid var(--line-2);
  border-radius: var(--r-l); padding: clamp(26px, 3.4vw, 40px);
  overflow: hidden; transition: transform .45s var(--e), box-shadow .45s var(--e), border-color .45s var(--e);
}
.pil::after {
  content: ""; position: absolute; inset-block-start: 0; inset-inline-end: 0;
  inline-size: 52px; block-size: 52px; background: var(--mist);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  transition: background .45s var(--e), transform .45s var(--e);
}
html[dir="ltr"] .pil::after { inset-inline-end: auto; inset-inline-start: 0; clip-path: polygon(0 0, 100% 0, 0 100%); }
.pil:hover { transform: translateY(-5px); box-shadow: var(--sh-l); border-color: var(--sage-2); }
.pil:hover::after { background: var(--gold); }
.pil__no { font-family: var(--f-head); font-size: .8rem; color: var(--gold-t); letter-spacing: .1em; }
.pil__ic {
  display: grid; place-items: center; inline-size: 56px; block-size: 56px;
  border: 1px solid var(--mist); border-radius: var(--r); color: var(--green);
  margin-block: 18px 20px; transition: background .4s var(--e), color .4s var(--e), border-color .4s var(--e);
}
.pil__ic .ic { inline-size: 26px; block-size: 26px; }
.pil:hover .pil__ic { background: var(--green); color: #fff; border-color: var(--green); }
.pil__t { margin-block-end: 12px; }
.pil__d { color: var(--mut); font-size: .96rem; margin-block-end: 20px; }
.pil__l { display: grid; gap: 9px; padding-block-start: 18px; border-block-start: 1px solid var(--line-2); }
.pil__l li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: #2f423d; }
.pil__l .ic { inline-size: 16px; block-size: 16px; color: var(--sage); flex: none; stroke-width: 2.2; }
.pil__go {
  position: absolute; inset-block-end: 22px; inset-inline-end: 22px;
  inline-size: 44px; block-size: 44px; display: grid; place-items: center;
  border-radius: 50%; color: var(--green); opacity: 0; transform: translateY(6px);
  transition: opacity .35s var(--e), transform .35s var(--e), background .35s var(--e);
}
.pil:hover .pil__go { opacity: 1; transform: none; background: var(--mist-2); }
.pil__go .ic { inline-size: 20px; block-size: 20px; }

/* ---------- 13. المسار (المنهجية) ---------- */
.mpath { position: relative; padding-block-start: 8px; }
.mpath__rail {
  position: absolute; inset-block-start: 26px; inset-inline: 6%;
  block-size: 2px; background: rgba(255,255,255,.14);
}
.mpath__fill {
  display: block; block-size: 100%; inline-size: 0%;
  background: linear-gradient(to var(--to, left), var(--gold), var(--gold-l));
  transition: inline-size .25s linear;
}
html[dir="ltr"] .mpath__fill { --to: right; }
.mpath__list { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(12px, 1.6vw, 22px); }
.mst { position: relative; padding-block-start: 62px; }
.mst__dot {
  position: absolute; inset-block-start: 15px; inset-inline-start: 0;
  inline-size: 24px; block-size: 24px; display: grid; place-items: center;
  background: var(--green); border: 1px solid rgba(255,255,255,.22); border-radius: 3px;
  transition: background .4s var(--e), border-color .4s var(--e), transform .4s var(--e);
}
.mst__dot i { inline-size: 8px; block-size: 8px; background: rgba(255,255,255,.3); transition: background .4s var(--e); }
.mst.on .mst__dot { background: var(--gold); border-color: var(--gold); transform: scale(1.12); }
.mst.on .mst__dot i { background: #fff; }
.mst__no { font-family: var(--f-head); font-size: .78rem; letter-spacing: .1em; color: var(--gold-l); }
.mst__t { color: #fff; margin-block: 8px 10px; }
.mst__d { font-size: .92rem; color: #a9c0ba; line-height: 1.75; }
.mst__o {
  display: flex; align-items: flex-start; gap: 9px; margin-block-start: 14px;
  padding-block-start: 14px; border-block-start: 1px solid rgba(255,255,255,.1);
  font-size: .81rem; color: var(--sage);
}
.mst__o .ic { inline-size: 15px; block-size: 15px; flex: none; margin-block-start: 3px; color: var(--gold-l); }

/* ---------- 14. شريط القطاعات المتحرك ---------- */
.mq { overflow: hidden; -webkit-mask-image: linear-gradient(to left, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to left, transparent, #000 8%, #000 92%, transparent); }
.mq__track { display: flex; inline-size: max-content; animation: mqRun 44s linear infinite; }
html[dir="rtl"] .mq__track { animation-name: mqRunRtl; }
@keyframes mqRun { to { transform: translateX(-50%) } }
@keyframes mqRunRtl { to { transform: translateX(50%) } }
.mq:hover .mq__track { animation-play-state: paused; }
.sect {
  display: inline-flex; align-items: center; gap: 12px; flex: none;
  margin-inline-end: 14px; padding: 15px 24px;
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r);
  font-family: var(--f-head); font-size: .92rem; color: var(--green); white-space: nowrap;
  transition: border-color .3s var(--e), box-shadow .3s var(--e);
}
.sect i { display: grid; place-items: center; color: var(--sage); }
.sect .ic { inline-size: 20px; block-size: 20px; }
.sect:hover { border-color: var(--sage); box-shadow: var(--sh); }

/* ---------- 15. لماذا نحن ---------- */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 22px); }
.why__c {
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-l);
  padding: clamp(24px, 3vw, 34px); position: relative; overflow: hidden;
  transition: transform .4s var(--e), box-shadow .4s var(--e);
}
.why__c::before {
  content: ""; position: absolute; inset-block-end: 0; inset-inline-start: 0;
  inline-size: 100%; block-size: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: var(--to, right); transition: transform .45s var(--e-out);
}
html[dir="ltr"] .why__c::before { --to: left; }
.why__c:hover { transform: translateY(-4px); box-shadow: var(--sh-l); }
.why__c:hover::before { transform: scaleX(1); }
.why__ic { display: grid; place-items: center; inline-size: 46px; block-size: 46px; background: var(--mist-2); border-radius: var(--r); color: var(--green); margin-block-end: 18px; }
.why__ic .ic { inline-size: 22px; block-size: 22px; }
.why__c h3 { margin-block-end: 10px; }
.why__c p { font-size: .93rem; color: var(--mut); }

/* ---------- 16. الباقات ---------- */
.pks { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.8vw, 20px); align-items: stretch; }
.pk {
  position: relative; background: var(--white); border: 1px solid var(--line-2);
  border-radius: var(--r-l); padding: clamp(24px, 2.6vw, 32px);
  display: flex; flex-direction: column; block-size: 100%;
  transition: transform .4s var(--e), box-shadow .4s var(--e), border-color .4s var(--e);
}
.pk:hover { transform: translateY(-5px); box-shadow: var(--sh-l); border-color: var(--sage-2); }
.pk--hot { border-color: var(--gold); box-shadow: 0 18px 50px -32px rgba(201,138,46,.7); }
.pk--hot::before {
  content: ""; position: absolute; inset: -1px; border-radius: var(--r-l);
  border: 1px solid var(--gold); pointer-events: none;
}
.pk__badge {
  position: absolute; inset-block-start: -12px; inset-inline-start: 50%;
  transform: translateX(var(--tx, 50%));
  background: var(--gold-t); color: #fff; font-family: var(--f-head);
  font-size: .72rem; letter-spacing: .06em; padding: 6px 16px; border-radius: 40px; white-space: nowrap;
}
html[dir="ltr"] .pk__badge { --tx: -50%; }
.pk__n { font-size: clamp(1.2rem, 1.05rem + .5vw, 1.5rem); margin-block-end: 6px; }
.pk__for { font-size: .82rem; color: var(--mut-2); margin-block-end: 18px; }
.pk__p { display: flex; align-items: baseline; gap: 7px; padding-block: 14px; border-block: 1px solid var(--line-2); }
.pk__p span { font-family: var(--f-head); font-size: clamp(1.9rem, 1.5rem + 1.3vw, 2.5rem); font-weight: 500; color: var(--green); line-height: 1; }
.pk__p em { font-style: normal; font-size: .9rem; color: var(--gold-t); font-family: var(--f-head); }
.pk__pitch, .pk__sub { font-size: .87rem; color: var(--mut); margin-block-start: 12px; }
.pk__l { display: grid; gap: 11px; margin-block: 20px; flex: 1; }
.pk__l li { display: flex; align-items: flex-start; gap: 10px; font-size: .89rem; line-height: 1.65; }
.pk__l .ic { inline-size: 16px; block-size: 16px; flex: none; margin-block-start: 4px; color: var(--sage); stroke-width: 2.2; }
.pk--hot .pk__l .ic { color: var(--gold); }
.pk__meta { display: grid; gap: 10px; padding-block: 16px; border-block-start: 1px solid var(--line-2); margin-block-end: 18px; }
.pk__meta div { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.pk__meta dt { font-size: .78rem; color: var(--mut-2); }
.pk__meta dd { font-size: .84rem; font-family: var(--f-head); color: var(--green); text-align: end; }

/* البطاقات المصغّرة بالرئيسية: أسطر متساوية والزر على مستوى واحد مهما اختلف المحتوى */
.pks--mini .pk { text-align: start; }
.pks--mini .pk__n { min-block-size: 1.35em; }
.pks--mini .pk__for { min-block-size: 3em; display: flex; align-items: flex-start; }
.pks--mini .pk__pitch { flex: 1 1 auto; min-block-size: 3.4em; margin-block-end: 20px; }
.pks--mini .btn { margin-block-start: auto; }
/* البطاقات الكاملة: قائمة الميزات تمتصّ الفرق فيبقى الزر بالأسفل */
.pk--full .pk__hd { min-block-size: 0; }
.pk--full .pk__n { min-block-size: 1.35em; }
.pk--full .pk__for { min-block-size: 3em; display: flex; align-items: flex-start; }
.pk--full .btn { margin-block-start: auto; }

/* جدول المقارنة — تمرير أفقي محصور + عمود أول ثابت */
.cmp-hint {
  display: none; align-items: center; gap: 9px; justify-content: center;
  margin-block-end: 12px; font-size: .82rem; color: var(--mut);
}
.cmp-hint .ic { inline-size: 16px; block-size: 16px; color: var(--gold); animation: hintSwipe 1.9s var(--e) infinite; }
@keyframes hintSwipe { 0%,100% { transform: translateX(0) } 50% { transform: translateX(6px) } }

.cmp-wrap {
  overflow-x: auto; overflow-y: hidden;
  overscroll-behavior-x: contain; overscroll-behavior-y: auto;
  border: 1px solid var(--line-2); border-radius: var(--r-l); background: var(--white);
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}
.cmp { min-inline-size: 660px; font-size: .88rem; }
.cmp th, .cmp td { padding: 15px 16px; text-align: center; border-block-end: 1px solid var(--line-2); }
.cmp thead th { background: var(--green); color: #fff; font-family: var(--f-head); font-weight: 500; font-size: .9rem; }
.cmp thead th:first-child { text-align: start; }
.cmp tbody th { text-align: start; font-weight: 400; color: #2f423d; background: var(--mist-2); font-size: .86rem; }
.cmp tbody tr:nth-child(even) th { background: #e6ecea; }
.cmp tbody tr:hover td, .cmp tbody tr:hover th { background: var(--sand); }
/* تثبيت عمود البنود أثناء التمرير الأفقي */
.cmp thead th:first-child, .cmp tbody th {
  position: sticky; inset-inline-start: 0; z-index: 2;
  min-inline-size: 168px;
  box-shadow: 1px 0 0 var(--line-2);
}
html[dir="rtl"] .cmp thead th:first-child, html[dir="rtl"] .cmp tbody th { box-shadow: -1px 0 0 var(--line-2); }
.cmp thead th:first-child { z-index: 3; }
.cmp tbody tr:hover th { background: var(--sand); }
.cmp .yes .ic { inline-size: 18px; block-size: 18px; color: var(--green); stroke-width: 2.4; margin-inline: auto; }
.cmp .no .ic { inline-size: 16px; block-size: 16px; color: #c8cfcd; margin-inline: auto; }
.cmp tbody tr:first-child td { font-family: var(--f-head); font-size: 1.05rem; color: var(--green); font-weight: 500; }

/* ---------- 17. باني الباقة المخصصة ---------- */
.bld {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-l); padding: clamp(24px, 3.4vw, 46px);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.bld__top { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-end; margin-block-end: 30px; }
.bld__lbl { display: block; font-size: .76rem; letter-spacing: .12em; color: var(--sage); margin-block-end: 8px; text-transform: uppercase; }
.bld__v { font-family: var(--f-head); font-weight: 500; color: #fff; font-size: clamp(2rem, 1.4rem + 2.4vw, 3.1rem); line-height: 1; display: flex; align-items: baseline; gap: 8px; }
.bld__v em { font-style: normal; font-size: .95rem; color: var(--gold-l); }
.bld__tier { text-align: end; }
html[dir="ltr"] .bld__tier { text-align: start; }
.bld__tier strong { display: block; font-family: var(--f-head); font-weight: 500; color: var(--gold-l); font-size: 1.15rem; }
.bld__tier small { display: block; color: #a9c0ba; font-size: .82rem; margin-block-start: 4px; }

.rng { position: relative; padding-block: 8px 4px; }
.rng__track { position: relative; block-size: 6px; background: rgba(255,255,255,.14); border-radius: 40px; }
.rng__fill { position: absolute; inset-block: 0; inset-inline-start: 0; inline-size: 0%; background: linear-gradient(to var(--to, left), var(--gold-d), var(--gold-l)); border-radius: 40px; }
html[dir="ltr"] .rng__fill { --to: right; }
.rng__thumb {
  position: absolute; inset-block-start: 50%; inset-inline-start: 0;
  inline-size: 26px; block-size: 26px; margin-inline-start: -13px; margin-block-start: -13px;
  background: #fff; border: 3px solid var(--gold); border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,.3); pointer-events: none;
  transition: transform .18s var(--e);
}
.rng__in {
  position: absolute; inset-block-start: 0; inset-inline: 0; inline-size: 100%; block-size: 44px;
  margin: 0; opacity: 0; cursor: grab; -webkit-appearance: none; appearance: none; background: none;
}
.rng__in:active { cursor: grabbing; }
.rng__in::-webkit-slider-thumb { -webkit-appearance: none; inline-size: 30px; block-size: 44px; }
.rng__in::-moz-range-thumb { inline-size: 30px; block-size: 44px; border: 0; }
.rng__in:focus-visible ~ .rng__track .rng__thumb,
.rng:focus-within .rng__thumb { transform: scale(1.16); }
.rng__ends { display: flex; justify-content: space-between; margin-block-start: 16px; font-size: .78rem; color: var(--sage); }

.bld__cnt { margin-block: 30px 16px; display: flex; align-items: baseline; gap: 8px; color: #cfe0db; font-size: .9rem; }
.bld__cnt strong { font-family: var(--f-head); font-size: 1.7rem; color: var(--gold-l); }
.bld__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.bs {
  display: flex; align-items: center; gap: 12px; padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r);
  background: rgba(255,255,255,.03); color: #93aca5; font-size: .87rem;
  transition: background .35s var(--e), color .35s var(--e), border-color .35s var(--e), transform .35s var(--e);
}
.bs__i { position: relative; inline-size: 20px; block-size: 20px; flex: none; }
.bs__i .ic { position: absolute; inset: 0; inline-size: 20px; block-size: 20px; transition: opacity .3s var(--e); }
.bs__i .ic:first-child { opacity: 0; color: var(--gold-l); stroke-width: 2.4; }
.bs__i .ic:last-child { opacity: 1; color: #58706a; }
.bs__t { flex: 1; line-height: 1.5; }
.bs__m { font-size: .72rem; color: #58706a; flex: none; }
.bs.on {
  background: rgba(201,138,46,.1); border-color: rgba(201,138,46,.42); color: #fff;
}
.bs.on .bs__i .ic:first-child { opacity: 1; }
.bs.on .bs__i .ic:last-child { opacity: 0; }
.bs.on .bs__m { color: var(--gold-l); }
.bs.just { transform: translateY(-3px); }
.bld__act { margin-block-start: 30px; display: flex; justify-content: center; }
.bld__note { margin-block-start: 18px; text-align: center; font-size: .8rem; color: #9cb5b0; }

/* ---------- 18. بنر الصفحات الداخلية ---------- */
.phero {
  position: relative; padding-block: calc(var(--hdr-h) + clamp(56px, 8vw, 104px)) clamp(56px, 8vw, 96px);
  background: var(--green); color: #fff; overflow: hidden; isolation: isolate;
}
.phero--sm { padding-block: calc(var(--hdr-h) + clamp(46px, 6vw, 78px)) clamp(44px, 6vw, 74px); }
.phero__bg { position: absolute; inset: 0; z-index: -1; }
.phero__bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(90% 120% at var(--mx, 85%) 10%, #000 0%, transparent 72%);
          mask-image: radial-gradient(90% 120% at var(--mx, 85%) 10%, #000 0%, transparent 72%);
}
html[dir="ltr"] .phero__bg::before { --mx: 15%; }
.phero__bg::after {
  content: ""; position: absolute; inset-block-start: -22%; inset-inline-end: -8%;
  inline-size: 460px; block-size: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,97,85,.6) 0%, transparent 65%);
}
.phero__in { max-width: 900px; }
.phero h1 { color: #fff; margin-block-end: 18px; }
.phero__x { color: #bcd0ca; font-size: clamp(1rem, .95rem + .3vw, 1.12rem); max-width: 720px; }
.phero__upd { display: inline-flex; align-items: center; gap: 9px; margin-block-start: 20px; font-size: .82rem; color: var(--sage); }
.phero__upd .ic { inline-size: 16px; block-size: 16px; }
.phero__jump { display: flex; flex-wrap: wrap; gap: 10px; margin-block-start: 32px; }
.phero__jump a {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px;
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--r);
  font-size: .86rem; color: #dbe8e5; transition: background .3s var(--e), border-color .3s var(--e), color .3s var(--e);
}
.phero__jump .ic { inline-size: 17px; block-size: 17px; color: var(--gold-l); }
.phero__jump a:hover { background: rgba(255,255,255,.1); border-color: var(--sage); color: #fff; }

/* ---------- 19. صفحة الخدمات ---------- */
.sgrp { margin-block-end: clamp(56px, 8vw, 96px); }
.sgrp:last-child { margin-block-end: 0; }
.sgrp__h {
  display: flex; align-items: center; gap: clamp(16px, 2.4vw, 28px);
  padding-block-end: 24px; margin-block-end: 30px; border-block-end: 1px solid var(--line);
}
.sgrp__no { font-family: var(--f-head); font-size: clamp(2rem, 1.4rem + 2.2vw, 3.2rem); color: #bccdc7; line-height: 1; flex: none; }
.sgrp__h h2 { font-size: clamp(1.4rem, 1.15rem + 1.1vw, 2rem); margin-block-end: 6px; }
.sgrp__h p { color: var(--mut); font-size: .95rem; }
.sgrp__ic { margin-inline-start: auto; display: grid; place-items: center; inline-size: 62px; block-size: 62px; background: var(--green); color: #fff; border-radius: var(--r); flex: none; }
.sgrp__ic .ic { inline-size: 28px; block-size: 28px; }

.svcs { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.svc {
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-l);
  padding: clamp(22px, 2.6vw, 30px); display: flex; flex-direction: column;
  transition: transform .4s var(--e), box-shadow .4s var(--e), border-color .4s var(--e);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--sh-l); border-color: var(--sage-2); }
.svc__hd { display: flex; align-items: center; justify-content: space-between; margin-block-end: 18px; }
.svc__ic { display: grid; place-items: center; inline-size: 48px; block-size: 48px; background: var(--mist-2); border-radius: var(--r); color: var(--green); }
.svc__ic .ic { inline-size: 23px; block-size: 23px; }
.svc:hover .svc__ic { background: var(--green); color: #fff; }
.svc__no { font-family: var(--f-head); font-size: 1.6rem; color: #bccdc7; line-height: 1; }
.svc__t { margin-block-end: 10px; }
.svc__d { font-size: .92rem; color: var(--mut); margin-block-end: 18px; }
.svc__l { display: grid; gap: 9px; padding-block: 16px; border-block-start: 1px solid var(--line-2); flex: 1; }
.svc__l li { display: flex; align-items: flex-start; gap: 9px; font-size: .86rem; line-height: 1.6; }
.svc__l .ic { inline-size: 15px; block-size: 15px; flex: none; margin-block-start: 4px; color: var(--sage); stroke-width: 2.3; }
.svc__meta { display: grid; gap: 9px; padding-block: 15px; border-block-start: 1px solid var(--line-2); margin-block-end: 16px; }
.svc__meta div { display: grid; gap: 3px; }
.svc__meta dt { font-size: .72rem; letter-spacing: .08em; color: var(--mut-2); text-transform: uppercase; }
.svc__meta dd { font-size: .85rem; color: #2f423d; }

.delv { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.delv li {
  display: flex; align-items: flex-start; gap: 12px; padding: 18px 20px;
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r);
  font-size: .92rem; transition: border-color .3s var(--e), transform .3s var(--e);
}
.delv li:hover { border-color: var(--sage); transform: translateY(-2px); }
.delv .ic { inline-size: 19px; block-size: 19px; flex: none; margin-block-start: 3px; color: var(--gold); }

/* ---------- 20. صفحة من نحن ---------- */
.story { display: grid; grid-template-columns: 1.35fr .8fr; gap: clamp(36px, 5vw, 68px); align-items: start; }
.story__side { display: grid; gap: 14px; position: sticky; inset-block-start: calc(var(--hdr-h) + 20px); }
.vcard { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-l); padding: 26px; transition: box-shadow .4s var(--e); }
.vcard:hover { box-shadow: var(--sh); }
.vcard__ic { display: grid; place-items: center; inline-size: 42px; block-size: 42px; background: var(--mist-2); color: var(--green); border-radius: var(--r); margin-block-end: 14px; }
.vcard__ic .ic { inline-size: 21px; block-size: 21px; }
.vcard h3 { margin-block-end: 8px; }
.vcard p { font-size: .91rem; color: var(--mut); }
.vcard--gold { background: var(--green); border-color: var(--green); }
.vcard--gold h3 { color: #fff; }
.vcard--gold p { color: #b9cdc7; }
.vcard--gold .vcard__ic { background: rgba(255,255,255,.1); color: var(--gold-l); }

.vals { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 22px); }
.val {
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-l);
  padding: clamp(24px, 3vw, 32px); position: relative; overflow: hidden;
  transition: transform .4s var(--e), box-shadow .4s var(--e);
}
.val:hover { transform: translateY(-4px); box-shadow: var(--sh-l); }
.val__no {
  position: absolute; inset-block-start: 14px; inset-inline-end: 18px;
  font-family: var(--f-head); font-size: 2.6rem; color: #ccdbd5; line-height: 1;
  transition: color .4s var(--e);
}
.val:hover .val__no { color: var(--sand-2); }
.val h3 { margin-block-end: 10px; position: relative; }
.val p { font-size: .92rem; color: var(--mut); position: relative; }

.stds { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 20px); }
.std { padding: clamp(22px, 2.6vw, 28px); background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r); }
.std h3 { display: flex; align-items: flex-start; gap: 10px; font-size: 1.02rem; margin-block-end: 10px; }
.std .ic { inline-size: 18px; block-size: 18px; flex: none; margin-block-start: 4px; color: var(--gold); stroke-width: 2.2; }
.std p { font-size: .9rem; color: var(--mut); }

/* ---------- 21. صفحة التواصل ---------- */
.ct { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 4vw, 56px); align-items: start; }
.ct__t { font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem); margin-block-end: 8px; }
.ct__x { color: var(--mut); font-size: .94rem; margin-block-end: 26px; }
.ct__form { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-l); padding: clamp(24px, 3.4vw, 40px); box-shadow: var(--sh); }

.fld { margin-block-end: 18px; }
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fld label { display: block; font-size: .86rem; font-family: var(--f-head); color: #2f423d; margin-block-end: 8px; }
.fld label b { color: #b1421f; }
.fld input[type="text"], .fld input[type="tel"], .fld input[type="email"], .fld textarea, .sel select {
  inline-size: 100%; min-block-size: 52px; padding: 14px 16px;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r);
  font-size: 16px; color: var(--ink);
  transition: border-color .3s var(--e), background .3s var(--e), box-shadow .3s var(--e);
}
.fld textarea { min-block-size: 130px; resize: vertical; line-height: 1.7; }
.fld input::placeholder, .fld textarea::placeholder { color: #72807b; }
.fld input:focus, .fld textarea:focus, .sel select:focus {
  outline: none; border-color: var(--sage); background: var(--white);
  box-shadow: 0 0 0 3px rgba(127,168,156,.18);
}
.fld.is-err input, .fld.is-err textarea, .fld.is-err select { border-color: #c0563f; background: #fdf6f4; }
.err { display: none; font-size: .78rem; color: #c0563f; margin-block-start: 6px; }
.fld.is-err .err { display: block; }

.sel { position: relative; }
.sel select { -webkit-appearance: none; appearance: none; padding-inline-end: 44px; cursor: pointer; }
.sel__c {
  position: absolute; inset-block-start: 50%; inset-inline-end: 15px;
  inline-size: 18px; block-size: 18px; transform: translateY(-50%);
  color: var(--mut-2); pointer-events: none;
  transition: transform .25s var(--e);
}
.sel select:focus ~ .sel__c { transform: translateY(-50%) scaleY(-1); }

.chk { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; font-size: .87rem; line-height: 1.6; }
.chk input { position: absolute; opacity: 0; inline-size: 1px; block-size: 1px; }
.chk__b {
  inline-size: 22px; block-size: 22px; flex: none; margin-block-start: 2px;
  border: 1px solid var(--line); border-radius: var(--r-s); background: var(--cream);
  display: grid; place-items: center; transition: background .25s var(--e), border-color .25s var(--e);
}
.chk__b .ic { inline-size: 14px; block-size: 14px; color: #fff; stroke-width: 3; opacity: 0; transform: scale(.6); transition: opacity .25s var(--e), transform .25s var(--e); }
.chk input:checked + .chk__b { background: var(--green); border-color: var(--green); }
.chk input:checked + .chk__b .ic { opacity: 1; transform: none; }
.chk input:focus-visible + .chk__b { outline: 2px solid var(--gold); outline-offset: 2px; }
.chk a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

.hp { position: absolute !important; inline-size: 1px; block-size: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.ct__ok { text-align: center; padding-block: 20px; }
.ct__okic { display: inline-grid; place-items: center; inline-size: 64px; block-size: 64px; background: var(--mist-2); border-radius: 50%; color: var(--green); margin-block-end: 18px; }
.ct__okic .ic { inline-size: 30px; block-size: 30px; stroke-width: 2.4; }
.ct__ok h3 { margin-block-end: 10px; }
.ct__ok p { color: var(--mut); font-size: .93rem; margin-block-end: 22px; }

.chs { display: grid; gap: 10px; margin-block-end: 24px; }
.ch {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r);
  transition: transform .35s var(--e), border-color .35s var(--e), box-shadow .35s var(--e);
}
.ch:hover { transform: translateY(-2px); border-color: var(--sage); box-shadow: var(--sh); }
.ch--static { cursor: default; }
.ch--static:hover { transform: none; border-color: var(--line-2); box-shadow: none; }
.ch__ic { display: grid; place-items: center; inline-size: 46px; block-size: 46px; background: var(--mist-2); border-radius: var(--r); color: var(--green); flex: none; }
.ch__ic .ic { inline-size: 22px; block-size: 22px; }
.ch--wa .ch__ic { background: #e8f6ec; color: #1f8a4c; }
.ch__b { display: grid; gap: 2px; flex: 1; min-inline-size: 0; }
.ch__b strong { font-family: var(--f-head); font-weight: 500; font-size: .95rem; color: var(--green); }
.ch__b em { font-style: normal; font-size: .85rem; color: var(--mut); word-break: break-word; }
.ch__go { inline-size: 18px; block-size: 18px; color: var(--mut-2); flex: none; transition: transform .3s var(--e); }
.ch:hover .ch__go { transform: translateX(var(--tx, -4px)); }
html[dir="ltr"] .ch:hover .ch__go { --tx: 4px; }
html[dir="rtl"] .ch:hover .ch__go { transform: scaleX(-1) translateX(4px); }

.ct__map { border: 1px solid var(--line-2); border-radius: var(--r-l); overflow: hidden; background: var(--white); }
.ct__map iframe { inline-size: 100%; block-size: 260px; border: 0; filter: grayscale(.35) contrast(1.05); }
.ct__map p { padding: 14px 18px; font-size: .85rem; color: var(--mut); }

/* ---------- 22. الصفحات النظامية ---------- */
.lgl { display: grid; grid-template-columns: 280px 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.lgl__toc { position: sticky; inset-block-start: calc(var(--hdr-h) + 20px); }
.lgl__toc h2 { font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; color: var(--mut-2); margin-block-end: 14px; }
.lgl__toc h3 { font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; color: var(--mut-2); margin-block: 26px 14px; }
.lgl__docs, .lgl__jump { display: grid; gap: 2px; }
.lgl__docs a, .lgl__jump a {
  display: block; padding: 10px 14px; border-radius: var(--r); font-size: .88rem; color: #2f423d;
  border-inline-start: 2px solid transparent;
  transition: background .25s var(--e), color .25s var(--e), border-color .25s var(--e);
}
.lgl__docs a:hover, .lgl__jump a:hover { background: var(--mist-2); color: var(--green); }
.lgl__docs a.is-on { background: var(--green); color: #fff; }
.lgl__jump a { font-size: .84rem; color: var(--mut); }
.lgl__jump a:hover { border-inline-start-color: var(--gold); }

.lgl__body { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-l); padding: clamp(24px, 3.6vw, 48px); }
.lgl__hi {
  display: flex; align-items: flex-start; gap: 13px; padding: 18px 20px; margin-block-end: 30px;
  background: #fbf4e8; border: 1px solid #ecd9b4; border-inline-start: 3px solid var(--gold);
  border-radius: var(--r); font-size: .93rem; color: #6b4c17; line-height: 1.7;
}
.lgl__hi .ic { inline-size: 21px; block-size: 21px; flex: none; margin-block-start: 3px; color: var(--gold-d); }
.lgl__s { margin-block-end: 34px; }
.lgl__s:last-of-type { margin-block-end: 0; }
.lgl__s h2 { display: flex; align-items: baseline; gap: 12px; font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem); margin-block-end: 14px; scroll-margin-block-start: calc(var(--hdr-h) + 20px); }
.lgl__s h2 .num { font-size: .8rem; color: var(--gold-t); letter-spacing: .08em; flex: none; }
.lgl__s p { color: #3a4a46; font-size: .95rem; margin-block-end: 12px; }
.lgl__ul { display: grid; gap: 11px; margin-block: 14px; }
.lgl__ul li { display: flex; align-items: flex-start; gap: 11px; font-size: .93rem; color: #3a4a46; line-height: 1.75; }
.lgl__ul .ic { inline-size: 16px; block-size: 16px; flex: none; margin-block-start: 5px; color: var(--sage); stroke-width: 2.2; }
.lgl__ct { margin-block-start: 34px; padding-block-start: 22px; border-block-start: 1px solid var(--line-2); font-size: .87rem; color: var(--mut); }
.lgl__ct a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 23. الأسئلة الشائعة ---------- */
.faq { display: grid; gap: 10px; }
.faq__i { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; transition: border-color .3s var(--e), box-shadow .3s var(--e); }
.faq__i[open] { border-color: var(--sage-2); box-shadow: var(--sh); }
.faq__i summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; cursor: pointer; list-style: none;
  font-family: var(--f-head); font-size: 1rem; color: var(--green);
}
.faq__i summary::-webkit-details-marker { display: none; }
.faq__i summary i { display: grid; place-items: center; inline-size: 30px; block-size: 30px; border: 1px solid var(--line); border-radius: var(--r-s); flex: none; transition: transform .35s var(--e), background .3s var(--e), color .3s var(--e); }
.faq__i summary i .ic { inline-size: 16px; block-size: 16px; }
.faq__i[open] summary i { transform: rotate(135deg); background: var(--green); color: #fff; border-color: var(--green); }
.faq__a { padding: 0 22px 22px; }
.faq__a p { color: var(--mut); font-size: .93rem; }

/* ---------- 24. شريط الدعوة ---------- */
.cta { position: relative; background: var(--green-d); color: #fff; overflow: hidden; padding-block: clamp(54px, 7vw, 86px); }
.cta__bg { position: absolute; inset: 0; }
.cta__bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta__bg::after {
  content: ""; position: absolute; inset-block-end: -40%; inset-inline-start: -6%;
  inline-size: 520px; block-size: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,138,46,.22) 0%, transparent 65%);
}
.cta__in { position: relative; display: grid; grid-template-columns: 1.4fr .6fr; gap: clamp(26px, 4vw, 52px); align-items: center; }
.cta__t { color: #fff; font-size: clamp(1.5rem, 1.15rem + 1.7vw, 2.4rem); margin-block-end: 14px; }
.cta__x { color: #b6cbc5; font-size: 1rem; max-width: 620px; }
.cta__act { display: grid; gap: 12px; }

/* ---------- 25. الفوتر ---------- */
.ftr { position: relative; background: var(--green); color: #b9cdc7; padding-block: clamp(48px, 6vw, 76px) 0; overflow: hidden; }
.ftr__grid-bg { position: absolute; inset: 0; pointer-events: none; }
.ftr__grid-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(100% 100% at 50% 100%, #000 0%, transparent 75%);
          mask-image: radial-gradient(100% 100% at 50% 100%, #000 0%, transparent 75%);
}
.ftr .shell { position: relative; }
.ftr__top { display: grid; grid-template-columns: 1.5fr repeat(3, .8fr) 1.1fr; gap: clamp(24px, 3vw, 44px); padding-block-end: 44px; }
.ftr__brand .lock { margin-block-end: 20px; }
.ftr__about { font-size: .9rem; line-height: 1.85; max-width: 340px; }
.ftr__soc { display: flex; gap: 10px; margin-block-start: 22px; }
.ftr__soc a {
  display: grid; place-items: center; inline-size: 44px; block-size: 44px;
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--r); color: #fff;
  transition: background .3s var(--e), border-color .3s var(--e), transform .3s var(--e);
}
.ftr__soc a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.ftr__soc .ic { inline-size: 20px; block-size: 20px; }
.ftr__col h3 { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-block-end: 18px; font-weight: 500; }
.ftr__col ul { display: grid; gap: 11px; }
.ftr__col a { font-size: .89rem; transition: color .25s var(--e), padding-inline-start .25s var(--e); }
.ftr__col a:hover { color: #fff; padding-inline-start: 5px; }
.ftr__cn li { display: flex; align-items: flex-start; gap: 10px; font-size: .87rem; line-height: 1.7; }
.ftr__cn .ic { inline-size: 17px; block-size: 17px; flex: none; margin-block-start: 4px; color: var(--sage); }
.ftr__vat { font-size: .8rem; color: #9cb5b0; padding-block-end: 20px; }
.ftr__bot {
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  padding-block: 22px; border-block-start: 1px solid rgba(255,255,255,.1); font-size: .82rem;
}
.ftr__credit a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; transition: color .25s var(--e); }
.ftr__credit a:hover { color: var(--gold-l); }

/* ---------- 26. زر واتساب العائم + شريط الكوكيز ---------- */
.wafab {
  position: fixed; inset-block-end: calc(20px + env(safe-area-inset-bottom)); inset-inline-end: 20px;
  z-index: 120; inline-size: 56px; block-size: 56px; border-radius: 50%;
  display: grid; place-items: center; background: #1f8a4c; color: #fff;
  box-shadow: 0 10px 30px -8px rgba(31,138,76,.6);
  transition: transform .35s var(--e);
}
.wafab:hover { transform: scale(1.08); }
.wafab .ic { inline-size: 28px; block-size: 28px; position: relative; z-index: 1; }
.wafab__p { position: absolute; inset: 0; border-radius: 50%; background: rgba(31,138,76,.45); animation: waPulse 2.6s var(--e) infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .7 } 70%,100% { transform: scale(1.7); opacity: 0 } }

.ckb {
  position: fixed; inset-block-end: 0; inset-inline: 0; z-index: 140;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: center;
  padding: 16px clamp(18px, 4vw, 40px) calc(16px + env(safe-area-inset-bottom));
  background: rgba(15,61,51,.97); color: #cfe0db; font-size: .86rem;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transform: translateY(100%); transition: transform .5s var(--e-out);
}
.ckb.show { transform: none; }
.ckb[hidden] { display: none; }
.ckb a { color: var(--gold-l); text-decoration: underline; text-underline-offset: 3px; }
.ckb .btn { --bg: #fff; --fg: var(--green); --bd: #fff; flex: none; }
.ckb .btn::before { background: var(--gold); }
.ckb .btn:hover { color: #fff; }

/* ---------- 27. صفحة 404 ---------- */
.nf { position: relative; min-block-size: 78svh; display: grid; place-items: center; background: var(--green); color: #fff; padding-block: calc(var(--hdr-h) + 60px) 80px; overflow: hidden; }
.nf__bg { position: absolute; inset: 0; }
.nf__bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 52px 52px;
}
.nf__in { position: relative; text-align: center; max-width: 620px; }
.nf__code { display: block; font-family: var(--f-head); font-size: clamp(4.5rem, 3rem + 8vw, 9rem); line-height: 1; color: rgba(255,255,255,.13); margin-block-end: -.15em; }
.nf h1 { color: #fff; margin-block-end: 14px; }
.nf p { color: #b6cbc5; margin-block-end: 30px; }
.nf__act { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- 28. حركة الظهور ---------- */
[data-reveal] {
  opacity: 0;
  transform: translate3d(var(--rx, 0), 20px, 0);
  transition:
    opacity .75s var(--e-out) calc(var(--d, 0) * 85ms),
    transform .75s var(--e-out) calc(var(--d, 0) * 85ms);
  will-change: opacity, transform;
}
html[dir="rtl"] [data-reveal] { --rx: 14px; }
html[dir="ltr"] [data-reveal] { --rx: -14px; }
[data-reveal].in { opacity: 1; transform: none; will-change: auto; }

/* ==========================================================================
   29. الاستجابة — 6 نقاط توقف
   ========================================================================== */
@media (max-width: 1180px) {
  .ftr__top { grid-template-columns: 1.4fr 1fr 1fr; row-gap: 38px; }
  .ftr__col--c { grid-column: span 2; }
  .svcs { grid-template-columns: repeat(2, 1fr); }
  .bld__list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  :root { --hdr-h: 70px; }
  .hdr__nav { display: none; }
  .burger { display: flex; }
  .hdr__cta { display: none; }
  .intro__in, .story, .ct, .cta__in { grid-template-columns: 1fr; }
  .story__side, .lgl__toc { position: static; }
  .story__side { grid-template-columns: repeat(2, 1fr); }
  .lgl { grid-template-columns: 1fr; }
  .lgl__toc { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-l); padding: 22px; }
  .lgl__jump { grid-template-columns: repeat(2, 1fr); }
  .mpath__list { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .mpath__rail { display: none; }
  .why, .vals, .stds { grid-template-columns: repeat(2, 1fr); }
  .pks { grid-template-columns: repeat(2, 1fr); }
  .cta__act { grid-auto-flow: column; justify-content: start; }
  .cta__act .btn { flex: 1; }
  .intro__art { order: -1; max-inline-size: 340px; margin-inline: auto; }
}

@media (max-width: 860px) {
  .stats__in { grid-template-columns: repeat(2, 1fr); }
  .stat { border-block-end: 1px solid rgba(255,255,255,.1); }
  .pils { grid-template-columns: 1fr; }
  .svcs { grid-template-columns: 1fr; }
  .delv { grid-template-columns: 1fr; }
  .sgrp__ic { display: none; }
  .lock__tx em { display: none; }
}

@media (max-width: 780px) {
  .cmp-hint { display: flex; }
  .cmp { min-inline-size: 620px; font-size: .84rem; }
  .cmp th, .cmp td { padding: 12px 12px; }
  .cmp thead th:first-child, .cmp tbody th { min-inline-size: 142px; }
}

@media (max-width: 700px) {
  body { font-size: 15.5px; line-height: 1.8; }
  .why, .vals, .stds, .story__side { grid-template-columns: 1fr; }
  .pks { grid-template-columns: 1fr; }
  .pk--hot { margin-block-start: 14px; }
  .bld__list { grid-template-columns: 1fr; }
  .fld-row { grid-template-columns: 1fr; gap: 0; }
  .mpath__list { grid-template-columns: 1fr; gap: 26px; }
  .mst { padding-block-start: 0; padding-inline-start: 44px; }
  .mst__dot { inset-block-start: 4px; }
  .mst::before {
    content: ""; position: absolute; inset-block: 30px -26px; inset-inline-start: 11px;
    inline-size: 2px; background: rgba(255,255,255,.14);
  }
  .mst:last-child::before { display: none; }
  .cta__act { grid-auto-flow: row; }
  .cta__act .btn { inline-size: 100%; }
  .ftr__top { grid-template-columns: 1fr 1fr; }
  .ftr__brand { grid-column: 1 / -1; }
  .ftr__col--c { grid-column: 1 / -1; }
  .ckb { flex-direction: column; align-items: stretch; text-align: center; }
  .ckb .btn { align-self: center; min-inline-size: 160px; }
  .phero__jump a span { font-size: .82rem; }
  .lgl__jump { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .lock__mk { font-size: 30px; }
  .lock__tx strong { font-size: .88rem; }
  .hero { min-block-size: auto; padding-block: calc(var(--hdr-h) + 56px) 72px; }
  .hero__cta .btn { inline-size: 100%; }
  .hero__sc { display: none; }
  .stats__in { grid-template-columns: 1fr; border-inline-start: 0; }
  .stat { border-inline-end: 0; padding-block: 24px; }
  .sgrp__h { flex-wrap: wrap; gap: 12px; }
  .sgrp__no { font-size: 2rem; }
  .bld__top { flex-direction: column; align-items: stretch; gap: 18px; }
  .bld__tier { text-align: start; }
  .nf__act .btn { inline-size: 100%; }
  .ftr__top { grid-template-columns: 1fr; }
  .wafab { inline-size: 52px; block-size: 52px; inset-inline-end: 16px; }
  .faq__i summary { padding: 16px 18px; font-size: .94rem; }
  .faq__a { padding: 0 18px 18px; }
}

@media (max-width: 400px) {
  /* الشاشات الضيقة: يُسمح لاسم العلامة بالالتفاف بدل دفع زر القائمة خارج الشاشة */
  .lock__tx strong { white-space: normal; font-size: .78rem; line-height: 1.22; }
  .lock__mk { font-size: 28px; }
  .lock { gap: 9px; }
}

@media (max-width: 380px) {
  .lock__tx strong { font-size: .74rem; }
  .lock__mk { font-size: 26px; }
  .lang { min-inline-size: 38px; padding-inline: 6px; font-size: .74rem; }
  .burger { inline-size: 40px; block-size: 40px; }
  .burger span { inline-size: 17px; }
  .burger span:nth-child(2) { inline-size: 12px; margin-inline-end: 11.5px; }
  .btn { padding: 13px 18px; font-size: .86rem; }
  .sect { padding: 13px 18px; font-size: .86rem; }
  .shell { padding-inline: 14px; }
}

@media (max-width: 1024px) and (orientation: landscape) {
  .hero { min-block-size: auto; padding-block: calc(var(--hdr-h) + 44px) 60px; }
}

/* الأجهزة اللمسية: إلغاء تأثيرات المرور */
@media (hover: none) {
  .pil:hover, .why__c:hover, .pk:hover, .svc:hover, .val:hover, .ch:hover, .delv li:hover { transform: none; box-shadow: none; }
  .pil__go { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
}

/* ---------- 30. تقليل الحركة ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hw > span { transform: none !important; }
  .hero__eb, .hero__rot, .hero__x, .hero__cta, .hero__note, .hero__sc { opacity: 1 !important; }
  .hw--hl > span::after { transform: scaleX(1) !important; }
  .mq__track { animation: none !important; }
}

/* ---------- 31. الطباعة الورقية ---------- */
@media print {
  .hdr, .dwr, .wafab, .ckb, .prog, .ldr, .cta, .hero__cv, .mq, .skip { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .sec { padding-block: 18pt; }
  .sec--dark, .phero, .ftr { background: #fff !important; color: #000 !important; }
  .sec--dark h1, .sec--dark h2, .sec--dark h3, .phero h1 { color: #000 !important; }
  a { text-decoration: underline; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
