/* ══════════════════════════════════════════════════════════════════
   إنابة المتكاملة — الموقع العام (صفحة الهبوط)
   نسخة ٢٠٢٦: هيرو سينمائي غامر، ترويسة كبسولية زجاجية، بطاقات
   بتأثير الضوء المتتبّع، شريط متحرك، وحركات فيزيائية ناعمة.
   كل الألوان من متغيّرات الهوية (تُحقن من الإعدادات).
   ══════════════════════════════════════════════════════════════════ */

body.site { background: var(--paper); overflow-x: hidden; }
body.site ::selection { background: rgba(var(--gold-rgb), .3); color: var(--brand-900); }
html { scroll-padding-top: 104px; }

/* ── شريط تقدّم التمرير + مؤشر مخصص (يُنشئها JS) ───────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  inset-inline: 0;
  height: 3px;
  z-index: 90;
  background: linear-gradient(90deg, var(--brand), var(--gold) 60%, #E8CE7A);
  transform: scaleX(var(--sp, 0));
  transform-origin: right;
  pointer-events: none;
}
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 95;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
body.has-cursor .cursor-dot, body.has-cursor .cursor-ring { opacity: 1; }
.cursor-dot { width: 7px; height: 7px; background: var(--gold); box-shadow: 0 0 12px rgba(var(--gold-rgb), .8); }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(var(--gold-rgb), .55);
  transition: opacity .3s var(--ease), width .28s var(--ease), height .28s var(--ease), border-color .28s var(--ease);
}
body.cur-hover .cursor-ring { width: 60px; height: 60px; border-color: rgba(var(--gold-rgb), .95); }
.cursor-aura {
  position: fixed;
  top: 0;
  left: 0;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(closest-side, rgba(var(--gold-rgb), .1), transparent 70%);
  mix-blend-mode: screen;
  will-change: transform;
}

/* ── الترويسة الكبسولية ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 14px;
  inset-inline: 0;
  z-index: 80;
}
.site-header .bar {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  height: 66px;
  padding-inline: 12px 22px;
  border-radius: 999px;
  background: rgba(38, 11, 15, .62);
  backdrop-filter: saturate(170%) blur(18px);
  -webkit-backdrop-filter: saturate(170%) blur(18px);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 10px 34px rgba(20, 4, 8, .3), inset 0 1px 0 rgba(255, 255, 255, .07);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), height .3s var(--ease);
}
.site-header.is-stuck .bar {
  height: 58px;
  background: rgba(38, 11, 15, .9);
  border-color: rgba(var(--gold-rgb), .22);
  box-shadow: 0 14px 44px rgba(20, 4, 8, .44), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.brand-lock { display: flex; align-items: center; gap: 11px; flex: none; }
.brand-lock img { height: 44px; width: auto; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .3)); }
.brand-lock .tx { display: grid; line-height: 1.25; }
.brand-lock .tx b { font-family: var(--font-display); font-size: 1.1rem; color: #fff; font-weight: 700; }
.brand-lock .tx span { font-size: 10px; letter-spacing: .14em; color: rgba(var(--gold-rgb), .9); font-family: var(--font-mono); }

.site-nav { display: flex; align-items: center; gap: 2px; margin-inline-start: auto; }
.site-nav a {
  padding: 8px 14px;
  border-radius: 99px;
  color: rgba(255, 255, 255, .78);
  font-size: var(--fs-base);
  font-weight: 500;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.site-nav a:hover { color: var(--gold); background: rgba(255, 255, 255, .08); }
.header-cta { display: flex; align-items: center; gap: 9px; flex: none; }
.site-header .btn-ghost {
  --btn-bg: rgba(255, 255, 255, .06);
  --btn-bd: rgba(255, 255, 255, .2);
  --btn-fg: rgba(255, 255, 255, .88);
}
.site-header .btn-ghost:hover { --btn-bg: rgba(255, 255, 255, .14); --btn-bd: rgba(255, 255, 255, .34); --btn-fg: #fff; }
.site-header .btn { border-radius: 99px; }
.nav-toggle { display: none; }

@media (max-width: 1024px) {
  .site-header .bar { height: 60px; gap: var(--sp-3); padding-inline: 10px 14px; }
  .site-nav {
    position: fixed;
    top: 88px;
    inset-inline: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: rgba(38, 11, 15, .96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, .45);
    opacity: 0;
    transform: translateY(-14px) scale(.98);
    visibility: hidden;
    transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
    margin: 0;
  }
  body.menu-open .site-nav { opacity: 1; transform: none; visibility: visible; }
  .site-nav a { padding: 13px 14px; border-radius: 12px; }
  .nav-toggle {
    display: grid; place-items: center;
    width: 42px; height: 42px;
    margin-inline-start: auto;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
    transition: background-color var(--dur) var(--ease);
  }
  .nav-toggle:hover { background: rgba(255, 255, 255, .14); }
  .header-cta .hide-mob { display: none; }
}

/* ── أزرار خاصة بالموقع ────────────────────────────────────────── */
.btn-gold {
  --btn-bg: linear-gradient(135deg, #DCB54A, var(--gold) 55%, #B08D1E);
  --btn-bd: #B08D1E;
  --btn-fg: #2A1A05;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(var(--gold-rgb), .26);
}
.btn-gold:hover {
  --btn-bg: linear-gradient(135deg, #E8CE7A, var(--gold) 60%, #C29F2B);
  --btn-bd: #C29F2B;
  box-shadow: 0 12px 32px rgba(var(--gold-rgb), .4);
}
.btn-gold::after {
  content: "";
  position: absolute;
  top: -10%;
  bottom: -10%;
  width: 38%;
  inset-inline-start: -55%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-18deg);
  transition: inset-inline-start .6s var(--ease);
  pointer-events: none;
}
.btn-gold:hover::after { inset-inline-start: 125%; }
.btn-glass {
  --btn-bg: rgba(255, 255, 255, .08);
  --btn-bd: rgba(255, 255, 255, .3);
  --btn-fg: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-glass:hover { --btn-bg: rgba(255, 255, 255, .16); --btn-bd: rgba(255, 255, 255, .55); --btn-fg: #fff; }

/* ── الهيرو السينمائي ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--brand-900);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(1100px 620px at 88% -8%, rgba(var(--accent2-rgb), .55), transparent 60%),
    radial-gradient(760px 520px at 4% 108%, rgba(var(--gold-rgb), .14), transparent 58%),
    linear-gradient(160deg, var(--brand-800) 0%, var(--brand-900) 55%, #2A070C 100%);
}
/* علامة مائية هندسية مستوحاة من القط العسيري */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.2'%3E%3Cpath d='M60 6 114 60 60 114 6 60z'/%3E%3Cpath d='M60 26 94 60 60 94 26 60z'/%3E%3Cpath d='M22 22h76v76H22z'/%3E%3Cpath d='M60 42 78 60 60 78 42 60z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  -webkit-mask-image: linear-gradient(to bottom, #000 40%, transparent 96%);
          mask-image: linear-gradient(to bottom, #000 40%, transparent 96%);
}
.hero-fx { position: absolute; inset: 0; z-index: -2; pointer-events: none; }
/* سُحب أورورا مضيئة تنساب ببطء — بألوان الهوية */
.aurora { position: absolute; border-radius: 50%; mix-blend-mode: screen; will-change: transform; }
.hero-fx .a1 {
  width: 64vw; height: 64vw;
  top: -30%; inset-inline-start: -16%;
  background: radial-gradient(circle at 42% 40%, rgba(var(--accent2-rgb), .55), rgba(154, 52, 40, .3) 44%, transparent 68%);
  filter: blur(56px);
  animation: aur1 26s ease-in-out infinite alternate;
}
.hero-fx .a2 {
  width: 48vw; height: 48vw;
  bottom: -32%; inset-inline-end: -10%;
  background: radial-gradient(circle at 56% 54%, rgba(var(--gold-rgb), .34), rgba(var(--accent2-rgb), .2) 46%, transparent 70%);
  filter: blur(66px);
  animation: aur2 34s ease-in-out infinite alternate;
}
.hero-fx .a3 {
  width: 40vw; height: 40vw;
  top: 4%; inset-inline-end: 14%;
  background: radial-gradient(circle at 50% 44%, rgba(238, 214, 140, .22), transparent 66%);
  filter: blur(52px);
  animation: aur3 21s ease-in-out infinite alternate;
}
.hero-fx .a4 { /* عمق عنابي خلف الشعار */
  width: 36vw; height: 36vw;
  bottom: 0%; inset-inline-start: 8%;
  background: radial-gradient(circle at 50% 50%, rgba(var(--brand-rgb), .9), rgba(84, 12, 24, .45) 52%, transparent 74%);
  filter: blur(46px);
  mix-blend-mode: normal;
  animation: aur2 29s ease-in-out infinite alternate-reverse;
}
@keyframes aur1 { to { transform: translate(7vw, 5vh) scale(1.14); } }
@keyframes aur2 { to { transform: translate(-6vw, -4vh) scale(1.08); } }
@keyframes aur3 { to { transform: translate(-5vw, 6vh) scale(.94); } }
/* حزم ضوء مائلة خافتة — لمسة إطلاق المنتجات */
.beam {
  position: absolute;
  top: -32%;
  height: 164%;
  width: 150px;
  background: linear-gradient(to bottom, transparent, rgba(var(--gold-rgb), .08) 40%, rgba(255, 238, 196, .15) 50%, rgba(var(--gold-rgb), .08) 60%, transparent);
  filter: blur(7px);
  mix-blend-mode: screen;
  transform: rotate(17deg);
  will-change: transform;
}
.hero-fx .bm1 { inset-inline-start: 16%; animation: beamSway 19s ease-in-out infinite alternate; }
.hero-fx .bm2 { inset-inline-start: 47%; width: 240px; opacity: .75; animation: beamSway 26s ease-in-out infinite alternate-reverse; }
.hero-fx .bm3 { inset-inline-start: 76%; width: 100px; opacity: .55; animation: beamSway 22s ease-in-out infinite alternate; }
@keyframes beamSway { from { transform: rotate(17deg) translateX(-3vw); } to { transform: rotate(17deg) translateX(3vw); } }
.hero-dust { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.hero .container { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: var(--sp-8);
  align-items: center;
  padding: clamp(120px, 17vh, 180px) 0 clamp(72px, 9vw, 110px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 16px 6px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .85);
  margin-bottom: var(--sp-5);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  flex: none;
  box-shadow: 0 0 0 0 rgba(var(--gold-rgb), .5);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--gold-rgb), .5); }
  70% { box-shadow: 0 0 0 9px rgba(var(--gold-rgb), 0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--gold-rgb), 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.6vw, 5.3rem);
  font-weight: 700;
  line-height: 1.38;
  color: #fff;
  margin: 0;
  letter-spacing: -.005em;
  text-wrap: balance;
  text-shadow: 0 3px 34px rgba(0, 0, 0, .3);
}
/* دخول كلمات العنوان من قناعها */
.hero-title .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: .16em;
  margin-bottom: -.16em;
}
.hero-title .w > span {
  display: inline-block;
  transform: translateY(118%);
  animation: wordUp .9s cubic-bezier(.19, .7, .25, 1) both;
  animation-delay: calc(.28s + var(--i, 0) * .085s);
}
@keyframes wordUp { to { transform: none; } }
/* الكلمة الذهبية المتلألئة */
.gold-w {
  font-style: normal;
  display: inline-block;
  background: linear-gradient(100deg, #C9982A 0%, var(--gold) 28%, #F7E9B8 50%, var(--gold) 72%, #C9982A 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5.5s linear infinite;
}
@keyframes shimmer { to { background-position: -220% 0; } }
.flourish { width: min(230px, 58%); height: 14px; margin: 6px 0 18px; overflow: visible; }
.flourish path {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: draw 1.15s .55s var(--ease) forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero .lede {
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 2.05;
  color: rgba(255, 255, 255, .82);
  max-width: 54ch;
  margin-bottom: var(--sp-6);
}
.hero-acts { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: var(--sp-7); }
.hero-acts .btn { border-radius: 99px; }

.hero-facts {
  display: flex;
  gap: clamp(22px, 3.4vw, 44px);
  flex-wrap: wrap;
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.hero-facts .f .k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 3px;
}
.hero-facts .f .v {
  font-size: var(--fs-base);
  color: #fff;
  font-weight: 600;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}
.hero-facts .f .v.ar { font-family: var(--font-body); }

/* الشعار: حلقات مدارية وتوهّج ذهبي وطفو */
.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  padding: var(--sp-5);
  transform: translate(var(--px, 0), var(--py, 0));
  transition: transform .18s linear;
  will-change: transform;
}
.hero-mark img {
  width: min(100%, 330px);
  filter: drop-shadow(0 26px 54px rgba(0, 0, 0, .42));
  animation: floatY 7s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-mark .halo { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-mark .h-out { inset: -4% 3%; border: 1px solid rgba(255, 255, 255, .12); animation: halo 30s linear infinite; }
.hero-mark .h-in { inset: 9% 17%; border: 1px dashed rgba(var(--gold-rgb), .34); animation: halo 40s linear infinite reverse; }
.hero-mark::before {
  content: "";
  position: absolute;
  inset: 2% 11%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 60%, rgba(var(--gold-rgb), .16) 72%, rgba(246, 226, 160, .9) 88%, transparent 97%);
  -webkit-mask: radial-gradient(closest-side, transparent 79%, #000 80% 82%, transparent 83%);
          mask: radial-gradient(closest-side, transparent 79%, #000 80% 82%, transparent 83%);
  filter: drop-shadow(0 0 7px rgba(var(--gold-rgb), .55));
  animation: halo 12s linear infinite;
}
.mark-glow {
  position: absolute;
  inset: 14% 22%;
  background: radial-gradient(closest-side, rgba(var(--gold-rgb), .26), transparent 72%);
  filter: blur(28px);
}
@keyframes halo { to { transform: rotate(360deg); } }

/* مؤشر التمرير */
.scroll-cue {
  position: absolute;
  bottom: 30px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  display: grid;
  justify-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .55);
  transition: color var(--dur) var(--ease);
}
.scroll-cue:hover { color: var(--gold); }
.scroll-cue .ln { width: 1px; height: 42px; background: rgba(255, 255, 255, .18); position: relative; overflow: hidden; }
.scroll-cue .ln::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -45%;
  height: 45%;
  background: var(--gold);
  animation: cueDrop 2.1s var(--ease) infinite;
}
@keyframes cueDrop { to { top: 115%; } }

/* دخول عناصر الهيرو المتتابع */
.hi { animation: heroIn .95s cubic-bezier(.22, .61, .36, 1) both; }
.hi.d1 { animation-delay: .1s; }
.hi.d2 { animation-delay: .22s; }
.hi.d3 { animation-delay: .34s; }
.hi.d4 { animation-delay: .46s; }
.hi.d5 { animation-delay: .58s; }
.hi.d6 { animation-delay: 1s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); filter: blur(10px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}

@media (max-width: 940px) {
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-7); padding-top: 128px; }
  .hero-mark { order: -1; padding: 0; }
  .hero-mark img { width: min(56%, 210px); }
  .hero-mark::before, .hero-mark .halo, .mark-glow, .beam { display: none; }
  .scroll-cue { display: none; }
}

/* ── شريط الممارسات المتحرك ────────────────────────────────────── */
.marquee {
  position: relative;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 1;
  pointer-events: none;
}
.marquee::before { inset-inline-start: 0; background: linear-gradient(to left, transparent, var(--paper)); }
.marquee::after { inset-inline-end: 0; background: linear-gradient(to right, transparent, var(--paper)); }
.mq-track {
  display: flex;
  align-items: center;
  gap: 38px;
  width: max-content;
  padding: 16px 19px;
  animation: mq 32s linear infinite;
}
.marquee:hover .mq-track { animation-play-state: paused; }
.mq-item {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--brand-800);
  white-space: nowrap;
}
.mq-item:nth-child(4n + 3) {
  color: transparent;
  -webkit-text-stroke: 1px var(--brand-300);
}
.mq-star { color: var(--gold); font-size: .8rem; }
@keyframes mq { to { transform: translateX(50%); } }

/* ── لوحة البيان ───────────────────────────────────────────────── */
.statement {
  position: relative;
  background: linear-gradient(170deg, var(--brand-900), #24060B 70%);
  padding: clamp(90px, 12vw, 160px) 0;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.statement::before {
  content: "«";
  position: absolute;
  top: -14%;
  inset-inline-start: 4%;
  font-family: var(--font-display);
  font-size: clamp(14rem, 30vw, 26rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--gold-rgb), .14);
  pointer-events: none;
}
.st-text {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.4vw, 4.3rem);
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  max-width: 21ch;
  margin: 0 auto var(--sp-5);
  text-wrap: balance;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .35);
}
.st-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .55);
}

/* ── الأقسام ───────────────────────────────────────────────────── */
.sec { padding: clamp(68px, 8.5vw, 120px) 0; position: relative; }
.sec-tint { background: var(--paper-2); }
.sec-dark {
  background: var(--brand-900);
  color: rgba(255, 255, 255, .82);
  overflow: hidden;
  isolation: isolate;
}
.sec-dark h2, .sec-dark h3 { color: #fff; }
.fx-dark { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.fx-dark .blob { position: absolute; border-radius: 50%; filter: blur(80px); will-change: transform; }
.fx-dark .b1 {
  width: 40vw; height: 40vw;
  background: rgba(var(--accent2-rgb), .34);
  top: -18%; inset-inline-end: -10%;
  animation: aur1 26s ease-in-out infinite alternate;
}
.fx-dark .b2 {
  width: 34vw; height: 34vw;
  background: rgba(var(--gold-rgb), .12);
  bottom: -22%; inset-inline-start: -8%;
  animation: aur2 32s ease-in-out infinite alternate;
}

.sec-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 62px);
}
.sec-head.is-center { display: block; max-width: 62ch; margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--accent2);
  margin-bottom: var(--sp-3);
  position: relative;
  padding-inline-start: 26px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--gold);
}
.sec-dark .eyebrow { color: var(--gold); }
.sec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.45;
  color: var(--brand-900);
  margin: 0;
  text-wrap: balance;
}
.sec-dark .sec-head h2 { color: #fff; }
.sec-head p, .sec-head .sh-side { font-size: var(--fs-md); line-height: 2; color: var(--text-2); margin: 0; }
.sec-head .sh-side {
  padding-bottom: 4px;
  border-inline-start: 2px solid var(--gold);
  padding-inline-start: 20px;
}
.sec-dark .sec-head p, .sec-dark .sec-head .sh-side { color: rgba(255, 255, 255, .72); }
.sec-dark .sec-head .sh-side { border-inline-start-color: rgba(var(--gold-rgb), .6); }
@media (max-width: 840px) {
  .sec-head { grid-template-columns: 1fr; align-items: start; }
  .sec-head .sh-side { border: 0; padding: 0; }
}

/* ── الخدمات: بينتو بضوء متتبّع ────────────────────────────────── */
.svc-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.svc {
  grid-column: span 2;
  position: relative;
  padding: 30px 28px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
  overflow: hidden;
}
.svc:nth-child(1), .svc:nth-child(2) { grid-column: span 3; }
.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(var(--brand-rgb), .07), transparent 65%);
  opacity: 0;
  transition: opacity .32s var(--ease);
  pointer-events: none;
}
.svc:hover::before { opacity: 1; }
.svc::after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--sh-4); border-color: var(--brand-200); }
.svc:hover::after { transform: scaleX(1); }
/* انقلاب درامي: البطاقة تغرق في العنابي عند التحويم */
.svc h3, .svc p, .svc .no { position: relative; z-index: 1; }
.svc h3, .svc p { transition: color .32s var(--ease); }
.svc:hover {
  background: linear-gradient(155deg, var(--brand-800), var(--brand-900) 70%);
  border-color: rgba(var(--gold-rgb), .35);
}
.svc:hover h3 { color: #fff; }
.svc:hover p { color: rgba(255, 255, 255, .78); }
.svc .no {
  position: absolute;
  top: 12px;
  inset-inline-end: 20px;
  font-family: var(--font-mono);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--brand-100);
  transition: -webkit-text-stroke-color .3s var(--ease);
}
.svc:hover .no { -webkit-text-stroke-color: rgba(var(--gold-rgb), .45); }
.svc .gl {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--brand-50), var(--accent2-50));
  color: var(--brand);
  margin-bottom: var(--sp-4);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.svc:hover .gl {
  background: rgba(255, 255, 255, .12);
  color: var(--gold);
  transform: translateY(-3px) rotate(-4deg);
}
.svc:nth-child(-n + 2) h3 { font-size: 1.3rem; }
.svc h3 { font-size: var(--fs-lg); margin-bottom: 8px; color: var(--brand-900); }
.svc p { font-size: var(--fs-base); color: var(--text-2); line-height: 1.95; margin: 0; }
.svc .go {
  position: absolute;
  bottom: 20px;
  inset-inline-end: 20px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--accent2);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}
.svc:hover .go { opacity: 1; transform: none; background: var(--gold); border-color: var(--gold); color: var(--gold-on); }
@media (max-width: 1000px) {
  .svc-bento { grid-template-columns: 1fr 1fr; }
  .svc, .svc:nth-child(1), .svc:nth-child(2) { grid-column: auto; }
}
@media (max-width: 620px) { .svc-bento { grid-template-columns: 1fr; } }

/* ── كيف نعمل: خط زمني زجاجي ───────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.steps::before {
  content: "";
  position: absolute;
  inset-inline: 6%;
  top: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), .55), transparent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1.3s var(--ease) .25s;
}
.steps.in::before { transform: scaleX(1); }
.step {
  position: relative;
  padding: 32px 22px 26px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 18px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
  transition: transform .32s var(--ease), border-color .32s var(--ease), background-color .32s var(--ease);
}
.step:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--gold-rgb), .42);
  background: rgba(255, 255, 255, .07);
}
.step .ghost {
  position: absolute;
  top: -16px;
  inset-inline-end: 4px;
  font-family: var(--font-mono);
  font-size: 5.2rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--gold-rgb), .2);
  pointer-events: none;
}
.step .n {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-800), var(--brand-900));
  border: 1px solid rgba(var(--gold-rgb), .5);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--sp-4);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 5px rgba(var(--gold-rgb), .06);
}
.step h3 { font-size: var(--fs-lg); margin-bottom: 7px; }
.step p { font-size: var(--fs-base); line-height: 1.95; color: rgba(255, 255, 255, .68); margin: 0; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
}
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ── لماذا إنابة ───────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why {
  display: flex;
  gap: 15px;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}
.why:hover { box-shadow: var(--sh-3); border-color: var(--brand-200); }
.why .ic-wrap {
  width: 46px; height: 46px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--accent2-50);
  color: var(--accent2);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.why:hover .ic-wrap { background: linear-gradient(145deg, var(--brand), var(--accent2)); color: #fff; }
.why h3 { font-size: var(--fs-md); margin-bottom: 5px; color: var(--brand-900); }
.why p { font-size: var(--fs-sm); color: var(--text-2); line-height: 1.9; margin: 0; }

/* ── شريط الأرقام ──────────────────────────────────────────────── */
.figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.figures .fig { background: var(--white); padding: 30px 20px; text-align: center; position: relative; }
.figures .fig::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline: 26%;
  height: 3px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  transform: scaleX(0);
  transition: transform .35s var(--ease);
}
.figures .fig:hover::after { transform: scaleX(1); }
.figures .fig .v {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--brand);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.figures .fig .k { font-size: var(--fs-sm); color: var(--text-2); margin-top: 8px; }
@media (max-width: 720px) { .figures { grid-template-columns: 1fr 1fr; } }

/* ── الفريق ────────────────────────────────────────────────────── */
.person {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  text-align: center;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.person:hover { box-shadow: var(--sh-3); transform: translateY(-4px); border-color: var(--brand-200); }
.person .av {
  width: 88px; height: 88px;
  margin: 0 auto var(--sp-4);
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--brand), var(--accent2));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
.person .av::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  background: conic-gradient(var(--gold), transparent 32%, transparent 68%, var(--gold));
  -webkit-mask: radial-gradient(closest-side, transparent 81%, #000 82%);
          mask: radial-gradient(closest-side, transparent 81%, #000 82%);
  animation: halo 5.5s linear infinite;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.person:hover .av::before { opacity: 1; }
.person h3 { font-size: var(--fs-md); margin-bottom: 3px; color: var(--brand-900); }
.person .role { font-size: var(--fs-sm); color: var(--accent2); font-weight: 600; margin-bottom: 10px; }
.person .lic {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-3);
  padding: 3px 11px;
  border: 1px solid var(--line);
  border-radius: 99px;
}
.person .bio { font-size: var(--fs-sm); color: var(--text-2); line-height: 1.9; margin-top: 12px; }

/* ── الأسئلة الشائعة ───────────────────────────────────────────── */
.faq { max-width: 840px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq details[open] { border-color: var(--brand-200); box-shadow: var(--sh-2); }
.faq summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 19px 22px;
  cursor: pointer;
  list-style: none;
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--brand-900);
  transition: color var(--dur) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand); }
.faq summary .mk {
  margin-inline-start: auto;
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.faq summary .mk::before, .faq summary .mk::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.6px;
  background: var(--accent2);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.faq summary .mk::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] summary .mk { background: var(--brand); border-color: var(--brand); }
.faq details[open] summary .mk::before, .faq details[open] summary .mk::after { background: #fff; }
.faq details[open] summary .mk::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq .ans-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s var(--ease);
}
.faq details[open] .ans-wrap { grid-template-rows: 1fr; }
.faq .ans {
  overflow: hidden;
  min-height: 0;
  padding: 0 22px;
  color: var(--text-2);
  line-height: 2.05;
  font-size: var(--fs-base);
  transition: padding-bottom .38s var(--ease);
}
.faq details[open] .ans { padding-bottom: 21px; }

/* ── التواصل ───────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4.5vw, 64px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: clamp(26px, 3.4vw, 40px);
  box-shadow: 0 30px 80px rgba(10, 2, 4, .38);
  color: var(--text);
  overflow: hidden;
}
.contact-card .qatt-rule { position: absolute; top: 0; inset-inline: 0; }
.contact-card h3 { font-family: var(--font-display); font-size: 1.55rem; color: var(--brand-900); margin: 12px 0 5px; }
.contact-card .sub { color: var(--text-2); font-size: var(--fs-sm); margin-bottom: var(--sp-5); }

.cinfo { display: grid; gap: 4px; }
.cinfo a, .cinfo div.itm {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 12px;
  margin-inline: -12px;
  border-radius: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .86);
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.cinfo a:hover { background: rgba(255, 255, 255, .05); border-bottom-color: rgba(var(--gold-rgb), .4); }
.cinfo a:last-child, .cinfo div.itm:last-child { border-bottom: 0; }
.cinfo .ic-wrap {
  width: 40px; height: 40px; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--gold);
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.cinfo a:hover .ic-wrap { background: var(--gold); color: var(--gold-on); transform: translateY(-2px); }
.cinfo .k { font-size: var(--fs-xs); color: rgba(255, 255, 255, .62); font-family: var(--font-mono); letter-spacing: .05em; }
.cinfo .v { font-size: var(--fs-base); color: #fff; font-weight: 500; }
.cinfo .v.num { font-family: var(--font-mono); direction: ltr; text-align: start; }
.cinfo a:hover .v { color: var(--gold); }

/* ── التذييل ───────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  background: var(--ink);
  color: rgba(255, 255, 255, .62);
  padding: clamp(64px, 8vw, 104px) 0 0;
  overflow: hidden;
}
.foot-mark {
  position: absolute;
  top: -18px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 17vw, 14rem);
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .07);
  pointer-events: none;
  user-select: none;
}
.site-footer .container { position: relative; z-index: 1; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--sp-6); padding-bottom: var(--sp-7); }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; gap: var(--sp-5); } }
.site-footer img.fl { width: 130px; margin-bottom: var(--sp-4); opacity: .92; }
.site-footer h4 { color: #fff; font-size: var(--fs-sm); font-weight: 700; margin-bottom: var(--sp-4); letter-spacing: .02em; }
.site-footer p { font-size: var(--fs-sm); line-height: 1.95; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer a { color: rgba(255, 255, 255, .62); font-size: var(--fs-sm); }
.site-footer a:hover { color: var(--gold); }
.foot-bot {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, .56);
}
.foot-bot .cr { font-family: var(--font-mono); }

/* ── زر واتساب العائم ──────────────────────────────────────────── */
.wa-float {
  position: fixed;
  inset-block-end: 22px;
  inset-inline-end: 22px;
  z-index: 70;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1FA855;
  color: #fff;
  box-shadow: 0 8px 26px rgba(31, 168, 85, .42);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(31, 168, 85, .5);
  animation: pulse 2.6s var(--ease) infinite;
}
.wa-float:hover { transform: scale(1.07); color: #fff; box-shadow: 0 12px 32px rgba(31, 168, 85, .5); }
@media (max-width: 560px) { .wa-float { inset-block-end: 16px; inset-inline-end: 16px; width: 50px; height: 50px; } }

/* ── ظهور تدريجي عند التمرير ───────────────────────────────────── */
.reveal { opacity: 0; translate: 0 18px; transition: opacity .62s var(--ease), translate .62s var(--ease); }
.reveal.in { opacity: 1; translate: none; }

/* ── تقليل الحركة ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hi { animation: none; }
  .hero-title .w > span { animation: none; transform: none; }
  .gold-w { animation: none; }
  .flourish path { stroke-dashoffset: 0; animation: none; }
  .mq-track { animation: none; }
  .hero-mark img { animation: none; }
  .hero-mark .halo, .hero-mark::before, .person .av::before { animation: none; }
  .scroll-cue .ln::after, .hero-eyebrow .dot, .wa-float::before { animation: none; }
  .cursor-aura, .cursor-dot, .cursor-ring, .hero-dust { display: none; }
  .aurora, .beam { animation: none; }
  .reveal { opacity: 1; translate: none; transition: none; }
  .steps::before { transform: none; transition: none; }
}
