
/* =========================================================
   01) Design Tokens / Global CSS Variables
   المتغيرات العامة للهوية: الألوان، الخطوط، الظلال، الحركة، المقاسات
   ========================================================= */

:root {
  --carbon: #071018;
  --carbon-2: #0b1620;
  --carbon-3: #102331;
  --carbon-4: #173346;

  --teal: #23c6bd;
  --teal-2: #39eee3;
  --teal-dim: rgba(35, 198, 189, 0.13);
  --teal-line: rgba(35, 198, 189, 0.32);

  --gold: #d9af55;
  --gold-dim: rgba(217, 175, 85, 0.12);

  --white: #fff;
  --text: #e7eef4;
  --muted: #9aabb7;
  --light: #647785;

  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);

  --font: "IBM Plex Sans Arabic", system-ui, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --max-w: 1240px;
  --topbar-h: 42px;
  --nav-h: 82px;
  --header-h: 124px;
}


/* =========================================================
   02) Global Reset / Base Setup
   تصفير الهوامش، ضبط box model، إعداد RTL والخلفية العامة
   ========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--teal) var(--carbon-2);
  scrollbar-width: thin;
}

body {
  font-family: var(--font);
  background: var(--carbon);
  color: var(--text);
  line-height: 1.75;
  direction: rtl;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}


/* =========================================================
   03) Custom Scrollbar
   شكل شريط التمرير في المتصفحات التي تدعم WebKit
   ========================================================= */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--carbon-2);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--teal), var(--gold));
  border: 3px solid var(--carbon-2);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--teal-2), var(--gold));
}


/* =========================================================
   04) Subtle Global Noise Overlay
   طبقة Noise خفيفة فوق الموقع لإحساس Premium Dark
   ملاحظة: z-index عال جدا، لكنها pointer-events none
   ========================================================= */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.42;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}


/* =========================================================
   05) Layout Helpers
   عناصر مساعدة عامة للحاويات والسكاشن والمحاذاة
   ========================================================= */

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 28px;
}

.section {
  padding: 104px 0;
  position: relative;
}

.section.is-alt {
  background: linear-gradient(180deg, var(--carbon-2), rgba(11, 22, 32, 0.72));
}

.center {
  text-align: center;
}

.teal {
  color: var(--teal);
}

.gold {
  color: var(--gold);
}


/* =========================================================
   06) Accessibility / Skip Link
   رابط تخطي المحتوى لتحسين التصفح بلوحة المفاتيح
   ========================================================= */

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 10000;
  background: var(--teal);
  color: var(--carbon);
  padding: 10px 16px;
  border-radius: 12px;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}


/* =========================================================
   07) Old Scroll Rail
   شريط تقدم تمرير جانبي قديم
   ملاحظة: حسب السياق الحالي لمركز معين، الأفضل نقله أو حذفه إذا أصبح مكررا مع الهيدر الجديد
   ========================================================= */

.scroll-rail {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 10px;
  writing-mode: vertical-rl;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.scroll-rail::before {
  content: "";
  width: 5px;
  height: 150px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  order: 2;
}

.scroll-rail__bar {
  position: absolute;
  right: 0;
  top: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(180deg, var(--teal), var(--gold));
  border-radius: 999px;
  box-shadow: 0 0 18px var(--teal);
}


/* =========================================================
   08) Buttons
   أزرار عامة: زر تركواز، زر Outline، وزر Full Width
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 28px;
  border: 0;
  border-radius: 13px;
  font-weight: 900;
  line-height: 1;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    background 0.28s var(--ease),
    color 0.28s var(--ease),
    border-color 0.28s;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(120%);
  transition: transform 0.58s var(--ease);
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(-120%);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-teal {
  background: var(--teal);
  color: #062028;
  box-shadow: 0 16px 42px rgba(35, 198, 189, 0.25);
}

.btn-teal:hover {
  background: var(--teal-2);
  box-shadow: 0 22px 62px rgba(35, 198, 189, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
  color: var(--teal);
  box-shadow:
    inset 0 0 0 1.5px var(--teal),
    0 14px 40px rgba(35, 198, 189, 0.12);
}

.btn-block {
  width: 100%;
}


/* =========================================================
   09) Section Heading Components
   الكيكر، عنوان السكشن، الوصف، ومسافة رأس السكشن
   ========================================================= */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid var(--teal-line);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 900;
}

.kicker::before {
  content: "◈";
  color: var(--gold);
  font-size: 10px;
}

.section-title {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  font-weight: 900;
}

.section-lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.section-head {
  margin-bottom: 52px;
}


/* =========================================================
   10) Topbar
   الشريط العلوي الصغير فوق الهيدر
   ========================================================= */

.topbar {
  height: var(--topbar-h);
  background: #061018;
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__hours {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}


/* =========================================================
   11) Social Icons Shared Styles
   أيقونات السوشيال في التوب بار والفوتر وبعض الصفوف المشتركة
   ========================================================= */

.topbar-social,
.footer-social,
.social-row {
  display: flex;
  gap: 9px;
  align-items: center;
}

.topbar-social a,
.footer-social a,
.social-row a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  transition: 0.28s var(--ease);
}

.topbar-social svg,
.footer-social svg,
.support-links svg,
.contact-methods svg {
  width: 17px;
  height: 17px;
}

.topbar-social a:hover,
.footer-social a:hover {
  color: var(--teal);
  border-color: var(--teal-line);
  background: var(--teal-dim);
  transform: translateY(-3px) rotate(-4deg);
}


/* =========================================================
   12) Site Header
   الهيدر الثابت أعلى الصفحة، ويتغير عند إضافة كلاس is-scrolled
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  transition:
    background 0.35s,
    border 0.35s,
    backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: rgba(7, 16, 24, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px) saturate(1.4);
}


/* =========================================================
   13) Main Navigation Layout
   توزيع اللوجو، القائمة، والأزرار داخل الهيدر
   ========================================================= */

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}


/* =========================================================
   14) Brand / Logo Block
   كتلة شعار مركز معين داخل الهيدر
   ========================================================= */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  min-width: max-content;
}

.brand__logo {
  width: 43px;
  height: 43px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), #0d716d);
  display: grid;
  place-items: center;
  color: var(--carbon);
  font-weight: 900;
  box-shadow: 0 0 0 8px var(--teal-dim);
  animation: pulse 2s infinite;
}

.brand b {
  font-size: 24px;
  line-height: 1;
}

.brand em {
  display: block;
  font-style: normal;
  color: var(--gold);
  font-size: 11px;
  margin-top: -3px;
}


/* =========================================================
   15) Desktop Menu
   روابط القائمة الرئيسية في الهيدر
   ========================================================= */

.nav__menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav__link,
.nav__trigger {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  padding: 10px 0;
  transition: color 0.25s var(--ease);
  background: none;
  border: 0;
}

.nav__link::after,
.nav__trigger::after {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 0;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, var(--teal));
  transition: width 0.32s var(--ease);
}

.nav__link:hover,
.nav__link.is-active,
.nav__trigger:hover,
.nav__trigger.is-active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link.is-active::after,
.nav__trigger:hover::after,
.nav__trigger.is-active::after {
  width: 100%;
}


/* =========================================================
   16) Dropdown Menu Trigger
   زر أو رابط القائمة التي تحتوي على Submenu
   ========================================================= */

.nav__item {
  position: relative;
}

.nav__trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.submenu-plus {
  width: 19px;
  height: 19px;
  border: 1px solid var(--teal-line);
  border-radius: 7px;
  color: var(--teal);
  display: inline-grid;
  place-items: center;
  line-height: 1;
  font-size: 16px;
  font-weight: 900;
  transition: 0.28s var(--spring);
}

.nav__trigger:hover .submenu-plus,
.nav__item.is-open .submenu-plus {
  background: var(--teal);
  color: var(--carbon);
  transform: rotate(45deg) scale(1.08);
  box-shadow: 0 0 18px rgba(35, 198, 189, 0.34);
}


/* =========================================================
   17) Dropdown Submenu
   القائمة المنسدلة لعناصر مثل: عن معين / خدماتنا
   ========================================================= */

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 240px;
  list-style: none;
  background: rgba(9, 22, 32, 0.96);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.28s var(--ease);
  backdrop-filter: blur(18px);
}

.submenu--wide {
  min-width: 320px;
}

.nav__item:hover > .submenu,
.nav__item.is-open > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 13px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.25s;
}

.submenu a span {
  color: var(--teal);
  transition: 0.25s;
}

.submenu a:hover,
.submenu a.is-active {
  color: var(--white);
  background: var(--teal-dim);
  border-color: var(--teal-line);
  transform: translateX(-4px);
}

.submenu a:hover span,
.submenu a.is-active span {
  color: var(--gold);
  transform: scale(1.15);
}


/* =========================================================
   18) Header Actions
   أزرار الهيدر: مثل الحساب، السلة، CTA
   ========================================================= */

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}


/* =========================================================
   19) Mobile Menu Toggle
   زر فتح القائمة في الموبايل
   ملاحظة: الكود الحالي يخفي الزر افتراضيا، ويحتاج Media Query لاحقا لإظهاره
   ========================================================= */

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: var(--carbon-3);
  color: var(--white);
  border-radius: 13px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
  transition: 0.25s;
}


/* =========================================================
  Moeen Center Hero - Compact Loop Rails
  Scope: [data-scope="moeen-center-hero"]
========================================================= */

[data-scope="moeen-center-hero"].moeen-center-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: auto !important;
  padding: calc(var(--header-h, 82px) + 38px) 0 52px !important;
  background:
    radial-gradient(circle at 50% 8%, rgba(20, 217, 204, 0.13), transparent 30%),
    radial-gradient(circle at 12% 68%, rgba(215, 179, 90, 0.055), transparent 26%),
    radial-gradient(circle at 88% 68%, rgba(20, 217, 204, 0.055), transparent 26%),
    linear-gradient(180deg, #02070B 0%, #06121A 52%, #02070B 100%);
}

[data-scope="moeen-center-hero"] * {
  box-sizing: border-box;
}

[data-scope="moeen-center-hero"] .container {
  width: min(1180px, 100%);
  margin-inline: auto;
  padding-inline: 18px;
}

[data-scope="moeen-center-hero"] .moeen-center-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

[data-scope="moeen-center-hero"] .moeen-center-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(20, 217, 204, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 217, 204, 0.024) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 14%, #000 10%, transparent 68%);
}

[data-scope="moeen-center-hero"] .moeen-center-hero__bg::after {
  content: "";
  position: absolute;
  inset: 10% 9% 14%;
  border: 1px solid rgba(20, 217, 204, 0.052);
  border-radius: 999px;
  opacity: 0.72;
}

[data-scope="moeen-center-hero"] .moeen-center-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1.5fr) minmax(150px, 0.42fr);
  align-items: center;
  gap: clamp(14px, 2.6vw, 36px);
  min-height: 420px;
}

/* Center content */
[data-scope="moeen-center-hero"] .moeen-center-hero__content {
  position: relative;
  z-index: 5;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

[data-scope="moeen-center-hero"] .moeen-center-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 13px;
  border: 1px solid rgba(20, 217, 204, 0.24);
  border-radius: 999px;
  background: rgba(20, 217, 204, 0.055);
  color: #46F2E8;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.4;
}

[data-scope="moeen-center-hero"] .moeen-center-hero__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: #D7B35A;
  transform: rotate(45deg);
}

[data-scope="moeen-center-hero"] .moeen-center-hero__title {
  max-width: 760px;
  margin: 0 auto;
  color: #F6FAFA;
  font-size: clamp(40px, 5.1vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 950;
}

[data-scope="moeen-center-hero"] .moeen-center-hero__title span {
  display: block;
  margin-top: 4px;
  color: #14D9CC;
  text-shadow: 0 0 26px rgba(20, 217, 204, 0.14);
}

[data-scope="moeen-center-hero"] .moeen-center-hero__text {
  max-width: 660px;
  margin: 17px auto 0;
  color: rgba(246, 250, 250, 0.66);
  font-size: 15px;
  line-height: 1.95;
}

[data-scope="moeen-center-hero"] .moeen-center-hero__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

[data-scope="moeen-center-hero"] .moeen-center-hero__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  overflow: hidden;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.25s cubic-bezier(.22, 1, .36, 1),
    background 0.25s cubic-bezier(.22, 1, .36, 1),
    border-color 0.25s cubic-bezier(.22, 1, .36, 1),
    color 0.25s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.25s cubic-bezier(.22, 1, .36, 1);
}

[data-scope="moeen-center-hero"] .moeen-center-hero__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
  transform: translateX(115%);
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

[data-scope="moeen-center-hero"] .moeen-center-hero__btn:hover::before {
  transform: translateX(-115%);
}

[data-scope="moeen-center-hero"] .moeen-center-hero__btn:hover {
  transform: translateY(-3px);
}

[data-scope="moeen-center-hero"] .moeen-center-hero__btn--primary {
  border: 1px solid #D7B35A;
  background: linear-gradient(135deg, #F2CF7B, #D7B35A);
  color: #061016;
  box-shadow:
    0 16px 34px rgba(215, 179, 90, 0.18),
    0 0 28px rgba(215, 179, 90, 0.10);
}

[data-scope="moeen-center-hero"] .moeen-center-hero__btn--primary:hover {
  background: linear-gradient(135deg, #FFE09A, #D7B35A);
  border-color: #F2CF7B;
  color: #061016;
  box-shadow:
    0 18px 42px rgba(215, 179, 90, 0.24),
    0 0 34px rgba(215, 179, 90, 0.14);
}

/* Loop side rails */
[data-scope="moeen-center-hero"] .moeen-hero-loop {
  position: relative;
  z-index: 3;
  height: 335px;
  overflow: hidden;
  opacity: 0.9;
  mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
}

[data-scope="moeen-center-hero"] .moeen-hero-loop::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 255px;
  height: 335px;
  border: 1px solid rgba(20, 217, 204, 0.055);
  border-radius: 999px;
  transform: translateY(-50%);
  pointer-events: none;
}

[data-scope="moeen-center-hero"] .moeen-hero-loop--right::before {
  left: -116px;
}

[data-scope="moeen-center-hero"] .moeen-hero-loop--left::before {
  right: -116px;
}

[data-scope="moeen-center-hero"] .moeen-hero-loop__track {
  display: grid;
  gap: 14px;
  will-change: transform;
  animation: moeenHeroLoopUp 19s linear infinite;
}

[data-scope="moeen-center-hero"] .moeen-hero-loop--left .moeen-hero-loop__track {
  animation-name: moeenHeroLoopDown;
  animation-duration: 21s;
}

[data-scope="moeen-center-hero"] .moeen-hero-loop:hover .moeen-hero-loop__track,
[data-scope="moeen-center-hero"] .moeen-hero-loop:focus-within .moeen-hero-loop__track {
  animation-play-state: paused;
}

[data-scope="moeen-center-hero"] .moeen-hero-loop a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(20, 217, 204, 0.13);
  border-radius: 999px;
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 217, 204, 0.045), transparent 36%),
    rgba(255, 255, 255, 0.026);
  color: rgba(246, 250, 250, 0.58);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  transition:
    transform 0.25s cubic-bezier(.22, 1, .36, 1),
    color 0.25s cubic-bezier(.22, 1, .36, 1),
    background 0.25s cubic-bezier(.22, 1, .36, 1),
    border-color 0.25s cubic-bezier(.22, 1, .36, 1),
    opacity 0.25s cubic-bezier(.22, 1, .36, 1);
}

[data-scope="moeen-center-hero"] .moeen-hero-loop a::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-radius: 2px;
  background: #14D9CC;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

[data-scope="moeen-center-hero"] .moeen-hero-loop a:nth-child(2n) {
  border-color: rgba(215, 179, 90, 0.18);
}

[data-scope="moeen-center-hero"] .moeen-hero-loop a:nth-child(2n)::before {
  background: #D7B35A;
}

[data-scope="moeen-center-hero"] .moeen-hero-loop a:hover,
[data-scope="moeen-center-hero"] .moeen-hero-loop a:focus-visible {
  color: #F6FAFA;
  border-color: rgba(20, 217, 204, 0.34);
  background: rgba(20, 217, 204, 0.075);
  outline: none;
}

/* Stair layout: right */
[data-scope="moeen-center-hero"] .moeen-hero-loop--right a:nth-child(5n + 1) {
  margin-inline-start: 26px;
}

[data-scope="moeen-center-hero"] .moeen-hero-loop--right a:nth-child(5n + 2) {
  margin-inline-start: 0;
}

[data-scope="moeen-center-hero"] .moeen-hero-loop--right a:nth-child(5n + 3) {
  margin-inline-start: 38px;
}

[data-scope="moeen-center-hero"] .moeen-hero-loop--right a:nth-child(5n + 4) {
  margin-inline-start: 12px;
}

[data-scope="moeen-center-hero"] .moeen-hero-loop--right a:nth-child(5n + 5) {
  margin-inline-start: 50px;
}

/* Stair layout: left */
[data-scope="moeen-center-hero"] .moeen-hero-loop--left .moeen-hero-loop__track {
  justify-items: end;
}

[data-scope="moeen-center-hero"] .moeen-hero-loop--left a:nth-child(5n + 1) {
  margin-inline-end: 26px;
}

[data-scope="moeen-center-hero"] .moeen-hero-loop--left a:nth-child(5n + 2) {
  margin-inline-end: 0;
}

[data-scope="moeen-center-hero"] .moeen-hero-loop--left a:nth-child(5n + 3) {
  margin-inline-end: 38px;
}

[data-scope="moeen-center-hero"] .moeen-hero-loop--left a:nth-child(5n + 4) {
  margin-inline-end: 12px;
}

[data-scope="moeen-center-hero"] .moeen-hero-loop--left a:nth-child(5n + 5) {
  margin-inline-end: 50px;
}

/* Hover direction */
[data-scope="moeen-center-hero"] .moeen-hero-loop--right a:hover,
[data-scope="moeen-center-hero"] .moeen-hero-loop--right a:focus-visible {
  transform: translateX(-7px);
}

[data-scope="moeen-center-hero"] .moeen-hero-loop--left a:hover,
[data-scope="moeen-center-hero"] .moeen-hero-loop--left a:focus-visible {
  transform: translateX(7px);
}

@keyframes moeenHeroLoopUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes moeenHeroLoopDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 980px) {
  [data-scope="moeen-center-hero"].moeen-center-hero {
    padding: calc(var(--header-h, 82px) + 34px) 0 48px !important;
  }

  [data-scope="moeen-center-hero"] .moeen-center-hero__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  [data-scope="moeen-center-hero"] .moeen-hero-loop {
    display: none;
  }

  [data-scope="moeen-center-hero"] .moeen-center-hero__title {
    font-size: clamp(34px, 8vw, 56px);
  }
}

@media (max-width: 640px) {
  [data-scope="moeen-center-hero"].moeen-center-hero {
    padding: calc(var(--header-h, 82px) + 30px) 0 42px !important;
  }

  [data-scope="moeen-center-hero"] .container {
    padding-inline: 14px;
  }

  [data-scope="moeen-center-hero"] .moeen-center-hero__badge {
    max-width: 100%;
    font-size: 10.5px;
    padding: 7px 12px;
  }

  [data-scope="moeen-center-hero"] .moeen-center-hero__title {
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.035em !important;
  }

  [data-scope="moeen-center-hero"] .moeen-center-hero__text {
    font-size: 14px;
    line-height: 1.9;
  }

  [data-scope="moeen-center-hero"] .moeen-center-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-center-hero"] .moeen-center-hero__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-center-hero"] * {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================================================
  Moeen Hero Chips Tooltip - Centered Preview
  Scope: [data-scope="moeen-center-hero"]
========================================================= */

[data-scope="moeen-center-hero"] .moeen-hero-chip-tooltip {
  width: min(430px, 100%);
  min-height: 78px;
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(20, 217, 204, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 217, 204, 0.075), transparent 34%),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity .18s ease,
    visibility .18s ease,
    transform .18s cubic-bezier(.22, 1, .36, 1),
    border-color .18s ease,
    background .18s ease;
}

[data-scope="moeen-center-hero"] .moeen-hero-chip-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

[data-scope="moeen-center-hero"] .moeen-hero-chip-tooltip__media {
  width: 74px;
  height: 54px;
  overflow: hidden;
  border: 1px solid rgba(20, 217, 204, 0.13);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.03);
}

[data-scope="moeen-center-hero"] .moeen-hero-chip-tooltip__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.03) brightness(.82);
}

[data-scope="moeen-center-hero"] .moeen-hero-chip-tooltip__body {
  min-width: 0;
  text-align: right;
}

[data-scope="moeen-center-hero"] .moeen-hero-chip-tooltip strong {
  display: block;
  color: #F6FAFA;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-scope="moeen-center-hero"] .moeen-hero-chip-tooltip p {
  margin: 4px 0 0;
  color: rgba(246, 250, 250, 0.62);
  font-size: 11.5px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  [data-scope="moeen-center-hero"] .moeen-hero-chip-tooltip {
    display: none !important;
  }
}

/* =========================================================
  Moeen Center Hero - Mobile Chips Only
  يظهر الشيبس في الموبايل فقط
========================================================= */

@media (max-width: 640px) {
  [data-scope="moeen-center-hero"] .moeen-center-hero__layout {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
    min-height: auto !important;
  }

  [data-scope="moeen-center-hero"] .moeen-center-hero__content {
    order: 1 !important;
  }

  [data-scope="moeen-center-hero"] .moeen-hero-loop {
    display: block !important;
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    overflow: hidden !important;
    opacity: 1 !important;
    mask-image: linear-gradient(
      90deg,
      transparent,
      #000 10%,
      #000 90%,
      transparent
    ) !important;
  }

  [data-scope="moeen-center-hero"] .moeen-hero-loop--right {
    order: 2 !important;
    margin-top: 2px !important;
  }

  [data-scope="moeen-center-hero"] .moeen-hero-loop--left {
    order: 3 !important;
    margin-top: -6px !important;
  }

  [data-scope="moeen-center-hero"] .moeen-hero-loop::before {
    display: none !important;
  }

  [data-scope="moeen-center-hero"] .moeen-hero-loop__track {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: max-content !important;
    min-width: max-content !important;
    will-change: transform !important;
  }

  [data-scope="moeen-center-hero"] .moeen-hero-loop--right .moeen-hero-loop__track {
    animation: moeenHeroMobileLoopRight 22s linear infinite !important;
  }

  [data-scope="moeen-center-hero"] .moeen-hero-loop--left .moeen-hero-loop__track {
    animation: moeenHeroMobileLoopLeft 24s linear infinite !important;
  }

  [data-scope="moeen-center-hero"] .moeen-hero-loop a {
    min-height: 30px !important;
    padding: 6px 10px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    background: rgba(255, 255, 255, 0.03) !important;
    color: rgba(246, 250, 250, 0.68) !important;
  }

  [data-scope="moeen-center-hero"] .moeen-hero-loop a::before {
    width: 6px !important;
    height: 6px !important;
    margin-left: 6px !important;
  }

  [data-scope="moeen-center-hero"] .moeen-hero-loop a:hover,
  [data-scope="moeen-center-hero"] .moeen-hero-loop a:focus-visible {
    transform: none !important;
    color: #ffffff !important;
    background: rgba(20, 217, 204, 0.075) !important;
    border-color: rgba(20, 217, 204, 0.28) !important;
  }

  [data-scope="moeen-center-hero"] .moeen-hero-chip-tooltip {
    display: none !important;
  }
}

@keyframes moeenHeroMobileLoopRight {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(50%);
  }
}

@keyframes moeenHeroMobileLoopLeft {
  from {
    transform: translateX(50%);
  }

  to {
    transform: translateX(0);
  }
}





/* =========================================================
  Moeen Why Locked Steps
  Scope: [data-scope="moeen-why-lock"]
========================================================= */

[data-scope="moeen-why-lock"].moeen-why-lock {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h, 82px));
  padding: calc(var(--header-h, 82px) + 26px) 0 46px !important;
  background:
    radial-gradient(circle at 18% 38%, rgba(20, 217, 204, 0.12), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(215, 179, 90, 0.075), transparent 28%),
    linear-gradient(180deg, #06121A 0%, #02070B 100%) !important;
}

[data-scope="moeen-why-lock"].moeen-why-lock::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 217, 204, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 217, 204, 0.024) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(ellipse at 50% 44%, #000 10%, transparent 72%);
}

[data-scope="moeen-why-lock"] .moeen-why-lock__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(30px, 5vw, 68px);
  min-height: calc(60vh - var(--header-h, 82px) - 82px);
}

[data-scope="moeen-why-lock"] .moeen-why-lock__content {
  max-width: 710px;
  min-width: 0;
}

[data-scope="moeen-why-lock"] .moeen-why-lock__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  padding: 8px 15px;
  border: 1px solid rgba(20, 217, 204, 0.24);
  border-radius: 999px;
  background: rgba(20, 217, 204, 0.065);
  color: #46F2E8;
  font-size: 12px;
  font-weight: 900;
}

[data-scope="moeen-why-lock"] .moeen-why-lock__kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #D7B35A;
  transform: rotate(45deg);
}

[data-scope="moeen-why-lock"] .moeen-why-lock__title {
  margin: 0;
  color: #F6FAFA;
  font-size: clamp(31px, 3.8vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 950;
}

[data-scope="moeen-why-lock"] .moeen-why-lock__title span {
  display: block;
  margin-top: 4px;
  color: #14D9CC;
}

[data-scope="moeen-why-lock"] .moeen-why-lock__lead {
  max-width: 640px;
  margin: 14px 0 0;
  color: rgba(246, 250, 250, 0.64);
  font-size: 15px;
  line-height: 1.9;
}

[data-scope="moeen-why-lock"] .moeen-why-lock__card {
  position: relative;
  width: min(100%, 520px);
  min-height: 158px;
  margin-top: 20px;
  padding: 21px 23px;
  overflow: hidden;
  border: 1px solid rgba(20, 217, 204, 0.20);
  border-radius: 23px;
  background:
    radial-gradient(circle at 0% 0%, rgba(20, 217, 204, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.018));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

[data-scope="moeen-why-lock"] .moeen-why-lock__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, #14D9CC, #D7B35A, transparent);
  opacity: 0.75;
}

[data-scope="moeen-why-lock"] .moeen-why-lock__num {
  display: inline-grid;
  place-items: center;
  width: 35px;
  height: 35px;
  margin-bottom: 11px;
  border: 1px solid rgba(215, 179, 90, 0.30);
  border-radius: 13px;
  background: rgba(215, 179, 90, 0.12);
  color: #D7B35A;
  font-size: 12px;
  font-weight: 950;
}

[data-scope="moeen-why-lock"] .moeen-why-lock__card h3 {
  margin: 0;
  color: #F6FAFA;
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.28;
  font-weight: 950;
}

[data-scope="moeen-why-lock"] .moeen-why-lock__card p {
  max-width: 505px;
  margin: 10px 0 0;
  color: rgba(246, 250, 250, 0.66);
  font-size: 14.3px;
  line-height: 1.85;
}

[data-scope="moeen-why-lock"].is-changing .moeen-why-lock__card {
  animation: moeenLockCardSwap 0.38s cubic-bezier(.4,0,.2,1);
}

@keyframes moeenLockCardSwap {
  0% {
    opacity: 0.62;
    transform: translateY(8px) scale(0.99);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

[data-scope="moeen-why-lock"] .moeen-why-lock__bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

[data-scope="moeen-why-lock"] .moeen-why-lock__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(215, 179, 90, 0.48);
  border-radius: 13px;
  background: rgba(215, 179, 90, 0.08);
  color: #D7B35A;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  transition:
    transform 0.25s cubic-bezier(.4,0,.2,1),
    background 0.25s cubic-bezier(.4,0,.2,1),
    border-color 0.25s cubic-bezier(.4,0,.2,1),
    color 0.25s cubic-bezier(.4,0,.2,1);
}

[data-scope="moeen-why-lock"] .moeen-why-lock__btn:hover {
  transform: translateY(-3px);
  background: rgba(20, 217, 204, 0.10);
  border-color: rgba(20, 217, 204, 0.42);
  color: #46F2E8;
}

[data-scope="moeen-why-lock"] .moeen-why-lock__progress {
  width: 148px;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
}

[data-scope="moeen-why-lock"] .moeen-why-lock__progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #14D9CC, #D7B35A);
  transition: width 0.28s cubic-bezier(.4,0,.2,1);
}

/* =========================================================
  Orbit Visual
========================================================= */

[data-scope="moeen-why-lock"] .moeen-why-lock__visual {
  min-width: 0;
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit {
  --orbit-rotation: 0deg;
  --orbit-counter: 0deg;
  --orbit-radius: 168px;
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 405px);
  height: 405px;
  margin-inline: auto;
  isolation: isolate;
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__ring {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  transform: rotate(var(--orbit-rotation));
  transition: transform 0.56s cubic-bezier(.34,1.56,.64,1);
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__ring--outer {
  width: 340px;
  height: 340px;
  border: 1px solid rgba(20, 217, 204, 0.16);
  box-shadow: inset 0 0 62px rgba(20, 217, 204, 0.025);
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__ring--middle {
  width: 242px;
  height: 242px;
  border: 1px solid rgba(215, 179, 90, 0.16);
  transition-duration: 0.72s;
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__ring--inner {
  width: 148px;
  height: 148px;
  border: 1px solid rgba(20, 217, 204, 0.20);
  transition-duration: 0.45s;
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__center {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  padding: 10px;
  border-radius: 32px;
  text-align: center;
  color: #041014;
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,.72), transparent 28%),
    linear-gradient(135deg, #46F2E8 0%, #14D9CC 55%, #0A746E 100%);
  box-shadow:
    0 0 0 10px rgba(20, 217, 204, 0.075),
    0 0 0 22px rgba(20, 217, 204, 0.026),
    0 24px 68px rgba(20, 217, 204, 0.20);
  transform: rotate(45deg);
  transition: transform 0.42s cubic-bezier(.34,1.56,.64,1), box-shadow 0.42s cubic-bezier(.34,1.56,.64,1);
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__center > * {
  transform: rotate(-45deg);
}

[data-scope="moeen-why-lock"].is-changing .moeen-lock-orbit__center {
  transform: rotate(45deg) scale(1.045);
  box-shadow:
    0 0 0 12px rgba(20, 217, 204, 0.07),
    0 0 0 28px rgba(215, 179, 90, 0.026),
    0 28px 78px rgba(20, 217, 204, 0.24);
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__logo {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-bottom: 4px;
  border-radius: 10px;
  background: rgba(4, 16, 20, 0.12);
  color: #041014;
  font-size: 14px;
  font-weight: 950;
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__center strong {
  display: block;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.1;
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__center small {
  display: block;
  max-width: 78px;
  margin-top: 4px;
  color: rgba(4, 16, 20, 0.72);
  font-size: 8.5px;
  font-weight: 900;
  line-height: 1.35;
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__nodes {
  position: absolute;
  inset: 0;
  z-index: 5;
  transform: rotate(var(--orbit-rotation));
  transition: transform 0.56s cubic-bezier(.34,1.56,.64,1);
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__node {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(246, 250, 250, 0.68);
  cursor: pointer;
  transform:
    translate(-50%, -50%)
    rotate(var(--node-angle))
    translateY(calc(var(--orbit-radius) * -1))
    rotate(calc(var(--node-angle) * -1));
  transition:
    opacity 0.28s cubic-bezier(.4,0,.2,1),
    filter 0.28s cubic-bezier(.4,0,.2,1);
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__node-inner {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgba(20, 217, 204, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.028);
  color: rgba(246, 250, 250, 0.68);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
  box-shadow: none;
  transform: rotate(var(--orbit-counter));
  transition:
    transform 0.56s cubic-bezier(.34,1.56,.64,1),
    color 0.28s cubic-bezier(.4,0,.2,1),
    background 0.28s cubic-bezier(.4,0,.2,1),
    border-color 0.28s cubic-bezier(.4,0,.2,1),
    box-shadow 0.28s cubic-bezier(.4,0,.2,1);
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__node i {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(20, 217, 204, 0.10);
  color: #14D9CC;
  font-style: normal;
  font-size: 9px;
  font-weight: 950;
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__node.is-active .moeen-lock-orbit__node-inner {
  border-color: rgba(215, 179, 90, 0.50);
  background: linear-gradient(135deg, rgba(20, 217, 204, 0.16), rgba(215, 179, 90, 0.14));
  color: #F6FAFA;
  box-shadow: 0 14px 38px rgba(20, 217, 204, 0.12);
  transform: rotate(var(--orbit-counter)) translateY(-6px) scale(1.04);
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__node.is-active i {
  background: #D7B35A;
  color: #061018;
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__node:hover .moeen-lock-orbit__node-inner {
  border-color: rgba(20, 217, 204, 0.34);
  color: #F6FAFA;
}

/* =========================================================
  Responsive
========================================================= */

@media (max-width: 1080px) {
  [data-scope="moeen-why-lock"].moeen-why-lock {
    min-height: auto;
    padding: 66px 0 76px !important;
  }

  [data-scope="moeen-why-lock"] .moeen-why-lock__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  [data-scope="moeen-why-lock"] .moeen-why-lock__visual {
    order: -1;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit {
    width: 360px;
    height: 360px;
    --orbit-radius: 145px;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__ring--outer {
    width: 300px;
    height: 300px;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__ring--middle {
    width: 220px;
    height: 220px;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__ring--inner {
    width: 140px;
    height: 140px;
  }

  [data-scope="moeen-why-lock"] .moeen-why-lock__card {
    width: 100%;
  }
}

@media (max-width: 720px) {
  [data-scope="moeen-why-lock"].moeen-why-lock {
    padding: 62px 0 72px !important;
  }

  [data-scope="moeen-why-lock"] .moeen-why-lock__title {
    font-size: 30px;
    line-height: 1.18;
  }

  [data-scope="moeen-why-lock"] .moeen-why-lock__lead,
  [data-scope="moeen-why-lock"] .moeen-why-lock__card p {
    font-size: 14px;
  }

  [data-scope="moeen-why-lock"] .moeen-why-lock__card {
    min-height: auto;
    padding: 22px;
  }

  [data-scope="moeen-why-lock"] .moeen-why-lock__bottom {
    display: grid;
    gap: 14px;
  }

  [data-scope="moeen-why-lock"] .moeen-why-lock__progress {
    width: 100%;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit {
    width: 310px;
    height: 310px;
    --orbit-radius: 124px;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__center {
    width: 98px;
    height: 98px;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__ring--outer {
    width: 260px;
    height: 260px;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__ring--middle {
    width: 195px;
    height: 195px;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__ring--inner {
    width: 124px;
    height: 124px;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__node-inner {
    font-size: 11px;
    padding: 6px 9px;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__node i {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-why-lock"],
  [data-scope="moeen-why-lock"] *,
  [data-scope="moeen-why-lock"] *::before,
  [data-scope="moeen-why-lock"] *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* =========================================================
  Moeen Why Orbit Final Fix
  إصلاح شكل الدائرة والنودز ومنع التداخل
========================================================= */

[data-scope="moeen-why-lock"] .moeen-lock-orbit {
  --orbit-rotation: 0deg;
  --orbit-counter: 0deg;
  --orbit-radius: 176px;
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 430px);
  height: 430px;
  margin-inline: auto;
  isolation: isolate;
}

/* خلفية خفيفة وراء الدائرة */
[data-scope="moeen-why-lock"] .moeen-lock-orbit::before {
  content: "";
  position: absolute;
  inset: 46px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(20, 217, 204, 0.12), transparent 58%);
  filter: blur(2px);
  pointer-events: none;
}

/* الحلقات */
[data-scope="moeen-why-lock"] .moeen-lock-orbit__ring {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  transform: rotate(var(--orbit-rotation));
  transition: transform 0.62s cubic-bezier(.34, 1.56, .64, 1);
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__ring--outer {
  width: 360px;
  height: 360px;
  border: 1px solid rgba(20, 217, 204, 0.18);
  box-shadow:
    inset 0 0 54px rgba(20, 217, 204, 0.025),
    0 0 46px rgba(20, 217, 204, 0.035);
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__ring--middle {
  width: 254px;
  height: 254px;
  border: 1px solid rgba(215, 179, 90, 0.17);
  transition-duration: 0.76s;
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__ring--inner {
  width: 154px;
  height: 154px;
  border: 1px solid rgba(20, 217, 204, 0.22);
  transition-duration: 0.48s;
}

/* مركز معين - شكل حديث بدلا من الشكل المائل */
[data-scope="moeen-why-lock"] .moeen-lock-orbit__center {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  padding: 12px;
  border: 1px solid rgba(70, 242, 232, 0.32);
  border-radius: 34px;
  text-align: center;
  color: #041014;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.78), transparent 26%),
    linear-gradient(135deg, #46F2E8 0%, #14D9CC 55%, #08746E 100%);
  box-shadow:
    0 0 0 10px rgba(20, 217, 204, 0.07),
    0 0 0 22px rgba(20, 217, 204, 0.025),
    0 24px 68px rgba(20, 217, 204, 0.20);
  transform: none !important;
  transition:
    transform 0.42s cubic-bezier(.34, 1.56, .64, 1),
    box-shadow 0.42s cubic-bezier(.34, 1.56, .64, 1);
}

[data-scope="moeen-why-lock"].is-changing .moeen-lock-orbit__center {
  transform: scale(1.045) !important;
  box-shadow:
    0 0 0 12px rgba(20, 217, 204, 0.07),
    0 0 0 28px rgba(215, 179, 90, 0.026),
    0 28px 78px rgba(20, 217, 204, 0.24);
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__center > * {
  transform: none !important;
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__logo {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-bottom: 4px;
  border-radius: 10px;
  background: rgba(4, 16, 20, 0.12);
  color: #041014;
  font-size: 14px;
  font-weight: 950;
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__center strong {
  display: block;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.1;
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__center small {
  display: block;
  max-width: 80px;
  margin-top: 4px;
  color: rgba(4, 16, 20, 0.72);
  font-size: 8.5px;
  font-weight: 900;
  line-height: 1.35;
}

/* طبقة النودز الدوارة */
[data-scope="moeen-why-lock"] .moeen-lock-orbit__nodes {
  position: absolute;
  inset: 0;
  z-index: 5;
  transform: rotate(var(--orbit-rotation));
  transition: transform 0.62s cubic-bezier(.34, 1.56, .64, 1);
}

/* مهم: منع أي CSS قديم من تثبيت النودز في أماكن خاطئة */
[data-scope="moeen-why-lock"] .moeen-lock-orbit__node {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(246, 250, 250, 0.68);
  cursor: pointer;
  transform:
    translate(-50%, -50%)
    rotate(var(--node-angle))
    translateY(calc(var(--orbit-radius) * -1))
    rotate(calc(var(--node-angle) * -1)) !important;
  transition:
    opacity 0.28s cubic-bezier(.4, 0, .2, 1),
    filter 0.28s cubic-bezier(.4, 0, .2, 1);
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__node-inner {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(20, 217, 204, 0.16);
  border-radius: 999px;
  background: rgba(8, 18, 25, 0.72);
  color: rgba(246, 250, 250, 0.70);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: rotate(var(--orbit-counter));
  transition:
    transform 0.62s cubic-bezier(.34, 1.56, .64, 1),
    color 0.28s cubic-bezier(.4, 0, .2, 1),
    background 0.28s cubic-bezier(.4, 0, .2, 1),
    border-color 0.28s cubic-bezier(.4, 0, .2, 1),
    box-shadow 0.28s cubic-bezier(.4, 0, .2, 1);
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__node i {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(20, 217, 204, 0.11);
  color: #14D9CC;
  font-style: normal;
  font-size: 9px;
  font-weight: 950;
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__node b {
  font-weight: 950;
}

/* حالة النود النشط */
[data-scope="moeen-why-lock"] .moeen-lock-orbit__node.is-active {
  z-index: 8;
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__node.is-active .moeen-lock-orbit__node-inner {
  border-color: rgba(215, 179, 90, 0.55);
  background:
    linear-gradient(135deg, rgba(20, 217, 204, 0.22), rgba(215, 179, 90, 0.16));
  color: #F6FAFA;
  box-shadow:
    0 16px 44px rgba(20, 217, 204, 0.16),
    0 0 0 5px rgba(215, 179, 90, 0.045);
  transform: rotate(var(--orbit-counter)) translateY(-7px) scale(1.05);
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__node.is-active i {
  background: #D7B35A;
  color: #061018;
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__node:hover .moeen-lock-orbit__node-inner {
  border-color: rgba(20, 217, 204, 0.34);
  color: #F6FAFA;
}

/* تصغير الدائرة قليلا على الشاشات المتوسطة */
@media (max-width: 1080px) {
  [data-scope="moeen-why-lock"] .moeen-lock-orbit {
    width: 360px;
    height: 360px;
    --orbit-radius: 146px;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__ring--outer {
    width: 300px;
    height: 300px;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__ring--middle {
    width: 220px;
    height: 220px;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__ring--inner {
    width: 138px;
    height: 138px;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__center {
    width: 102px;
    height: 102px;
  }
}

@media (max-width: 720px) {
  [data-scope="moeen-why-lock"] .moeen-lock-orbit {
    width: 310px;
    height: 310px;
    --orbit-radius: 126px;
  }

 

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__node-inner {
    min-height: 34px;
    padding: 6px 9px;
    font-size: 11px;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__node i {
    width: 20px;
    height: 20px;
  }
}


/* =========================================================
  Moeen Orbit Center - Circular Premium Animated Core
  شكل دائري مختلف مع أنيميشن خفيف
========================================================= */

[data-scope="moeen-why-lock"] .moeen-lock-orbit__center {
  position: relative;
  z-index: 6;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 118px !important;
  height: 118px !important;
  padding: 14px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(70, 242, 232, 0.34) !important;
  text-align: center;
  overflow: hidden;
  color: #F6FAFA;
  background:
    radial-gradient(circle at 50% 42%, rgba(20, 217, 204, 0.34), transparent 48%),
    linear-gradient(180deg, rgba(8, 18, 25, 0.92), rgba(6, 18, 26, 0.72)) !important;
  box-shadow:
    0 0 0 10px rgba(20, 217, 204, 0.055),
    0 0 0 22px rgba(20, 217, 204, 0.018),
    0 22px 62px rgba(0, 0, 0, 0.28),
    inset 0 0 34px rgba(20, 217, 204, 0.18) !important;
  transform: none !important;
  isolation: isolate;
  transition:
    transform 0.42s cubic-bezier(.34, 1.56, .64, 1),
    border-color 0.32s cubic-bezier(.4, 0, .2, 1),
    box-shadow 0.32s cubic-bezier(.4, 0, .2, 1);
}

/* إلغاء أي دوران قديم للعناصر الداخلية */
[data-scope="moeen-why-lock"] .moeen-lock-orbit__center > * {
  transform: none !important;
}

/* إخفاء حرف م لو موجود */
[data-scope="moeen-why-lock"] .moeen-lock-orbit__logo {
  display: none !important;
}

/* حلقة داخلية متحركة */
[data-scope="moeen-why-lock"] .moeen-lock-orbit__center::before {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: -1;
  border-radius: inherit;
  border: 1px dashed rgba(70, 242, 232, 0.34);
  opacity: 0.82;
  animation: moeenCoreSpin 14s linear infinite;
}

/* نقطة ضوء تدور */
[data-scope="moeen-why-lock"] .moeen-lock-orbit__center::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #D7B35A;
  box-shadow:
    0 0 14px rgba(215, 179, 90, 0.55),
    0 0 24px rgba(20, 217, 204, 0.28);
  transform-origin: 0 50px;
  animation: moeenCoreDot 6s linear infinite;
}

/* النص */
[data-scope="moeen-why-lock"] .moeen-lock-orbit__center strong {
  position: relative;
  z-index: 3;
  display: block;
  margin: 0 !important;
  color: #F6FAFA;
  font-size: 24px !important;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

[data-scope="moeen-why-lock"] .moeen-lock-orbit__center small {
  position: relative;
  z-index: 3;
  display: block;
  max-width: 82px;
  margin-top: 7px !important;
  color: rgba(246, 250, 250, 0.62);
  font-size: 9px !important;
  font-weight: 850;
  line-height: 1.35;
}

/* عند تغيير الكارت */
[data-scope="moeen-why-lock"].is-changing .moeen-lock-orbit__center {
  transform: scale(1.045) !important;
  border-color: rgba(215, 179, 90, 0.42) !important;
  box-shadow:
    0 0 0 12px rgba(20, 217, 204, 0.052),
    0 0 0 28px rgba(215, 179, 90, 0.020),
    0 26px 74px rgba(20, 217, 204, 0.18),
    inset 0 0 42px rgba(20, 217, 204, 0.22) !important;
}

/* أنيميشن خفيف */
@keyframes moeenCoreSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes moeenCoreDot {
  from {
    transform: rotate(0deg) translateX(-50%);
  }

  to {
    transform: rotate(360deg) translateX(-50%);
  }
}

/* إيقاف الحركة لمن يفضل تقليل الحركة */
@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-why-lock"] .moeen-lock-orbit__center::before,
  [data-scope="moeen-why-lock"] .moeen-lock-orbit__center::after {
    animation: none !important;
  }
}

/* موبايل */
@media (max-width: 720px) {
  [data-scope="moeen-why-lock"] .moeen-lock-orbit__center {
    width: 96px !important;
    height: 96px !important;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__center strong {
    font-size: 21px !important;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__center small {
    font-size: 8px !important;
  }

  [data-scope="moeen-why-lock"] .moeen-lock-orbit__center::after {
    transform-origin: 0 40px;
  }
}



/* =========================================================
  Home Stats Flow | إحصائيات مركز معين
  Scope: [data-scope="moeen-stats"]
========================================================= */

/* =========================================================
   Moeen Stats Flow - Premium Pipeline Style
   تحسين سكشن الإحصائيات فقط بدون تعديل HTML أو JS
========================================================= */

[data-scope="moeen-stats"].moeen-stats-flow {
  --msf-bg: #02070b;
  --msf-panel: rgba(6, 17, 25, 0.72);
  --msf-card: rgba(8, 18, 25, 0.92);
  --msf-card-hover: rgba(10, 24, 34, 0.98);

  --msf-cyan: #14d9cc;
  --msf-cyan-2: #46f2e8;
  --msf-gold: #d7b35a;
  --msf-gold-2: #f1d56b;

  --msf-text: #f6fafa;
  --msf-muted: rgba(246, 250, 250, 0.66);
  --msf-soft: rgba(246, 250, 250, 0.08);
  --msf-ease: cubic-bezier(.22, 1, .36, 1);

  position: relative;
  overflow: hidden;
  isolation: isolate;
  direction: rtl;
  padding: 66px 0 76px !important;
  background:
  linear-gradient(rgba(20, 217, 204, 0.026) 1px, transparent 1px),
  linear-gradient(90deg, rgba(20, 217, 204, 0.026) 1px, transparent 1px),
  radial-gradient(circle at 50% 16%, rgba(20, 217, 204, 0.055), transparent 34%),
  radial-gradient(circle at 14% 82%, rgba(215, 179, 90, 0.045), transparent 30%),
  var(--msf-bg) !important;

background-size:
  42px 42px,
  42px 42px,
  auto,
  auto,
  auto;
  color: var(--msf-text);
  border: 0 !important;
  border-block: 0 !important;
}

/* هالات خفيفة بدون بوردر خارجي */
[data-scope="moeen-stats"].moeen-stats-flow::before {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 1px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(20, 217, 204, 0.16),
    rgba(215, 179, 90, 0.12),
    transparent
  );
  opacity: 0.75;
}

[data-scope="moeen-stats"].moeen-stats-flow::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -280px;
  top: 18%;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 217, 204, 0.055), transparent 70%);
}

[data-scope="moeen-stats"] .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   Header
========================================================= */

[data-scope="moeen-stats"] .msf-head {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

[data-scope="moeen-stats"] .msf-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 15px;
  border: 1px solid rgba(20, 217, 204, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(20, 217, 204, 0.09), rgba(20, 217, 204, 0.035));
  color: var(--msf-cyan-2);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

[data-scope="moeen-stats"] .msf-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--msf-gold);
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px rgba(215, 179, 90, 0.08);
}

[data-scope="moeen-stats"] .msf-title {
  margin: 17px 0 0;
  color: var(--msf-text);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.045em;
}

[data-scope="moeen-stats"] .msf-title span {
  color: var(--msf-gold);
}

[data-scope="moeen-stats"] .msf-lead {
  max-width: 660px;
  margin: 16px auto 0;
  color: var(--msf-muted);
  font-size: 15px;
  line-height: 1.95;
}

/* =========================================================
   Pipeline Wrapper
========================================================= */

[data-scope="moeen-stats"] .msf-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 28px;
  align-items: center;
  min-height: 286px;
  padding: 38px 0;
}

/* خط البايب لاين الرئيسي */
[data-scope="moeen-stats"] .msf-track::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  z-index: 1;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(20, 217, 204, 0.12),
      rgba(20, 217, 204, 0.34),
      rgba(215, 179, 90, 0.22),
      rgba(20, 217, 204, 0.34),
      rgba(20, 217, 204, 0.12),
      transparent
    );
  transform: translateY(-50%);
  opacity: 0.92;
  box-shadow:
    0 0 18px rgba(20, 217, 204, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* خط خفيف إضافي فوق البايب لاين */
[data-scope="moeen-stats"] .msf-track::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: calc(50% - 15px);
  z-index: 1;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(20, 217, 204, 0.10),
    rgba(215, 179, 90, 0.08),
    transparent
  );
  opacity: 0.7;
}

[data-scope="moeen-stats"] .msf-step {
  position: relative;
  min-height: 238px;
}

/* =========================================================
   Timeline Dots
========================================================= */

[data-scope="moeen-stats"] .msf-dot {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(20, 217, 204, 0.58);
  background: rgba(2, 7, 11, 0.98);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 8px rgba(20, 217, 204, 0.065),
    0 0 20px rgba(20, 217, 204, 0.13),
    inset 0 0 0 4px rgba(20, 217, 204, 0.18);
  pointer-events: none;
  transition:
    border-color 0.28s var(--msf-ease),
    box-shadow 0.28s var(--msf-ease),
    transform 0.28s var(--msf-ease);
}

[data-scope="moeen-stats"] .msf-dot::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: var(--msf-cyan);
  transition:
    background 0.28s var(--msf-ease),
    transform 0.28s var(--msf-ease);
}

[data-scope="moeen-stats"] .msf-step:hover .msf-dot,
[data-scope="moeen-stats"] .msf-step.is-flow-active .msf-dot {
  border-color: rgba(70, 242, 232, 0.84);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow:
    0 0 0 9px rgba(20, 217, 204, 0.085),
    0 0 28px rgba(20, 217, 204, 0.24),
    inset 0 0 0 4px rgba(20, 217, 204, 0.26);
}

[data-scope="moeen-stats"] .msf-step:hover .msf-dot::before,
[data-scope="moeen-stats"] .msf-step.is-flow-active .msf-dot::before {
  background: var(--msf-cyan-2);
  transform: scale(1.2);
}

/* النقطة الذهبية للمرحلة الأخيرة */
[data-scope="moeen-stats"] .msf-step:has(.is-gold) .msf-dot {
  border-color: rgba(215, 179, 90, 0.62);
  box-shadow:
    0 0 0 8px rgba(215, 179, 90, 0.065),
    0 0 20px rgba(215, 179, 90, 0.13),
    inset 0 0 0 4px rgba(215, 179, 90, 0.18);
}

[data-scope="moeen-stats"] .msf-step:has(.is-gold) .msf-dot::before {
  background: var(--msf-gold-2);
}

/* =========================================================
   Moving Pulse - JS keeps working
========================================================= */

[data-scope="moeen-stats"] .msf-pulse {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--msf-cyan-2);
  opacity: 0;
  pointer-events: none;
  box-shadow:
    0 0 0 6px rgba(20, 217, 204, 0.09),
    0 0 20px rgba(20, 217, 204, 0.40),
    0 0 34px rgba(20, 217, 204, 0.16);
  transform: translate3d(0, 0, 0) translate(-50%, -50%) scale(0.72);
  transition:
    transform 0.88s cubic-bezier(.32, .72, .18, 1),
    opacity 0.18s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

[data-scope="moeen-stats"] .msf-pulse.is-on {
  opacity: 1;
  transform: translate3d(var(--pulse-x, 0px), var(--pulse-y, 0px), 0) translate(-50%, -50%) scale(1);
}

[data-scope="moeen-stats"] .msf-pulse.is-gold {
  background: var(--msf-gold-2);
  box-shadow:
    0 0 0 6px rgba(215, 179, 90, 0.10),
    0 0 20px rgba(215, 179, 90, 0.38),
    0 0 34px rgba(215, 179, 90, 0.16);
}

/* =========================================================
   Cards
========================================================= */

[data-scope="moeen-stats"] .msf-card {
  position: absolute;
  left: 50%;
  z-index: 4;
  width: 190px;
  min-height: 118px;
  padding: 15px 16px;
  border: 1px solid rgba(20, 217, 204, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 12%, rgba(20, 217, 204, 0.11), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--msf-card);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 36px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.30s var(--msf-ease),
    border-color 0.30s var(--msf-ease),
    background 0.30s var(--msf-ease),
    box-shadow 0.30s var(--msf-ease),
    filter 0.30s ease;
}

[data-scope="moeen-stats"] .msf-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.052);
  border-radius: 17px;
  pointer-events: none;
}

[data-scope="moeen-stats"] .msf-card::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 28px;
  width: 60px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--msf-cyan),
    var(--msf-gold),
    transparent
  );
  opacity: 0.68;
  transition:
    opacity 0.28s var(--msf-ease),
    width 0.28s var(--msf-ease);
}

/* توزيع الكروت فوق وتحت الخط بدون تغيير HTML */
[data-scope="moeen-stats"] .msf-step:nth-of-type(odd) .msf-card {
  bottom: calc(50% + 38px);
  transform: translateX(-50%);
}

[data-scope="moeen-stats"] .msf-step:nth-of-type(even) .msf-card {
  top: calc(50% + 38px);
  transform: translateX(-50%);
}

[data-scope="moeen-stats"] .msf-step:nth-of-type(odd) .msf-card:hover,
[data-scope="moeen-stats"] .msf-step:nth-of-type(odd).is-flow-active .msf-card {
  transform: translateX(-50%) translateY(-5px);
}

[data-scope="moeen-stats"] .msf-step:nth-of-type(even) .msf-card:hover,
[data-scope="moeen-stats"] .msf-step:nth-of-type(even).is-flow-active .msf-card {
  transform: translateX(-50%) translateY(5px);
}

[data-scope="moeen-stats"] .msf-card:hover,
[data-scope="moeen-stats"] .msf-step.is-flow-active .msf-card {
  border-color: rgba(20, 217, 204, 0.42);
  background:
    radial-gradient(circle at 84% 12%, rgba(20, 217, 204, 0.17), transparent 38%),
    linear-gradient(180deg, rgba(20, 217, 204, 0.055), rgba(255, 255, 255, 0.014)),
    var(--msf-card-hover);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 22px 44px rgba(0, 0, 0, 0.25);
  filter: saturate(1.06);
}

[data-scope="moeen-stats"] .msf-card:hover::after,
[data-scope="moeen-stats"] .msf-step.is-flow-active .msf-card::after {
  opacity: 1;
  width: 84px;
}

/* Card Gold */
[data-scope="moeen-stats"] .msf-card.is-gold {
  border-color: rgba(215, 179, 90, 0.26);
  background:
    radial-gradient(circle at 84% 12%, rgba(215, 179, 90, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--msf-card);
}

[data-scope="moeen-stats"] .msf-card.is-gold::after {
  background: linear-gradient(
    90deg,
    transparent,
    var(--msf-gold),
    var(--msf-gold-2),
    transparent
  );
}

[data-scope="moeen-stats"] .msf-card.is-gold:hover,
[data-scope="moeen-stats"] .msf-step.is-flow-active .msf-card.is-gold {
  border-color: rgba(215, 179, 90, 0.48);
  background:
    radial-gradient(circle at 84% 12%, rgba(215, 179, 90, 0.17), transparent 38%),
    linear-gradient(180deg, rgba(215, 179, 90, 0.050), rgba(255, 255, 255, 0.014)),
    var(--msf-card-hover);
}

/* =========================================================
   Connectors between Card and Pipeline
========================================================= */

[data-scope="moeen-stats"] .msf-step::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  width: 1px;
  height: 38px;
  transform: translateX(-50%);
  opacity: 0.62;
  transition:
    opacity 0.28s var(--msf-ease),
    background 0.28s var(--msf-ease),
    box-shadow 0.28s var(--msf-ease);
}

[data-scope="moeen-stats"] .msf-step:nth-of-type(odd)::before {
  top: calc(50% - 38px);
  background: linear-gradient(0deg, rgba(20, 217, 204, 0.03), rgba(20, 217, 204, 0.42));
}

[data-scope="moeen-stats"] .msf-step:nth-of-type(even)::before {
  bottom: calc(50% - 38px);
  background: linear-gradient(180deg, rgba(20, 217, 204, 0.03), rgba(20, 217, 204, 0.42));
}

[data-scope="moeen-stats"] .msf-step:hover::before,
[data-scope="moeen-stats"] .msf-step.is-flow-active::before {
  opacity: 1;
  background: linear-gradient(180deg, rgba(20, 217, 204, 0.06), rgba(20, 217, 204, 0.70));
  box-shadow: 0 0 18px rgba(20, 217, 204, 0.12);
}

[data-scope="moeen-stats"] .msf-step:hover:has(.is-gold)::before,
[data-scope="moeen-stats"] .msf-step.is-flow-active:has(.is-gold)::before {
  background: linear-gradient(180deg, rgba(215, 179, 90, 0.08), rgba(215, 179, 90, 0.70));
  box-shadow: 0 0 18px rgba(215, 179, 90, 0.13);
}

/* =========================================================
   Card Content
========================================================= */

[data-scope="moeen-stats"] .msf-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

[data-scope="moeen-stats"] .msf-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 25px;
  max-width: 128px;
  padding: 5px 9px;
  border: 1px solid rgba(20, 217, 204, 0.18);
  border-radius: 999px;
  background: rgba(20, 217, 204, 0.055);
  color: rgba(246, 250, 250, 0.76);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition:
    border-color 0.24s var(--msf-ease),
    background 0.24s var(--msf-ease),
    color 0.24s var(--msf-ease);
}

[data-scope="moeen-stats"] .msf-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--msf-cyan);
  box-shadow: 0 0 0 4px rgba(20, 217, 204, 0.065);
  transition:
    background 0.22s ease,
    box-shadow 0.22s ease;
}

[data-scope="moeen-stats"] .msf-card:hover .msf-chip,
[data-scope="moeen-stats"] .msf-step.is-flow-active .msf-chip {
  border-color: rgba(20, 217, 204, 0.32);
  background: rgba(20, 217, 204, 0.075);
  color: rgba(246, 250, 250, 0.90);
}

[data-scope="moeen-stats"] .msf-step:hover .msf-chip::before,
[data-scope="moeen-stats"] .msf-step.is-flow-active .msf-chip::before {
  background: var(--msf-cyan-2);
  box-shadow:
    0 0 0 4px rgba(20, 217, 204, 0.10),
    0 0 14px rgba(20, 217, 204, 0.26);
}

[data-scope="moeen-stats"] .msf-card.is-gold .msf-chip {
  border-color: rgba(215, 179, 90, 0.22);
  background: rgba(215, 179, 90, 0.060);
}

[data-scope="moeen-stats"] .msf-card.is-gold .msf-chip::before,
[data-scope="moeen-stats"] .msf-card.is-gold:hover .msf-chip::before,
[data-scope="moeen-stats"] .msf-step.is-flow-active .msf-card.is-gold .msf-chip::before {
  background: var(--msf-gold-2);
  box-shadow:
    0 0 0 4px rgba(215, 179, 90, 0.10),
    0 0 14px rgba(215, 179, 90, 0.24);
}

[data-scope="moeen-stats"] .msf-index {
  display: block;
  color: var(--msf-gold);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  opacity: 0.90;
  flex: 0 0 auto;
}

[data-scope="moeen-stats"] .msf-value {
  display: block;
  margin: 0;
  color: var(--msf-cyan-2);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 950;
  text-shadow: 0 0 22px rgba(20, 217, 204, 0.12);
  transition:
    text-shadow 0.25s ease,
    color 0.25s ease,
    transform 0.25s var(--msf-ease);
}

[data-scope="moeen-stats"] .msf-card:hover .msf-value,
[data-scope="moeen-stats"] .msf-step.is-flow-active .msf-value {
  color: var(--msf-cyan-2);
  text-shadow: 0 0 30px rgba(20, 217, 204, 0.26);
  transform: translateY(-1px);
}

[data-scope="moeen-stats"] .msf-card.is-gold .msf-value {
  color: var(--msf-gold-2);
  text-shadow: 0 0 22px rgba(215, 179, 90, 0.16);
}

[data-scope="moeen-stats"] .msf-card.is-gold:hover .msf-value,
[data-scope="moeen-stats"] .msf-step.is-flow-active .msf-card.is-gold .msf-value {
  color: var(--msf-gold-2);
  text-shadow: 0 0 30px rgba(215, 179, 90, 0.26);
}

[data-scope="moeen-stats"] .msf-label {
  display: block;
  margin-top: 8px;
  color: var(--msf-text);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.45;
}

[data-scope="moeen-stats"] .msf-text {
  display: none;
}

/* =========================================================
   Reveal State - Compatible with existing JS
========================================================= */

[data-scope="moeen-stats"] .msf-step {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(1.4px);
  transition:
    opacity 0.7s var(--msf-ease),
    transform 0.7s var(--msf-ease),
    filter 0.7s var(--msf-ease);
}

[data-scope="moeen-stats"].is-visible .msf-step {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

[data-scope="moeen-stats"].is-visible .msf-step:nth-of-type(1) {
  transition-delay: 0.06s;
}

[data-scope="moeen-stats"].is-visible .msf-step:nth-of-type(2) {
  transition-delay: 0.13s;
}

[data-scope="moeen-stats"].is-visible .msf-step:nth-of-type(3) {
  transition-delay: 0.20s;
}

[data-scope="moeen-stats"].is-visible .msf-step:nth-of-type(4) {
  transition-delay: 0.27s;
}

[data-scope="moeen-stats"].is-visible .msf-track::before {
  animation: msfLineIn 1s var(--msf-ease) both;
}

@keyframes msfLineIn {
  from {
    opacity: 0;
    transform: translateY(-50%) scaleX(0.55);
  }

  to {
    opacity: 0.92;
    transform: translateY(-50%) scaleX(1);
  }
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 920px) {
  [data-scope="moeen-stats"] .msf-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    min-height: auto;
    padding: 0;
  }

  [data-scope="moeen-stats"] .msf-track::before,
  [data-scope="moeen-stats"] .msf-track::after,
  [data-scope="moeen-stats"] .msf-pulse,
  [data-scope="moeen-stats"] .msf-dot,
  [data-scope="moeen-stats"] .msf-step::before {
    display: none !important;
  }

  [data-scope="moeen-stats"] .msf-step {
    min-height: auto;
  }

  [data-scope="moeen-stats"] .msf-card,
  [data-scope="moeen-stats"] .msf-step:nth-of-type(odd) .msf-card,
  [data-scope="moeen-stats"] .msf-step:nth-of-type(even) .msf-card {
    position: relative;
    inset: auto;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-height: 126px;
    transform: none;
  }

  [data-scope="moeen-stats"] .msf-step:nth-of-type(odd) .msf-card:hover,
  [data-scope="moeen-stats"] .msf-step:nth-of-type(even) .msf-card:hover,
  [data-scope="moeen-stats"] .msf-step:nth-of-type(odd).is-flow-active .msf-card,
  [data-scope="moeen-stats"] .msf-step:nth-of-type(even).is-flow-active .msf-card {
    transform: translateY(-5px);
  }
}

@media (max-width: 760px) {
  [data-scope="moeen-stats"].moeen-stats-flow {
    padding: 56px 0 64px !important;
  }

  [data-scope="moeen-stats"] .container {
    width: min(100% - 28px, 1120px);
  }

  [data-scope="moeen-stats"] .msf-head {
    margin-bottom: 30px;
    text-align: right;
  }

  [data-scope="moeen-stats"] .msf-title {
    font-size: 34px;
    letter-spacing: -0.025em;
  }

  [data-scope="moeen-stats"] .msf-lead {
    font-size: 14px;
    margin-inline: 0;
  }

  [data-scope="moeen-stats"] .msf-track {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  [data-scope="moeen-stats"] .msf-step {
    opacity: 1;
    filter: none;
    transform: none;
  }

  [data-scope="moeen-stats"] .msf-card,
  [data-scope="moeen-stats"] .msf-step:nth-of-type(odd) .msf-card,
  [data-scope="moeen-stats"] .msf-step:nth-of-type(even) .msf-card {
    width: 100%;
    min-height: 118px;
    padding: 15px 16px;
  }

  [data-scope="moeen-stats"] .msf-value {
    font-size: 34px;
  }

  [data-scope="moeen-stats"] .msf-label {
    font-size: 12.5px;
  }
}

/* =========================================================
   Reduced Motion
========================================================= */

@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-stats"] *,
  [data-scope="moeen-stats"] *::before,
  [data-scope="moeen-stats"] *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-scope="moeen-stats"] .msf-step {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  [data-scope="moeen-stats"] .msf-pulse {
    display: none !important;
  }
}


/* =========================================================
   Section: Identity Cards - Compact Premium Style
   السكشن: الرسالة والرؤية والنقطة التنافسية
   استايل أصغر وأهدأ ومختلف عن الكروت الكبيرة
   ========================================================= */

/* ---------- Section Wrapper ---------- */
[data-scope="moeen-identity-cards"] {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* إزالة أي إحساس بفاصل ثقيل مع الحفاظ على الخلفية الحالية */
[data-scope="moeen-identity-cards"]::before {
  content: "";
  position: absolute;
  inset-inline: 12%;
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(20, 217, 204, 0.18),
    rgba(215, 179, 90, 0.12),
    transparent
  );
}

/* ---------- Grid ---------- */
[data-scope="moeen-identity-cards"] .moeen-identity-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* ---------- Compact Card ---------- */
[data-scope="moeen-identity-cards"] .moeen-identity-cards__card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 24px 24px 22px;
  border: 1px solid rgba(20, 217, 204, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    rgba(8, 18, 25, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 14px 38px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    background 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

/* خط جانبي رفيع يعطي هوية بدون زحمة */
[data-scope="moeen-identity-cards"] .moeen-identity-cards__card::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  width: 3px;
  height: 46px;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(180deg, var(--teal), rgba(20, 217, 204, 0.08));
  opacity: 0.55;
  transition:
    height 0.28s var(--ease),
    opacity 0.28s var(--ease),
    background 0.28s var(--ease);
}

/* لمعة صغيرة جدا عند الهوفر */
[data-scope="moeen-identity-cards"] .moeen-identity-cards__card::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  pointer-events: none;
  border-radius: 999px;
  background: rgba(20, 217, 204, 0.075);
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}

/* الكارت الذهبي */
[data-scope="moeen-identity-cards"] .moeen-identity-cards__card--accent {
  border-color: rgba(215, 179, 90, 0.20);
  background:
    linear-gradient(180deg, rgba(215, 179, 90, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(8, 18, 25, 0.74);
}

[data-scope="moeen-identity-cards"] .moeen-identity-cards__card--accent::before {
  background: linear-gradient(180deg, var(--gold), rgba(215, 179, 90, 0.08));
}

/* ---------- Top Row: Icon + Number ---------- */
[data-scope="moeen-identity-cards"] .moeen-identity-cards__icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(20, 217, 204, 0.28);
  border-radius: 15px;
  background: rgba(20, 217, 204, 0.075);
  color: var(--teal);
  transition:
    transform 0.28s var(--spring),
    color 0.28s var(--ease),
    background 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

[data-scope="moeen-identity-cards"] .moeen-identity-cards__icon svg {
  width: 23px;
  height: 23px;
}

[data-scope="moeen-identity-cards"] .moeen-identity-cards__card--accent .moeen-identity-cards__icon {
  color: var(--gold);
  border-color: rgba(215, 179, 90, 0.30);
  background: rgba(215, 179, 90, 0.085);
}

/* الرقم */
[data-scope="moeen-identity-cards"] .moeen-identity-cards__eyebrow {
  position: absolute;
  top: 25px;
  left: 24px;
  z-index: 1;
  color: rgba(246, 250, 250, 0.28);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  transition:
    color 0.28s var(--ease),
    transform 0.28s var(--ease);
}

/* ---------- Text ---------- */
[data-scope="moeen-identity-cards"] .moeen-identity-cards__card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 900;
}

[data-scope="moeen-identity-cards"] .moeen-identity-cards__card p {
  position: relative;
  z-index: 1;
  max-width: 92%;
  margin: 0;
  color: rgba(246, 250, 250, 0.64);
  font-size: 14px;
  line-height: 1.9;
}

/* ---------- Hover State ---------- */
[data-scope="moeen-identity-cards"] .moeen-identity-cards__card:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 217, 204, 0.30);
  background:
    linear-gradient(180deg, rgba(20, 217, 204, 0.055), rgba(255, 255, 255, 0.016)),
    rgba(8, 18, 25, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 54px rgba(0, 0, 0, 0.24);
}

[data-scope="moeen-identity-cards"] .moeen-identity-cards__card:hover::before {
  height: 72px;
  opacity: 0.95;
}

[data-scope="moeen-identity-cards"] .moeen-identity-cards__card:hover::after {
  opacity: 1;
}

[data-scope="moeen-identity-cards"] .moeen-identity-cards__card:hover .moeen-identity-cards__icon {
  transform: translateY(-2px) rotate(-3deg);
  background: var(--teal);
  border-color: var(--teal);
  color: var(--carbon);
}

[data-scope="moeen-identity-cards"] .moeen-identity-cards__card:hover .moeen-identity-cards__eyebrow {
  color: rgba(20, 217, 204, 0.42);
  transform: translateY(-2px);
}

/* Accent hover */
[data-scope="moeen-identity-cards"] .moeen-identity-cards__card--accent:hover {
  border-color: rgba(215, 179, 90, 0.38);
  background:
    linear-gradient(180deg, rgba(215, 179, 90, 0.07), rgba(255, 255, 255, 0.016)),
    rgba(8, 18, 25, 0.84);
}

[data-scope="moeen-identity-cards"] .moeen-identity-cards__card--accent:hover .moeen-identity-cards__icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--carbon);
}

[data-scope="moeen-identity-cards"] .moeen-identity-cards__card--accent:hover .moeen-identity-cards__eyebrow {
  color: rgba(215, 179, 90, 0.46);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  [data-scope="moeen-identity-cards"] .moeen-identity-cards__grid {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-identity-cards"] .moeen-identity-cards__card {
    min-height: auto;
  }

  [data-scope="moeen-identity-cards"] .moeen-identity-cards__card p {
    max-width: 100%;
  }
}

@media (max-width: 540px) {
  [data-scope="moeen-identity-cards"] .moeen-identity-cards__grid {
    gap: 14px;
  }

  [data-scope="moeen-identity-cards"] .moeen-identity-cards__card {
    padding: 22px 22px 20px;
    border-radius: 20px;
  }

  [data-scope="moeen-identity-cards"] .moeen-identity-cards__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 14px;
  }

  [data-scope="moeen-identity-cards"] .moeen-identity-cards__icon svg {
    width: 21px;
    height: 21px;
  }

  [data-scope="moeen-identity-cards"] .moeen-identity-cards__eyebrow {
    top: 23px;
    left: 22px;
    font-size: 24px;
  }

  [data-scope="moeen-identity-cards"] .moeen-identity-cards__card h3 {
    font-size: 20px;
  }

  [data-scope="moeen-identity-cards"] .moeen-identity-cards__card p {
    font-size: 13.5px;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-identity-cards"] .moeen-identity-cards__card,
  [data-scope="moeen-identity-cards"] .moeen-identity-cards__card::before,
  [data-scope="moeen-identity-cards"] .moeen-identity-cards__card::after,
  [data-scope="moeen-identity-cards"] .moeen-identity-cards__icon,
  [data-scope="moeen-identity-cards"] .moeen-identity-cards__eyebrow {
    transition: none !important;
  }
}


/* =========================================================
   03) About Grid
   سكشن التعريف بالمركز: النص + الصورة/العنصر البصري
========================================================= */



/* =========================================================
   Section: About Intro
   السكشن: ما هو مركز معين؟
   تحسين الشكل بدون تغيير خلفية السكشن العامة
   ========================================================= */

/* ---------- Main Shell ---------- */
[data-scope="moeen-about-intro"] .moeen-about-intro__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
  min-height: 150px;
}

/* ---------- Content ---------- */
[data-scope="moeen-about-intro"] .moeen-about-intro__content {
  max-width: 720px;
  justify-self: start;
}

[data-scope="moeen-about-intro"] .moeen-about-intro__kicker {
  margin-bottom: 18px;
}

[data-scope="moeen-about-intro"] .moeen-about-intro__title {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.035em;
}

[data-scope="moeen-about-intro"] .moeen-about-intro__title span {
  color: var(--teal);
}

[data-scope="moeen-about-intro"] .moeen-about-intro__lead {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2.05;
}

/* ---------- Image Card ---------- */
[data-scope="moeen-about-intro"] .moeen-about-intro__media {
  position: relative;
  width: min(100%, 430px);
  height: 300px;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(35, 198, 189, 0.18);
  border-radius: 28px;
  background: rgba(8, 18, 25, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 58px rgba(0, 0, 0, 0.24);
  transform: translateY(8px);
  transition:
    transform 0.32s var(--ease),
    border-color 0.32s var(--ease),
    box-shadow 0.32s var(--ease);
}

[data-scope="moeen-about-intro"] .moeen-about-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition:
    transform 0.62s var(--ease),
    filter 0.62s var(--ease);
}

/* Overlay */
[data-scope="moeen-about-intro"] .moeen-about-intro__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 7, 11, 0.02) 20%, rgba(2, 7, 11, 0.72) 100%),
    radial-gradient(circle at 78% 18%, rgba(35, 198, 189, 0.18), transparent 35%);
  opacity: 0.86;
  transition: opacity 0.32s var(--ease);
}

/* Inner Border */
[data-scope="moeen-about-intro"] .moeen-about-intro__media::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  opacity: 0.78;
  transition:
    opacity 0.32s var(--ease),
    border-color 0.32s var(--ease);
}

/* ---------- Hover Tag ---------- */
[data-scope="moeen-about-intro"] .moeen-about-intro__tag {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 40px);
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(35, 198, 189, 0.34);
  border-radius: 999px;
  background: rgba(8, 18, 25, 0.86);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease),
    background 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

[data-scope="moeen-about-intro"] .moeen-about-intro__tag::before {
  content: "◆";
  color: var(--gold);
  font-size: 9px;
}

/* ---------- Hover ---------- */
[data-scope="moeen-about-intro"] .moeen-about-intro__media:hover {
  transform: translateY(0);
  border-color: rgba(35, 198, 189, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 30px 74px rgba(0, 0, 0, 0.30);
}

[data-scope="moeen-about-intro"] .moeen-about-intro__media:hover img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.03);
}

[data-scope="moeen-about-intro"] .moeen-about-intro__media:hover::after {
  opacity: 1;
  border-color: rgba(35, 198, 189, 0.26);
}

[data-scope="moeen-about-intro"] .moeen-about-intro__media:hover .moeen-about-intro__tag {
  opacity: 1;
  transform: translateY(0);
  background: rgba(8, 18, 25, 0.92);
  border-color: rgba(35, 198, 189, 0.48);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  [data-scope="moeen-about-intro"] .moeen-about-intro__shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  [data-scope="moeen-about-intro"] .moeen-about-intro__media {
    order: -1;
    justify-self: center;
    width: min(100%, 560px);
    height: 320px;
  }

  [data-scope="moeen-about-intro"] .moeen-about-intro__content {
    max-width: 100%;
  }
}

@media (max-width: 540px) {
  [data-scope="moeen-about-intro"] .moeen-about-intro__shell {
    gap: 28px;
  }

  [data-scope="moeen-about-intro"] .moeen-about-intro__title {
    font-size: 34px;
    letter-spacing: -0.02em;
  }

  [data-scope="moeen-about-intro"] .moeen-about-intro__lead {
    font-size: 15px;
  }

  [data-scope="moeen-about-intro"] .moeen-about-intro__media {
    width: 100%;
    height: 240px;
    border-radius: 22px;
  }

  [data-scope="moeen-about-intro"] .moeen-about-intro__media::after {
    inset: 10px;
    border-radius: 16px;
  }

  [data-scope="moeen-about-intro"] .moeen-about-intro__tag {
    right: 16px;
    bottom: 16px;
    opacity: 1;
    transform: none;
    min-height: 36px;
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-about-intro"] .moeen-about-intro__media,
  [data-scope="moeen-about-intro"] .moeen-about-intro__media img,
  [data-scope="moeen-about-intro"] .moeen-about-intro__media::before,
  [data-scope="moeen-about-intro"] .moeen-about-intro__media::after,
  [data-scope="moeen-about-intro"] .moeen-about-intro__tag {
    transition: none !important;
  }
}

/* =========================================================
   04) Why Cards
   سكشن لماذا معين / نقاط القوة
========================================================= */
/* =========================================================
   Section: Why Moeen - Premium Mosaic Board
   السكشن: لماذا معين؟
   تصميم مختلف عن الإحصائيات بدون Pipeline وبدون Slider
   ========================================================= */

/* ---------- Wrapper ---------- */
[data-scope="moeen-why-map"] {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* خط علوي خفيف فقط بدون تغيير خلفية السكشن */
[data-scope="moeen-why-map"]::before {
  content: "";
  position: absolute;
  inset-inline: 12%;
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(35, 198, 189, 0.16),
    rgba(217, 175, 85, 0.12),
    transparent
  );
}

/* ---------- Head ---------- */
[data-scope="moeen-why-map"] .section-head {
  margin-bottom: 44px;
}

[data-scope="moeen-why-map"] .section-title {
  font-size: clamp(36px, 5vw, 64px);
}

[data-scope="moeen-why-map"] .section-lead {
  max-width: 710px;
}

/* ---------- Stage / Mosaic Board ---------- */
[data-scope="moeen-why-map"] .moeen-why-map__stage {
  position: relative;
  width: min(100%, 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(168px, auto);
  gap: 18px;
  padding: 26px;
  border: 0 !important;
  border-radius: 0;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 36%, rgba(35, 198, 189, 0.04), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    transparent;
  background-size: auto, 38px 38px, 38px 38px, auto;
}

/* زخرفة خلفية ناعمة بدون إطار خارجي */
[data-scope="moeen-why-map"] .moeen-why-map__stage::before {
  content: "";
  position: absolute;
  inset: 8%;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(35, 198, 189, 0.035), transparent 62%);
  opacity: 0.42;
}

[data-scope="moeen-why-map"] .moeen-why-map__stage::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: 50%;
  top: 50%;
  pointer-events: none;
  border-radius: 999px;
  transform: translate(50%, -50%);
  background: radial-gradient(circle, rgba(217, 175, 85, 0.025), transparent 68%);
}

/* =========================================================
   Isolated Component: Moeen Why Orbit
   دائرة معين المعزولة بدون تداخل مع أكواد المركز القديمة
   ========================================================= */

[data-scope="moeen-why-map"] .moeen-why-orbit {
  position: relative;
  z-index: 2;
  grid-column: 5 / 9;
  grid-row: 1 / 3;
  min-height: 100%;
  display: grid;
  place-items: center;
  pointer-events: none;
}

/* حاوية الدوائر */
[data-scope="moeen-why-map"] .moeen-why-orbit__ring {
  position: relative;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(20, 217, 204, 0.045), transparent 62%);
}

/* الدائرة الخارجية */
[data-scope="moeen-why-map"] .moeen-why-orbit__ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(20, 217, 204, 0.30);
  border-radius: 50%;
}

/* الدائرة الداخلية المتقطعة */
[data-scope="moeen-why-map"] .moeen-why-orbit__ring::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(20, 217, 204, 0.36);
  border-radius: 50%;
}

/* النص الداخلي */
[data-scope="moeen-why-map"] .moeen-why-orbit__text {
  position: relative;
  z-index: 3;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 217, 204, 0.44);
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 22%, rgba(20, 217, 204, 0.16), transparent 42%),
    rgba(8, 18, 25, 0.94);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 10px 26px rgba(0, 0, 0, 0.18);
}

/* النقطة الذهبية الحقيقية */
[data-scope="moeen-why-map"] .moeen-why-orbit__dot {
  position: absolute;
  z-index: 4;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  animation: moeenWhyOrbitSpin 7s linear infinite;
}

[data-scope="moeen-why-map"] .moeen-why-orbit__dot::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  box-shadow:
    0 0 0 5px rgba(217, 175, 85, 0.13),
    0 0 16px rgba(217, 175, 85, 0.42);
}

/* حركة دوران النقطة */
@keyframes moeenWhyOrbitSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ---------- Grid Placement ---------- */
[data-scope="moeen-why-map"] .moeen-why-map__item--one {
  grid-column: 1 / 5;
  grid-row: 1;
}

[data-scope="moeen-why-map"] .moeen-why-map__item--two {
  grid-column: 9 / 13;
  grid-row: 1;
}

[data-scope="moeen-why-map"] .moeen-why-map__item--three {
  grid-column: 1 / 5;
  grid-row: 2;
}

[data-scope="moeen-why-map"] .moeen-why-map__item--four {
  grid-column: 9 / 13;
  grid-row: 2;
}

[data-scope="moeen-why-map"] .moeen-why-map__item--five {
  grid-column: 3 / 11;
  grid-row: 3;
}

/* ---------- Feature Item ---------- */
[data-scope="moeen-why-map"] .moeen-why-map__item {
  position: relative;
  z-index: 3;
  min-height: 168px;
  overflow: hidden;
  padding: 22px 22px 20px;
  border: 1px solid rgba(35, 198, 189, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.014)),
    rgba(8, 18, 25, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 14px 38px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    background 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

/* الكارت الخامس مميز ولكن غير متداخل */
[data-scope="moeen-why-map"] .moeen-why-map__item--five {
  min-height: 150px;
  border-color: rgba(217, 175, 85, 0.22);
  background:
    linear-gradient(180deg, rgba(217, 175, 85, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(8, 18, 25, 0.78);
}

/* إطار داخلي */
[data-scope="moeen-why-map"] .moeen-why-map__item::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.052);
  border-radius: 16px;
  opacity: 0.78;
  transition:
    opacity 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

/* إضاءة ركنية */
[data-scope="moeen-why-map"] .moeen-why-map__item::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  left: -58px;
  bottom: -58px;
  pointer-events: none;
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.08);
  filter: blur(9px);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}

/* ---------- Number ---------- */
[data-scope="moeen-why-map"] .moeen-why-map__num {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  color: rgba(246, 250, 250, 0.20);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  transition:
    color 0.28s var(--ease),
    transform 0.28s var(--ease);
}

/* ---------- Icon ---------- */
[data-scope="moeen-why-map"] .moeen-why-map__icon {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(35, 198, 189, 0.28);
  border-radius: 15px;
  background: rgba(35, 198, 189, 0.08);
  color: var(--teal);
  transition:
    transform 0.28s var(--spring),
    background 0.28s var(--ease),
    color 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

[data-scope="moeen-why-map"] .moeen-why-map__icon svg {
  width: 21px;
  height: 21px;
}

/* ---------- Text ---------- */
[data-scope="moeen-why-map"] .moeen-why-map__item h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.42;
  font-weight: 900;
}

[data-scope="moeen-why-map"] .moeen-why-map__item p {
  position: relative;
  z-index: 2;
  max-width: 96%;
  margin: 0;
  color: rgba(246, 250, 250, 0.63);
  font-size: 13.5px;
  line-height: 1.85;
}

/* ---------- Accent Item ---------- */
[data-scope="moeen-why-map"] .moeen-why-map__item--five .moeen-why-map__icon {
  color: var(--gold);
  border-color: rgba(217, 175, 85, 0.30);
  background: rgba(217, 175, 85, 0.08);
}

/* ---------- Hover ---------- */
[data-scope="moeen-why-map"] .moeen-why-map__item:hover {
  transform: translateY(-5px);
  border-color: rgba(35, 198, 189, 0.34);
  background:
    linear-gradient(180deg, rgba(35, 198, 189, 0.052), rgba(255, 255, 255, 0.014)),
    rgba(8, 18, 25, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 62px rgba(0, 0, 0, 0.25);
}

[data-scope="moeen-why-map"] .moeen-why-map__item:hover::before {
  opacity: 1;
  border-color: rgba(35, 198, 189, 0.18);
}

[data-scope="moeen-why-map"] .moeen-why-map__item:hover::after {
  opacity: 1;
}

[data-scope="moeen-why-map"] .moeen-why-map__item:hover .moeen-why-map__icon {
  transform: translateY(-2px) rotate(-4deg);
  background: var(--teal);
  border-color: var(--teal);
  color: var(--carbon);
}

[data-scope="moeen-why-map"] .moeen-why-map__item:hover .moeen-why-map__num {
  color: rgba(35, 198, 189, 0.42);
  transform: translateY(-2px);
}

[data-scope="moeen-why-map"] .moeen-why-map__item--five:hover {
  border-color: rgba(217, 175, 85, 0.40);
  background:
    linear-gradient(180deg, rgba(217, 175, 85, 0.065), rgba(255, 255, 255, 0.014)),
    rgba(8, 18, 25, 0.86);
}

[data-scope="moeen-why-map"] .moeen-why-map__item--five:hover .moeen-why-map__icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--carbon);
}

[data-scope="moeen-why-map"] .moeen-why-map__item--five:hover .moeen-why-map__num {
  color: rgba(217, 175, 85, 0.48);
}

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
  [data-scope="moeen-why-map"] .moeen-why-map__stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    padding: 22px;
  }

  [data-scope="moeen-why-map"] .moeen-why-orbit {
    display: none;
  }

  [data-scope="moeen-why-map"] .moeen-why-map__item,
  [data-scope="moeen-why-map"] .moeen-why-map__item--one,
  [data-scope="moeen-why-map"] .moeen-why-map__item--two,
  [data-scope="moeen-why-map"] .moeen-why-map__item--three,
  [data-scope="moeen-why-map"] .moeen-why-map__item--four,
  [data-scope="moeen-why-map"] .moeen-why-map__item--five {
    grid-column: auto;
    grid-row: auto;
    min-height: 160px;
  }

  [data-scope="moeen-why-map"] .moeen-why-map__item--five {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  [data-scope="moeen-why-map"] .moeen-why-map__stage {
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  [data-scope="moeen-why-map"] .section-head {
    margin-bottom: 32px;
  }

  [data-scope="moeen-why-map"] .section-title {
    font-size: 34px;
  }

  [data-scope="moeen-why-map"] .moeen-why-map__item--five {
    grid-column: auto;
  }
}

@media (max-width: 540px) {
  [data-scope="moeen-why-map"] .moeen-why-map__stage {
    padding: 0;
    gap: 14px;
    background:
      radial-gradient(circle at 50% 36%, rgba(35, 198, 189, 0.04), transparent 34%),
      linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
      transparent;
    background-size: auto, 34px 34px, 34px 34px, auto;
  }

  [data-scope="moeen-why-map"] .moeen-why-map__item {
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
  }

  [data-scope="moeen-why-map"] .moeen-why-map__item::before {
    inset: 10px;
    border-radius: 15px;
  }

  [data-scope="moeen-why-map"] .moeen-why-map__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    border-radius: 14px;
  }

  [data-scope="moeen-why-map"] .moeen-why-map__num {
    top: 22px;
    left: 22px;
    font-size: 22px;
  }

  [data-scope="moeen-why-map"] .moeen-why-map__item h3 {
    font-size: 19px;
  }

  [data-scope="moeen-why-map"] .moeen-why-map__item p {
    font-size: 13.5px;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-why-map"] .moeen-why-map__item,
  [data-scope="moeen-why-map"] .moeen-why-map__item::before,
  [data-scope="moeen-why-map"] .moeen-why-map__item::after,
  [data-scope="moeen-why-map"] .moeen-why-map__icon,
  [data-scope="moeen-why-map"] .moeen-why-map__num,
  [data-scope="moeen-why-map"] .moeen-why-orbit__dot {
    transition: none !important;
    animation: none !important;
  }
}
/* =========================================================
   05) Generic Card Component
   الكارت العام المستخدم في أكثر من سكشن
========================================================= */
.card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, var(--carbon-2), rgba(16, 35, 49, 0.76));
  transition: 0.3s var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 0%, rgba(35, 198, 189, 0.11), transparent 45%);
  opacity: 0;
  transition: 0.35s var(--ease);
}

.card:hover {
  border-color: var(--teal-line);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 22px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border: 1px solid var(--teal-line);
  border-radius: 18px;
  background: var(--teal-dim);
  font-size: 28px;
  transition: 0.35s var(--spring);
}

.card:hover .icon {
  transform: scale(1.1) rotate(-6deg);
  background: var(--teal);
  color: var(--carbon);
}

.card-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 22px;
  color: var(--teal);
  font-weight: 900;
  transition: 0.25s var(--ease);
}

.card-link:hover {
  color: var(--teal);
  transform: translateX(-4px);
}

/* =========================================================
   06) Stats Section
   سكشن الإحصائيات
========================================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.stat {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--carbon-2);
  text-align: center;
  transition: 0.3s var(--ease);
}

.stat:hover {
  border-color: var(--teal-line);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border: 1px solid var(--teal-line);
  border-radius: 17px;
  background: var(--teal-dim);
  font-size: 24px;
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: 38px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

/* =========================================================
   07) Portfolio Section
   سكشن الأعمال / البورتفوليو
========================================================= */
/* =========================================================
   Section: Portfolio Showcase
   السكشن: نماذج المشاريع
   Clean Premium Portfolio Cards
   ========================================================= */

[data-scope="moeen-portfolio-showcase"] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

[data-scope="moeen-portfolio-showcase"]::before {
  content: "";
  position: absolute;
  inset-inline: 12%;
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(35, 198, 189, 0.18),
    rgba(217, 175, 85, 0.12),
    transparent
  );
}

/* ---------- Filters ---------- */
[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__filters {
  width: min(100%, 1040px);
  margin: 0 auto clamp(28px, 4vw, 42px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__filters button {
  min-height: 42px;
  padding: 9px 17px;
  border: 1px solid rgba(35, 198, 189, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.010)),
    rgba(8, 18, 25, 0.58);
  color: rgba(246, 250, 250, 0.76);
  font-size: 13.5px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__filters button:hover {
  transform: translateY(-2px);
  border-color: rgba(35, 198, 189, 0.34);
  background: rgba(35, 198, 189, 0.08);
  color: var(--white);
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__filters button.is-active {
  border-color: rgba(217, 175, 85, 0.44);
  background:
    linear-gradient(135deg, rgba(217, 175, 85, 0.92), rgba(35, 198, 189, 0.86));
  color: var(--carbon);
}

/* ---------- Grid ---------- */
[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

/* ---------- Card ---------- */
[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid rgba(35, 198, 189, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.036), rgba(255,255,255,0.012)),
    rgba(8, 18, 25, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 14px 38px rgba(0,0,0,0.14);
  transition:
    transform 0.30s var(--ease),
    border-color 0.30s var(--ease),
    background 0.30s var(--ease),
    box-shadow 0.30s var(--ease);
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.048);
  border-radius: 20px;
  opacity: 0.7;
  transition:
    opacity 0.30s var(--ease),
    border-color 0.30s var(--ease);
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__card:hover {
  transform: translateY(-6px);
  border-color: rgba(35, 198, 189, 0.32);
  background:
    linear-gradient(180deg, rgba(35,198,189,0.038), rgba(255,255,255,0.012)),
    rgba(8, 18, 25, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 24px 60px rgba(0,0,0,0.24);
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__card:hover::before {
  opacity: 1;
  border-color: rgba(35, 198, 189, 0.16);
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__link {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: inherit;
}

/* ---------- Media ---------- */
[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__media {
  position: relative;
  height: 212px;
  margin: 0;
  overflow: hidden;
  background: var(--carbon-3);
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 44%, rgba(2, 7, 11, 0.72) 100%),
    radial-gradient(circle at 82% 16%, rgba(35, 198, 189, 0.16), transparent 34%);
  opacity: 0.84;
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.70s var(--ease),
    filter 0.70s var(--ease);
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__card:hover .moeen-portfolio-showcase__media img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.02);
}

/* ---------- Category Badge ---------- */
[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__category {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid rgba(35, 198, 189, 0.30);
  border-radius: 999px;
  background: rgba(8, 18, 25, 0.78);
  color: var(--teal);
  font-size: 11.5px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__category::before {
  content: "◆";
  margin-inline-end: 7px;
  color: var(--gold);
  font-size: 8px;
}

/* ---------- Content ---------- */
[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__topline span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__topline small {
  color: rgba(246, 250, 250, 0.18);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.42;
  font-weight: 900;
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 13px 0 0;
  color: rgba(246, 250, 250, 0.64);
  font-size: 14.5px;
  line-height: 1.9;
}

/* ---------- Meta Tags ---------- */
[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 5px 9px;
  border: 1px solid rgba(217, 175, 85, 0.19);
  border-radius: 999px;
  background: rgba(217, 175, 85, 0.065);
  color: rgba(246, 250, 250, 0.70);
  font-size: 11.2px;
  font-weight: 800;
}

/* ---------- CTA ---------- */
[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(35, 198, 189, 0.26);
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.07);
  color: var(--teal);
  font-size: 12.5px;
  font-weight: 900;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__cta::after {
  content: "←";
  margin-inline-start: 7px;
  transition: transform 0.25s var(--ease);
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__card:hover .moeen-portfolio-showcase__cta {
  transform: translateY(-2px);
  background: var(--teal);
  border-color: var(--teal);
  color: var(--carbon);
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__card:hover .moeen-portfolio-showcase__cta::after {
  transform: translateX(-3px);
}

/* ---------- Filtering ---------- */
[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__card.is-hidden {
  display: none;
}

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__empty {
  margin: 28px auto 0;
  width: fit-content;
  padding: 14px 18px;
  border: 1px solid rgba(217, 175, 85, 0.24);
  border-radius: 16px;
  background: rgba(217, 175, 85, 0.08);
  color: var(--gold);
  font-weight: 900;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  [data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__card {
    grid-column: span 6;
  }
}

@media (max-width: 700px) {
  [data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__grid {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__card {
    grid-column: auto;
  }

  [data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  [data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__filters button {
    flex: 0 0 auto;
  }
}

@media (max-width: 540px) {
  [data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__media {
    height: 200px;
  }

  [data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__content {
    padding: 20px;
  }

  [data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__card {
    border-radius: 24px;
  }

  [data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__card::before {
    inset: 10px;
    border-radius: 18px;
  }

  [data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__topline small {
    font-size: 23px;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-portfolio-showcase"] *,
  [data-scope="moeen-portfolio-showcase"] *::before,
  [data-scope="moeen-portfolio-showcase"] *::after {
    transition: none !important;
    animation: none !important;
  }
}


/* =========================================================
   08) Blog Section
   سكشن المدونة
========================================================= */
/* =========================================================
   Section: Blog Index - Editorial Premium Layout
   السكشن: أحدث المقالات
   ========================================================= */

/* ---------- Wrapper ---------- */
[data-scope="moeen-blog-index"] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

[data-scope="moeen-blog-index"]::before {
  content: "";
  position: absolute;
  inset-inline: 12%;
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(35, 198, 189, 0.16),
    rgba(217, 175, 85, 0.12),
    transparent
  );
}

/* ---------- Layout ---------- */
[data-scope="moeen-blog-index"] .moeen-blog-index__layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: clamp(26px, 4vw, 42px);
  align-items: start;
}

/* =========================================================
   Sidebar
   ========================================================= */

[data-scope="moeen-blog-index"] .moeen-blog-index__sidebar {
  position: sticky;
  top: 130px;
  display: grid;
  gap: 16px;
}

[data-scope="moeen-blog-index"] .moeen-blog-index__side-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(35, 198, 189, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    rgba(8, 18, 25, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.045),
    0 14px 40px rgba(0,0,0,0.15);
}

[data-scope="moeen-blog-index"] .moeen-blog-index__side-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.045);
  border-radius: 18px;
  pointer-events: none;
}

[data-scope="moeen-blog-index"] .moeen-blog-index__side-title {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

[data-scope="moeen-blog-index"] .moeen-blog-index__side-title::before {
  content: "◆";
  color: var(--gold);
  font-size: 9px;
}

/* ---------- Search ---------- */
[data-scope="moeen-blog-index"] .moeen-blog-index__search {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

[data-scope="moeen-blog-index"] .moeen-blog-index__search input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(35, 198, 189, 0.16);
  border-radius: 16px;
  background: rgba(2, 7, 11, 0.42);
  color: var(--white);
  outline: none;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
}

[data-scope="moeen-blog-index"] .moeen-blog-index__search input:focus {
  border-color: var(--teal);
  background: rgba(2, 7, 11, 0.58);
  box-shadow: 0 0 0 4px rgba(35, 198, 189, 0.11);
}

[data-scope="moeen-blog-index"] .moeen-blog-index__search button {
  min-width: 64px;
  min-height: 50px;
  border: 1px solid var(--teal);
  border-radius: 16px;
  background: var(--teal);
  color: var(--carbon);
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

[data-scope="moeen-blog-index"] .moeen-blog-index__search button:hover {
  transform: translateY(-2px);
  background: var(--teal-2);
  border-color: var(--teal-2);
}

/* ---------- Categories ---------- */
[data-scope="moeen-blog-index"] .moeen-blog-index__cats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

[data-scope="moeen-blog-index"] .moeen-blog-index__cats button {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(35, 198, 189, 0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.025);
  color: rgba(246,250,250,0.74);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}

[data-scope="moeen-blog-index"] .moeen-blog-index__cats button:hover,
[data-scope="moeen-blog-index"] .moeen-blog-index__cats button.is-active {
  transform: translateY(-2px);
  border-color: rgba(35, 198, 189, 0.34);
  background: rgba(35, 198, 189, 0.09);
  color: var(--white);
}

/* ---------- Latest Posts ---------- */
[data-scope="moeen-blog-index"] .moeen-blog-index__latest {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

[data-scope="moeen-blog-index"] .moeen-blog-index__latest a {
  display: block;
  padding: 13px 14px;
  border: 1px solid rgba(35, 198, 189, 0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.022);
  color: rgba(246,250,250,0.68);
  font-size: 14px;
  line-height: 1.85;
  transition:
    transform 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}

[data-scope="moeen-blog-index"] .moeen-blog-index__latest a:hover {
  transform: translateX(-4px);
  border-color: rgba(35, 198, 189, 0.26);
  background: rgba(35, 198, 189, 0.065);
  color: var(--white);
}

/* =========================================================
   Posts List
   ========================================================= */

[data-scope="moeen-blog-index"] .moeen-blog-index__list {
  display: grid;
  gap: 20px;
}

/* ---------- Post Card ---------- */
[data-scope="moeen-blog-index"] .moeen-blog-index__post {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(35, 198, 189, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    rgba(8, 18, 25, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.045),
    0 16px 44px rgba(0,0,0,0.16);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    background 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

[data-scope="moeen-blog-index"] .moeen-blog-index__post::before {
  content: "";
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.045);
  border-radius: 22px;
  opacity: 0.76;
}

[data-scope="moeen-blog-index"] .moeen-blog-index__post::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  left: -80px;
  bottom: -80px;
  pointer-events: none;
  border-radius: 999px;
  background: rgba(35,198,189,0.075);
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}

[data-scope="moeen-blog-index"] .moeen-blog-index__post:hover {
  transform: translateY(-5px);
  border-color: rgba(35, 198, 189, 0.34);
  background:
    linear-gradient(180deg, rgba(35,198,189,0.045), rgba(255,255,255,0.012)),
    rgba(8, 18, 25, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 26px 68px rgba(0,0,0,0.25);
}

[data-scope="moeen-blog-index"] .moeen-blog-index__post:hover::after {
  opacity: 1;
}

[data-scope="moeen-blog-index"] .moeen-blog-index__post a {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: 26px;
  min-height: 240px;
  padding: 26px;
  color: inherit;
}

/* ---------- Featured Post ---------- */
[data-scope="moeen-blog-index"] .moeen-blog-index__post--featured a {
  min-height: 280px;
}

/* ---------- Media ---------- */
[data-scope="moeen-blog-index"] .moeen-blog-index__media {
  position: relative;
  height: 100%;
  min-height: 205px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--carbon-3);
}

[data-scope="moeen-blog-index"] .moeen-blog-index__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(2,7,11,0.58) 100%),
    radial-gradient(circle at 80% 18%, rgba(35,198,189,0.15), transparent 35%);
  pointer-events: none;
}

[data-scope="moeen-blog-index"] .moeen-blog-index__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.65s var(--ease),
    filter 0.65s var(--ease);
}

[data-scope="moeen-blog-index"] .moeen-blog-index__post:hover .moeen-blog-index__media img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.03);
}

/* ---------- Body ---------- */
[data-scope="moeen-blog-index"] .moeen-blog-index__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

[data-scope="moeen-blog-index"] .moeen-blog-index__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

[data-scope="moeen-blog-index"] .moeen-blog-index__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(217, 175, 85, 0.25);
  border-radius: 999px;
  background: rgba(217,175,85,0.09);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

[data-scope="moeen-blog-index"] .moeen-blog-index__post h3 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.45;
  font-weight: 900;
}

[data-scope="moeen-blog-index"] .moeen-blog-index__post p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(246,250,250,0.66);
  font-size: 16px;
  line-height: 2;
}

[data-scope="moeen-blog-index"] .moeen-blog-index__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

[data-scope="moeen-blog-index"] .moeen-blog-index__footer small {
  color: rgba(246,250,250,0.50);
  font-size: 13px;
}

[data-scope="moeen-blog-index"] .moeen-blog-index__footer strong {
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
  transition:
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

[data-scope="moeen-blog-index"] .moeen-blog-index__post:hover .moeen-blog-index__footer strong {
  color: var(--teal-2);
  transform: translateX(-4px);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px) {
  [data-scope="moeen-blog-index"] .moeen-blog-index__layout {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-blog-index"] .moeen-blog-index__sidebar {
    position: static;
    order: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  [data-scope="moeen-blog-index"] .moeen-blog-index__list {
    order: 1;
  }
}

@media (max-width: 900px) {
  [data-scope="moeen-blog-index"] .moeen-blog-index__sidebar {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-blog-index"] .moeen-blog-index__post a {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-blog-index"] .moeen-blog-index__media {
    height: 260px;
  }
}

@media (max-width: 540px) {
  [data-scope="moeen-blog-index"] .moeen-blog-index__post {
    border-radius: 22px;
  }

  [data-scope="moeen-blog-index"] .moeen-blog-index__post::before {
    inset: 10px;
    border-radius: 16px;
  }

  [data-scope="moeen-blog-index"] .moeen-blog-index__post a {
    padding: 18px;
    gap: 18px;
  }

  [data-scope="moeen-blog-index"] .moeen-blog-index__media {
    height: 210px;
    min-height: 210px;
    border-radius: 18px;
  }

  [data-scope="moeen-blog-index"] .moeen-blog-index__post h3 {
    font-size: 22px;
  }

  [data-scope="moeen-blog-index"] .moeen-blog-index__post p {
    font-size: 14.5px;
    margin-top: 14px;
  }

  [data-scope="moeen-blog-index"] .moeen-blog-index__footer {
    display: grid;
    gap: 8px;
  }

  [data-scope="moeen-blog-index"] .moeen-blog-index__search {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-blog-index"] .moeen-blog-index__search button {
    width: 100%;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-blog-index"] *,
  [data-scope="moeen-blog-index"] *::before,
  [data-scope="moeen-blog-index"] *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   09) Testimonials Section
   سكشن آراء العملاء
========================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--carbon-2);
  transition: 0.3s var(--ease);
}

.testimonial-card:hover {
  border-color: var(--teal-line);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.stars {
  margin-bottom: 12px;
  color: var(--gold);
  letter-spacing: 2px;
}

.testimonial-card p {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 16px;
}

.testimonial-card strong {
  display: block;
  color: var(--white);
}

.testimonial-card span {
  color: var(--muted);
  font-size: 13px;
}

.testimonial-wide {
  max-width: 860px;
  margin: auto;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--carbon-2);
  text-align: center;
  transition: 0.3s var(--ease);
}

.testimonial-wide:hover {
  border-color: var(--teal-line);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.testimonial-wide p {
  color: var(--white);
  font-size: 22px;
}

/* =========================================================
   10) Partners Section
   سكشن شركاء النجاح
========================================================= */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.partner-logo {
  min-height: 106px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 19px;
  font-weight: 900;
  transition: 0.3s var(--ease);
}

.partner-logo:hover {
  color: var(--white);
  border-color: var(--teal-line);
  background: var(--teal-dim);
  box-shadow: var(--shadow);
  transform: translateY(-6px) scale(1.02);
}

.partner-logo span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.partner-logo span::before {
  content: "◈";
  color: var(--teal);
}


/* =========================================================
   Project Detail Hero
   سكشن هيرو تفاصيل المشروع
   ========================================================= */

[data-scope="moeen-project-hero"] {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(86px, 9vw, 130px) 0 clamp(58px, 7vw, 90px);
}

/* لمسات خلفية خفيفة */
[data-scope="moeen-project-hero"]::before {
  content: "";
  position: absolute;
  inset-inline: 12%;
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(35, 198, 189, 0.18),
    rgba(217, 175, 85, 0.12),
    transparent
  );
}

[data-scope="moeen-project-hero"]::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -260px;
  top: 20%;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(35, 198, 189, 0.07), transparent 68%);
}

/* ---------- Grid ---------- */
[data-scope="moeen-project-hero"] .moeen-project-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(38px, 5vw, 76px);
}

/* ---------- Content ---------- */
[data-scope="moeen-project-hero"] .moeen-project-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

/* ---------- Breadcrumb ---------- */
[data-scope="moeen-project-hero"] .moeen-project-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: rgba(246, 250, 250, 0.50);
  font-size: 13px;
  line-height: 1.8;
}

[data-scope="moeen-project-hero"] .moeen-project-hero__breadcrumb a {
  color: var(--teal);
  font-weight: 800;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

[data-scope="moeen-project-hero"] .moeen-project-hero__breadcrumb a:hover {
  color: var(--teal-2, var(--teal));
  transform: translateY(-1px);
}

[data-scope="moeen-project-hero"] .moeen-project-hero__breadcrumb span {
  color: rgba(246, 250, 250, 0.45);
}

/* ---------- Kicker ---------- */
[data-scope="moeen-project-hero"] .moeen-project-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 15px;
  border: 1px solid rgba(35, 198, 189, 0.30);
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.08);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

[data-scope="moeen-project-hero"] .moeen-project-hero__kicker span {
  color: var(--gold);
  font-size: 9px;
}

/* ---------- Title ---------- */
[data-scope="moeen-project-hero"] h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 6.3vw, 86px);
  line-height: 1.07;
  font-weight: 900;
  letter-spacing: -0.055em;
}

[data-scope="moeen-project-hero"] h1 span {
  display: block;
}

/* ---------- Lead ---------- */
[data-scope="moeen-project-hero"] p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(246, 250, 250, 0.66);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 2.05;
}

/* ---------- Actions ---------- */
[data-scope="moeen-project-hero"] .moeen-project-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

[data-scope="moeen-project-hero"] .moeen-project-hero__btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}

[data-scope="moeen-project-hero"] .moeen-project-hero__btn--primary {
  border: 1px solid var(--teal);
  background: var(--teal);
  color: var(--carbon);
}

[data-scope="moeen-project-hero"] .moeen-project-hero__btn--outline {
  border: 1px solid rgba(217, 175, 85, 0.48);
  background: rgba(217, 175, 85, 0.07);
  color: var(--gold);
}

[data-scope="moeen-project-hero"] .moeen-project-hero__btn:hover {
  transform: translateY(-3px);
}

[data-scope="moeen-project-hero"] .moeen-project-hero__btn--primary:hover {
  background: transparent;
  color: var(--teal);
}

[data-scope="moeen-project-hero"] .moeen-project-hero__btn--outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--carbon);
}

/* ---------- Media ---------- */
[data-scope="moeen-project-hero"] .moeen-project-hero__media {
  position: relative;
  z-index: 1;
}

[data-scope="moeen-project-hero"] .moeen-project-hero__media figure {
  position: relative;
  width: min(100%, 520px);
  margin: 0;
  margin-inline-start: auto;
  overflow: hidden;
  border: 1px solid rgba(35, 198, 189, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    rgba(8, 18, 25, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 26px 80px rgba(0, 0, 0, 0.26);
}

[data-scope="moeen-project-hero"] .moeen-project-hero__media figure::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 22px;
}

[data-scope="moeen-project-hero"] .moeen-project-hero__media figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(2, 7, 11, 0.70) 100%),
    radial-gradient(circle at 80% 18%, rgba(35,198,189,0.16), transparent 34%);
}

[data-scope="moeen-project-hero"] .moeen-project-hero__media img {
  display: block;
  width: 100%;
  height: clamp(320px, 33vw, 430px);
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform 0.75s var(--ease),
    filter 0.75s var(--ease);
}

[data-scope="moeen-project-hero"] .moeen-project-hero__media:hover img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.03);
}

/* ---------- Caption ---------- */
[data-scope="moeen-project-hero"] .moeen-project-hero__media figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 44px);
  padding: 10px 14px;
  border: 1px solid rgba(35, 198, 189, 0.30);
  border-radius: 999px;
  background: rgba(8, 18, 25, 0.78);
  backdrop-filter: blur(10px);
}

[data-scope="moeen-project-hero"] .moeen-project-hero__media figcaption span {
  color: rgba(246, 250, 250, 0.58);
  font-size: 12px;
  font-weight: 800;
}

[data-scope="moeen-project-hero"] .moeen-project-hero__media figcaption strong {
  color: var(--teal);
  font-size: 12.5px;
  font-weight: 900;
}

/* زخرفة خفيفة خلف الصورة */
[data-scope="moeen-project-hero"] .moeen-project-hero__media::before {
  content: "";
  position: absolute;
  inset: 10% -8% auto auto;
  width: 220px;
  height: 220px;
  z-index: -1;
  border-radius: 999px;
  border: 1px dashed rgba(35, 198, 189, 0.18);
  opacity: 0.75;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  [data-scope="moeen-project-hero"] {
    min-height: auto;
    padding-top: 92px;
  }

  [data-scope="moeen-project-hero"] .moeen-project-hero__grid {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-project-hero"] .moeen-project-hero__content {
    max-width: 860px;
  }

  [data-scope="moeen-project-hero"] .moeen-project-hero__media {
    order: 2;
  }

  [data-scope="moeen-project-hero"] .moeen-project-hero__content {
    order: 1;
  }

  [data-scope="moeen-project-hero"] .moeen-project-hero__media figure {
    width: min(100%, 720px);
    margin-inline: 0;
  }

  [data-scope="moeen-project-hero"] .moeen-project-hero__media img {
    height: 390px;
  }
}

@media (max-width: 700px) {
  [data-scope="moeen-project-hero"] {
    padding: 78px 0 54px;
  }

  [data-scope="moeen-project-hero"] .moeen-project-hero__grid {
    gap: 34px;
  }

  [data-scope="moeen-project-hero"] .moeen-project-hero__breadcrumb {
    font-size: 12.5px;
    margin-bottom: 16px;
  }

  [data-scope="moeen-project-hero"] h1 {
    font-size: 44px;
    letter-spacing: -0.03em;
  }

  [data-scope="moeen-project-hero"] p {
    font-size: 15.5px;
    line-height: 1.95;
  }

  [data-scope="moeen-project-hero"] .moeen-project-hero__actions {
    display: grid;
    gap: 10px;
  }

  [data-scope="moeen-project-hero"] .moeen-project-hero__btn {
    width: 100%;
  }

  [data-scope="moeen-project-hero"] .moeen-project-hero__media figure {
    border-radius: 24px;
  }

  [data-scope="moeen-project-hero"] .moeen-project-hero__media figure::before {
    inset: 10px;
    border-radius: 18px;
  }

  [data-scope="moeen-project-hero"] .moeen-project-hero__media img {
    height: 300px;
  }

  [data-scope="moeen-project-hero"] .moeen-project-hero__media figcaption {
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
  }
}

@media (max-width: 480px) {
  [data-scope="moeen-project-hero"] h1 {
    font-size: 38px;
  }

  [data-scope="moeen-project-hero"] .moeen-project-hero__kicker {
    margin-bottom: 18px;
  }

  [data-scope="moeen-project-hero"] .moeen-project-hero__media img {
    height: 250px;
  }

  [data-scope="moeen-project-hero"] .moeen-project-hero__media figcaption {
    display: grid;
    gap: 3px;
    border-radius: 16px;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-project-hero"] *,
  [data-scope="moeen-project-hero"] *::before,
  [data-scope="moeen-project-hero"] *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   12) Detail Hero / Features Orbit Layouts
   جريدات داخلية مشتركة للصفحات التفصيلية
========================================================= */
.detail-hero__grid,
.form-layout,
.features-orbit-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}


/* =========================================================
   Section: Project Case Study
   سكشن دراسة حالة المشروع - Refined Compact Style
   ========================================================= */

[data-scope="moeen-case-study"] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

[data-scope="moeen-case-study"]::before {
  content: "";
  position: absolute;
  inset-inline: 12%;
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(35, 198, 189, 0.18),
    rgba(217, 175, 85, 0.12),
    transparent
  );
}

[data-scope="moeen-case-study"]::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  left: -250px;
  bottom: -260px;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(35, 198, 189, 0.045), transparent 70%);
}

/* ---------- Layout ---------- */
[data-scope="moeen-case-study"] .moeen-case-study__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

/* =========================================================
   Main Content
   ========================================================= */

[data-scope="moeen-case-study"] .moeen-case-study__content {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(35, 198, 189, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(35, 198, 189, 0.075), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.040), rgba(255, 255, 255, 0.014)),
    rgba(8, 18, 25, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    background 0.28s var(--ease);
}

[data-scope="moeen-case-study"] .moeen-case-study__content::before {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 21px;
  opacity: 0.78;
}

[data-scope="moeen-case-study"] .moeen-case-study__content::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  top: -90px;
  left: -90px;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217, 175, 85, 0.075), transparent 70%);
}

[data-scope="moeen-case-study"] .moeen-case-study__content:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 198, 189, 0.34);
  background:
    radial-gradient(circle at 90% 10%, rgba(35, 198, 189, 0.10), transparent 32%),
    linear-gradient(180deg, rgba(35, 198, 189, 0.032), rgba(255, 255, 255, 0.014)),
    rgba(8, 18, 25, 0.84);
}

/* ---------- Head ---------- */
[data-scope="moeen-case-study"] .moeen-case-study__head {
  position: relative;
  z-index: 2;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-scope="moeen-case-study"] .moeen-case-study__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 13px;
  border: 1px solid rgba(35, 198, 189, 0.34);
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.095);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

[data-scope="moeen-case-study"] .moeen-case-study__kicker span {
  color: var(--gold);
  font-size: 8px;
}

[data-scope="moeen-case-study"] .moeen-case-study__head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.028em;
}

[data-scope="moeen-case-study"] .moeen-case-study__head h2 span {
  color: var(--teal);
}

[data-scope="moeen-case-study"] .moeen-case-study__head p {
  max-width: 840px;
  margin: 14px 0 0;
  color: rgba(246, 250, 250, 0.74);
  font-size: 14.8px;
  line-height: 1.95;
}

/* =========================================================
   Timeline
   ========================================================= */

[data-scope="moeen-case-study"] .moeen-case-study__timeline {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

[data-scope="moeen-case-study"] .moeen-case-study__timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  right: 24px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(35, 198, 189, 0.44),
    rgba(217, 175, 85, 0.26),
    transparent
  );
}

/* ---------- Step ---------- */
[data-scope="moeen-case-study"] .moeen-case-study__step {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

[data-scope="moeen-case-study"] .moeen-case-study__step-marker {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(35, 198, 189, 0.32);
  border-radius: 16px;
  background:
    radial-gradient(circle at 70% 18%, rgba(35, 198, 189, 0.17), transparent 44%),
    rgba(8, 18, 25, 0.95);
  color: var(--teal);
  transition:
    transform 0.25s var(--spring),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}

[data-scope="moeen-case-study"] .moeen-case-study__step-marker span {
  font-size: 13px;
  font-weight: 900;
}

[data-scope="moeen-case-study"] .moeen-case-study__step-body {
  position: relative;
  overflow: hidden;
  padding: 18px 20px;
  border: 1px solid rgba(35, 198, 189, 0.15);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.030), rgba(255, 255, 255, 0.010)),
    rgba(2, 7, 11, 0.30);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}

[data-scope="moeen-case-study"] .moeen-case-study__step-body::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 15px;
  opacity: 0.70;
}

[data-scope="moeen-case-study"] .moeen-case-study__step-body h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--teal);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 900;
}

[data-scope="moeen-case-study"] .moeen-case-study__step-body p {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 8px 0 0;
  color: rgba(246, 250, 250, 0.72);
  font-size: 14.2px;
  line-height: 1.9;
}

[data-scope="moeen-case-study"] .moeen-case-study__step:hover .moeen-case-study__step-marker {
  transform: translateY(-2px) rotate(-3deg);
  border-color: rgba(217, 175, 85, 0.42);
  background: rgba(217, 175, 85, 0.11);
  color: var(--gold);
}

[data-scope="moeen-case-study"] .moeen-case-study__step:hover .moeen-case-study__step-body {
  transform: translateY(-2px);
  border-color: rgba(35, 198, 189, 0.32);
  background:
    linear-gradient(180deg, rgba(35, 198, 189, 0.040), rgba(255, 255, 255, 0.010)),
    rgba(2, 7, 11, 0.38);
}

/* ---------- Deliverables Chips ---------- */
[data-scope="moeen-case-study"] .moeen-case-study__chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

[data-scope="moeen-case-study"] .moeen-case-study__chips span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid rgba(217, 175, 85, 0.24);
  border-radius: 999px;
  background: rgba(217, 175, 85, 0.085);
  color: rgba(246, 250, 250, 0.82);
  font-size: 12px;
  font-weight: 800;
  transition:
    transform 0.22s var(--ease),
    border-color 0.22s var(--ease),
    background 0.22s var(--ease),
    color 0.22s var(--ease);
}

[data-scope="moeen-case-study"] .moeen-case-study__chips span:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 175, 85, 0.44);
  background: rgba(217, 175, 85, 0.13);
  color: var(--gold);
}

/* =========================================================
   Aside Facts
   ========================================================= */

[data-scope="moeen-case-study"] .moeen-case-study__aside {
  position: sticky;
  top: 140px;
}

/* ---------- Facts Card ---------- */
[data-scope="moeen-case-study"] .moeen-case-study__facts-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(35, 198, 189, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 10%, rgba(217, 175, 85, 0.10), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(35, 198, 189, 0.09), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    rgba(8, 18, 25, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}

[data-scope="moeen-case-study"] .moeen-case-study__facts-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.052);
  border-radius: 18px;
  opacity: 0.82;
}

[data-scope="moeen-case-study"] .moeen-case-study__facts-card:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 198, 189, 0.34);
  background:
    radial-gradient(circle at 18% 10%, rgba(217, 175, 85, 0.13), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(35, 198, 189, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(35, 198, 189, 0.032), rgba(255, 255, 255, 0.012)),
    rgba(8, 18, 25, 0.84);
}

/* ---------- Facts Head ---------- */
[data-scope="moeen-case-study"] .moeen-case-study__facts-head {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
}

[data-scope="moeen-case-study"] .moeen-case-study__facts-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 6px 11px;
  border: 1px solid rgba(35, 198, 189, 0.32);
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.095);
  color: var(--teal);
  font-size: 11.5px;
  font-weight: 900;
  line-height: 1;
}

[data-scope="moeen-case-study"] .moeen-case-study__facts-kicker span {
  color: var(--gold);
  font-size: 8px;
}

[data-scope="moeen-case-study"] .moeen-case-study__facts-head h3 {
  margin: 0;
  color: var(--white);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 900;
}

[data-scope="moeen-case-study"] .moeen-case-study__facts-head p {
  margin: 8px 0 0;
  color: rgba(246, 250, 250, 0.66);
  font-size: 12.8px;
  line-height: 1.85;
}

/* ---------- Highlight Fact ---------- */
[data-scope="moeen-case-study"] .moeen-case-study__highlight-fact {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid rgba(217, 175, 85, 0.30);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(217, 175, 85, 0.13), rgba(35, 198, 189, 0.060)),
    rgba(2, 7, 11, 0.30);
  transition:
    transform 0.22s var(--ease),
    border-color 0.22s var(--ease),
    background 0.22s var(--ease);
}

[data-scope="moeen-case-study"] .moeen-case-study__highlight-fact::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.052);
  border-radius: 12px;
}

[data-scope="moeen-case-study"] .moeen-case-study__highlight-fact span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 6px;
  color: rgba(246, 250, 250, 0.64);
  font-size: 11.8px;
  font-weight: 800;
}

[data-scope="moeen-case-study"] .moeen-case-study__highlight-fact strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--gold);
  font-size: 15.5px;
  line-height: 1.5;
  font-weight: 900;
}

[data-scope="moeen-case-study"] .moeen-case-study__highlight-fact:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 175, 85, 0.46);
  background:
    linear-gradient(135deg, rgba(217, 175, 85, 0.16), rgba(35, 198, 189, 0.075)),
    rgba(2, 7, 11, 0.36);
}

/* ---------- Facts List ---------- */
[data-scope="moeen-case-study"] .moeen-case-study__facts {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

[data-scope="moeen-case-study"] .moeen-case-study__facts li {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 58px;
  padding: 12px 13px;
  border: 1px solid rgba(35, 198, 189, 0.14);
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.008)),
    rgba(2, 7, 11, 0.24);
  transition:
    transform 0.22s var(--ease),
    border-color 0.22s var(--ease),
    background 0.22s var(--ease);
}

[data-scope="moeen-case-study"] .moeen-case-study__facts li::before {
  content: "";
  position: absolute;
  top: 13px;
  right: 0;
  width: 3px;
  height: 24px;
  border-radius: 999px 0 0 999px;
  background: rgba(35, 198, 189, 0.56);
  transition:
    height 0.22s var(--ease),
    background 0.22s var(--ease);
}

[data-scope="moeen-case-study"] .moeen-case-study__facts li:hover {
  transform: translateY(-2px);
  border-color: rgba(35, 198, 189, 0.30);
  background:
    linear-gradient(180deg, rgba(35, 198, 189, 0.036), rgba(255, 255, 255, 0.008)),
    rgba(2, 7, 11, 0.32);
}

[data-scope="moeen-case-study"] .moeen-case-study__facts li:hover::before {
  height: 34px;
  background: var(--teal);
}

[data-scope="moeen-case-study"] .moeen-case-study__facts li span {
  color: rgba(246, 250, 250, 0.58);
  font-size: 11.6px;
  line-height: 1.6;
  font-weight: 800;
}

[data-scope="moeen-case-study"] .moeen-case-study__facts li strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12.8px;
  line-height: 1.65;
  font-weight: 900;
}

/* ---------- Result Item ---------- */
[data-scope="moeen-case-study"] .moeen-case-study__facts-result {
  border-color: rgba(217, 175, 85, 0.24) !important;
  background:
    linear-gradient(180deg, rgba(217, 175, 85, 0.072), rgba(255, 255, 255, 0.008)),
    rgba(2, 7, 11, 0.28) !important;
}

[data-scope="moeen-case-study"] .moeen-case-study__facts-result::before {
  background: rgba(217, 175, 85, 0.68) !important;
}

[data-scope="moeen-case-study"] .moeen-case-study__facts-result strong {
  color: var(--gold);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1080px) {
  [data-scope="moeen-case-study"] .moeen-case-study__layout {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__aside {
    position: relative;
    top: auto;
    order: -1;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-scope="moeen-case-study"] .moeen-case-study__highlight-fact {
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  [data-scope="moeen-case-study"] .moeen-case-study__content {
    padding: 22px;
    border-radius: 24px;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__content::before {
    inset: 10px;
    border-radius: 18px;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__head h2 {
    font-size: 32px;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__head p {
    font-size: 14px;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__timeline::before {
    right: 21px;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__step-marker {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__step-body {
    padding: 17px;
    border-radius: 18px;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__step-body h3 {
    font-size: 19px;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__step-body p {
    font-size: 13.8px;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__facts-card {
    padding: 19px;
    border-radius: 22px;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__facts-card::before {
    inset: 9px;
    border-radius: 17px;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__facts {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__highlight-fact {
    max-width: none;
  }
}

@media (max-width: 520px) {
  [data-scope="moeen-case-study"] .moeen-case-study__content,
  [data-scope="moeen-case-study"] .moeen-case-study__facts-card {
    padding: 18px;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__head h2 {
    font-size: 28px;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__step {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__timeline::before {
    display: none;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__step-marker {
    width: fit-content;
    min-width: 46px;
    height: 34px;
    border-radius: 999px;
  }

  [data-scope="moeen-case-study"] .moeen-case-study__facts li {
    min-height: auto;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-case-study"] *,
  [data-scope="moeen-case-study"] *::before,
  [data-scope="moeen-case-study"] *::after {
    transition: none !important;
    animation: none !important;
  }
}
/* =========================================================
   14) Lists / Links / TOC
   القوائم والروابط الجانبية وقائمة المحتوى
========================================================= */
.feature-list,
.project-facts,
.footer-links,
.toc-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.feature-list {
  gap: 12px;
  margin-top: 28px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--carbon-3);
  color: var(--text);
  transition: 0.25s var(--ease);
}

.feature-list li:hover {
  border-color: var(--teal-line);
  background: var(--teal-dim);
  transform: translateY(-4px);
}

.feature-list span {
  color: var(--gold);
}

.mini-service-link,
.other-posts a,
.toc-btn {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  transition: 0.25s var(--ease);
}

.toc-btn {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 900;
}

.mini-service-link:hover,
.other-posts a:hover,
.toc-btn:hover,
.footer-links a:hover {
  color: var(--teal);
  transform: translateX(-4px);
}

.toc-btn:hover {
  border-color: var(--teal-line);
  background: var(--teal-dim);
}

.toc-mobile {
  display: none;
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--carbon-3);
}

/* =========================================================
   15) Flip Cards
   كروت Flip
========================================================= */

/* =========================================================
   16) Audience Cards
   كروت الجمهور المستهدف
========================================================= */



/* =========================================================
   Section: Project Added Value
   سكشن القيمة المضافة - Bento Modern Style
   ========================================================= */

[data-scope="moeen-project-value"] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

[data-scope="moeen-project-value"]::before {
  content: "";
  position: absolute;
  inset-inline: 12%;
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(35, 198, 189, 0.18),
    rgba(217, 175, 85, 0.12),
    transparent
  );
}

[data-scope="moeen-project-value"]::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -260px;
  bottom: -280px;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(35, 198, 189, 0.045), transparent 70%);
}

/* ---------- Layout ---------- */

[data-scope="moeen-project-value"] .moeen-project-value__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

/* ---------- Content ---------- */

[data-scope="moeen-project-value"] .moeen-project-value__content {
  max-width: 620px;
}

[data-scope="moeen-project-value"] .moeen-project-value__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid rgba(35, 198, 189, 0.34);
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.09);
  color: var(--teal);
  font-size: 12.5px;
  font-weight: 900;
  line-height: 1;
}

[data-scope="moeen-project-value"] .moeen-project-value__kicker span {
  color: var(--gold);
  font-size: 8px;
}

[data-scope="moeen-project-value"] .moeen-project-value__content h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 4.2vw, 68px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.04em;
}

[data-scope="moeen-project-value"] .moeen-project-value__content h2 span {
  display: block;
  color: var(--gold);
}

[data-scope="moeen-project-value"] .moeen-project-value__content p {
  max-width: 580px;
  margin: 18px 0 0;
  color: rgba(246, 250, 250, 0.74);
  font-size: 15.5px;
  line-height: 1.95;
}

/* ---------- Cards Grid ---------- */

[data-scope="moeen-project-value"] .moeen-project-value__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* ---------- Card ---------- */

[data-scope="moeen-project-value"] .moeen-project-value__card {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  padding: 22px;
  border: 1px solid rgba(35, 198, 189, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.036), rgba(255, 255, 255, 0.012)),
    rgba(8, 18, 25, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}

[data-scope="moeen-project-value"] .moeen-project-value__card::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.052);
  border-radius: 18px;
  opacity: 0.76;
}

[data-scope="moeen-project-value"] .moeen-project-value__card::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  width: 3px;
  height: 34px;
  border-radius: 999px 0 0 999px;
  background: rgba(35, 198, 189, 0.62);
  transition:
    height 0.25s var(--ease),
    background 0.25s var(--ease);
}

/* الكارت المميز */
[data-scope="moeen-project-value"] .moeen-project-value__card--featured {
  grid-row: span 2;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-color: rgba(217, 175, 85, 0.28);
  background:
    radial-gradient(circle at 18% 10%, rgba(217, 175, 85, 0.14), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(35, 198, 189, 0.10), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.040), rgba(255, 255, 255, 0.012)),
    rgba(8, 18, 25, 0.78);
}

[data-scope="moeen-project-value"] .moeen-project-value__card--featured::after {
  background: rgba(217, 175, 85, 0.72);
  height: 52px;
}

/* Hover بدون شادو */
[data-scope="moeen-project-value"] .moeen-project-value__card:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 198, 189, 0.36);
  background:
    linear-gradient(180deg, rgba(35, 198, 189, 0.040), rgba(255, 255, 255, 0.012)),
    rgba(8, 18, 25, 0.84);
}

[data-scope="moeen-project-value"] .moeen-project-value__card:hover::after {
  height: 58px;
  background: var(--gold);
}

[data-scope="moeen-project-value"] .moeen-project-value__card--featured:hover {
  border-color: rgba(217, 175, 85, 0.46);
  background:
    radial-gradient(circle at 18% 10%, rgba(217, 175, 85, 0.16), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(35, 198, 189, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(217, 175, 85, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(8, 18, 25, 0.84);
}

/* ---------- Text ---------- */

[data-scope="moeen-project-value"] .moeen-project-value__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 14px;
  color: rgba(246, 250, 250, 0.24);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  transition: color 0.25s var(--ease);
}

[data-scope="moeen-project-value"] .moeen-project-value__card--featured .moeen-project-value__num {
  color: rgba(217, 175, 85, 0.58);
  font-size: 38px;
}

[data-scope="moeen-project-value"] .moeen-project-value__card:hover .moeen-project-value__num {
  color: rgba(217, 175, 85, 0.70);
}

[data-scope="moeen-project-value"] .moeen-project-value__card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 900;
}

[data-scope="moeen-project-value"] .moeen-project-value__card--featured h3 {
  max-width: 360px;
  font-size: 28px;
  line-height: 1.35;
}

[data-scope="moeen-project-value"] .moeen-project-value__card p {
  position: relative;
  z-index: 1;
  margin: 9px 0 0;
  color: rgba(246, 250, 250, 0.70);
  font-size: 13.8px;
  line-height: 1.85;
}

[data-scope="moeen-project-value"] .moeen-project-value__card--featured p {
  max-width: 380px;
  margin-top: 12px;
  color: rgba(246, 250, 250, 0.76);
  font-size: 14.5px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1050px) {
  [data-scope="moeen-project-value"] .moeen-project-value__layout {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-project-value"] .moeen-project-value__content {
    max-width: 850px;
    text-align: center;
    margin-inline: auto;
  }

  [data-scope="moeen-project-value"] .moeen-project-value__kicker {
    margin-inline: auto;
  }

  [data-scope="moeen-project-value"] .moeen-project-value__content p {
    margin-inline: auto;
  }

  [data-scope="moeen-project-value"] .moeen-project-value__cards {
    max-width: 900px;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  [data-scope="moeen-project-value"] .moeen-project-value__content {
    text-align: right;
  }

  [data-scope="moeen-project-value"] .moeen-project-value__kicker {
    margin-inline: 0;
  }

  [data-scope="moeen-project-value"] .moeen-project-value__content h2 {
    font-size: 36px;
    letter-spacing: -0.025em;
  }

  [data-scope="moeen-project-value"] .moeen-project-value__content p {
    font-size: 14.5px;
  }

  [data-scope="moeen-project-value"] .moeen-project-value__cards {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-project-value"] .moeen-project-value__card,
  [data-scope="moeen-project-value"] .moeen-project-value__card--featured {
    grid-row: auto;
    min-height: auto;
    padding: 22px;
  }

  [data-scope="moeen-project-value"] .moeen-project-value__card--featured h3 {
    font-size: 23px;
  }

  [data-scope="moeen-project-value"] .moeen-project-value__card--featured .moeen-project-value__num {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  [data-scope="moeen-project-value"] .moeen-project-value__content h2 {
    font-size: 32px;
  }

  [data-scope="moeen-project-value"] .moeen-project-value__card {
    border-radius: 22px;
  }

  [data-scope="moeen-project-value"] .moeen-project-value__card::before {
    inset: 9px;
    border-radius: 16px;
  }
}

/* ---------- Reduced Motion ---------- */

@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-project-value"] *,
  [data-scope="moeen-project-value"] *::before,
  [data-scope="moeen-project-value"] *::after {
    transition: none !important;
    animation: none !important;
  }
}



/* =========================================================
   Section: Project CTA Process
   سكشن تحفيزي لطلب مشروع مشابه
   ========================================================= */

/* =========================================================
   Section: Simple Project CTA
   سكشن بسيط لطلب مشروع مشابه
   ========================================================= */

[data-scope="moeen-simple-project-cta"] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

[data-scope="moeen-simple-project-cta"]::before {
  content: "";
  position: absolute;
  inset-inline: 12%;
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(35, 198, 189, 0.18),
    rgba(217, 175, 85, 0.12),
    transparent
  );
}

/* ---------- Box ---------- */

[data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(35, 198, 189, 0.20);
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 0%, rgba(217, 175, 85, 0.10), transparent 32%),
    radial-gradient(circle at 92% 16%, rgba(35, 198, 189, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.040), rgba(255, 255, 255, 0.014)),
    rgba(8, 18, 25, 0.80);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__box::before {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.052);
  border-radius: 23px;
}

[data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 28px;
  width: 3px;
  height: 72px;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(180deg, var(--teal), var(--gold));
}

/* ---------- Content ---------- */

[data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__content {
  position: relative;
  z-index: 1;
}

[data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 13px;
  border: 1px solid rgba(35, 198, 189, 0.34);
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.09);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

[data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__kicker span {
  color: var(--gold);
  font-size: 8px;
}

[data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__content h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.035em;
}

[data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__content h2 span {
  color: var(--teal);
}

[data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__content p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(246, 250, 250, 0.72);
  font-size: 15px;
  line-height: 1.9;
}

/* ---------- Points ---------- */

[data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

[data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(217, 175, 85, 0.24);
  border-radius: 999px;
  background: rgba(217, 175, 85, 0.075);
  color: rgba(246, 250, 250, 0.82);
  font-size: 12.5px;
  font-weight: 800;
}

[data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__points span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-inline-end: 8px;
  border-radius: 999px;
  background: var(--gold);
}

/* ---------- Action ---------- */

[data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__action {
  position: relative;
  z-index: 1;
  min-width: 250px;
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

[data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__action a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--teal);
  border-radius: 16px;
  background: var(--teal);
  color: var(--carbon);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.22s var(--ease),
    background 0.22s var(--ease),
    color 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

[data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__action a:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--teal);
}

[data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__action small {
  color: rgba(246, 250, 250, 0.56);
  font-size: 12.5px;
  line-height: 1.7;
  text-align: center;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  [data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__box {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__action {
    min-width: 0;
    max-width: 360px;
  }
}

@media (max-width: 620px) {
  [data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__box {
    padding: 22px;
    border-radius: 24px;
  }

  [data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__box::before {
    inset: 10px;
    border-radius: 18px;
  }

  [data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__box::after {
    top: 24px;
    height: 56px;
  }

  [data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__content h2 {
    font-size: 28px;
    letter-spacing: -0.02em;
  }

  [data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__content h2 span {
    display: block;
  }

  [data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__content p {
    font-size: 14.2px;
  }

  [data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__action {
    max-width: none;
  }

  [data-scope="moeen-simple-project-cta"] .moeen-simple-project-cta__action a {
    width: 100%;
  }
}

/* ---------- Reduced Motion ---------- */

@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-simple-project-cta"] *,
  [data-scope="moeen-simple-project-cta"] *::before,
  [data-scope="moeen-simple-project-cta"] *::after {
    transition: none !important;
  }
}






/* =========================================================
   17) Albums / Deliverables / Project Facts
   ألبومات الصور والمخرجات وحقائق المشروع
========================================================= */
.album-grid,
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.album-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--carbon-2);
  transition: 0.3s var(--ease);
}

.album-card:hover {
  border-color: var(--teal-line);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.album-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.album-card:hover img {
  transform: scale(1.05);
}

.album-card figcaption {
  padding: 14px;
  color: var(--muted);
  font-weight: 800;
}

.deliverables-grid span {
  padding: 12px;
  border: 1px solid var(--teal-line);
  border-radius: 13px;
  background: var(--teal-dim);
  color: var(--text);
  font-weight: 800;
}

.project-facts li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.project-facts li span {
  color: var(--muted);
}

.project-facts li strong {
  text-align: left;
  font-size: 14px;
}

/* =========================================================
   18) Forms / Contact
   النماذج ووسائل التواصل
========================================================= */
/* =========================================================
   Section: Join Moeen - Compact Professional Style
   السكشن: طلب الانضمام إلى فريق معين
   ========================================================= */

/* ---------- Wrapper ---------- */
[data-scope="moeen-join-section"] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

[data-scope="moeen-join-section"]::before {
  content: "";
  position: absolute;
  inset-inline: 12%;
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(35, 198, 189, 0.18),
    rgba(217, 175, 85, 0.10),
    transparent
  );
}

/* ---------- Layout ---------- */
[data-scope="moeen-join-section"] .moeen-join-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

/* ---------- Content Side ---------- */
[data-scope="moeen-join-section"] .moeen-join-section__content {
  max-width: 690px;
}

[data-scope="moeen-join-section"] .moeen-join-section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 15px;
  border: 1px solid rgba(35, 198, 189, 0.30);
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.08);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

[data-scope="moeen-join-section"] .moeen-join-section__kicker span {
  color: var(--gold);
  font-size: 10px;
}

[data-scope="moeen-join-section"] .moeen-join-section__title {
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 5.3vw, 70px);
  line-height: 1.13;
  font-weight: 900;
  letter-spacing: -0.04em;
}

[data-scope="moeen-join-section"] .moeen-join-section__title span {
  display: inline-block;
  color: var(--teal);
}

[data-scope="moeen-join-section"] .moeen-join-section__lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 2;
}

/* ---------- Compact Values ---------- */
[data-scope="moeen-join-section"] .moeen-join-section__values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

[data-scope="moeen-join-section"] .moeen-join-section__values span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(35, 198, 189, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(246, 250, 250, 0.76);
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}

[data-scope="moeen-join-section"] .moeen-join-section__values span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-inline-end: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 175, 85, 0.10);
}

[data-scope="moeen-join-section"] .moeen-join-section__values span:hover {
  transform: translateY(-2px);
  border-color: rgba(35, 198, 189, 0.32);
  background: rgba(35, 198, 189, 0.075);
  color: var(--white);
}

/* ---------- Form Card ---------- */
[data-scope="moeen-join-section"] .moeen-join-section__form-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(35, 198, 189, 0.20);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.040), rgba(255, 255, 255, 0.014)),
    rgba(8, 18, 25, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 22px 66px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    background 0.28s var(--ease);
}

[data-scope="moeen-join-section"] .moeen-join-section__form-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.050);
  border-radius: 21px;
}

[data-scope="moeen-join-section"] .moeen-join-section__form-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  left: -95px;
  top: -95px;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217, 175, 85, 0.09), transparent 65%);
}

[data-scope="moeen-join-section"] .moeen-join-section__form-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 198, 189, 0.34);
  background:
    linear-gradient(180deg, rgba(35, 198, 189, 0.035), rgba(255, 255, 255, 0.014)),
    rgba(8, 18, 25, 0.84);
}

/* ---------- Form Head ---------- */
[data-scope="moeen-join-section"] .moeen-join-section__form-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

[data-scope="moeen-join-section"] .moeen-join-section__form-head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 12px;
  border: 1px solid rgba(217, 175, 85, 0.24);
  border-radius: 999px;
  background: rgba(217, 175, 85, 0.09);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

[data-scope="moeen-join-section"] .moeen-join-section__form-head h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.35;
  font-weight: 900;
}

/* ---------- Form ---------- */
[data-scope="moeen-join-section"] .moeen-join-section__form {
  position: relative;
  z-index: 1;
}

[data-scope="moeen-join-section"] .moeen-join-section__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

[data-scope="moeen-join-section"] .moeen-join-section__fields label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 900;
}

[data-scope="moeen-join-section"] .moeen-join-section__full {
  grid-column: 1 / -1;
}

/* ---------- Inputs ---------- */
[data-scope="moeen-join-section"] input,
[data-scope="moeen-join-section"] textarea,
[data-scope="moeen-join-section"] select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(35, 198, 189, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.008)),
    rgba(2, 7, 11, 0.44);
  color: var(--white);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

/* إزالة أي Placeholder بصري */
[data-scope="moeen-join-section"] input::placeholder,
[data-scope="moeen-join-section"] textarea::placeholder {
  color: transparent;
}

[data-scope="moeen-join-section"] textarea {
  min-height: 112px;
  padding-block: 13px;
  resize: vertical;
}

[data-scope="moeen-join-section"] input:hover,
[data-scope="moeen-join-section"] textarea:hover,
[data-scope="moeen-join-section"] select:hover {
  border-color: rgba(35, 198, 189, 0.32);
  background:
    linear-gradient(180deg, rgba(35, 198, 189, 0.030), rgba(255, 255, 255, 0.008)),
    rgba(2, 7, 11, 0.50);
}

[data-scope="moeen-join-section"] input:focus,
[data-scope="moeen-join-section"] textarea:focus,
[data-scope="moeen-join-section"] select:focus {
  border-color: var(--teal);
  background: rgba(2, 7, 11, 0.58);
  box-shadow:
    0 0 0 4px rgba(35, 198, 189, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* ---------- Select Field - Premium Style ---------- */
[data-scope="moeen-join-section"] .moeen-join-section__select-field {
  position: relative;
}

[data-scope="moeen-join-section"] .moeen-join-section__select-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-inline-end: 46px;
  border-color: rgba(217, 175, 85, 0.22);
  background:
    linear-gradient(180deg, rgba(217, 175, 85, 0.050), rgba(255, 255, 255, 0.008)),
    rgba(2, 7, 11, 0.48);
  color: var(--white);
}

/* السهم المخصص للقائمة */
[data-scope="moeen-join-section"] .moeen-join-section__select-field::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 18px;
  width: 9px;
  height: 9px;
  pointer-events: none;
  border-inline-end: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0.9;
  transition:
    transform 0.25s var(--ease),
    opacity 0.25s var(--ease);
}

[data-scope="moeen-join-section"] .moeen-join-section__select-field:hover::after,
[data-scope="moeen-join-section"] .moeen-join-section__select-field:focus-within::after {
  transform: rotate(45deg) translate(2px, 2px);
  opacity: 1;
}

[data-scope="moeen-join-section"] .moeen-join-section__select-field select:hover,
[data-scope="moeen-join-section"] .moeen-join-section__select-field select:focus {
  border-color: rgba(217, 175, 85, 0.42);
  background:
    linear-gradient(180deg, rgba(217, 175, 85, 0.075), rgba(255, 255, 255, 0.010)),
    rgba(2, 7, 11, 0.58);
}

/* تنسيق خيارات القائمة قدر الإمكان حسب دعم المتصفح */
[data-scope="moeen-join-section"] select option {
  background: #071018;
  color: var(--white);
}

/* ---------- Alert ---------- */
[data-scope="moeen-join-section"] .moeen-join-section__alert {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(35, 198, 189, 0.30);
  border-radius: 14px;
  background: rgba(35, 198, 189, 0.10);
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

/* ---------- Submit Button ---------- */
[data-scope="moeen-join-section"] .moeen-join-section__submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 18px;
  padding: 14px 24px;
  border: 1px solid var(--teal);
  border-radius: 16px;
  background: rgba(35, 198, 189, 0.10);
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    color 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

[data-scope="moeen-join-section"] .moeen-join-section__submit:hover {
  transform: translateY(-2px);
  background: var(--teal);
  border-color: var(--teal);
  color: var(--carbon);
  box-shadow: none !important;
}

[data-scope="moeen-join-section"] .moeen-join-section__submit:focus-visible {
  outline: 3px solid rgba(35, 198, 189, 0.18);
  outline-offset: 4px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  [data-scope="moeen-join-section"] .moeen-join-section__layout {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-join-section"] .moeen-join-section__content,
  [data-scope="moeen-join-section"] .moeen-join-section__form-card {
    max-width: 820px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  [data-scope="moeen-join-section"] .moeen-join-section__title {
    font-size: 38px;
    letter-spacing: -0.02em;
  }

  [data-scope="moeen-join-section"] .moeen-join-section__values,
  [data-scope="moeen-join-section"] .moeen-join-section__fields {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-join-section"] .moeen-join-section__form-head {
    display: grid;
    justify-items: start;
  }

  [data-scope="moeen-join-section"] .moeen-join-section__form-card {
    border-radius: 24px;
  }

  [data-scope="moeen-join-section"] .moeen-join-section__form-card::before {
    inset: 12px;
    border-radius: 18px;
  }
}

@media (max-width: 540px) {
  [data-scope="moeen-join-section"] .moeen-join-section__title {
    font-size: 34px;
  }

  [data-scope="moeen-join-section"] .moeen-join-section__lead {
    font-size: 15px;
  }

  [data-scope="moeen-join-section"] .moeen-join-section__values {
    gap: 8px;
  }

  [data-scope="moeen-join-section"] .moeen-join-section__values span {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 12.5px;
  }

  [data-scope="moeen-join-section"] .moeen-join-section__form-card {
    padding: 22px;
  }

  [data-scope="moeen-join-section"] input,
  [data-scope="moeen-join-section"] textarea,
  [data-scope="moeen-join-section"] select {
    border-radius: 14px;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-join-section"] *,
  [data-scope="moeen-join-section"] *::before,
  [data-scope="moeen-join-section"] *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   Moeen Contact Section
   سكشن التواصل - تصميم حديث ومعزول
========================================================= */

[data-scope="moeen-contact"].moeen-contact-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* خلفية خافتة */
[data-scope="moeen-contact"].moeen-contact-section::before {
  content: "";
  position: absolute;
  left: -220px;
  top: 10%;
  width: 520px;
  height: 520px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 198, 189, 0.10), transparent 68%);
  pointer-events: none;
}

[data-scope="moeen-contact"].moeen-contact-section::after {
  content: "";
  position: absolute;
  right: -260px;
  bottom: 4%;
  width: 520px;
  height: 520px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 175, 85, 0.08), transparent 68%);
  pointer-events: none;
}

/* Layout */
[data-scope="moeen-contact"] .moeen-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

/* =========================================================
   Content Side
========================================================= */

[data-scope="moeen-contact"] .moeen-contact-content .section-lead {
  max-width: 760px;
  margin-inline: 0 !important;
}

[data-scope="moeen-contact"] .moeen-contact-info {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  max-width: 680px;
}

[data-scope="moeen-contact"] .moeen-contact-info__card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(35, 198, 189, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.030), rgba(255, 255, 255, 0.010)),
    rgba(8, 18, 25, 0.78);
  transition:
    transform 0.24s var(--ease),
    border-color 0.24s var(--ease),
    background 0.24s var(--ease);
}

[data-scope="moeen-contact"] .moeen-contact-info__card:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 198, 189, 0.36);
  background:
    linear-gradient(180deg, rgba(35, 198, 189, 0.050), rgba(255, 255, 255, 0.010)),
    rgba(8, 18, 25, 0.92);
}

[data-scope="moeen-contact"] .moeen-contact-info__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(35, 198, 189, 0.25);
  border-radius: 15px;
  background: rgba(35, 198, 189, 0.08);
  color: var(--teal);
  font-size: 20px;
  font-weight: 900;
}

[data-scope="moeen-contact"] .moeen-contact-info__card strong {
  display: block;
  color: var(--white);
  font-size: 14.5px;
  font-weight: 900;
  line-height: 1.5;
}

[data-scope="moeen-contact"] .moeen-contact-info__card p {
  margin: 4px 0 0;
  color: rgba(246, 250, 250, 0.70);
  font-size: 13.5px;
  line-height: 1.75;
}

/* =========================================================
   Contact Methods
========================================================= */

[data-scope="moeen-contact"] .moeen-contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

[data-scope="moeen-contact"] .moeen-contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 17px;
  border: 1px solid rgba(35, 198, 189, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.010)),
    rgba(8, 18, 25, 0.82);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  transition:
    transform 0.24s var(--ease),
    border-color 0.24s var(--ease),
    color 0.24s var(--ease),
    background 0.24s var(--ease);
}

[data-scope="moeen-contact"] .moeen-contact-methods a:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 198, 189, 0.42);
  background: rgba(35, 198, 189, 0.10);
  color: var(--teal);
}

[data-scope="moeen-contact"] .moeen-contact-methods svg {
  width: 30px;
  height: 30px;
  flex: 0 0 18px;
}

[data-scope="moeen-contact"] .moeen-contact-methods__mail {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  font-size: 15px;
}

/* =========================================================
   Work Hours
========================================================= */

[data-scope="moeen-contact"] .moeen-work-hours {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  max-width: 680px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(217, 175, 85, 0.20);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 175, 85, 0.10), transparent 42%),
    rgba(8, 18, 25, 0.70);
}

[data-scope="moeen-contact"] .moeen-work-hours__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 175, 85, 0.28);
  border-radius: 15px;
  background: rgba(217, 175, 85, 0.08);
}

[data-scope="moeen-contact"] .moeen-work-hours h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 900;
}

[data-scope="moeen-contact"] .moeen-work-hours p {
  margin: 0;
  color: rgba(246, 250, 250, 0.72);
  font-size: 13.5px;
  line-height: 1.85;
}

/* =========================================================
   Form Card
========================================================= */

[data-scope="moeen-contact"] .moeen-contact-form-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(35, 198, 189, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 198, 189, 0.12), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(217, 175, 85, 0.10), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(8, 18, 25, 0.92);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    background 0.28s var(--ease);
}

[data-scope="moeen-contact"] .moeen-contact-form-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 198, 189, 0.42);
}

[data-scope="moeen-contact"] .moeen-contact-form-card::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 21px;
  pointer-events: none;
}

[data-scope="moeen-contact"] .moeen-contact-form-card__head {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}

[data-scope="moeen-contact"] .moeen-contact-form-card__head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

[data-scope="moeen-contact"] .moeen-contact-form-card__head h3 {
  margin: 0;
  color: var(--white);
  font-size: 25px;
  line-height: 1.35;
  font-weight: 950;
}

[data-scope="moeen-contact"] .moeen-contact-form-card__head p {
  margin: 8px 0 0;
  color: rgba(246, 250, 250, 0.66);
  font-size: 13.5px;
  line-height: 1.8;
}

/* =========================================================
   Form Fields
========================================================= */

[data-scope="moeen-contact"] .moeen-contact-form-card form {
  position: relative;
  z-index: 1;
}

[data-scope="moeen-contact"] .moeen-contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

[data-scope="moeen-contact"] .moeen-contact-form-grid label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

[data-scope="moeen-contact"] .moeen-contact-form-grid label.full {
  grid-column: 1 / -1;
}

[data-scope="moeen-contact"] .moeen-contact-form-grid input,
[data-scope="moeen-contact"] .moeen-contact-form-grid textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(35, 198, 189, 0.18);
  border-radius: 15px;
  background: rgba(2, 7, 11, 0.34);
  color: var(--white);
  outline: none;
  font-family: inherit;
  font-size: 14px;
  transition:
    border-color 0.24s var(--ease),
    background 0.24s var(--ease);
}

[data-scope="moeen-contact"] .moeen-contact-form-grid textarea {
  min-height: 132px;
  padding-block: 14px;
  resize: vertical;
}

[data-scope="moeen-contact"] .moeen-contact-form-grid input::placeholder,
[data-scope="moeen-contact"] .moeen-contact-form-grid textarea::placeholder {
  color: rgba(246, 250, 250, 0.36);
}

[data-scope="moeen-contact"] .moeen-contact-form-grid input:focus,
[data-scope="moeen-contact"] .moeen-contact-form-grid textarea:focus {
  border-color: rgba(35, 198, 189, 0.48);
  background: rgba(2, 7, 11, 0.48);
}

[data-scope="moeen-contact"] .moeen-contact-submit {
  width: 100%;
  margin-top: 18px;
  min-height: 52px;
  box-shadow: none !important;
}

[data-scope="moeen-contact"] .moeen-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: none !important;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 980px) {
  [data-scope="moeen-contact"] .moeen-contact-grid {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-contact"] .moeen-contact-form-card {
    max-width: 680px;
  }
}

@media (max-width: 700px) {
  [data-scope="moeen-contact"] .moeen-contact-form-card {
    padding: 22px;
    border-radius: 24px;
  }

  [data-scope="moeen-contact"] .moeen-contact-form-card::before {
    inset: 9px;
    border-radius: 18px;
  }

  [data-scope="moeen-contact"] .moeen-contact-form-grid {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-contact"] .moeen-contact-methods {
    display: grid;
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-contact"] .moeen-contact-methods a {
    justify-content: center;
  }

  [data-scope="moeen-contact"] .moeen-contact-info__card,
  [data-scope="moeen-contact"] .moeen-work-hours {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}

/* =========================================================
   Section: FAQ - Moeen Premium Accordion
   السكشن: الأسئلة الشائعة
   ========================================================= */

/* ---------- Wrapper ---------- */
[data-scope="moeen-faq-section"] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

[data-scope="moeen-faq-section"]::before {
  content: "";
  position: absolute;
  inset-inline: 12%;
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(35, 198, 189, 0.18),
    rgba(217, 175, 85, 0.12),
    transparent
  );
}

[data-scope="moeen-faq-section"]::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  bottom: -260px;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(35, 198, 189, 0.07), transparent 68%);
}

/* ---------- Layout ---------- */
[data-scope="moeen-faq-section"] .moeen-faq-section__layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

/* =========================================================
   Side Card
   ========================================================= */

[data-scope="moeen-faq-section"] .moeen-faq-section__side {
  position: sticky;
  top: 130px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(35, 198, 189, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 10%, rgba(217, 175, 85, 0.10), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.014)),
    rgba(8, 18, 25, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 52px rgba(0, 0, 0, 0.18);
}

[data-scope="moeen-faq-section"] .moeen-faq-section__side::before {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.052);
  border-radius: 21px;
}

[data-scope="moeen-faq-section"] .moeen-faq-section__side-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 7px 13px;
  border: 1px solid rgba(35, 198, 189, 0.30);
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.08);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

[data-scope="moeen-faq-section"] .moeen-faq-section__side h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-size: 25px;
  line-height: 1.45;
  font-weight: 900;
}

[data-scope="moeen-faq-section"] .moeen-faq-section__side p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: rgba(246, 250, 250, 0.64);
  font-size: 14.5px;
  line-height: 2;
}

[data-scope="moeen-faq-section"] .moeen-faq-section__side-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

[data-scope="moeen-faq-section"] .moeen-faq-section__side-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(35, 198, 189, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.024);
  color: rgba(246, 250, 250, 0.74);
  font-size: 13.5px;
  font-weight: 800;
}

[data-scope="moeen-faq-section"] .moeen-faq-section__side-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 175, 85, 0.10);
}

/* =========================================================
   FAQ List
   ========================================================= */

[data-scope="moeen-faq-section"] .moeen-faq-section__list {
  display: grid;
  gap: 14px;
}

/* ---------- FAQ Item ---------- */
[data-scope="moeen-faq-section"] .moeen-faq-section__item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(35, 198, 189, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.034), rgba(255, 255, 255, 0.012)),
    rgba(8, 18, 25, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.042),
    0 12px 34px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    background 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

[data-scope="moeen-faq-section"] .moeen-faq-section__item::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 16px;
  opacity: 0.72;
  transition:
    opacity 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

[data-scope="moeen-faq-section"] .moeen-faq-section__item::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  left: -64px;
  bottom: -64px;
  pointer-events: none;
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.07);
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}

[data-scope="moeen-faq-section"] .moeen-faq-section__item:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 198, 189, 0.30);
  background:
    linear-gradient(180deg, rgba(35, 198, 189, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(8, 18, 25, 0.80);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 18px 46px rgba(0, 0, 0, 0.20);
}

[data-scope="moeen-faq-section"] .moeen-faq-section__item:hover::after,
[data-scope="moeen-faq-section"] .moeen-faq-section__item.is-open::after {
  opacity: 1;
}

[data-scope="moeen-faq-section"] .moeen-faq-section__item.is-open {
  border-color: rgba(35, 198, 189, 0.32);
  background:
    radial-gradient(circle at 92% 18%, rgba(35, 198, 189, 0.075), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.040), rgba(255, 255, 255, 0.014)),
    rgba(8, 18, 25, 0.84);
}

/* ---------- Question Button ---------- */
[data-scope="moeen-faq-section"] .moeen-faq-section__question {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: right;
  cursor: pointer;
}

[data-scope="moeen-faq-section"] .moeen-faq-section__question span {
  color: var(--white);
  font-size: clamp(14px, 1.3vw, 22px);
  line-height: 1.55;
  font-weight: 900;
}

/* Icon */
[data-scope="moeen-faq-section"] .moeen-faq-section__question i {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(35, 198, 189, 0.28);
  border-radius: 15px;
  background: rgba(35, 198, 189, 0.08);
  transition:
    transform 0.32s var(--spring),
    border-color 0.28s var(--ease),
    background 0.28s var(--ease);
}

[data-scope="moeen-faq-section"] .moeen-faq-section__question i::before,
[data-scope="moeen-faq-section"] .moeen-faq-section__question i::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  transition:
    transform 0.32s var(--spring),
    background 0.28s var(--ease);
}

[data-scope="moeen-faq-section"] .moeen-faq-section__question i::after {
  transform: rotate(90deg);
}

[data-scope="moeen-faq-section"] .moeen-faq-section__item.is-open .moeen-faq-section__question i {
  transform: rotate(-4deg);
  border-color: rgba(217, 175, 85, 0.34);
  background: rgba(217, 175, 85, 0.11);
}

[data-scope="moeen-faq-section"] .moeen-faq-section__item.is-open .moeen-faq-section__question i::before {
  background: var(--gold);
}

[data-scope="moeen-faq-section"] .moeen-faq-section__item.is-open .moeen-faq-section__question i::after {
  transform: rotate(0deg);
  background: var(--gold);
}

/* Focus */
[data-scope="moeen-faq-section"] .moeen-faq-section__question:focus-visible {
  outline: 3px solid rgba(35, 198, 189, 0.16);
  outline-offset: -6px;
  border-radius: 20px;
}

/* ---------- Answer ---------- */
[data-scope="moeen-faq-section"] .moeen-faq-section__answer {
  position: relative;
  z-index: 1;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    height 0.44s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s var(--ease);
}

[data-scope="moeen-faq-section"] .moeen-faq-section__item.is-open .moeen-faq-section__answer {
  opacity: 1;
}

[data-scope="moeen-faq-section"] .moeen-faq-section__answer > div {
  padding: 0 26px 24px;
}

[data-scope="moeen-faq-section"] .moeen-faq-section__answer p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(35, 198, 189, 0.12);
  border-radius: 18px;
  background: rgba(2, 7, 11, 0.26);
  color: rgba(246, 250, 250, 0.68);
  font-size: 15.5px;
  line-height: 2;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {
  [data-scope="moeen-faq-section"] .moeen-faq-section__layout {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-faq-section"] .moeen-faq-section__side {
    position: relative;
    top: auto;
  }

  [data-scope="moeen-faq-section"] .moeen-faq-section__side-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  [data-scope="moeen-faq-section"] .moeen-faq-section__side-list {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-faq-section"] .moeen-faq-section__question {
    min-height: 74px;
    padding: 20px;
  }

  [data-scope="moeen-faq-section"] .moeen-faq-section__question i {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  [data-scope="moeen-faq-section"] .moeen-faq-section__answer > div {
    padding: 0 20px 20px;
  }

  [data-scope="moeen-faq-section"] .moeen-faq-section__answer p {
    padding: 16px;
    font-size: 14.5px;
  }
}

@media (max-width: 540px) {
  [data-scope="moeen-faq-section"] .moeen-faq-section__side {
    padding: 22px;
    border-radius: 24px;
  }

  [data-scope="moeen-faq-section"] .moeen-faq-section__item {
    border-radius: 20px;
  }

  [data-scope="moeen-faq-section"] .moeen-faq-section__item::before {
    inset: 10px;
    border-radius: 15px;
  }

  [data-scope="moeen-faq-section"] .moeen-faq-section__question {
    gap: 12px;
    padding: 18px;
  }

  [data-scope="moeen-faq-section"] .moeen-faq-section__question span {
    font-size: 16px;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-faq-section"] *,
  [data-scope="moeen-faq-section"] *::before,
  [data-scope="moeen-faq-section"] *::after {
    transition: none !important;
    animation: none !important;
  }
}



/* =========================================================
   20) CTA Band
   شريط الدعوة لاتخاذ إجراء
========================================================= */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(35, 198, 189, 0.12), transparent 42%), var(--carbon);
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.12;
  font-weight: 900;
}

.cta-band p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
}

.cta-actions {
  justify-content: center;
}

/* =========================================================
   21) Footer
   الفوتر
========================================================= */
.site-footer {
  padding: 70px 0 30px;
  border-top: 1px solid var(--border);
  background: #040b11;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 38px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0;
  color: var(--muted);
}

.footer-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--teal) !important;
  font-size: 19px !important;
  transition: 0.25s var(--ease);
}

.footer-title::before {
  content: "◈";
  color: var(--gold);
  font-size: 10px;
}

.footer-title:hover {
  color: var(--gold) !important;
  transform: translateX(-4px);
  letter-spacing: 0.06em;
}

.footer-links {
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  color: var(--muted);
  transition: 0.25s var(--ease);
}

.footer-card {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--teal-line);
  border-radius: 16px;
  background: var(--teal-dim);
}

.footer-card strong {
  color: var(--white);
}

.footer-card span,
.footer-bottom {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  font-size: 13px;
}

.footer-mini {
  display: flex;
  gap: 18px;
}

.footer-mini a {
  transition: 0.25s var(--ease);
}

.footer-mini a:hover {
  color: var(--teal);
  transform: translateY(-2px);
}

.footer-social {
  display: flex;
  gap: 9px;
  align-items: center;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  transition: 0.28s var(--ease);
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-social a:hover {
  color: var(--teal);
  border-color: var(--teal-line);
  background: var(--teal-dim);
  transform: translateY(-3px) rotate(-4deg);
}



/* =========================================================
   25) Accessibility
   تقليل الحركة لمن اختار ذلك من النظام
========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   26) Responsive - Tablet / Small Desktop
   استجابات أقل من 1100px
========================================================= */
@media (max-width: 1100px) {
  .hero__inner,
  .detail-hero__grid,
  .features-orbit-grid,
  .about-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    max-width: 650px;
  }

  .stats-grid,
  .flip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .audience-grid,
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  
  .project-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .detail-sidebar,
  .project-side,
  .article-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .scroll-rail {
    display: none;
  }
}

/* =========================================================
   27) Responsive - Mobile / Tablet
   استجابات أقل من 860px
========================================================= */
@media (max-width: 860px) {
  :root {
    --topbar-h: 46px;
    --nav-h: 76px;
    --header-h: 122px;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar-social,
  .nav__actions .btn {
    display: none;
  }

  .topbar__hours {
    text-align: center;
    font-size: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .nav__menu {
    position: absolute;
    top: var(--header-h);
    right: 14px;
    left: 14px;
    display: grid;
    gap: 6px;
    max-height: calc(100vh - 150px);
    padding: 16px;
    overflow: auto;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(7, 16, 24, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.3s var(--ease);
  }

  .nav__menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav__link,
  .nav__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .nav__link:hover,
  .nav__trigger:hover,
  .nav__link.is-active,
  .nav__trigger.is-active {
    background: rgba(255, 255, 255, 0.04);
  }

  .submenu {
    position: static;
    min-width: 0;
    max-height: 0;
    margin-top: 4px;
    overflow: hidden;
    padding: 0 10px;
    border-color: transparent;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.025);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav__item.is-open > .submenu,
  .nav__item:hover > .submenu {
    max-height: 620px;
    padding: 10px;
    border-color: var(--border);
  }

  .hero__inner {
    padding: 55px 0;
  }

  .hero__title {
    font-size: 42px;
  }

  .service-grid,
  .cards-3,
  .portfolio-grid,
  .blog-grid,
  .testimonial-grid,
  .why-cards {
    grid-template-columns: 1fr;
  }

  .stats-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .album-grid,
  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .article-content {
    padding: 22px;
  }

  .toc-mobile {
    display: block;
  }

  .article-sidebar .side-card:first-child {
    display: none;
  }

  .detail-media img,
  .about-image img,
  .article-cover img {
    height: 320px;
  }

  .orbit-graphic {
    height: 390px;
    transform: scale(0.88);
  }

  .float-card {
    position: relative;
    inset: auto !important;
    display: inline-block;
    margin: 12px 8px 0 0;
  }

  .hero-image-shell img {
    min-height: 310px;
  }
}


/* =========================================================
   Moeen Legal Pages
   Privacy Policy / Terms of Use
   Scoped by: .article-content.legal-content
========================================================= */

/* Full section background if legal content is inside normal section */
body:has(.article-content.legal-content) {
  background:
    radial-gradient(circle at 18% 8%, rgba(35, 198, 189, 0.10), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(217, 175, 85, 0.07), transparent 32%),
    linear-gradient(180deg, #041419 0%, #020b0f 100%);
}

/* Elementor / theme container correction */
body:has(.article-content.legal-content) main#main {
  overflow: hidden;
}

body:has(.article-content.legal-content) .section {
  position: relative;
  padding-block: clamp(56px, 7vw, 96px);
 
}

body:has(.article-content.legal-content) .section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 76%);
}

/* Main legal card */
.article-content.legal-content {
  --legal-bg: rgba(3, 18, 24, 0.72);
  --legal-card: rgba(7, 31, 40, 0.56);
  --legal-card-2: rgba(2, 14, 19, 0.38);
  --legal-teal: #23c6bd;
  --legal-gold: #d9af55;
  --legal-white: #ffffff;
  --legal-text: rgba(255, 255, 255, 0.86);
  --legal-muted: rgba(219, 234, 239, 0.68);
  --legal-line: rgba(35, 198, 189, 0.18);
  --legal-gold-line: rgba(217, 175, 85, 0.24);
  --legal-radius-xl: 30px;
  --legal-radius-lg: 22px;
  --legal-radius-md: 16px;
  --legal-ease: cubic-bezier(.22, 1, .36, 1);

  position: relative;
  isolation: isolate;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 44px);
  direction: rtl;
  text-align: right;
  color: var(--legal-text);
  border: 1px solid var(--legal-line);
  border-radius: var(--legal-radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 198, 189, 0.09), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(217, 175, 85, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(4, 24, 31, 0.86), rgba(2, 12, 17, 0.92));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(14px);
}

.article-content.legal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(35, 198, 189, 0.28),
    transparent 42%,
    rgba(217, 175, 85, 0.22)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.article-content.legal-content::after {
  content: "";
  position: absolute;
  inset: auto 12% -1px 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(35, 198, 189, 0.42),
    rgba(217, 175, 85, 0.28),
    transparent
  );
  pointer-events: none;
}

/* First H2 as page title */
.article-content.legal-content > h2:first-child {
  position: relative;
  margin: 0 0 26px;
  padding-bottom: 20px;
  color: var(--legal-white);
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.35;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.article-content.legal-content > h2:first-child::before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border: 1px solid rgba(35, 198, 189, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 40% 25%, rgba(35, 198, 189, 0.24), transparent 55%),
    rgba(35, 198, 189, 0.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.article-content.legal-content > h2:first-child::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  width: min(240px, 70%);
  height: 1px;
  transform: translateX(50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(35, 198, 189, 0.45),
    rgba(217, 175, 85, 0.34),
    transparent
  );
}

/* Intro paragraph directly after title */
.article-content.legal-content > h2:first-child + p {
  max-width: 760px;
  margin: -8px auto 28px;
  color: var(--legal-muted);
  text-align: center;
  font-size: 15px;
  line-height: 2;
}

/* Legal sections as cards */
.article-content.legal-content .legal-block {
  position: relative;
  margin: 18px 0;
  padding: clamp(18px, 2.5vw, 24px);
  overflow: hidden;
  border: 1px solid rgba(35, 198, 189, 0.13);
  border-radius: var(--legal-radius-lg);
  
  transition:
    transform .25s var(--legal-ease),
    border-color .25s var(--legal-ease),
    background .25s var(--legal-ease);
}

.article-content.legal-content .legal-block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  opacity: 0.72;
  background: linear-gradient(
    180deg,
    transparent,
    var(--legal-teal),
    rgba(217, 175, 85, 0.56),
    transparent
  );
}

.article-content.legal-content .legal-block:hover {
  transform: translateY(-2px);
  border-color: rgba(35, 198, 189, 0.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 198, 189, 0.085), transparent 34%),
    linear-gradient(135deg, rgba(8, 36, 46, 0.56), rgba(2, 14, 19, 0.42));
}

/* Headings */
.article-content.legal-content h3 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--legal-white);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: -0.015em;
}

.article-content.legal-content h3::before {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(217, 175, 85, 0.55);
  border-radius: 4px;
  background: rgba(217, 175, 85, 0.12);
  box-shadow: 0 0 14px rgba(217, 175, 85, 0.16);
  transform: rotate(45deg);
}

.article-content.legal-content h4 {
  margin: 18px 0 8px;
  color: var(--legal-teal);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 850;
}

/* Paragraphs */
.article-content.legal-content p {
  margin: 0 0 12px;
  color: var(--legal-text);
  font-size: 18px;
  line-height: 2.05;
}

.article-content.legal-content .legal-block p:last-child {
  margin-bottom: 0;
}

/* Lists */
.article-content.legal-content ul,
.article-content.legal-content ol {
  display: grid;
  gap: 10px;
  margin: 14px 0;
  padding: 0;
  list-style: none;
}

.article-content.legal-content li {
  position: relative;
  padding: 11px 42px 11px 14px;
  color: var(--legal-text);
  font-size: 14.5px;
  line-height: 1.9;
  border: 1px solid rgba(35, 198, 189, 0.10);
  border-radius: var(--legal-radius-md);
  background: rgba(2, 14, 19, 0.24);
}

.article-content.legal-content ul li::before {
  content: "✓";
  position: absolute;
  top: 13px;
  right: 14px;
  display: inline-grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid rgba(35, 198, 189, 0.30);
  border-radius: 7px;
  background: rgba(35, 198, 189, 0.10);
  color: var(--legal-teal);
  font-size: 15px;
  font-weight: 950;
}

/* Ordered lists counter */
.article-content.legal-content ol {
  counter-reset: legal-counter;
}

.article-content.legal-content ol li {
  counter-increment: legal-counter;
}

.article-content.legal-content ol li::before {
  content: counter(legal-counter);
  position: absolute;
  top: 12px;
  right: 14px;
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(217, 175, 85, 0.30);
  border-radius: 8px;
  background: rgba(217, 175, 85, 0.10);
  color: var(--legal-gold);
  font-size: 11px;
  font-weight: 950;
}

/* Links */
.article-content.legal-content a {
  color: var(--legal-teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(35, 198, 189, 0.34);
  transition:
    color .2s var(--legal-ease),
    border-color .2s var(--legal-ease);
}

.article-content.legal-content a:hover {
  color: var(--legal-gold);
  border-color: rgba(217, 175, 85, 0.48);
}

/* Strong / emphasis */
.article-content.legal-content strong,
.article-content.legal-content b {
  color: var(--legal-white);
  font-weight: 900;
}

.article-content.legal-content em {
  color: var(--legal-gold);
  font-style: normal;
}

/* Tables if used later */
.article-content.legal-content table {
  width: 100%;
  margin: 18px 0;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(35, 198, 189, 0.14);
  border-radius: var(--legal-radius-lg);
  background: rgba(2, 14, 19, 0.28);
}

.article-content.legal-content th,
.article-content.legal-content td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(35, 198, 189, 0.10);
  color: var(--legal-text);
  text-align: right;
  font-size: 14px;
  line-height: 1.7;
}

.article-content.legal-content th {
  color: var(--legal-white);
  background: rgba(35, 198, 189, 0.08);
  font-weight: 900;
}

.article-content.legal-content tr:last-child td {
  border-bottom: 0;
}

/* Blockquote / notice */
.article-content.legal-content blockquote,
.article-content.legal-content .legal-note {
  position: relative;
  margin: 20px 0;
  padding: 18px 20px;
  border: 1px solid rgba(217, 175, 85, 0.22);
  border-radius: var(--legal-radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 175, 85, 0.10), transparent 35%),
    rgba(217, 175, 85, 0.055);
  color: var(--legal-text);
}

.article-content.legal-content blockquote p,
.article-content.legal-content .legal-note p {
  margin: 0;
}

/* Last update badge if you add it */
.article-content.legal-content .legal-updated {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 auto 22px;
  padding: 8px 14px;
  border: 1px solid rgba(217, 175, 85, 0.22);
  border-radius: 999px;
  background: rgba(217, 175, 85, 0.075);
  color: var(--legal-gold);
  font-size: 12px;
  font-weight: 850;
}

/* Remove empty paragraphs from WordPress */
.article-content.legal-content p:empty {
  display: none;
}

/* Mobile */
@media (max-width: 760px) {
  body:has(.article-content.legal-content) .section {
    padding-block: 42px;
  }

  .article-content.legal-content {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .article-content.legal-content > h2:first-child {
    margin-bottom: 22px;
    padding-bottom: 18px;
    font-size: 28px;
  }

  .article-content.legal-content > h2:first-child + p {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.9;
  }

  .article-content.legal-content .legal-block {
    margin: 14px 0;
    padding: 17px 15px;
    border-radius: 18px;
  }

  .article-content.legal-content h3 {
    font-size: 19px;
  }

  .article-content.legal-content p {
    font-size: 14px;
    line-height: 1.95;
  }

  .article-content.legal-content li {
    padding: 10px 38px 10px 12px;
    font-size: 16px;
    line-height: 1.85;
  }

  .article-content.legal-content ul li::before,
  .article-content.legal-content ol li::before {
    right: 12px;
  }
}

/* Browser fallback if :has is not supported */
@supports not selector(body:has(.article-content.legal-content)) {
  .article-content.legal-content {
    margin-block: 48px;
  }
}



/* =========================================================
   Moeen Article Page
   Modern Article Template - Scoped
========================================================= */

[data-scope="moeen-article-page"] {
  --map-bg: #020b0f;
  --map-surface: rgba(4, 20, 27, 0.78);
  --map-surface-2: rgba(7, 31, 40, 0.56);
  --map-teal: #23c6bd;
  --map-teal-soft: rgba(35, 198, 189, 0.11);
  --map-gold: #d9af55;
  --map-gold-2: #f2cf7b;
  --map-white: #ffffff;
  --map-text: rgba(255, 255, 255, 0.88);
  --map-muted: rgba(219, 234, 239, 0.68);
  --map-line: rgba(35, 198, 189, 0.16);
  --map-gold-line: rgba(217, 175, 85, 0.24);
  --map-radius-xl: 32px;
  --map-radius-lg: 24px;
  --map-radius-md: 16px;
  --map-shadow: 0 16px 42px rgba(0, 0, 0, 0.20);
  --map-ease: cubic-bezier(.22, 1, .36, 1);

  position: relative;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: clamp(48px, 6vw, 82px) 18px;
  overflow: hidden;
  direction: rtl;
  color: var(--map-text);
  
  isolation: isolate;
}

[data-scope="moeen-article-page"]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 76%);
}

[data-scope="moeen-article-page"] * {
  box-sizing: border-box;
}

[data-scope="moeen-article-page"] a {
  color: inherit;
}

[data-scope="moeen-article-page"] .map-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

/* Reading progress */
[data-scope="moeen-article-page"] .map-progress {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.04);
}

[data-scope="moeen-article-page"] .map-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--map-teal), var(--map-gold));
  transition: width .12s linear;
}

/* Hero */
[data-scope="moeen-article-page"] .map-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 34px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(35, 198, 189, 0.16);
  border-radius: var(--map-radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 198, 189, 0.075), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(217, 175, 85, 0.045), transparent 34%),
    rgba(2, 14, 19, 0.54);
  box-shadow: var(--map-shadow);
  backdrop-filter: blur(14px);
}

[data-scope="moeen-article-page"] .map-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  margin-bottom: 16px;
  padding: 7px 15px;
  border: 1px solid rgba(35, 198, 189, 0.28);
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.07);
  color: var(--map-teal);
  font-size: 13px;
  font-weight: 850;
}

[data-scope="moeen-article-page"] .map-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--map-gold);
  box-shadow: 0 0 14px rgba(217, 175, 85, 0.55);
}

[data-scope="moeen-article-page"] .map-hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--map-white);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -0.04em;
}

[data-scope="moeen-article-page"] .map-hero h1 em {
  font-style: normal;
  color: var(--map-teal);
  text-shadow: 0 0 24px rgba(35, 198, 189, 0.16);
}

[data-scope="moeen-article-page"] .map-hero p {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--map-muted);
  font-size: 15.5px;
  line-height: 2;
}

[data-scope="moeen-article-page"] .map-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

[data-scope="moeen-article-page"] .map-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(35, 198, 189, 0.16);
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.06);
  color: rgba(255,255,255,.76);
  font-size: 12.5px;
  font-weight: 750;
}

/* Hero visual */
[data-scope="moeen-article-page"] .map-hero__visual {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(35,198,189,.10), transparent 38%);
  background-size: 42px 42px, 42px 42px, auto;
}

[data-scope="moeen-article-page"] .map-orbit {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(217, 175, 85, 0.13);
}

[data-scope="moeen-article-page"] .map-orbit--two {
  width: 190px;
  height: 190px;
  border-color: rgba(35, 198, 189, 0.17);
}

[data-scope="moeen-article-page"] .map-visual-card {
  position: relative;
  width: min(360px, 86%);
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(35,198,189,.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 50%, rgba(35,198,189,.08), transparent 36%),
    linear-gradient(180deg, rgba(14, 47, 60, .88), rgba(6, 25, 34, .96));
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
}

[data-scope="moeen-article-page"] .map-visual-card > span {
  display: block;
  height: 32px;
  margin-bottom: 28px;
  border-radius: 12px;
  background: rgba(255,255,255,.045);
}

[data-scope="moeen-article-page"] .map-visual-card div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

[data-scope="moeen-article-page"] .map-visual-card b {
  display: block;
  height: 76px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(35,198,189,.30), rgba(35,198,189,.08));
}

[data-scope="moeen-article-page"] .map-visual-card b:last-child {
  background: linear-gradient(135deg, rgba(217,175,85,.20), rgba(255,255,255,.04));
}

[data-scope="moeen-article-page"] .map-visual-card i {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 42px;
  height: 42px;
  background: var(--map-teal);
  transform: translate(50%, -20%) rotate(45deg);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

/* Layout */
[data-scope="moeen-article-page"] .map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 26px;
  align-items: start;
}

/* Content */
[data-scope="moeen-article-page"] .map-content {
  min-width: 0;
}

[data-scope="moeen-article-page"] .map-article-section,
[data-scope="moeen-article-page"] .map-comments,
[data-scope="moeen-article-page"] .map-toc-mobile {
  position: relative;
  margin-bottom: 20px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(35, 198, 189, 0.14);
  border-radius: var(--map-radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(35,198,189,.055), transparent 32%),
    linear-gradient(135deg, rgba(7, 31, 40, 0.46), rgba(2, 14, 19, 0.34));
}

[data-scope="moeen-article-page"] .map-article-section::before,
[data-scope="moeen-article-page"] .map-comments::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 0;
  width: 3px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--map-teal), var(--map-gold));
}

[data-scope="moeen-article-page"] .map-article-section h2,
[data-scope="moeen-article-page"] .map-comments h2 {
  margin: 0 0 16px;
  color: var(--map-white);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
  font-weight: 950;
  letter-spacing: -0.03em;
}

[data-scope="moeen-article-page"] .map-article-section p,
[data-scope="moeen-article-page"] .map-comments p {
  margin: 0 0 14px;
  color: var(--map-text);
  font-size: 16px;
  line-height: 2.15;
}

[data-scope="moeen-article-page"] .map-article-section p:last-child {
  margin-bottom: 0;
}

/* Lists */
[data-scope="moeen-article-page"] .map-article-section ul,
[data-scope="moeen-article-page"] .map-article-section ol {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

[data-scope="moeen-article-page"] .map-article-section li {
  position: relative;
  padding: 12px 44px 12px 14px;
  border: 1px solid rgba(35, 198, 189, 0.10);
  border-radius: 16px;
  background: rgba(2, 14, 19, 0.24);
  color: var(--map-text);
  font-size: 14.5px;
  line-height: 1.9;
}

[data-scope="moeen-article-page"] .map-article-section ul li::before {
  content: "✓";
  position: absolute;
  top: 13px;
  right: 14px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid rgba(35,198,189,.28);
  border-radius: 8px;
  background: rgba(35,198,189,.09);
  color: var(--map-teal);
  font-size: 11px;
  font-weight: 950;
}

[data-scope="moeen-article-page"] .map-article-section ol {
  counter-reset: map-counter;
}

[data-scope="moeen-article-page"] .map-article-section ol li {
  counter-increment: map-counter;
}

[data-scope="moeen-article-page"] .map-article-section ol li::before {
  content: counter(map-counter);
  position: absolute;
  top: 12px;
  right: 14px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(217,175,85,.28);
  border-radius: 9px;
  background: rgba(217,175,85,.09);
  color: var(--map-gold-2);
  font-size: 12px;
  font-weight: 950;
}

/* Blockquote */
[data-scope="moeen-article-page"] blockquote {
  margin: 22px 0;
  padding: 20px 22px;
  border: 1px solid rgba(217, 175, 85, 0.20);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217,175,85,.10), transparent 34%),
    rgba(217,175,85,.045);
  color: var(--map-white);
  font-size: 16px;
  line-height: 2;
}

[data-scope="moeen-article-page"] .map-summary-box {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(35,198,189,.18);
  border-radius: 18px;
  background: rgba(35,198,189,.055);
}

[data-scope="moeen-article-page"] .map-summary-box strong {
  color: var(--map-teal);
}

[data-scope="moeen-article-page"] .map-summary-box span {
  color: var(--map-text);
  line-height: 1.9;
}

/* Sidebar */
[data-scope="moeen-article-page"] .map-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

[data-scope="moeen-article-page"] .map-side-card {
  padding: 18px;
  border: 1px solid rgba(35, 198, 189, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(35,198,189,.055), transparent 32%),
    rgba(4, 20, 27, 0.70);
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}

[data-scope="moeen-article-page"] .map-side-title {
  display: block;
  margin-bottom: 12px;
  color: var(--map-white);
  font-size: 15px;
  font-weight: 950;
}

[data-scope="moeen-article-page"] .map-toc-list,
[data-scope="moeen-article-page"] .map-toc-mobile div,
[data-scope="moeen-article-page"] .map-other-posts {
  display: grid;
  gap: 9px;
}

[data-scope="moeen-article-page"] [data-toc-link],
[data-scope="moeen-article-page"] .map-other-posts a {
  display: block;
  padding: 11px 12px;
  border: 1px solid rgba(35,198,189,.12);
  border-radius: 14px;
  background: rgba(2, 14, 19, 0.25);
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.7;
  transition:
    color .22s var(--map-ease),
    border-color .22s var(--map-ease),
    background .22s var(--map-ease),
    transform .22s var(--map-ease);
}

[data-scope="moeen-article-page"] [data-toc-link]:hover,
[data-scope="moeen-article-page"] [data-toc-link].is-active,
[data-scope="moeen-article-page"] .map-other-posts a:hover {
  transform: translateY(-1px);
  border-color: rgba(35,198,189,.28);
  background: rgba(35,198,189,.08);
  color: var(--map-teal);
}

[data-scope="moeen-article-page"] .map-side-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(35,198,189,.10);
}

[data-scope="moeen-article-page"] .map-side-meta span {
  color: var(--map-muted);
  font-size: 12px;
}

[data-scope="moeen-article-page"] .map-side-meta strong {
  color: var(--map-gold-2);
  font-size: 13px;
}

[data-scope="moeen-article-page"] .map-side-card p {
  margin: 14px 0 0;
  color: var(--map-muted);
  font-size: 13px;
  line-height: 1.9;
}

[data-scope="moeen-article-page"] .map-side-card--cta {
  border-color: rgba(217,175,85,.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(217,175,85,.09), transparent 34%),
    rgba(4, 20, 27, 0.72);
}

[data-scope="moeen-article-page"] .map-side-card--cta a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--map-gold-2), var(--map-gold));
  color: #061016;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
}

/* Mobile TOC */
[data-scope="moeen-article-page"] .map-toc-mobile {
  display: none;
}

[data-scope="moeen-article-page"] .map-toc-mobile strong {
  display: block;
  margin-bottom: 12px;
  color: var(--map-white);
  font-size: 15px;
}

/* Comments */
[data-scope="moeen-article-page"] .map-form {
  margin-top: 18px;
}

[data-scope="moeen-article-page"] .map-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

[data-scope="moeen-article-page"] .map-form label {
  display: grid;
  gap: 8px;
  color: var(--map-muted);
  font-size: 13px;
  font-weight: 800;
}

[data-scope="moeen-article-page"] .map-form__full {
  grid-column: 1 / -1;
}

[data-scope="moeen-article-page"] .map-form input,
[data-scope="moeen-article-page"] .map-form textarea {
  width: 100%;
  border: 1px solid rgba(35,198,189,.16);
  border-radius: 15px;
  background: rgba(2,14,19,.44);
  color: var(--map-white);
  padding: 13px 14px;
  font: inherit;
  outline: none;
  transition:
    border-color .22s var(--map-ease),
    background .22s var(--map-ease),
    box-shadow .22s var(--map-ease);
}

[data-scope="moeen-article-page"] .map-form textarea {
  resize: vertical;
}

[data-scope="moeen-article-page"] .map-form input:focus,
[data-scope="moeen-article-page"] .map-form textarea:focus {
  border-color: rgba(35,198,189,.42);
  background: rgba(2,14,19,.62);
  box-shadow: 0 0 0 3px rgba(35,198,189,.10);
}

[data-scope="moeen-article-page"] .map-form button {
  min-height: 46px;
  margin-top: 14px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--map-teal), #16aaa2);
  color: #061016;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform .22s var(--map-ease),
    box-shadow .22s var(--map-ease);
}

[data-scope="moeen-article-page"] .map-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(35,198,189,.14);
}

[data-scope="moeen-article-page"] .map-form__alert {
  margin-top: 12px;
  color: var(--map-teal);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1050px) {
  [data-scope="moeen-article-page"] .map-hero {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-article-page"] .map-hero__visual {
    min-height: 240px;
  }

  [data-scope="moeen-article-page"] .map-layout {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-article-page"] .map-sidebar {
    position: static;
    order: -1;
  }

  [data-scope="moeen-article-page"] .map-side-card--toc {
    display: none;
  }

  [data-scope="moeen-article-page"] .map-toc-mobile {
    display: block;
  }
}

@media (max-width: 700px) {
  [data-scope="moeen-article-page"] {
    padding: 42px 14px;
  }

  [data-scope="moeen-article-page"] .map-hero {
    padding: 22px 16px;
    border-radius: 24px;
  }

  [data-scope="moeen-article-page"] .map-hero h1 {
    font-size: 34px;
  }

  [data-scope="moeen-article-page"] .map-hero p,
  [data-scope="moeen-article-page"] .map-article-section p {
    font-size: 14.5px;
    line-height: 2;
  }

  [data-scope="moeen-article-page"] .map-hero__visual {
    min-height: 210px;
  }

  [data-scope="moeen-article-page"] .map-article-section,
  [data-scope="moeen-article-page"] .map-comments,
  [data-scope="moeen-article-page"] .map-toc-mobile,
  [data-scope="moeen-article-page"] .map-side-card {
    border-radius: 20px;
  }

  [data-scope="moeen-article-page"] .map-article-section h2,
  [data-scope="moeen-article-page"] .map-comments h2 {
    font-size: 24px;
  }

  [data-scope="moeen-article-page"] .map-form__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-article-page"] *,
  [data-scope="moeen-article-page"] *::before,
  [data-scope="moeen-article-page"] *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* =========================================================
   Moeen Article Page - Hover Enhancements
   Add this at the end of the article CSS
========================================================= */

/* Smooth base transitions */
[data-scope="moeen-article-page"] .map-article-section,
[data-scope="moeen-article-page"] .map-comments,
[data-scope="moeen-article-page"] .map-toc-mobile,
[data-scope="moeen-article-page"] .map-side-card,
[data-scope="moeen-article-page"] .map-hero,
[data-scope="moeen-article-page"] .map-visual-card,
[data-scope="moeen-article-page"] .map-article-section li,
[data-scope="moeen-article-page"] blockquote,
[data-scope="moeen-article-page"] .map-summary-box {
  transition:
    transform .26s var(--map-ease),
    border-color .26s var(--map-ease),
    background .26s var(--map-ease),
    box-shadow .26s var(--map-ease),
    color .26s var(--map-ease);
}

/* Hero hover */
[data-scope="moeen-article-page"] .map-hero:hover {
  border-color: rgba(35, 198, 189, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 198, 189, 0.095), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(217, 175, 85, 0.06), transparent 35%),
    rgba(2, 14, 19, 0.62);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

/* Hero visual hover */
[data-scope="moeen-article-page"] .map-hero__visual:hover .map-visual-card {
  transform: translateY(-4px);
  border-color: rgba(35, 198, 189, 0.30);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.22),
    0 0 28px rgba(35, 198, 189, 0.06);
}

[data-scope="moeen-article-page"] .map-hero__visual:hover .map-visual-card i {
  filter: drop-shadow(0 0 16px rgba(35, 198, 189, 0.42));
}

/* Article sections hover */
[data-scope="moeen-article-page"] .map-article-section:hover,
[data-scope="moeen-article-page"] .map-comments:hover,
[data-scope="moeen-article-page"] .map-toc-mobile:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 198, 189, 0.25);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 198, 189, 0.075), transparent 34%),
    linear-gradient(135deg, rgba(7, 35, 44, 0.54), rgba(2, 14, 19, 0.40));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

/* Heading line glow on section hover */
[data-scope="moeen-article-page"] .map-article-section:hover::before,
[data-scope="moeen-article-page"] .map-comments:hover::before {
  box-shadow: 0 0 18px rgba(35, 198, 189, 0.30);
}

/* Paragraph readability subtle hover */
[data-scope="moeen-article-page"] .map-article-section:hover h2,
[data-scope="moeen-article-page"] .map-comments:hover h2 {
  color: #ffffff;
}

[data-scope="moeen-article-page"] .map-article-section:hover h2::selection,
[data-scope="moeen-article-page"] .map-article-section:hover p::selection {
  background: rgba(35, 198, 189, 0.25);
}

/* List item hover */
[data-scope="moeen-article-page"] .map-article-section li:hover {
  transform: translateX(-3px);
  border-color: rgba(35, 198, 189, 0.22);
  background: rgba(35, 198, 189, 0.055);
}

[data-scope="moeen-article-page"] .map-article-section ul li:hover::before {
  border-color: rgba(35, 198, 189, 0.42);
  background: rgba(35, 198, 189, 0.15);
  box-shadow: 0 0 14px rgba(35, 198, 189, 0.16);
}

[data-scope="moeen-article-page"] .map-article-section ol li:hover::before {
  border-color: rgba(217, 175, 85, 0.42);
  background: rgba(217, 175, 85, 0.14);
  box-shadow: 0 0 14px rgba(217, 175, 85, 0.14);
}

/* Blockquote hover */
[data-scope="moeen-article-page"] blockquote:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 175, 85, 0.32);
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 175, 85, 0.13), transparent 35%),
    rgba(217, 175, 85, 0.06);
}

/* Summary box hover */
[data-scope="moeen-article-page"] .map-summary-box:hover {
  transform: translateY(-2px);
  border-color: rgba(35, 198, 189, 0.28);
  background: rgba(35, 198, 189, 0.075);
}

/* Sidebar cards hover */
[data-scope="moeen-article-page"] .map-side-card:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 198, 189, 0.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 198, 189, 0.075), transparent 34%),
    rgba(4, 22, 29, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.17);
}

/* CTA side card hover */
[data-scope="moeen-article-page"] .map-side-card--cta:hover {
  border-color: rgba(217, 175, 85, 0.30);
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 175, 85, 0.115), transparent 35%),
    rgba(4, 22, 29, 0.80);
}

/* CTA button hover in sidebar */
[data-scope="moeen-article-page"] .map-side-card--cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(217, 175, 85, 0.16);
}

/* TOC hover already exists; this improves active/hover feeling */
[data-scope="moeen-article-page"] [data-toc-link]:hover,
[data-scope="moeen-article-page"] [data-toc-link].is-active {
  transform: translateX(-3px);
  border-color: rgba(35, 198, 189, 0.30);
  background:
    linear-gradient(135deg, rgba(35, 198, 189, 0.10), rgba(35, 198, 189, 0.035));
  color: var(--map-teal);
}

/* Other posts hover */
[data-scope="moeen-article-page"] .map-other-posts a:hover {
  transform: translateX(-3px);
  border-color: rgba(217, 175, 85, 0.26);
  background: rgba(217, 175, 85, 0.055);
  color: var(--map-gold-2);
}

/* Form fields hover */
[data-scope="moeen-article-page"] .map-form input:hover,
[data-scope="moeen-article-page"] .map-form textarea:hover {
  border-color: rgba(35, 198, 189, 0.28);
  background: rgba(2, 14, 19, 0.55);
}

/* Mobile: reduce hover movement */
@media (max-width: 700px) {
  [data-scope="moeen-article-page"] .map-article-section:hover,
  [data-scope="moeen-article-page"] .map-comments:hover,
  [data-scope="moeen-article-page"] .map-side-card:hover,
  [data-scope="moeen-article-page"] .map-toc-mobile:hover {
    transform: none;
  }

  [data-scope="moeen-article-page"] .map-article-section li:hover,
  [data-scope="moeen-article-page"] [data-toc-link]:hover,
  [data-scope="moeen-article-page"] .map-other-posts a:hover {
    transform: none;
  }
}



/* =========================================================
   28) Responsive - Small Mobile
   استجابات أقل من 540px
========================================================= */
@media (max-width: 540px) {
  .container {
    padding-inline: 18px;
  }

  .section {
    padding: 76px 0;
  }

  .hero__title {
    font-size: 34px;
  }


  .hero__proof {
    align-items: flex-start;
  }

  .stats-grid,
  .audience-grid,
  .partners-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .detail-media img,
  .about-image img,
  .article-cover img {
    height: 250px;
  }



  .orb {
    display: none;
  }
}

/* إخفاء بقايا ويدجت الدعم القديم إن وجدت */
.moeen-support-widget,
.moeen-support-widget *,
.support-float,
.support-float * {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

/* =========================================================
   Home Portfolio More Button Spacing
   إنزال زر عرض كل الأعمال لأسفل قليلا
   ========================================================= */

[data-scope="moeen-portfolio-showcase"] .moeen-portfolio-showcase__more {
  margin-top: 45px !important;
}

/* =========================================================
  Home Testimonials Slider | سلايدر آراء العملاء
  Scope: [data-scope="moeen-home-testimonials-slider"]
  No Pattern / No Section Gradient
========================================================= */

[data-scope="moeen-home-testimonials-slider"].moeen-testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px !important;
  background-color: #02070B !important;
  border-top: 1px solid rgba(20, 217, 204, 0.08);
  border-bottom: 1px solid rgba(20, 217, 204, 0.08);
}

/* Header */
[data-scope="moeen-home-testimonials-slider"] .moeen-testimonials-slider__head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonials-slider__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 8px 15px;
  border: 1px solid rgba(20, 217, 204, 0.22);
  border-radius: 999px;
  background: rgba(20, 217, 204, 0.055);
  color: #46F2E8;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonials-slider__kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #D7B35A;
  transform: rotate(45deg);
  flex: 0 0 auto;
}




[data-scope="moeen-home-testimonials-slider"] .moeen-testimonials-slider__title {
  margin: 0;
  color: #F6FAFA;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.14;
  font-weight: 950;
  letter-spacing: -0.035em;
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonials-slider__title span {
  color: #14D9CC;
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonials-slider__lead {
  max-width: 620px;
  margin: 16px auto 0;
  color: rgba(246, 250, 250, 0.64);
  font-size: 15.5px;
  line-height: 1.9;
}

/* Slider Layout */
[data-scope="moeen-home-testimonials-slider"] .moeen-testimonials-slider__shell {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 14px;
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonials-slider__viewport {
  overflow: hidden;
  padding: 18px 4px 24px;
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonials-slider__track {
  display: flex;
  gap: 16px;
  will-change: transform;
  transition: transform 0.46s cubic-bezier(.4, 0, .2, 1);
}

/* Card */
[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide {
  position: relative;
  flex: 0 0 calc((100% - 32px) / 3);
  min-height: 286px;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(20, 217, 204, 0.10);
  border-radius: 30px;
  background: rgba(8, 18, 25, 0.90);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.026),
    0 18px 44px rgba(0, 0, 0, 0.14);
  opacity: 0.56;
  transform: scale(0.945);
  transition:
    transform 0.38s cubic-bezier(.4, 0, .2, 1),
    opacity 0.38s cubic-bezier(.4, 0, .2, 1),
    border-color 0.38s cubic-bezier(.4, 0, .2, 1),
    background 0.38s cubic-bezier(.4, 0, .2, 1),
    box-shadow 0.38s cubic-bezier(.4, 0, .2, 1);
}

/* Top accent line */
[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide::before {
  content: "";
  position: absolute;
  inset: 0 42px auto;
  height: 2px;
  border-radius: 999px;
  background: rgba(20, 217, 204, 0.42);
  opacity: 0.55;
}

/* Quote mark */
[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide::after {
  content: "”";
  position: absolute;
  top: 54px;
  inset-inline-end: 34px;
  color: rgba(215, 179, 90, 0.15);
  font-size: 82px;
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide.is-active {
  opacity: 1;
  transform: scale(1) translateY(-6px);
  border-color: rgba(20, 217, 204, 0.24);
  background: rgba(8, 18, 25, 0.98);
  box-shadow:
    inset 0 0 0 1px rgba(20, 217, 204, 0.08),
    0 26px 68px rgba(0, 0, 0, 0.24);
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide.is-active::before {
  background: linear-gradient(90deg, transparent, #14D9CC, #D7B35A, transparent);
  opacity: 0.95;
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide.is-active::after {
  color: rgba(215, 179, 90, 0.25);
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide:hover {
  opacity: 1;
  transform: translateY(-6px) scale(1);
  border-color: rgba(20, 217, 204, 0.34);
  background: rgba(8, 18, 25, 1);
}

/* Image */
[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide__media {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  padding: 3px;
  border-radius: 50%;
  border: 1px solid rgba(20, 217, 204, 0.24);
  background: rgba(20, 217, 204, 0.055);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide__media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide.is-active .moeen-testimonial-slide__media {
  border-color: rgba(215, 179, 90, 0.35);
  background: rgba(215, 179, 90, 0.08);
}

/* Old avatar safety */
[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide__avatar {
  display: none !important;
}

/* Tag */
[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide__tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border: 1px solid rgba(20, 217, 204, 0.14);
  border-radius: 999px;
  background: rgba(20, 217, 204, 0.045);
  color: rgba(246, 250, 250, 0.62);
  font-size: 11.5px;
  font-weight: 850;
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide.is-active .moeen-testimonial-slide__tag {
  border-color: rgba(20, 217, 204, 0.28);
  background: rgba(20, 217, 204, 0.075);
  color: #46F2E8;
}

/* Quote text */
[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide blockquote {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 72px;
  max-width: 310px;
  margin: 0 auto;
  padding: 0;
  color: rgba(246, 250, 250, 0.82);
  font-size: 15.5px;
  font-weight: 850;
  line-height: 1.9;
  text-align: center;
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide blockquote::before {
  content: none !important;
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide.is-active blockquote {
  color: #F6FAFA;
}

/* Footer */
[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide__footer {
  position: relative;
  z-index: 2;
  margin: 0;
  padding-top: 14px;
  text-align: center;
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide__footer::before {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin: 0 auto 12px;
  background: rgba(20, 217, 204, 0.18);
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide__footer strong {
  display: block;
  color: #14D9CC;
  font-size: 14px;
  font-weight: 950;
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide.is-active .moeen-testimonial-slide__footer strong {
  color: #46F2E8;
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide__footer span {
  display: block;
  margin-top: 5px;
  color: rgba(246, 250, 250, 0.48);
  font-size: 12px;
  font-weight: 800;
}

/* Arrows */
[data-scope="moeen-home-testimonials-slider"] .moeen-testimonials-slider__arrow {
  position: relative;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(20, 217, 204, 0.20);
  border-radius: 15px;
  background: rgba(8, 18, 25, 0.82);
  color: #14D9CC;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.25s cubic-bezier(.4, 0, .2, 1),
    background 0.25s cubic-bezier(.4, 0, .2, 1),
    border-color 0.25s cubic-bezier(.4, 0, .2, 1),
    color 0.25s cubic-bezier(.4, 0, .2, 1);
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonials-slider__arrow:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 217, 204, 0.38);
  background: rgba(20, 217, 204, 0.085);
  color: #46F2E8;
}

/* Dots */
[data-scope="moeen-home-testimonials-slider"] .moeen-testimonials-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonials-slider__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(246, 250, 250, 0.18);
  cursor: pointer;
  transition:
    width 0.25s cubic-bezier(.4, 0, .2, 1),
    background 0.25s cubic-bezier(.4, 0, .2, 1);
}

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonials-slider__dots button.is-active {
  width: 30px;
  background: linear-gradient(90deg, #14D9CC, #D7B35A);
}

/* =========================================================
  Testimonials Quote Mark - Support Gold Accent
  توضيح لون علامة الاقتباس بلون الموقع الثاني
========================================================= */

[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide::after {
  content: "”" !important;
  position: absolute !important;
  top: 48px !important;
  inset-inline-start: 34px !important;
  inset-inline-end: auto !important;
  z-index: 1 !important;

  color: #F1D56B !important;
  opacity: 0.72 !important;
  font-size: 78px !important;
  font-weight: 950 !important;
  line-height: 1 !important;

  text-shadow:
    0 0 10px rgba(241, 213, 107, 0.36),
    0 0 22px rgba(241, 213, 107, 0.20),
    0 0 38px rgba(215, 179, 90, 0.12) !important;

  pointer-events: none !important;
}

/* في الكارت النشط تكون أوضح */
[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide.is-active::after {
  color: #F6D96F !important;
  opacity: 0.92 !important;
  text-shadow:
    0 0 12px rgba(246, 217, 111, 0.46),
    0 0 28px rgba(246, 217, 111, 0.25),
    0 0 48px rgba(215, 179, 90, 0.16) !important;
}

/* ضمان أن محتوى الكارت يفضل فوق علامة الاقتباس */
[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide__media,
[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide__tag,
[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide blockquote,
[data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide__footer {
  position: relative !important;
  z-index: 2 !important;
}

/* Responsive */
@media (max-width: 1100px) {
  [data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (max-width: 760px) {
  [data-scope="moeen-home-testimonials-slider"].moeen-testimonials-slider {
    padding: 72px 0 78px !important;
  }

  [data-scope="moeen-home-testimonials-slider"] .moeen-testimonials-slider__shell {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-home-testimonials-slider"] .moeen-testimonials-slider__arrow {
    display: none;
  }

  [data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide {
    flex-basis: 100%;
    min-height: 260px;
    transform: none;
  }

  [data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide.is-active {
    transform: none;
  }

  [data-scope="moeen-home-testimonials-slider"] .moeen-testimonials-slider__title {
    font-size: 30px;
  }

  [data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide__media {
    width: 56px;
    height: 56px;
  }

  [data-scope="moeen-home-testimonials-slider"] .moeen-testimonial-slide blockquote {
    min-height: auto;
    font-size: 14.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-home-testimonials-slider"] *,
  [data-scope="moeen-home-testimonials-slider"] *::before,
  [data-scope="moeen-home-testimonials-slider"] *::after {
    transition: none !important;
    animation: none !important;
  }
}


/* =========================================================
   Pricing Section
   سكشن الأسعار - شبكة ثابتة بدون سلايدر
========================================================= */

/* ---------- Pricing Grid ---------- */
/* =========================================================
   Moeen Command Pricing
   Cleaner / Less Shadow / More Readable Content
========================================================= */

[data-scope="moeen-command-pricing"] {
  --mcp-bg: #020b0f;
  --mcp-surface: rgba(4, 20, 27, 0.82);
  --mcp-surface-2: rgba(8, 35, 44, 0.72);
  --mcp-teal: #23c6bd;
  --mcp-teal-soft: rgba(35, 198, 189, 0.11);
  --mcp-gold: #d9af55;
  --mcp-gold-2: #f2cf7b;
  --mcp-white: #ffffff;
  --mcp-text: rgba(255, 255, 255, 0.88);
  --mcp-muted: rgba(219, 234, 239, 0.68);
  --mcp-line: rgba(35, 198, 189, 0.15);
  --mcp-line-strong: rgba(35, 198, 189, 0.28);
  --mcp-gold-line: rgba(217, 175, 85, 0.30);
  --mcp-shadow-soft: 0 14px 38px rgba(0, 0, 0, 0.18);
  --mcp-shadow-card: 0 10px 26px rgba(0, 0, 0, 0.16);
  --mcp-radius-xl: 30px;
  --mcp-radius-lg: 23px;
  --mcp-radius-md: 16px;
  --mcp-ease: cubic-bezier(.22, 1, .36, 1);

  position: relative;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: clamp(52px, 6vw, 84px) 18px;
  overflow: hidden;
  direction: rtl;
  color: var(--mcp-text);
 
  isolation: isolate;
}

[data-scope="moeen-command-pricing"]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 76%);
}

[data-scope="moeen-command-pricing"]::after {
  content: "";
  position: absolute;
  inset: 20% auto auto 50%;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.04);
  filter: blur(58px);
  transform: translateX(-50%);
}

[data-scope="moeen-command-pricing"] * {
  box-sizing: border-box;
}

[data-scope="moeen-command-pricing"] a {
  color: inherit;
}

[data-scope="moeen-command-pricing"] .mcp-container {
  width: min(1220px, 100%);
  margin: 0 auto;
}

/* Header */
[data-scope="moeen-command-pricing"] .mcp-head {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

[data-scope="moeen-command-pricing"] .mcp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  margin-bottom: 13px;
  padding: 7px 15px;
  border: 1px solid rgba(35, 198, 189, 0.28);
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.07);
  color: var(--mcp-teal);
  font-size: 13px;
  font-weight: 850;
}

[data-scope="moeen-command-pricing"] .mcp-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--mcp-gold);
  box-shadow: 0 0 12px rgba(217, 175, 85, 0.55);
}

[data-scope="moeen-command-pricing"] .mcp-head h2 {
  margin: 0;
  color: var(--mcp-white);
  font-size: clamp(32px, 4.7vw, 56px);
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -0.04em;
}

[data-scope="moeen-command-pricing"] .mcp-head h2 em {
  font-style: normal;
  color: var(--mcp-teal);
  text-shadow: 0 0 24px rgba(35, 198, 189, 0.16);
}

[data-scope="moeen-command-pricing"] .mcp-head p {
  max-width: 720px;
  margin: 13px auto 0;
  color: var(--mcp-muted);
  font-size: 15px;
  line-height: 1.9;
}

/* Main Shell */
[data-scope="moeen-command-pricing"] .mcp-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(340px, 0.78fr);
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid rgba(35, 198, 189, 0.18);
  border-radius: var(--mcp-radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(35,198,189,.065), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(217,175,85,.045), transparent 34%),
    rgba(2, 14, 19, 0.56);
  box-shadow: var(--mcp-shadow-soft);
  backdrop-filter: blur(14px);
}

[data-scope="moeen-command-pricing"] .mcp-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(35,198,189,.20), transparent 42%, rgba(217,175,85,.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}



/* Services */
[data-scope="moeen-command-pricing"] .mcp-services {
  display: grid;
  gap: 12px;
  min-width: 0;
}

[data-scope="moeen-command-pricing"] .mcp-service {
  --glow-x: 50%;
  --glow-y: 50%;

  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 88px 88px;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  width: 100%;
  padding: 16px;
  overflow: hidden;
  text-align: right;
  border: 1px solid rgba(35, 198, 189, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(35,198,189,.075), transparent 30%),
    linear-gradient(135deg, rgba(7, 32, 40, 0.68), rgba(3, 18, 25, 0.78));
  color: var(--mcp-text);
  cursor: pointer;
  box-shadow: var(--mcp-shadow-card);
  transition:
    transform .26s var(--mcp-ease),
    border-color .26s var(--mcp-ease),
    box-shadow .26s var(--mcp-ease),
    background .26s var(--mcp-ease);
}

[data-scope="moeen-command-pricing"] .mcp-service::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  
  opacity: 0;
  transition: opacity .26s var(--mcp-ease);
}

[data-scope="moeen-command-pricing"] .mcp-service::after {
  content: "";
  position: absolute;
  inset: auto -24% -62% -24%;
  height: 94px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(35,198,189,.09), transparent 70%);
  opacity: .45;
  pointer-events: none;
  transition: transform .26s var(--mcp-ease), opacity .26s var(--mcp-ease);
}

[data-scope="moeen-command-pricing"] .mcp-service:hover,
[data-scope="moeen-command-pricing"] .mcp-service.is-active {
  transform: translateY(-2px);
  border-color: rgba(35, 198, 189, 0.30);
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(35,198,189,.11), transparent 34%),
    linear-gradient(135deg, rgba(8, 40, 50, 0.78), rgba(3, 20, 28, 0.90));
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
}

[data-scope="moeen-command-pricing"] .mcp-service:hover::before,
[data-scope="moeen-command-pricing"] .mcp-service.is-active::before {
  opacity: 1;
}

[data-scope="moeen-command-pricing"] .mcp-service:hover::after,
[data-scope="moeen-command-pricing"] .mcp-service.is-active::after {
  transform: translateY(-12px) scale(1.04);
  opacity: .75;
}

[data-scope="moeen-command-pricing"] .mcp-service--featured {
  border-color: rgba(217, 175, 85, 0.34);
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(217,175,85,.09), transparent 32%),
    linear-gradient(135deg, rgba(8, 42, 52, 0.82), rgba(3, 20, 28, 0.92));
}

[data-scope="moeen-command-pricing"] .mcp-featured-badge {
  position: absolute;
  top: 12px;
  right: 114px;
  z-index: 4;
  display: inline-flex;
  padding: 4px 9px;
  border: 1px solid rgba(217, 175, 85, .18);
  border-radius: 999px;
  background: rgba(217, 175, 85, 0.10);
  color: var(--mcp-gold-2);
  font-size: 10.5px;
  line-height: 1;
  font-weight: 900;
}

[data-scope="moeen-command-pricing"] .mcp-service__icon,
[data-scope="moeen-command-pricing"] .mcp-service__content,
[data-scope="moeen-command-pricing"] .mcp-service__price,
[data-scope="moeen-command-pricing"] .mcp-service__action {
  position: relative;
  z-index: 3;
}

[data-scope="moeen-command-pricing"] .mcp-service__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(35, 198, 189, 0.20);
  border-radius: 18px;
  
  color: var(--mcp-teal);
  transition:
    transform .26s var(--mcp-ease),
    border-color .26s var(--mcp-ease),
    color .26s var(--mcp-ease),
    background .26s var(--mcp-ease);
}

[data-scope="moeen-command-pricing"] .mcp-service:hover .mcp-service__icon,
[data-scope="moeen-command-pricing"] .mcp-service.is-active .mcp-service__icon {
  transform: scale(1.025);
  border-color: rgba(35, 198, 189, 0.34);
  background: rgba(35, 198, 189, 0.07);
}

[data-scope="moeen-command-pricing"] .mcp-service--featured:hover .mcp-service__icon,
[data-scope="moeen-command-pricing"] .mcp-service--featured.is-active .mcp-service__icon {
  color: var(--mcp-gold-2);
  border-color: rgba(217, 175, 85, 0.34);
  background: rgba(217, 175, 85, 0.07);
}

[data-scope="moeen-command-pricing"] .mcp-service__icon svg,
[data-scope="moeen-command-pricing"] .mcp-service__action svg,
[data-scope="moeen-command-pricing"] .mcp-panel svg,
[data-scope="moeen-command-pricing"] .mcp-bottom-features svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-scope="moeen-command-pricing"] .mcp-service__icon svg {
  width: 29px;
  height: 29px;
}

[data-scope="moeen-command-pricing"] .mcp-service__content {
  min-width: 0;
  padding-top: 2px;
}

[data-scope="moeen-command-pricing"] .mcp-service__content strong {
  display: block;
  margin-bottom: 7px;
  color: var(--mcp-white);
  font-size: 21px;
  line-height: 1.38;
  font-weight: 900;
  letter-spacing: -0.01em;
}

[data-scope="moeen-command-pricing"] .mcp-service__content small {
  display: -webkit-box;
  color: var(--mcp-muted);
  font-size: 16px;
  line-height: 1.7;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

[data-scope="moeen-command-pricing"] .mcp-service__price {
  padding-inline-start: 14px;
  border-inline-start: 1px solid rgba(35, 198, 189, 0.11);
}

[data-scope="moeen-command-pricing"] .mcp-service__price small {
  display: block;
  color: rgba(255,255,255,.64);
  font-size: 14px;
  line-height: 1.45;
}

[data-scope="moeen-command-pricing"] .mcp-service__price strong {
  display: block;
  margin: 3px 0;
  color: var(--mcp-gold-2);
  font-size: 23px;
  line-height: 1;
  font-weight: 950;
}

[data-scope="moeen-command-pricing"] .mcp-service__action {
  display: grid;
  justify-items: center;
  gap: 7px;
  color: rgba(255,255,255,.66);
  transition: color .24s var(--mcp-ease);
}

[data-scope="moeen-command-pricing"] .mcp-service__action svg {
  width: 38px;
  height: 38px;
  padding: 10px;
  border: 1px solid rgba(35, 198, 189, 0.22);
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.065);
  color: var(--mcp-teal);
  transition:
    transform .24s var(--mcp-ease),
    border-color .24s var(--mcp-ease),
    background .24s var(--mcp-ease),
    color .24s var(--mcp-ease);
}

[data-scope="moeen-command-pricing"] .mcp-service:hover .mcp-service__action,
[data-scope="moeen-command-pricing"] .mcp-service.is-active .mcp-service__action {
  color: var(--mcp-white);
}

[data-scope="moeen-command-pricing"] .mcp-service:hover .mcp-service__action svg,
[data-scope="moeen-command-pricing"] .mcp-service.is-active .mcp-service__action svg {
  transform: translateX(2px);
  border-color: rgba(217, 175, 85, 0.34);
 
  color: var(--mcp-gold-2);
}

[data-scope="moeen-command-pricing"] .mcp-service__action small {
  font-size: 15px;
  font-weight: 800;
}

[data-scope="moeen-command-pricing"] .mcp-service:focus-visible {
  outline: 3px solid rgba(35, 198, 189, 0.34);
  outline-offset: 3px;
}

/* Panel */
[data-scope="moeen-command-pricing"] .mcp-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 32px 26px 24px;
  border: 1px solid rgba(35, 198, 189, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(35,198,189,.075), transparent 34%),
    linear-gradient(180deg, rgba(4, 26, 34, .88), rgba(3, 17, 23, .94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

[data-scope="moeen-command-pricing"] .mcp-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, #000, transparent 72%);
  pointer-events: none;
}

[data-scope="moeen-command-pricing"] .mcp-panel__ribbon {
  position: absolute;
  top: 0;
  left: 24px;
  z-index: 4;
  display: grid;
  width: 44px;
  height: 62px;
  place-items: start center;
  padding-top: 15px;
  background: linear-gradient(180deg, var(--mcp-gold-2), var(--mcp-gold));
  color: #061016;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
  box-shadow: 0 10px 20px rgba(217,175,85,.14);
}

[data-scope="moeen-command-pricing"] .mcp-panel__ribbon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

[data-scope="moeen-command-pricing"] .mcp-panel__icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 66px;
  height: 66px;
  margin: 8px auto 18px;
  place-items: center;
  border: 1px solid rgba(35, 198, 189, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 40% 20%, rgba(35,198,189,.15), transparent 54%),
    rgba(5, 28, 36, 0.68);
  color: var(--mcp-teal);
}

[data-scope="moeen-command-pricing"] .mcp-panel__icon svg {
  width: 31px;
  height: 31px;
}

[data-scope="moeen-command-pricing"] .mcp-panel__eyebrow {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 8px;
  color: var(--mcp-gold-2);
  text-align: center;
  font-size: 12.5px;
  line-height: 1.5;
  font-weight: 850;
}

[data-scope="moeen-command-pricing"] .mcp-panel h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--mcp-white);
  text-align: center;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.32;
  font-weight: 950;
  letter-spacing: -0.03em;
}

[data-scope="moeen-command-pricing"] .mcp-panel > p {
  position: relative;
  z-index: 2;
  max-width: 410px;
  margin: 12px auto 0;
  color: var(--mcp-muted);
  text-align: center;
  font-size: 16px;
  line-height: 1.85;
}

[data-scope="moeen-command-pricing"] .mcp-panel__price {
  position: relative;
  z-index: 2;
  display: flex;
  width: fit-content;
  align-items: baseline;
  gap: 8px;
  margin: 16px auto;
  padding: 9px 13px;
  border: 1px solid rgba(217, 175, 85, 0.18);
  border-radius: 999px;
  background: rgba(217, 175, 85, 0.065);
}

[data-scope="moeen-command-pricing"] .mcp-panel__price span {
  color: rgba(255,255,255,.65);
  font-size: 11.5px;
  font-weight: 800;
}

[data-scope="moeen-command-pricing"] .mcp-panel__price strong {
  color: var(--mcp-gold-2);
  font-size: 18px;
  font-weight: 950;
}

[data-scope="moeen-command-pricing"] .mcp-panel__info {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
}

[data-scope="moeen-command-pricing"] .mcp-panel__info div {
  padding: 12px 13px;
  border: 1px solid rgba(35, 198, 189, 0.12);
  border-radius: 16px;
  background: rgba(2, 14, 19, 0.26);
}

[data-scope="moeen-command-pricing"] .mcp-panel__info span {
  display: block;
  margin-bottom: 5px;
  color: var(--mcp-teal);
  font-size: 15px;
  font-weight: 850;
}

[data-scope="moeen-command-pricing"] .mcp-panel__info p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.75;
}

/* Offer */
[data-scope="moeen-command-pricing"] .mcp-offer {
  position: relative;
  z-index: 2;
  margin: 0 0 16px;
  padding: 15px;
  overflow: hidden;
  border: 1px solid rgba(217, 175, 85, 0.20);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217,175,85,.12), transparent 34%),
    linear-gradient(135deg, rgba(7, 28, 35, 0.72), rgba(3, 15, 20, 0.86));
}

[data-scope="moeen-command-pricing"] .mcp-offer__label {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mcp-gold), var(--mcp-gold-2));
  color: #071016;
  font-size: 10.5px;
  font-weight: 950;
}

[data-scope="moeen-command-pricing"] .mcp-offer__value {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 11px;
}

[data-scope="moeen-command-pricing"] .mcp-offer__value strong {
  color: var(--mcp-gold-2);
  font-size: 29px;
  line-height: 1;
  font-weight: 950;
}

[data-scope="moeen-command-pricing"] .mcp-offer__value span {
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  line-height: 1.6;
}

[data-scope="moeen-command-pricing"] .mcp-timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

[data-scope="moeen-command-pricing"] .mcp-timer div {
  padding: 8px 5px;
  text-align: center;
  border: 1px solid rgba(35,198,189,.16);
  border-radius: 13px;
  background: rgba(2, 12, 17, 0.42);
}

[data-scope="moeen-command-pricing"] .mcp-timer strong {
  display: block;
  color: var(--mcp-teal);
  font-size: 18px;
  line-height: 1;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

[data-scope="moeen-command-pricing"] .mcp-timer span {
  display: block;
  margin-top: 5px;
  color: var(--mcp-muted);
  font-size: 9.5px;
}

/* Actions */
[data-scope="moeen-command-pricing"] .mcp-panel__actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 9px;
}

[data-scope="moeen-command-pricing"] .mcp-primary,
[data-scope="moeen-command-pricing"] .mcp-secondary {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 900;
  transition:
    transform .24s var(--mcp-ease),
    box-shadow .24s var(--mcp-ease),
    border-color .24s var(--mcp-ease),
    background .24s var(--mcp-ease),
    color .24s var(--mcp-ease);
}

[data-scope="moeen-command-pricing"] .mcp-primary {
  background: linear-gradient(135deg, var(--mcp-gold-2), var(--mcp-gold));
  color: #061016;
  box-shadow: 0 10px 22px rgba(217, 175, 85, 0.12);
}

[data-scope="moeen-command-pricing"] .mcp-primary svg {
  width: 17px;
  height: 17px;
}

[data-scope="moeen-command-pricing"] .mcp-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(217, 175, 85, 0.17);
}

[data-scope="moeen-command-pricing"] .mcp-secondary {
  border: 1px solid rgba(35, 198, 189, 0.22);
  background: rgba(35, 198, 189, 0.055);
  color: var(--mcp-teal);
}

[data-scope="moeen-command-pricing"] .mcp-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(35, 198, 189, 0.34);
  background: rgba(35, 198, 189, 0.09);
}

[data-scope="moeen-command-pricing"] .mcp-primary:focus-visible,
[data-scope="moeen-command-pricing"] .mcp-secondary:focus-visible {
  outline: 3px solid rgba(35, 198, 189, 0.34);
  outline-offset: 3px;
}

[data-scope="moeen-command-pricing"] .mcp-trust {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  color: rgba(255,255,255,.64);
  text-align: center;
  font-size: 11.5px;
}

[data-scope="moeen-command-pricing"] .mcp-trust span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

[data-scope="moeen-command-pricing"] .mcp-trust svg {
  width: 15px;
  height: 15px;
  color: var(--mcp-gold-2);
}

/* Bottom Features */
[data-scope="moeen-command-pricing"] .mcp-bottom-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 18px auto 0;
}

[data-scope="moeen-command-pricing"] .mcp-bottom-features div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 9px 13px;
  border: 1px solid rgba(35, 198, 189, 0.11);
  border-radius: 16px;
  background: rgba(2, 14, 19, 0.24);
  color: rgba(255,255,255,.70);
  text-align: center;
  font-size: 12px;
}

[data-scope="moeen-command-pricing"] .mcp-bottom-features svg {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  color: var(--mcp-teal);
}

/* Animation State */
[data-scope="moeen-command-pricing"] .mcp-panel.is-changing {
  animation: mcpPanelPulse .30s var(--mcp-ease);
}

@keyframes mcpPanelPulse {
  0% {
    opacity: .82;
  }

  100% {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  [data-scope="moeen-command-pricing"] .mcp-shell {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-command-pricing"] .mcp-panel {
    order: -1;
  }

  [data-scope="moeen-command-pricing"] .mcp-services {
    order: 2;
  }
}

@media (max-width: 760px) {
  [data-scope="moeen-command-pricing"] {
    padding: 46px 14px;
  }

  [data-scope="moeen-command-pricing"] .mcp-head {
    margin-bottom: 24px;
  }

  [data-scope="moeen-command-pricing"] .mcp-head h2 {
    font-size: 33px;
  }

  [data-scope="moeen-command-pricing"] .mcp-head p {
    font-size: 14px;
  }

  [data-scope="moeen-command-pricing"] .mcp-shell {
    gap: 15px;
    padding: 15px;
    border-radius: 24px;
  }

  [data-scope="moeen-command-pricing"] .mcp-service {
    grid-template-columns: 50px minmax(0, 1fr) 70px;
    min-height: 98px;
    gap: 11px;
    padding: 14px;
    border-radius: 18px;
  }

  [data-scope="moeen-command-pricing"] .mcp-service__icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  [data-scope="moeen-command-pricing"] .mcp-service__icon svg {
    width: 24px;
    height: 24px;
  }

  [data-scope="moeen-command-pricing"] .mcp-service__content strong {
    font-size: 18px;
  }

  [data-scope="moeen-command-pricing"] .mcp-service__content small {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }

  [data-scope="moeen-command-pricing"] .mcp-service__price {
    padding-inline-start: 9px;
  }

  [data-scope="moeen-command-pricing"] .mcp-service__price strong {
    font-size: 19px;
  }

  [data-scope="moeen-command-pricing"] .mcp-service__action {
    display: none;
  }

  [data-scope="moeen-command-pricing"] .mcp-featured-badge {
    position: static;
    grid-column: 1 / -1;
    width: fit-content;
    margin-bottom: -2px;
  }

  [data-scope="moeen-command-pricing"] .mcp-panel {
    padding: 26px 17px 19px;
    border-radius: 22px;
  }

  [data-scope="moeen-command-pricing"] .mcp-panel__ribbon {
    left: 17px;
    width: 40px;
    height: 58px;
  }

  [data-scope="moeen-command-pricing"] .mcp-panel__icon {
    width: 60px;
    height: 60px;
    margin-top: 8px;
    border-radius: 19px;
  }

  [data-scope="moeen-command-pricing"] .mcp-panel h3 {
    font-size: 24px;
  }

  [data-scope="moeen-command-pricing"] .mcp-panel > p {
    font-size: 16px;
  }

  [data-scope="moeen-command-pricing"] .mcp-offer__value {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  [data-scope="moeen-command-pricing"] .mcp-bottom-features {
    grid-template-columns: 1fr;
    margin-top: 15px;
  }
}

@media (max-width: 420px) {
  [data-scope="moeen-command-pricing"] .mcp-timer {
    gap: 6px;
  }

  [data-scope="moeen-command-pricing"] .mcp-timer strong {
    font-size: 16px;
  }

  [data-scope="moeen-command-pricing"] .mcp-timer span {
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-command-pricing"] *,
  [data-scope="moeen-command-pricing"] *::before,
  [data-scope="moeen-command-pricing"] *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}



/* Partners infinity loop */
/* =========================================================
  Success Partners Section | شركاء النجاح
  Scope: [data-scope="moeen-success-partners"]
  Style: Premium Dark Logo Tiles
========================================================= */

[data-scope="moeen-success-partners"].moeen-partners {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px !important;
  background-color: #06121A !important;
  
}

[data-scope="moeen-success-partners"].moeen-partners::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
 background: #02070B !important;
  background-color: #02070B !important;

  opacity: 0.72;
}

[data-scope="moeen-success-partners"] .container {
  position: relative;
  z-index: 2;
}

/* Header */
[data-scope="moeen-success-partners"] .moeen-partners__head {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

[data-scope="moeen-success-partners"] .moeen-partners__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 8px 15px;
  border: 1px solid rgba(20, 217, 204, 0.22);
  border-radius: 999px;
  background: rgba(20, 217, 204, 0.055);
  color: #46F2E8;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

[data-scope="moeen-success-partners"] .moeen-partners__kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #D7B35A;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

[data-scope="moeen-success-partners"] .moeen-partners__title {
  margin: 0;
  color: #F6FAFA;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.04em;
}

[data-scope="moeen-success-partners"] .moeen-partners__title span {
  color: #D7B35A;
}

[data-scope="moeen-success-partners"] .moeen-partners__lead {
  max-width: 660px;
  margin: 16px auto 0;
  color: rgba(246, 250, 250, 0.64);
  font-size: 15.5px;
  line-height: 1.9;
}

/* Rail */
[data-scope="moeen-success-partners"] .moeen-partners__rail {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

[data-scope="moeen-success-partners"] .moeen-partners__track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: moeenPartnersRail 30s linear infinite;
  will-change: transform;
}

[data-scope="moeen-success-partners"] .moeen-partners__rail:hover .moeen-partners__track {
  animation-play-state: paused;
}

/* Logo Tile */
[data-scope="moeen-success-partners"] .moeen-partner-card {
  position: relative;
  flex: 0 0 auto;
  width: 178px;
  height: 96px;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 217, 204, 0.14);
  border-radius: 24px;
  background: rgba(246, 250, 250, 0.94);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 16px 38px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.28s cubic-bezier(.4, 0, .2, 1),
    border-color 0.28s cubic-bezier(.4, 0, .2, 1),
    box-shadow 0.28s cubic-bezier(.4, 0, .2, 1),
    background 0.28s cubic-bezier(.4, 0, .2, 1);
}

/* Soft overlay */
[data-scope="moeen-success-partners"] .moeen-partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(20, 217, 204, 0.16), transparent 28%, transparent 72%, rgba(215, 179, 90, 0.14));
  opacity: 0.32;
  transition: opacity 0.28s cubic-bezier(.4, 0, .2, 1);
}

/* Accent line on hover */
[data-scope="moeen-success-partners"] .moeen-partner-card::after {
  content: "";
  position: absolute;
  inset: auto 26px 0;
  z-index: 3;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #14D9CC, #D7B35A, transparent);
  opacity: 0;
  transition: opacity 0.28s cubic-bezier(.4, 0, .2, 1);
}

/* Full tile image */
[data-scope="moeen-success-partners"] .moeen-partner-card img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  padding: 14px 22px;
  border-radius: inherit;
  object-fit: contain;
  background: #F6FAFA;
  filter: grayscale(0.12) contrast(1.04) brightness(0.98) opacity(0.92);
  transition:
    transform 0.28s cubic-bezier(.4, 0, .2, 1),
    filter 0.28s cubic-bezier(.4, 0, .2, 1),
    padding 0.28s cubic-bezier(.4, 0, .2, 1);
}

[data-scope="moeen-success-partners"] .moeen-partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 217, 204, 0.36);
  background: #FFFFFF;
  box-shadow:
    inset 0 0 0 1px rgba(20, 217, 204, 0.08),
    0 22px 52px rgba(0, 0, 0, 0.22);
}

[data-scope="moeen-success-partners"] .moeen-partner-card:hover::before {
  opacity: 0.18;
}

[data-scope="moeen-success-partners"] .moeen-partner-card:hover::after {
  opacity: 1;
}

[data-scope="moeen-success-partners"] .moeen-partner-card:hover img {
  padding: 12px 20px;
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.05) brightness(1) opacity(1);
}

/* Note */
[data-scope="moeen-success-partners"] .moeen-partners__note {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(246, 250, 250, 0.68);
  font-size: 14.5px;
  line-height: 1.9;
  text-align: center;
}

[data-scope="moeen-success-partners"] .moeen-partners__note::before {
  content: "";
  display: block;
  width: 74px;
  height: 1px;
  margin: 0 auto 16px;
  background: linear-gradient(90deg, transparent, rgba(20, 217, 204, 0.65), transparent);
}

/* Animation */
@keyframes moeenPartnersRail {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(50%);
  }
}

/* Responsive */
@media (max-width: 980px) {
  [data-scope="moeen-success-partners"].moeen-partners {
    padding: 74px 0 76px !important;
  }

  [data-scope="moeen-success-partners"] .moeen-partner-card {
    width: 158px;
    height: 88px;
    border-radius: 22px;
  }

  [data-scope="moeen-success-partners"] .moeen-partner-card img {
    padding: 13px 18px;
  }
}

@media (max-width: 640px) {
  [data-scope="moeen-success-partners"] .moeen-partners__title {
    font-size: 32px;
  }

  [data-scope="moeen-success-partners"] .moeen-partners__rail {
    margin-inline: calc(50% - 50vw);
    padding-inline: 16px;
  }

  [data-scope="moeen-success-partners"] .moeen-partner-card {
    width: 146px;
    height: 82px;
    border-radius: 20px;
  }

  [data-scope="moeen-success-partners"] .moeen-partner-card img {
    padding: 12px 16px;
  }

  [data-scope="moeen-success-partners"] .moeen-partners__track {
    animation-duration: 24s;
  }
}
/* =========================================================
  Partners Logo Tiles - Final Visual Polish
  تكبير اللوجو وتقليل سيطرة البياض
========================================================= */

[data-scope="moeen-success-partners"] .moeen-partners__rail {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: 18px 0;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
}

[data-scope="moeen-success-partners"] .moeen-partners__track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: moeenPartnersRail 30s linear infinite;
  will-change: transform;
}

[data-scope="moeen-success-partners"] .moeen-partner-card {
  position: relative;
  flex: 0 0 auto;
  width: 184px;
  height: 94px;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 217, 204, 0.16);
  border-radius: 22px;
  background: rgba(246, 250, 250, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 16px 40px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.28s cubic-bezier(.4, 0, .2, 1),
    border-color 0.28s cubic-bezier(.4, 0, .2, 1),
    box-shadow 0.28s cubic-bezier(.4, 0, .2, 1),
    background 0.28s cubic-bezier(.4, 0, .2, 1);
}

/* Overlay أخف حتى لا يغمق اللوجو */
[data-scope="moeen-success-partners"] .moeen-partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), transparent 38%),
    linear-gradient(90deg, rgba(20,217,204,0.10), transparent 32%, transparent 68%, rgba(215,179,90,0.10));
  opacity: 0.26;
  transition: opacity 0.28s cubic-bezier(.4, 0, .2, 1);
}

/* خط سفلي ناعم عند الهوفر */
[data-scope="moeen-success-partners"] .moeen-partner-card::after {
  content: "";
  position: absolute;
  inset: auto 30px 0;
  z-index: 3;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #14D9CC, #D7B35A, transparent);
  opacity: 0;
  transition: opacity 0.28s cubic-bezier(.4, 0, .2, 1);
}

/* تكبير الصورة نفسها داخل الكارت */
[data-scope="moeen-success-partners"] .moeen-partner-card img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  padding: 8px 16px;
  border-radius: inherit;
  object-fit: contain;
  background: #F6FAFA;
  filter: grayscale(0.05) contrast(1.06) brightness(1) opacity(0.96);
  transform: scale(1.16);
  transition:
    transform 0.28s cubic-bezier(.4, 0, .2, 1),
    filter 0.28s cubic-bezier(.4, 0, .2, 1),
    padding 0.28s cubic-bezier(.4, 0, .2, 1);
}

[data-scope="moeen-success-partners"] .moeen-partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 217, 204, 0.38);
  background: #FFFFFF;
  box-shadow:
    inset 0 0 0 1px rgba(20, 217, 204, 0.10),
    0 22px 54px rgba(0, 0, 0, 0.24);
}

[data-scope="moeen-success-partners"] .moeen-partner-card:hover::before {
  opacity: 0.14;
}

[data-scope="moeen-success-partners"] .moeen-partner-card:hover::after {
  opacity: 1;
}

[data-scope="moeen-success-partners"] .moeen-partner-card:hover img {
  padding: 6px 14px;
  transform: scale(1.24);
  filter: grayscale(0) contrast(1.06) brightness(1) opacity(1);
}

/* Responsive */
@media (max-width: 980px) {
  [data-scope="moeen-success-partners"] .moeen-partner-card {
    width: 164px;
    height: 88px;
    border-radius: 20px;
  }

  [data-scope="moeen-success-partners"] .moeen-partner-card img {
    padding: 8px 14px;
    transform: scale(1.14);
  }
}

@media (max-width: 640px) {
  [data-scope="moeen-success-partners"] .moeen-partner-card {
    width: 150px;
    height: 82px;
    border-radius: 18px;
  }

  [data-scope="moeen-success-partners"] .moeen-partner-card img {
    padding: 8px 12px;
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-success-partners"] .moeen-partners__track {
    animation: none !important;
    transform: none !important;
  }
}




/* === Codex theme hardening 20260515: canonical theme-only UI === */
html,body{max-width:100%!important;overflow-x:hidden!important;cursor:auto!important}body *{cursor:auto}a,button,[role="button"],input[type="submit"]{cursor:pointer!important}.preloader,#preloader,.maeen-preloader,.moeen-preloader,.page-loader,.loading-screen,[class*="preloader"],[class*="page-loader"]{display:none!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important}.site-header{position:sticky!important;top:0!important;z-index:9998!important;background:transparent!important;background-color:transparent!important;backdrop-filter:none!important;border-bottom:1px solid rgba(53,240,227,.12)!important;box-shadow:none!important;overflow:visible!important}.site-header.is-scrolled{background:linear-gradient(180deg,rgba(2,8,12,.78),rgba(2,8,12,.38))!important;backdrop-filter:blur(14px)!important}.site-header .container,.site-header .nav{overflow:visible!important}.site-header .nav{min-height:86px!important;display:flex!important;align-items:center!important;gap:22px!important}.site-header .brand{order:3!important;flex:0 0 auto!important}.site-header .nav__menu{order:2!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:26px!important;flex:1 1 auto!important}.site-header .nav__actions{order:1!important;position:static!important;inset:auto!important;transform:none!important;margin:0!important;display:flex!important;align-items:center!important;gap:10px!important;flex:0 0 auto!important}.site-header .menu-toggle{display:none!important}.site-header .nav__link,.site-header .nav__trigger,.site-header .nav__trigger-link{border-radius:14px!important;border:1px solid transparent!important;transition:color .18s ease,border-color .18s ease,background .18s ease,transform .18s ease!important}.site-header .nav__link:hover,.site-header .nav__trigger:hover,.site-header .nav__trigger-link:hover,.site-header .submenu a:hover{color:var(--teal,#35f0e3)!important;background:rgba(53,240,227,.08)!important;border-color:rgba(53,240,227,.20)!important;transform:translateY(-1px)!important}.site-header .nav__link.is-active,.site-header .nav__trigger-link.is-active,.site-header .current-menu-item>a{color:var(--gold,#d9af55)!important;background:rgba(217,175,85,.10)!important;border-color:rgba(217,175,85,.28)!important}.site-header .submenu a:before,.site-header .submenu a:after{display:none!important;content:none!important}.site-header .nav__actions>a,.site-header .nav__actions>button,.site-header .nav__actions .moeen-notification-toggle{width:44px!important;height:44px!important;min-width:44px!important;border-radius:15px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;border:1px solid rgba(53,240,227,.42)!important;background:rgba(3,19,25,.68)!important;color:var(--teal,#35f0e3)!important;padding:0!important;position:relative!important;overflow:visible!important}.site-header .moeen-header-account,.site-header .moeen-header-join{background:linear-gradient(135deg,var(--teal,#35f0e3),#21c9bf)!important;color:#041014!important;border-color:rgba(53,240,227,.62)!important}.site-header .nav__actions svg{width:20px!important;height:20px!important;display:block!important}.moeen-cart-count,[data-moeen-notification-count]{position:absolute!important;top:-12px!important;inset-inline-end:-8px!important;min-width:22px!important;height:22px!important;padding:0 6px!important;border-radius:999px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;background:linear-gradient(135deg,var(--gold,#d9af55),#ffd87b)!important;color:#061014!important;font-size:12px!important;font-weight:900!important;line-height:1!important;box-shadow:0 8px 22px rgba(217,175,85,.28)!important;animation:codexCountPulse 2.4s ease-in-out infinite!important;z-index:4!important}@keyframes codexCountPulse{0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-2px) scale(1.08)}}.moeen-notification-panel{position:absolute!important;top:calc(100% + 14px)!important;left:0!important;right:auto!important;width:min(420px,calc(100vw - 24px))!important;max-height:min(70vh,520px)!important;overflow:auto!important;border-radius:22px!important;background:linear-gradient(180deg,rgba(6,22,29,.98),rgba(2,8,12,.98))!important;border:1px solid rgba(53,240,227,.26)!important;box-shadow:0 28px 90px rgba(0,0,0,.44)!important}.moeen-notification-row a{display:block!important;border-radius:16px!important;padding:12px!important;color:#fff!important}.moeen-notification-row a:hover{background:rgba(53,240,227,.08)!important}.moeen-notification-row button{color:var(--gold,#d9af55)!important;border:1px solid rgba(217,175,85,.35)!important;background:rgba(217,175,85,.08)!important;border-radius:999px!important}









/* === Codex Arabic safe popup final 20260515 === */
.moeen-service-popup,.moeen-scroll-offer{display:none!important;visibility:hidden!important;opacity:0!important;pointer-events:none!important}.moeen-offer-modal{position:fixed!important;inset:0!important;z-index:7000!important;display:grid!important;place-items:center!important;padding:18px!important;background:rgba(0,7,11,.54)!important;backdrop-filter:blur(12px)!important;-webkit-backdrop-filter:blur(12px)!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important;transition:opacity .22s ease,visibility .22s ease!important;direction:rtl!important}.moeen-offer-modal.is-open{opacity:1!important;visibility:visible!important;pointer-events:auto!important}.moeen-offer-modal__card{position:relative!important;width:min(820px,calc(100vw - 28px))!important;display:grid!important;grid-template-columns:minmax(0,1fr) 280px!important;overflow:hidden!important;border-radius:30px!important;background:radial-gradient(circle at 20% 15%,rgba(53,240,227,.16),transparent 33%),linear-gradient(145deg,rgba(7,26,36,.98),rgba(2,9,14,.99))!important;border:1px solid rgba(53,240,227,.28)!important;box-shadow:0 34px 110px rgba(0,0,0,.50)!important;transform:translateY(14px) scale(.98)!important;transition:transform .24s ease!important}.moeen-offer-modal.is-open .moeen-offer-modal__card{transform:translateY(0) scale(1)!important}.moeen-offer-modal__media{min-height:310px!important;background:linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.15)),url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=420&q=80') center/cover!important}.moeen-offer-modal__body{padding:36px!important;display:flex!important;flex-direction:column!important;align-items:flex-start!important;justify-content:center!important;text-align:right!important;color:#eef8f8!important}.moeen-offer-modal__kicker{display:inline-flex!important;margin-bottom:12px!important;padding:7px 13px!important;border-radius:999px!important;background:rgba(217,175,85,.13)!important;border:1px solid rgba(217,175,85,.38)!important;color:#f0c96b!important;font-size:13px!important;font-weight:900!important}.moeen-offer-modal__body h3{margin:0 0 12px!important;color:#fff!important;font-size:clamp(24px,3vw,36px)!important;line-height:1.45!important;letter-spacing:0!important}.moeen-offer-modal__body p{margin:0 0 22px!important;color:#d7e8e7!important;font-size:16px!important;line-height:2!important}.moeen-offer-modal__cta{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:48px!important;padding:0 22px!important;border-radius:15px!important;background:linear-gradient(135deg,#35f0e3,#18c8bd)!important;color:#061014!important;font-weight:950!important;text-decoration:none!important;box-shadow:0 16px 44px rgba(53,240,227,.24)!important}.moeen-offer-modal__cta:hover{background:linear-gradient(135deg,#d9af55,#f2cd74)!important;color:#061014!important}.moeen-offer-modal__close{position:absolute!important;top:16px!important;left:16px!important;right:auto!important;z-index:3!important;width:40px!important;height:40px!important;border-radius:14px!important;border:1px solid rgba(53,240,227,.45)!important;background:#35f0e3!important;color:#061014!important;font-size:26px!important;line-height:1!important;display:grid!important;place-items:center!important;cursor:pointer!important}.moeen-offer-modal__close:hover{background:#18c8bd!important;border-color:rgba(53,240,227,.65)!important;color:#061014!important}@media(max-width:720px){.moeen-offer-modal__card{grid-template-columns:1fr!important;width:min(94vw,520px)!important}.moeen-offer-modal__media{min-height:170px!important;order:1!important}.moeen-offer-modal__body{order:2!important;padding:24px!important}.moeen-offer-modal__close{top:12px!important;left:12px!important;right:auto!important}.moeen-offer-modal__body h3{font-size:23px!important}.moeen-offer-modal__body p{font-size:15px!important}}



/* === Codex final UX polish password checkout article 20260515 === */
.site-header .brand__img{max-width:118px!important;max-height:58px!important}.moeen-password-wrap{position:relative!important;display:block!important;width:100%!important}.moeen-password-wrap input[type="password"],.moeen-password-wrap input[type="text"]{padding-inline-end:16px!important;padding-inline-start:58px!important}.moeen-password-toggle{position:absolute!important;left:10px!important;right:auto!important;top:50%!important;transform:translateY(-50%)!important;width:38px!important;height:38px!important;border-radius:13px!important;border:1px solid rgba(217,175,85,.32)!important;background:linear-gradient(135deg,rgba(217,175,85,.18),rgba(53,240,227,.10))!important;color:#d9af55!important;display:grid!important;place-items:center!important;z-index:5!important;box-shadow:0 8px 22px rgba(0,0,0,.18)!important}.moeen-password-toggle:hover{background:linear-gradient(135deg,#d9af55,#35f0e3)!important;color:#061014!important}.moeen-password-toggle svg{width:17px!important;height:17px!important;stroke:currentColor!important}.site-header .submenu a.is-active,.site-header .submenu .current-menu-item>a,.site-header .submenu a[aria-current="page"]{background:rgba(53,240,227,.12)!important;border-color:rgba(53,240,227,.30)!important;color:#35f0e3!important;box-shadow:inset 0 0 0 1px rgba(53,240,227,.06)!important}.site-header .submenu a.is-active:after{content:""!important;width:8px!important;height:8px!important;border-radius:999px!important;background:#d9af55!important;margin-inline-start:auto!important}.moeen-page-fade{position:fixed!important;inset:0!important;z-index:6500!important;background:radial-gradient(circle at 50% 18%,rgba(53,240,227,.12),transparent 34%),#02090f!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important;transition:opacity .22s ease,visibility .22s ease!important}.moeen-page-fade.is-active{opacity:.96!important;visibility:visible!important}.moeen-page-fade:after{content:""!important;width:46px!important;height:46px!important;border-radius:50%!important;border:3px solid rgba(53,240,227,.18)!important;border-top-color:#35f0e3!important;position:absolute!important;top:50%!important;left:50%!important;transform:translate(-50%,-50%)!important;animation:moeenFadeSpin .75s linear infinite!important}@keyframes moeenFadeSpin{to{transform:translate(-50%,-50%) rotate(360deg)}}@media(prefers-reduced-motion:reduce){.moeen-page-fade{display:none!important}}






.single-post article,.single article{min-width:0!important}.single-post .entry-content img,.single .entry-content img{width:100%!important;max-height:520px!important;object-fit:cover!important}.single-post .entry-content p:first-of-type::first-letter{color:#35f0e3!important;font-size:2.8em!important;font-weight:950!important;float:right!important;line-height:.9!important;margin:0 0 0 8px!important}.single-post .entry-content ul,.single .entry-content ul{display:grid!important;gap:10px!important;padding:0!important;list-style:none!important}.single-post .entry-content li,.single .entry-content li{position:relative!important;padding:10px 34px 10px 12px!important;border-radius:14px!important;background:rgba(53,240,227,.045)!important;border:1px solid rgba(53,240,227,.10)!important}.single-post .entry-content li:before,.single .entry-content li:before{content:""!important;position:absolute!important;right:12px!important;top:19px!important;width:9px!important;height:9px!important;border-radius:50%!important;background:#d9af55!important;box-shadow:0 0 0 4px rgba(217,175,85,.10)!important}.single-post .entry-wrap,.single .entry-wrap,.single-post .post-layout,.single .post-layout{grid-template-columns:1fr!important}.single-post aside,.single .sidebar,.single-post .sidebar,.single .widget-area{position:relative!important;top:auto!important;max-width:100%!important}.moeen-page-fade:after{width:38px!important;height:38px!important}}





/* =========================================================
  Home Services Interactive Preview | خدمات مركز معين
  Scope: [data-scope="moeen-services-preview"]
========================================================= */

[data-scope="moeen-services-preview"].moeen-services-preview {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  direction: rtl;
  padding: 76px 0 82px !important;
  background: #02070B !important;
  color: #F6FAFA;
 
}

[data-scope="moeen-services-preview"].moeen-services-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 18%, rgba(20, 217, 204, 0.07), transparent 34%);
  opacity: 0.68;
}

[data-scope="moeen-services-preview"] .container {
  position: relative;
  z-index: 2;
}

/* Header */
[data-scope="moeen-services-preview"] .msc-head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

[data-scope="moeen-services-preview"] .msc-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 15px;
  border: 1px solid rgba(20, 217, 204, 0.22);
  border-radius: 999px;
  background: rgba(20, 217, 204, 0.055);
  color: #46F2E8;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

[data-scope="moeen-services-preview"] .msc-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #D7B35A;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

[data-scope="moeen-services-preview"] .msc-title {
  margin: 16px 0 0;
  color: #F6FAFA;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.04em;
}

[data-scope="moeen-services-preview"] .msc-title span {
  color: #14D9CC;
}

[data-scope="moeen-services-preview"] .msc-lead {
  max-width: 690px;
  margin: 16px auto 0;
  color: rgba(246, 250, 250, 0.66);
  font-size: 15.5px;
  line-height: 1.95;
}

/* Layout */
[data-scope="moeen-services-preview"] .msc-shell {
  display: grid;
  grid-template-columns: minmax(284px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
}

/* Sidebar */
[data-scope="moeen-services-preview"] .msc-list {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 398px;
  padding: 12px;
  border: 1px solid rgba(20, 217, 204, 0.10);
  border-radius: 30px;
  background: rgba(8, 18, 25, 0.56);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.016);
}

[data-scope="moeen-services-preview"] .msc-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 86px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(20, 217, 204, 0.085);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.022);
  color: inherit;
  text-align: right;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.24s cubic-bezier(.22, 1, .36, 1),
    background 0.24s cubic-bezier(.22, 1, .36, 1),
    border-color 0.24s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.24s cubic-bezier(.22, 1, .36, 1);
}

[data-scope="moeen-services-preview"] .msc-item * {
  text-decoration: none !important;
}

[data-scope="moeen-services-preview"] .msc-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #14D9CC, #D7B35A);
  opacity: 0;
  transition: opacity 0.24s cubic-bezier(.22, 1, .36, 1);
}

[data-scope="moeen-services-preview"] .msc-item:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 217, 204, 0.24);
  background: rgba(255, 255, 255, 0.035);
}

[data-scope="moeen-services-preview"] .msc-item.is-active {
  border-color: rgba(20, 217, 204, 0.30);
  background: rgba(20, 217, 204, 0.065);
  box-shadow:
    inset 0 0 0 1px rgba(20, 217, 204, 0.030),
    0 14px 34px rgba(0, 0, 0, 0.12);
}

[data-scope="moeen-services-preview"] .msc-item.is-active::before {
  opacity: 1;
}

[data-scope="moeen-services-preview"] .msc-num {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(215, 179, 90, 0.26);
  border-radius: 14px;
  background: rgba(215, 179, 90, 0.08);
  color: #D7B35A;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

[data-scope="moeen-services-preview"] .msc-item strong {
  display: block;
  color: #F6FAFA;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 950;
}

[data-scope="moeen-services-preview"] .msc-item small {
  display: block;
  margin-top: 4px;
  color: rgba(246, 250, 250, 0.52);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
}

[data-scope="moeen-services-preview"] .msc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(246, 250, 250, 0.13);
  box-shadow: 0 0 0 5px rgba(246, 250, 250, 0.02);
  transition:
    background 0.24s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.24s cubic-bezier(.22, 1, .36, 1);
}

[data-scope="moeen-services-preview"] .msc-item.is-active .msc-dot {
  background: #14D9CC;
  box-shadow:
    0 0 0 6px rgba(20, 217, 204, 0.10),
    0 0 20px rgba(20, 217, 204, 0.35);
}

/* Preview Card */
[data-scope="moeen-services-preview"] .msc-stage {
  position: relative;
  min-height: 398px;
  overflow: hidden;
  border: 1px solid rgba(20, 217, 204, 0.15);
  border-radius: 32px;
  background: rgba(8, 18, 25, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.022),
    0 24px 64px rgba(0, 0, 0, 0.18);
}

[data-scope="moeen-services-preview"] .msc-stage::before {
  content: "";
  position: absolute;
  inset: 0 42px auto;
  z-index: 3;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #14D9CC, #D7B35A, transparent);
  opacity: 0.82;
}

[data-scope="moeen-services-preview"] .msc-img {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

[data-scope="moeen-services-preview"] .msc-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04) brightness(0.66);
  transform: scale(1.02);
  transition:
    transform 0.58s cubic-bezier(.22, 1, .36, 1),
    opacity 0.22s ease,
    filter 0.58s cubic-bezier(.22, 1, .36, 1);
}

/* Hover بسيط للصورة */
[data-scope="moeen-services-preview"] .msc-stage:hover .msc-img img {
  transform: scale(1.055);
  filter: saturate(0.96) contrast(1.05) brightness(0.72);
}

[data-scope="moeen-services-preview"] .msc-stage.is-changing .msc-img img {
  opacity: 0.68;
  transform: scale(1.075);
}

[data-scope="moeen-services-preview"] .msc-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 11, 0.92), rgba(2, 7, 11, 0.70) 52%, rgba(2, 7, 11, 0.24)),
    linear-gradient(180deg, rgba(2, 7, 11, 0.08), rgba(2, 7, 11, 0.82));
  pointer-events: none;
}

[data-scope="moeen-services-preview"] .msc-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 398px;
  max-width: 570px;
  padding: 36px;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(.22, 1, .36, 1),
    filter 0.28s ease;
}

[data-scope="moeen-services-preview"] .msc-stage.is-changing .msc-content {
  opacity: 0.18;
  transform: translateY(10px);
  filter: blur(3px);
}

[data-scope="moeen-services-preview"] .msc-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

[data-scope="moeen-services-preview"] .msc-current {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(215, 179, 90, 0.28);
  border-radius: 15px;
  background: rgba(215, 179, 90, 0.10);
  color: #D7B35A;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

[data-scope="moeen-services-preview"] .msc-cat {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 7px 12px;
  border: 1px solid rgba(20, 217, 204, 0.20);
  border-radius: 999px;
  background: rgba(20, 217, 204, 0.07);
  color: #46F2E8;
  font-size: 12px;
  font-weight: 900;
}

[data-scope="moeen-services-preview"] .msc-content h3 {
  margin: 0;
  color: #F6FAFA;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.17;
  font-weight: 950;
  letter-spacing: -0.035em;
}

[data-scope="moeen-services-preview"] .msc-content p {
  max-width: 500px;
  margin: 16px 0 0;
  color: rgba(246, 250, 250, 0.72);
  font-size: 15px;
  line-height: 1.9;
}

[data-scope="moeen-services-preview"] .msc-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin-top: 24px;
}

[data-scope="moeen-services-preview"] .msc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 10px;
  padding: 8px 8px;
  border: 1px solid rgba(20, 217, 204, 0.42);
  border-radius: 15px;
  background: linear-gradient(135deg, #14D9CC, #46F2E8);
  color: #041014;
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(20, 217, 204, 0.10);
  transition:
    transform 0.24s cubic-bezier(.22, 1, .36, 1),
    filter 0.24s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.24s cubic-bezier(.22, 1, .36, 1),
    gap 0.24s cubic-bezier(.22, 1, .36, 1);
}

[data-scope="moeen-services-preview"] .msc-btn:hover {
  gap: 12px;
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow: 0 18px 34px rgba(20, 217, 204, 0.14);
}

[data-scope="moeen-services-preview"] .msc-pills {
  position: absolute;
  z-index: 4;
  inset: auto auto 28px 34px;
  display: flex;
  gap: 7px;
  direction: ltr;
}

[data-scope="moeen-services-preview"] .msc-pills button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(246, 250, 250, 0.18);
  cursor: pointer;
  transition:
    width 0.24s cubic-bezier(.22, 1, .36, 1),
    background 0.24s cubic-bezier(.22, 1, .36, 1),
    opacity 0.24s cubic-bezier(.22, 1, .36, 1);
}

[data-scope="moeen-services-preview"] .msc-pills button.is-active {
  width: 26px;
  background: linear-gradient(90deg, #14D9CC, #D7B35A);
}

/* Footer CTA */
[data-scope="moeen-services-preview"] .msc-footer {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

[data-scope="moeen-services-preview"] .msc-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid rgba(215, 179, 90, 0.36);
  border-radius: 999px;
  background: rgba(215, 179, 90, 0.065);
  color: #D7B35A;
  text-decoration: none;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.018);
  transition:
    transform 0.24s cubic-bezier(.22, 1, .36, 1),
    border-color 0.24s cubic-bezier(.22, 1, .36, 1),
    color 0.24s cubic-bezier(.22, 1, .36, 1),
    background 0.24s cubic-bezier(.22, 1, .36, 1),
    gap 0.24s cubic-bezier(.22, 1, .36, 1);
}

[data-scope="moeen-services-preview"] .msc-all:hover {
  gap: 13px;
  transform: translateY(-3px);
  border-color: rgba(215, 179, 90, 0.56);
  background: rgba(215, 179, 90, 0.095);
  color: #F1D56B;
}

/* Responsive */
@media (max-width: 960px) {
  [data-scope="moeen-services-preview"].moeen-services-preview {
    padding: 64px 0 70px !important;
  }

  [data-scope="moeen-services-preview"] .msc-shell {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-services-preview"] .msc-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
    order: 2;
  }

  [data-scope="moeen-services-preview"] .msc-stage {
    order: 1;
    min-height: 390px;
  }

  [data-scope="moeen-services-preview"] .msc-content {
    min-height: 390px;
    padding: 30px;
  }
}

@media (max-width: 640px) {
  [data-scope="moeen-services-preview"].moeen-services-preview {
    padding: 56px 0 64px !important;
  }

  [data-scope="moeen-services-preview"] .container {
    width: min(100% - 28px, 1120px);
  }

  [data-scope="moeen-services-preview"] .msc-title {
    font-size: 31px;
  }

  [data-scope="moeen-services-preview"] .msc-lead {
    font-size: 14.5px;
  }

  [data-scope="moeen-services-preview"] .msc-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px;
    border-radius: 24px;
  }

  [data-scope="moeen-services-preview"] .msc-item {
    flex: 0 0 245px;
    scroll-snap-align: start;
  }

  [data-scope="moeen-services-preview"] .msc-stage {
    min-height: 470px;
    border-radius: 26px;
  }

  [data-scope="moeen-services-preview"] .msc-content {
    min-height: 470px;
    padding: 24px;
  }

  [data-scope="moeen-services-preview"] .msc-content h3 {
    font-size: 32px;
  }

  [data-scope="moeen-services-preview"] .msc-content p {
    font-size: 14.5px;
  }

  [data-scope="moeen-services-preview"] .msc-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-services-preview"] .msc-btn {
    width: 100%;
  }

  [data-scope="moeen-services-preview"] .msc-pills {
    inset: auto auto 22px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-services-preview"] *,
  [data-scope="moeen-services-preview"] *::before,
  [data-scope="moeen-services-preview"] *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-scope="moeen-services-preview"] .msc-stage:hover .msc-img img,
  [data-scope="moeen-services-preview"] .msc-stage.is-changing .msc-img img {
    transform: none !important;
  }
}

/* =========================================================
   Moeen Services Showcase - Light Version
   Scoped: [data-scope="moeen-services-showcase"]
========================================================= */

/* =========================================================
   Moeen Services Showcase - Refined Cards Version
   Scoped: [data-scope="moeen-services-showcase"]
========================================================= */

[data-scope="moeen-services-showcase"] {
  --mss-bg: #020b0f;
  --mss-teal: #23c6bd;
  --mss-teal-2: #4ee2d6;
  --mss-gold: #d9af55;
  --mss-gold-2: #f2cf7b;
  --mss-white: #ffffff;
  --mss-text: rgba(255, 255, 255, 0.88);
  --mss-muted: rgba(219, 234, 239, 0.70);
  --mss-soft: rgba(255, 255, 255, 0.055);
  --mss-line: rgba(35, 198, 189, 0.16);
  --mss-gold-line: rgba(217, 175, 85, 0.24);
  --mss-radius-xl: 28px;
  --mss-radius-lg: 20px;
  --mss-radius-md: 14px;
  --mss-ease: cubic-bezier(.22, 1, .36, 1);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: clamp(56px, 6vw, 88px) 18px;
  color: var(--mss-text);
}

[data-scope="moeen-services-showcase"]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 76%);
}

[data-scope="moeen-services-showcase"] * {
  box-sizing: border-box;
}

[data-scope="moeen-services-showcase"] .container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

/* Header */
[data-scope="moeen-services-showcase"] .section-head {
  max-width: 840px;
  margin: 0 auto 28px;
  text-align: center;
}

[data-scope="moeen-services-showcase"] .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-bottom: 12px;
  padding: 6px 14px;
  border: 1px solid rgba(35, 198, 189, 0.28);
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.06);
  color: var(--mss-teal);
  font-size: 12.5px;
  font-weight: 850;
}

[data-scope="moeen-services-showcase"] .kicker::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mss-gold);
  box-shadow: 0 0 10px rgba(217, 175, 85, 0.45);
}

[data-scope="moeen-services-showcase"] .section-title {
  margin: 0;
  color: var(--mss-white);
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -0.04em;
}

[data-scope="moeen-services-showcase"] .section-title .teal {
  color: var(--mss-teal);
  text-shadow: 0 0 18px rgba(35, 198, 189, 0.14);
}

[data-scope="moeen-services-showcase"] .section-lead {
  max-width: 720px;
  margin: 13px auto 0;
  color: var(--mss-muted);
  font-size: 14.5px;
  line-height: 1.95;
}

/* Tabs */
[data-scope="moeen-services-showcase"] .service-category-tabs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 28px;
  padding: 7px;
  border: 1px solid rgba(35, 198, 189, 0.14);
  border-radius: 999px;
  background: rgba(2, 14, 19, 0.38);
  backdrop-filter: blur(10px);
}

[data-scope="moeen-services-showcase"] .service-category-tabs button {
  position: relative;
  min-height: 36px;
  padding: 7px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,.68);
  font-family: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition:
    color .2s var(--mss-ease),
    background .2s var(--mss-ease),
    border-color .2s var(--mss-ease),
    transform .2s var(--mss-ease);
}

[data-scope="moeen-services-showcase"] .service-category-tabs button:hover {
  transform: translateY(-1px);
  color: var(--mss-white);
  border-color: rgba(35, 198, 189, 0.22);
  background: rgba(35, 198, 189, 0.06);
}

[data-scope="moeen-services-showcase"] .service-category-tabs button.is-active {
  color: #061016;
  border-color: rgba(217, 175, 85, 0.22);
  background: linear-gradient(135deg, var(--mss-teal-2), var(--mss-gold-2));
  box-shadow: 0 10px 22px rgba(35, 198, 189, 0.08);
}

/* Grid */
[data-scope="moeen-services-showcase"] .service-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* Card */
[data-scope="moeen-services-showcase"] .service-overview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(35, 198, 189, 0.15);
  border-radius: var(--mss-radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 198, 189, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(7, 31, 40, 0.58), rgba(2, 14, 19, 0.72));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.13);
  transition:
    opacity .25s var(--mss-ease),
    transform .25s var(--mss-ease),
    border-color .25s var(--mss-ease),
    background .25s var(--mss-ease),
    box-shadow .25s var(--mss-ease);
}

[data-scope="moeen-services-showcase"] .service-overview-card::before {
  content: "";
  position: absolute;
  inset: 0 20px auto 20px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--mss-teal), var(--mss-gold), transparent);
  opacity: 0;
  transition: opacity .25s var(--mss-ease);
}

[data-scope="moeen-services-showcase"] .service-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 198, 189, 0.30);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 198, 189, 0.075), transparent 34%),
    linear-gradient(180deg, rgba(8, 36, 46, 0.66), rgba(2, 14, 19, 0.80));
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.17);
}

[data-scope="moeen-services-showcase"] .service-overview-card:hover::before {
  opacity: .85;
}

/* Image */
[data-scope="moeen-services-showcase"] .service-mini-image {
  position: relative;
  height: 176px;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid rgba(35, 198, 189, 0.12);
  border-radius: 21px;
  background: rgba(2, 14, 19, 0.36);
}

[data-scope="moeen-services-showcase"] .service-mini-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 11, 15, 0.04), rgba(2, 11, 15, 0.58)),
    radial-gradient(circle at 78% 8%, rgba(35, 198, 189, 0.12), transparent 36%);
  pointer-events: none;
}

[data-scope="moeen-services-showcase"] .service-mini-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.92) contrast(1.03) brightness(.86);
  transform: scale(1.01);
  transition:
    transform .38s var(--mss-ease),
    filter .38s var(--mss-ease);
}

[data-scope="moeen-services-showcase"] .service-overview-card:hover .service-mini-image img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.05) brightness(.91);
}

/* Hide old big icons */
[data-scope="moeen-services-showcase"] .svc-top .icon,
[data-scope="moeen-services-showcase"] .icon {
  display: none !important;
}

/* Badge */
[data-scope="moeen-services-showcase"] .svc-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: -46px 12px 18px;
  position: relative;
  z-index: 2;
}

[data-scope="moeen-services-showcase"] .svc-top > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid rgba(217, 175, 85, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(217, 175, 85, 0.15), rgba(2, 14, 19, 0.76));
  color: var(--mss-gold-2);
  font-size: 11.5px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

/* Content */
[data-scope="moeen-services-showcase"] .service-overview-card h3 {
  margin: 0 12px 9px;
  color: var(--mss-white);
  font-size: 22px;
  line-height: 1.34;
  font-weight: 950;
  letter-spacing: -0.02em;
}

[data-scope="moeen-services-showcase"] .service-overview-card p {
  min-height: 58px;
  margin: 0 12px 16px;
  color: rgba(230, 242, 245, 0.74);
  font-size: 13.5px;
  line-height: 1.9;
}

/* Outputs label before bullets */
[data-scope="moeen-services-showcase"] .service-overview-card ul {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 0 12px 18px;
  padding: 48px 0 0;
  list-style: none;
}

[data-scope="moeen-services-showcase"] .service-overview-card ul::before {
  content: "مخرجات الخدمة";
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(35, 198, 189, 0.18);
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.055);
  color: var(--mss-teal);
  font-size: 11.5px;
  line-height: 1;
  font-weight: 900;
}

/* Better bullets */
[data-scope="moeen-services-showcase"] .service-overview-card li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 7px 9px;
  border: 1px solid rgba(35, 198, 189, 0.10);
  border-radius: 13px;
  background: rgba(2, 14, 19, 0.24);
  color: rgba(255, 255, 255, 0.77);
  font-size: 12.8px;
  line-height: 1.55;
  transition:
    color .2s var(--mss-ease),
    transform .2s var(--mss-ease),
    background .2s var(--mss-ease),
    border-color .2s var(--mss-ease);
}

[data-scope="moeen-services-showcase"] .service-overview-card li::before {
  content: "✓";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(35, 198, 189, 0.34);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(35, 198, 189, .16), rgba(35, 198, 189, .045));
  color: var(--mss-teal-2);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
}

[data-scope="moeen-services-showcase"] .service-overview-card:hover li {
  color: rgba(255, 255, 255, 0.84);
  border-color: rgba(35, 198, 189, 0.15);
  background: rgba(35, 198, 189, 0.04);
}

[data-scope="moeen-services-showcase"] .service-overview-card li:hover {
  transform: translateX(-3px);
  color: var(--mss-white);
  border-color: rgba(217, 175, 85, 0.24);
  background: rgba(217, 175, 85, 0.055);
}

[data-scope="moeen-services-showcase"] .service-overview-card li:hover::before {
  border-color: rgba(217, 175, 85, 0.42);
  color: var(--mss-gold-2);
  background: rgba(217, 175, 85, 0.12);
}

/* Button */
[data-scope="moeen-services-showcase"] .service-overview-card .btn,
[data-scope="moeen-services-showcase"] .service-overview-card .btn-outline,
[data-scope="moeen-services-showcase"] .service-overview-card .btn-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: calc(100% - 24px);
  min-height: 44px;
  margin: auto 12px 0;
  padding: 0 18px;
  border: 1px solid rgba(35, 198, 189, 0.22);
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(35, 198, 189, 0.07), rgba(35, 198, 189, 0.035));
  color: var(--mss-teal);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 950;
  transition:
    transform .22s var(--mss-ease),
    color .22s var(--mss-ease),
    border-color .22s var(--mss-ease),
    background .22s var(--mss-ease),
    box-shadow .22s var(--mss-ease);
}

[data-scope="moeen-services-showcase"] .service-overview-card .btn::after {
  content: "←";
  font-size: 14px;
  line-height: 1;
  transition: transform .22s var(--mss-ease);
}

[data-scope="moeen-services-showcase"] .service-overview-card .btn:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 175, 85, 0.32);
  background:
    linear-gradient(135deg, rgba(35, 198, 189, 0.13), rgba(217, 175, 85, 0.10));
  color: var(--mss-gold-2);
  box-shadow: 0 10px 22px rgba(0,0,0,.13);
}

[data-scope="moeen-services-showcase"] .service-overview-card .btn:hover::after {
  transform: translateX(-3px);
}

/* Filtering animation */
[data-scope="moeen-services-showcase"] .service-overview-card.is-entering {
  animation: mssCardIn .30s var(--mss-ease) both;
}

[data-scope="moeen-services-showcase"] .service-overview-card.is-leaving {
  opacity: 0;
  transform: translateY(8px) scale(.99);
  pointer-events: none;
}

@keyframes mssCardIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  [data-scope="moeen-services-showcase"] .service-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-scope="moeen-services-showcase"] .service-category-tabs {
    border-radius: 22px;
  }
}

@media (max-width: 700px) {
  [data-scope="moeen-services-showcase"] {
    padding: 46px 14px;
  }

  [data-scope="moeen-services-showcase"] .section-title {
    font-size: 32px;
  }

  [data-scope="moeen-services-showcase"] .section-lead {
    font-size: 14px;
  }

  [data-scope="moeen-services-showcase"] .service-category-tabs {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 7px;
    border-radius: 17px;
    scroll-snap-type: x mandatory;
  }

  [data-scope="moeen-services-showcase"] .service-category-tabs button {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  [data-scope="moeen-services-showcase"] .service-overview-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  [data-scope="moeen-services-showcase"] .service-mini-image {
    height: 165px;
  }

  [data-scope="moeen-services-showcase"] .service-overview-card {
    border-radius: 22px;
  }

  [data-scope="moeen-services-showcase"] .service-overview-card h3 {
    font-size: 21px;
  }

  [data-scope="moeen-services-showcase"] .service-overview-card p {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-services-showcase"] *,
  [data-scope="moeen-services-showcase"] *::before,
  [data-scope="moeen-services-showcase"] *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}



/* =========================================================
   Moeen Process Roadmap
   Scoped: [data-scope="moeen-process-roadmap"]
========================================================= */

[data-scope="moeen-process-roadmap"] {
  --mpr-bg: #020b0f;
  --mpr-teal: #23c6bd;
  --mpr-teal-2: #4ee2d6;
  --mpr-gold: #d9af55;
  --mpr-gold-2: #f2cf7b;
  --mpr-white: #ffffff;
  --mpr-text: rgba(255, 255, 255, 0.88);
  --mpr-muted: rgba(219, 234, 239, 0.68);
  --mpr-line: rgba(35, 198, 189, 0.16);
  --mpr-gold-line: rgba(217, 175, 85, 0.24);
  --mpr-card: rgba(5, 24, 31, 0.66);
  --mpr-card-2: rgba(2, 14, 19, 0.76);
  --mpr-radius-xl: 30px;
  --mpr-radius-lg: 22px;
  --mpr-radius-md: 16px;
  --mpr-ease: cubic-bezier(.22, 1, .36, 1);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: clamp(58px, 7vw, 96px) 18px;
  color: var(--mpr-text);
 
}

[data-scope="moeen-process-roadmap"]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.20;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 78%);
}

[data-scope="moeen-process-roadmap"]::after {
  content: "";
  position: absolute;
  inset: 18% auto auto 50%;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.045);
  filter: blur(72px);
  transform: translateX(-50%);
}

[data-scope="moeen-process-roadmap"] * {
  box-sizing: border-box;
}

[data-scope="moeen-process-roadmap"] .mpr-container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

/* Header */
[data-scope="moeen-process-roadmap"] .mpr-head {
  max-width: 860px;
  margin: 0 auto 46px;
  text-align: center;
}

[data-scope="moeen-process-roadmap"] .mpr-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  margin-bottom: 14px;
  padding: 7px 15px;
  border: 1px solid rgba(35, 198, 189, 0.28);
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.07);
  color: var(--mpr-teal);
  font-size: 13px;
  font-weight: 850;
}

[data-scope="moeen-process-roadmap"] .mpr-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--mpr-gold);
  box-shadow: 0 0 14px rgba(217, 175, 85, 0.55);
}

[data-scope="moeen-process-roadmap"] .mpr-head h2 {
  margin: 0;
  color: var(--mpr-white);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.24;
  font-weight: 950;
  letter-spacing: -0.04em;
}

[data-scope="moeen-process-roadmap"] .mpr-head h2 em {
  color: var(--mpr-gold-2);
  font-style: normal;
  text-shadow: 0 0 24px rgba(217, 175, 85, 0.13);
}

[data-scope="moeen-process-roadmap"] .mpr-head p {
  max-width: 740px;
  margin: 14px auto 0;
  color: var(--mpr-muted);
  font-size: 15px;
  line-height: 1.95;
}

/* Roadmap */
[data-scope="moeen-process-roadmap"] .mpr-roadmap {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 8px 0;
}

[data-scope="moeen-process-roadmap"] .mpr-line {
  position: absolute;
  top: 18px;
  bottom: 18px;
  right: 50%;
  width: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.13);
  transform: translateX(50%);
}

[data-scope="moeen-process-roadmap"] .mpr-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(35, 198, 189, 0.22),
      rgba(217, 175, 85, 0.16),
      transparent
    );
  opacity: 0.65;
}

[data-scope="moeen-process-roadmap"] .mpr-line span {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 0%;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--mpr-teal), var(--mpr-gold));
  box-shadow: 0 0 22px rgba(35, 198, 189, 0.34);
  transition: height 0.24s linear;
}

/* Step */
[data-scope="moeen-process-roadmap"] .mpr-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: center;
  min-height: 185px;
}

[data-scope="moeen-process-roadmap"] .mpr-step:nth-child(even) .mpr-step__card {
  grid-column: 1;
}

[data-scope="moeen-process-roadmap"] .mpr-step:nth-child(odd) .mpr-step__card {
  grid-column: 3;
}

[data-scope="moeen-process-roadmap"] .mpr-step__node {
  position: relative;
  z-index: 4;
  grid-column: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(35, 198, 189, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 25%, rgba(35, 198, 189, 0.24), transparent 52%),
    rgba(3, 18, 24, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 0 0 8px rgba(35, 198, 189, 0.035),
    0 14px 30px rgba(0,0,0,.20);
  transition:
    border-color .28s var(--mpr-ease),
    background .28s var(--mpr-ease),
    box-shadow .28s var(--mpr-ease),
    transform .28s var(--mpr-ease);
}

[data-scope="moeen-process-roadmap"] .mpr-step__node span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.09);
  color: var(--mpr-teal-2);
  font-size: 12px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  transition:
    color .28s var(--mpr-ease),
    background .28s var(--mpr-ease);
}

[data-scope="moeen-process-roadmap"] .mpr-step__card {
  position: relative;
  overflow: hidden;
  padding: 24px 24px 22px;
  border: 1px solid rgba(35, 198, 189, 0.14);
  border-radius: var(--mpr-radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 198, 189, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(7, 31, 40, 0.58), rgba(2, 14, 19, 0.70));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  transform: translateY(0);
  transition:
    transform .28s var(--mpr-ease),
    border-color .28s var(--mpr-ease),
    background .28s var(--mpr-ease),
    box-shadow .28s var(--mpr-ease),
    opacity .28s var(--mpr-ease);
}

[data-scope="moeen-process-roadmap"] .mpr-step__card::before {
  content: "";
  position: absolute;
  inset: 0 24px auto 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--mpr-teal), var(--mpr-gold), transparent);
  opacity: 0;
  transition: opacity .28s var(--mpr-ease);
}

[data-scope="moeen-process-roadmap"] .mpr-step__card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, rgba(35, 198, 189, 0.44), transparent);
  opacity: .38;
}

[data-scope="moeen-process-roadmap"] .mpr-step:nth-child(even) .mpr-step__card::after {
  left: -36px;
  transform: translateY(-50%);
}

[data-scope="moeen-process-roadmap"] .mpr-step:nth-child(odd) .mpr-step__card::after {
  right: -36px;
  transform: translateY(-50%) rotate(180deg);
}

[data-scope="moeen-process-roadmap"] .mpr-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

[data-scope="moeen-process-roadmap"] .mpr-step__badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid rgba(35, 198, 189, 0.18);
  border-radius: 999px;
  background: rgba(35, 198, 189, 0.055);
  color: var(--mpr-teal);
  font-size: 11.5px;
  line-height: 1;
  font-weight: 900;
}

[data-scope="moeen-process-roadmap"] .mpr-step__top strong {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(217, 175, 85, 0.26);
  border-radius: 13px;
  background: rgba(217, 175, 85, 0.08);
  color: var(--mpr-gold-2);
  font-size: 13px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

[data-scope="moeen-process-roadmap"] .mpr-step h3 {
  margin: 0 0 10px;
  color: var(--mpr-white);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.34;
  font-weight: 950;
  letter-spacing: -0.02em;
}

[data-scope="moeen-process-roadmap"] .mpr-step p {
  margin: 0;
  color: rgba(230, 242, 245, 0.72);
  font-size: 14px;
  line-height: 1.95;
}

[data-scope="moeen-process-roadmap"] .mpr-step__output {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(35, 198, 189, 0.12);
  border-radius: 15px;
  background: rgba(2, 14, 19, 0.30);
}

[data-scope="moeen-process-roadmap"] .mpr-step__output span {
  color: var(--mpr-muted);
  font-size: 12px;
  font-weight: 800;
}

[data-scope="moeen-process-roadmap"] .mpr-step__output b {
  color: var(--mpr-teal-2);
  font-size: 13px;
  font-weight: 900;
}

/* Active / Done */
[data-scope="moeen-process-roadmap"] .mpr-step.is-active .mpr-step__node,
[data-scope="moeen-process-roadmap"] .mpr-step.is-done .mpr-step__node {
  border-color: rgba(217, 175, 85, 0.42);
  background:
    radial-gradient(circle at 35% 25%, rgba(217, 175, 85, 0.24), transparent 52%),
    rgba(3, 18, 24, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    0 0 0 8px rgba(217, 175, 85, 0.045),
    0 0 28px rgba(217, 175, 85, 0.14),
    0 14px 30px rgba(0,0,0,.20);
}

[data-scope="moeen-process-roadmap"] .mpr-step.is-active .mpr-step__node {
  transform: scale(1.06);
}

[data-scope="moeen-process-roadmap"] .mpr-step.is-active .mpr-step__node span,
[data-scope="moeen-process-roadmap"] .mpr-step.is-done .mpr-step__node span {
  background: rgba(217, 175, 85, 0.12);
  color: var(--mpr-gold-2);
}

[data-scope="moeen-process-roadmap"] .mpr-step.is-done .mpr-step__node span {
  font-size: 0;
}

[data-scope="moeen-process-roadmap"] .mpr-step.is-done .mpr-step__node span::before {
  content: "✓";
  font-size: 14px;
  font-weight: 950;
}

[data-scope="moeen-process-roadmap"] .mpr-step.is-active .mpr-step__card,
[data-scope="moeen-process-roadmap"] .mpr-step:hover .mpr-step__card {
  transform: translateY(-4px);
  border-color: rgba(35, 198, 189, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 198, 189, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(8, 36, 46, 0.66), rgba(2, 14, 19, 0.80));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

[data-scope="moeen-process-roadmap"] .mpr-step.is-active .mpr-step__card::before,
[data-scope="moeen-process-roadmap"] .mpr-step:hover .mpr-step__card::before {
  opacity: .86;
}

/* Responsive */
@media (max-width: 900px) {
  [data-scope="moeen-process-roadmap"] .mpr-head {
    margin-bottom: 34px;
  }

  [data-scope="moeen-process-roadmap"] .mpr-roadmap {
    gap: 18px;
    padding-inline-start: 0;
  }

  [data-scope="moeen-process-roadmap"] .mpr-line {
    right: 29px;
    transform: none;
  }

  [data-scope="moeen-process-roadmap"] .mpr-step {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    min-height: auto;
  }

  [data-scope="moeen-process-roadmap"] .mpr-step:nth-child(even) .mpr-step__card,
  [data-scope="moeen-process-roadmap"] .mpr-step:nth-child(odd) .mpr-step__card {
    grid-column: 2;
  }

  [data-scope="moeen-process-roadmap"] .mpr-step__node {
    grid-column: 1;
    width: 50px;
    height: 50px;
  }

  [data-scope="moeen-process-roadmap"] .mpr-step__node span {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  [data-scope="moeen-process-roadmap"] .mpr-step__card {
    padding: 20px 18px;
    border-radius: 22px;
  }

  [data-scope="moeen-process-roadmap"] .mpr-step__card::after {
    display: none;
  }
}

@media (max-width: 640px) {
  [data-scope="moeen-process-roadmap"] {
    padding: 46px 14px;
  }

  [data-scope="moeen-process-roadmap"] .mpr-head h2 {
    font-size: 34px;
  }

  [data-scope="moeen-process-roadmap"] .mpr-head p {
    font-size: 14px;
  }

  [data-scope="moeen-process-roadmap"] .mpr-step__top {
    align-items: flex-start;
  }

  [data-scope="moeen-process-roadmap"] .mpr-step h3 {
    font-size: 21px;
  }

  [data-scope="moeen-process-roadmap"] .mpr-step p {
    font-size: 13.5px;
  }

  [data-scope="moeen-process-roadmap"] .mpr-step__output {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-process-roadmap"] *,
  [data-scope="moeen-process-roadmap"] *::before,
  [data-scope="moeen-process-roadmap"] *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}



[data-scope="moeen-success-partners"]{position:relative;isolation:isolate;overflow:hidden;background:linear-gradient(180deg,#02070b 0%,#061018 100%);color:#f5ffff;padding-block:clamp(56px,7vw,86px);direction:rtl;}
[data-scope="moeen-success-partners"]::before{content:"";position:absolute;inset:0;z-index:-1;background:radial-gradient(circle at 50% 0%,rgba(53,240,227,.08),transparent 38%);pointer-events:none;}
[data-scope="moeen-success-partners"] .section-head{max-width:760px;margin:0 auto 26px;text-align:center;}
[data-scope="moeen-success-partners"] .kicker{display:inline-flex;padding:7px 14px;border:1px solid rgba(53,240,227,.18);border-radius:999px;background:rgba(53,240,227,.06);color:#6ffcf2;font-weight:900;}
[data-scope="moeen-success-partners"] .section-title{margin:14px 0 10px;color:#f8ffff;letter-spacing:0;}
[data-scope="moeen-success-partners"] .section-title .gold{color:#e1bd68;}
[data-scope="moeen-success-partners"] .section-lead{margin:0 auto;color:rgba(235,248,247,.72);line-height:1.9;}
[data-scope="moeen-success-partners"] .partners-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:12px;}
[data-scope="moeen-success-partners"] .partner-logo{min-height:92px;display:grid;place-items:center;text-align:center;border:1px solid rgba(53,240,227,.14);border-radius:18px;background:linear-gradient(145deg,rgba(8,28,36,.56),rgba(2,10,15,.82));box-shadow:inset 0 1px 0 rgba(255,255,255,.04);filter:grayscale(1);opacity:.72;transition:opacity .24s ease,filter .24s ease,border-color .24s ease,transform .24s ease;}
[data-scope="moeen-success-partners"] .partner-logo:hover{opacity:1;filter:grayscale(0);border-color:rgba(53,240,227,.28);transform:translateY(-3px);}
[data-scope="moeen-success-partners"] .partner-logo span{color:rgba(235,248,247,.62);font-size:13px;font-weight:900;}
[data-scope="moeen-success-partners"] .partners-note{max-width:720px;margin:20px auto 0;text-align:center;color:rgba(235,248,247,.64);font-size:14px;line-height:1.9;}
@media (max-width:1100px){[data-scope="moeen-services-preview"] .mls-grid{grid-template-columns:repeat(2,minmax(0,1fr));}[data-scope="moeen-success-partners"] .partners-grid{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (max-width:680px){[data-scope="moeen-services-preview"],[data-scope="moeen-success-partners"]{padding-block:46px}[data-scope="moeen-services-preview"] .mls-grid{grid-template-columns:1fr}[data-scope="moeen-services-preview"] .mls-footer{display:block;text-align:center}[data-scope="moeen-services-preview"] .mls-all{margin-top:12px}[data-scope="moeen-success-partners"] .partners-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.stats-section[data-scope="moeen-stats"]{padding-block:48px}}
@media (max-width:420px){[data-scope="moeen-success-partners"] .partners-grid{grid-template-columns:1fr}[data-scope="moeen-success-partners"] .partner-logo{max-width:280px;width:100%;margin-inline:auto}}
@media (prefers-reduced-motion:reduce){[data-scope="moeen-services-preview"] .mls-card,[data-scope="moeen-services-preview"] .mls-media img,[data-scope="moeen-success-partners"] .partner-logo{transition:none}[data-scope="moeen-services-preview"] .mls-card:hover,[data-scope="moeen-success-partners"] .partner-logo:hover{transform:none}}



/* === Moeen homepage background system 20260525 === */
body[data-page="home"]{
  background:#02070b;
}
body[data-page="home"] main{
  --moeen-home-text:#f6fafa;
  --moeen-home-muted:rgba(246,250,250,.68);
  --moeen-home-soft:rgba(246,250,250,.52);
  --moeen-home-cyan:#14d9cc;
  --moeen-home-gold:#d7b35a;
  --moeen-home-border:rgba(20,217,204,.16);
  --moeen-home-border-strong:rgba(20,217,204,.34);
  --moeen-home-surface:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.028));
  --moeen-home-surface-deep:linear-gradient(180deg,rgba(8,25,34,.82),rgba(3,12,18,.74));
  background:#02070b;
  color:var(--moeen-home-text);
}
body[data-page="home"] main [data-scope="moeen-home-hero"],
body[data-page="home"] main [data-scope="moeen-stats"],
body[data-page="home"] main [data-scope="moeen-home-testimonials"],
body[data-page="home"] main [data-scope="moeen-home-cta"]{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  color:var(--moeen-home-text);
  background:
    radial-gradient(circle at 50% 0%,rgba(20,217,204,.07),transparent 42%),
    linear-gradient(180deg,#02070b 0%,#050b10 100%);
}
body[data-page="home"] main [data-scope="moeen-home-why"],
body[data-page="home"] main [data-scope="moeen-services-preview"],
body[data-page="home"] main [data-scope="moeen-home-work"],
body[data-page="home"] main [data-scope="moeen-success-partners"]{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  color:var(--moeen-home-text);
  background:linear-gradient(180deg,#07131d 0%,#081923 100%);
}
body[data-page="home"] main [data-scope="moeen-home-hero"]::before,
body[data-page="home"] main [data-scope="moeen-stats"]::before,
body[data-page="home"] main [data-scope="moeen-home-testimonials"]::before,
body[data-page="home"] main [data-scope="moeen-home-cta"]::before,
body[data-page="home"] main [data-scope="moeen-home-why"]::before,
body[data-page="home"] main [data-scope="moeen-services-preview"]::before,
body[data-page="home"] main [data-scope="moeen-home-work"]::before,
body[data-page="home"] main [data-scope="moeen-success-partners"]::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    linear-gradient(90deg,transparent,rgba(20,217,204,.08),transparent) top/100% 1px no-repeat;
  opacity:.72;
}
body[data-page="home"] main [data-scope="moeen-home-why"]::after,
body[data-page="home"] main [data-scope="moeen-services-preview"]::after,
body[data-page="home"] main [data-scope="moeen-home-work"]::after,
body[data-page="home"] main [data-scope="moeen-success-partners"]::after{
  content:"";
  position:absolute;
  inset-inline:8%;
  inset-block-start:0;
  height:160px;
  pointer-events:none;
  background:radial-gradient(circle at 50% 0%,rgba(20,217,204,.045),transparent 68%);
  opacity:.85;
  z-index:-1;
}
body[data-page="home"] main [data-scope="moeen-home-hero"] .container,
body[data-page="home"] main [data-scope="moeen-home-why"] .container,
body[data-page="home"] main [data-scope="moeen-services-preview"] .container,
body[data-page="home"] main [data-scope="moeen-stats"] .container,
body[data-page="home"] main [data-scope="moeen-home-work"] .container,
body[data-page="home"] main [data-scope="moeen-home-testimonials"] .container,
body[data-page="home"] main [data-scope="moeen-success-partners"] .container,
body[data-page="home"] main [data-scope="moeen-home-cta"] .container{
  position:relative;
  z-index:1;
}
body[data-page="home"] main [data-scope="moeen-home-hero"] .hero__title,
body[data-page="home"] main [data-scope="moeen-home-why"] .section-title,
body[data-page="home"] main [data-scope="moeen-services-preview"] h2,
body[data-page="home"] main [data-scope="moeen-stats"] .section-title,
body[data-page="home"] main [data-scope="moeen-home-work"] .section-title,
body[data-page="home"] main [data-scope="moeen-home-testimonials"] .section-title,
body[data-page="home"] main [data-scope="moeen-success-partners"] .section-title,
body[data-page="home"] main [data-scope="moeen-home-cta"] h2{
  color:var(--moeen-home-text);
}
body[data-page="home"] main [data-scope="moeen-home-hero"] .hero__text,
body[data-page="home"] main [data-scope="moeen-home-why"] .section-lead,
body[data-page="home"] main [data-scope="moeen-services-preview"] p,
body[data-page="home"] main [data-scope="moeen-stats"] .section-lead,
body[data-page="home"] main [data-scope="moeen-home-work"] .section-lead,
body[data-page="home"] main [data-scope="moeen-home-testimonials"] .section-lead,
body[data-page="home"] main [data-scope="moeen-success-partners"] .section-lead,
body[data-page="home"] main [data-scope="moeen-home-cta"] p{
  color:var(--moeen-home-muted);
}
body[data-page="home"] main [data-scope="moeen-home-hero"] .kicker,
body[data-page="home"] main [data-scope="moeen-home-why"] .kicker,
body[data-page="home"] main [data-scope="moeen-stats"] .kicker,
body[data-page="home"] main [data-scope="moeen-home-work"] .kicker,
body[data-page="home"] main [data-scope="moeen-home-testimonials"] .kicker,
body[data-page="home"] main [data-scope="moeen-success-partners"] .kicker,
body[data-page="home"] main [data-scope="moeen-home-cta"] .kicker,
body[data-page="home"] main [data-scope="moeen-services-preview"] .mls-badge{
  background:rgba(20,217,204,.06);
  border-color:rgba(20,217,204,.18);
  color:#77f3eb;
}
body[data-page="home"] main [data-scope="moeen-home-hero"] .hero-image-shell,
body[data-page="home"] main [data-scope="moeen-home-hero"] .float-card,
body[data-page="home"] main [data-scope="moeen-home-why"] .why-list > div,
body[data-page="home"] main [data-scope="moeen-home-why"] .orbit-center,
body[data-page="home"] main [data-scope="moeen-home-why"] .node,
body[data-page="home"] main [data-scope="moeen-services-preview"] .mls-card,
body[data-page="home"] main [data-scope="moeen-stats"] .stat,
body[data-page="home"] main [data-scope="moeen-home-work"] .portfolio-card,
body[data-page="home"] main [data-scope="moeen-home-testimonials"] .testimonial-card,
body[data-page="home"] main [data-scope="moeen-success-partners"] .partner-logo{
  background:var(--moeen-home-surface);
  border:1px solid var(--moeen-home-border);
  box-shadow:0 18px 42px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.035);
}
body[data-page="home"] main [data-scope="moeen-services-preview"] .mls-card,
body[data-page="home"] main [data-scope="moeen-home-work"] .portfolio-card,
body[data-page="home"] main [data-scope="moeen-home-testimonials"] .testimonial-card,
body[data-page="home"] main [data-scope="moeen-success-partners"] .partner-logo{
  background:var(--moeen-home-surface-deep);
}
body[data-page="home"] main [data-scope="moeen-services-preview"] .mls-card h3,
body[data-page="home"] main [data-scope="moeen-home-work"] .portfolio-card h3,
body[data-page="home"] main [data-scope="moeen-home-testimonials"] .testimonial-card strong,
body[data-page="home"] main [data-scope="moeen-success-partners"] .partner-logo span{
  color:var(--moeen-home-text);
}
body[data-page="home"] main [data-scope="moeen-services-preview"] .mls-card p,
body[data-page="home"] main [data-scope="moeen-home-work"] .portfolio-card p,
body[data-page="home"] main [data-scope="moeen-home-testimonials"] .testimonial-card p,
body[data-page="home"] main [data-scope="moeen-home-testimonials"] .testimonial-card span,
body[data-page="home"] main [data-scope="moeen-success-partners"] .partners-note{
  color:var(--moeen-home-muted);
}
body[data-page="home"] main [data-scope="moeen-stats"] .stat.is-emphasis,
body[data-page="home"] main [data-scope="moeen-home-cta"] .container{
  border-color:rgba(215,179,90,.22);
}
body[data-page="home"] main [data-scope="moeen-stats"] .stat-icon,
body[data-page="home"] main [data-scope="moeen-home-testimonials"] .testimonial-avatar{
  background:rgba(20,217,204,.08);
  border:1px solid rgba(20,217,204,.2);
  color:var(--moeen-home-cyan);
}
body[data-page="home"] main [data-scope="moeen-success-partners"] .partner-logo{
  min-height:86px;
  opacity:.9;
}
body[data-page="home"] main [data-scope="moeen-home-why"] .why-list > div:hover,
body[data-page="home"] main [data-scope="moeen-services-preview"] .mls-card:hover,
body[data-page="home"] main [data-scope="moeen-stats"] .stat:hover,
body[data-page="home"] main [data-scope="moeen-home-work"] .portfolio-card:hover,
body[data-page="home"] main [data-scope="moeen-home-testimonials"] .testimonial-card:hover,
body[data-page="home"] main [data-scope="moeen-success-partners"] .partner-logo:hover{
  border-color:var(--moeen-home-border-strong);
  box-shadow:0 20px 46px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.05);
}
body[data-page="home"] main [data-scope="moeen-home-work"] .portfolio-thumb::after,
body[data-page="home"] main [data-scope="moeen-services-preview"] .mls-media::after{
  background:linear-gradient(180deg,rgba(2,7,11,.02),rgba(2,7,11,.42));
}
@media (max-width: 767px){
  body[data-page="home"] main [data-scope="moeen-home-why"],
  body[data-page="home"] main [data-scope="moeen-services-preview"],
  body[data-page="home"] main [data-scope="moeen-stats"],
  body[data-page="home"] main [data-scope="moeen-home-work"],
  body[data-page="home"] main [data-scope="moeen-home-testimonials"],
  body[data-page="home"] main [data-scope="moeen-success-partners"],
  body[data-page="home"] main [data-scope="moeen-home-cta"]{
    background-size:auto;
  }
  body[data-page="home"] main [data-scope="moeen-success-partners"] .partner-logo{
    min-height:74px;
  }
}
@media (prefers-reduced-motion: reduce){
  body[data-page="home"] main [data-scope="moeen-home-why"] .why-list > div:hover,
  body[data-page="home"] main [data-scope="moeen-services-preview"] .mls-card:hover,
  body[data-page="home"] main [data-scope="moeen-stats"] .stat:hover,
  body[data-page="home"] main [data-scope="moeen-home-work"] .portfolio-card:hover,
  body[data-page="home"] main [data-scope="moeen-home-testimonials"] .testimonial-card:hover,
  body[data-page="home"] main [data-scope="moeen-success-partners"] .partner-logo:hover{
    transform:none;
  }
}


/* === Moeen rescue cursor and progress 20260527 === */
.custom-cursor,#customCursor,[id="customCursor"]{display:none!important;visibility:hidden!important;opacity:0!important;pointer-events:none!important;width:0!important;height:0!important;overflow:hidden!important}html,body{cursor:auto!important}
.mesk-premium-header .mesk-center-control .mesk-scroll-progress{position:relative;flex:0 0 auto;min-width:42px;height:30px;padding-inline:10px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;color:#35f0e3;font-size:12px;font-weight:800;line-height:1;background:rgba(3,18,25,.74);border:1px solid rgba(53,240,227,.28);box-shadow:inset 0 0 0 1px rgba(255,255,255,.025);direction:ltr;white-space:nowrap;transition:border-color .24s ease,color .24s ease,background .24s ease}.mesk-premium-header .mesk-center-control:hover .mesk-scroll-progress,.mesk-premium-header .mesk-center-control .mesk-scroll-progress:focus-visible{color:#7cfbf3;border-color:rgba(53,240,227,.48);background:rgba(8,34,42,.82)}@media(max-width:390px){.mesk-premium-header .mesk-center-control .mesk-scroll-progress{min-width:36px;height:28px;padding-inline:8px;font-size:11px}}@media(max-width:359px){.mesk-premium-header .mesk-center-control .mesk-scroll-progress{display:none}}



/* =========================================================
   Moeen Back To Top - Auto Button
   زر الرجوع للأعلى
   ========================================================= */



/* =========================================================
   Compact Page Hero - Unified RTL Style
   هيرو الصفحات الداخلي بشكل مختصر وموحد
========================================================= */

body .page-hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
  min-height: 270px !important;
  padding-top: 92px !important;
  padding-bottom: 42px !important;
  display: flex !important;
  align-items: center !important;
}

/* خلفية جمالية خافتة في يسار الهيرو */
body .page-hero::before {
  content: "";
  position: absolute;
  left: -150px;
  top: 50%;
  width: 420px;
  height: 420px;
  z-index: -1;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(217, 175, 85, 0.12), transparent 62%);
  pointer-events: none;
}

body .page-hero::after {
  content: "";
  position: absolute;
  left: 90px;
  top: 42%;
  width: 165px;
  height: 165px;
  z-index: -1;
  border: 1px solid rgba(217, 175, 85, 0.18);
  border-radius: 42px;
  transform: rotate(18deg);
  background: radial-gradient(circle at 70% 25%, rgba(35, 198, 189, 0.08), transparent 58%);
  pointer-events: none;
}

/* المحتوى */
body .page-hero .container {
  position: relative !important;
  z-index: 2 !important;
  width: min(100% - 32px, var(--max-w, 1180px)) !important;
  margin-inline: auto !important;
}

/* دفع المحتوى لليمين */
body .page-hero .page-hero__inner {
  position: relative !important;
  z-index: 2 !important;
  max-width: 880px !important;
  padding: 0 !important;
  margin-inline-start: 0 !important;
  margin-inline-end: auto !important;
  text-align: right !important;
}

/* Breadcrumb */
body .page-hero .breadcrumb {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  color: rgba(246, 250, 250, 0.70) !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
  text-align: right !important;
}

body .page-hero .breadcrumb a {
  position: relative;
  color: var(--teal, #23c6bd) !important;
  text-decoration: none !important;
  font-weight: 800 !important;
}

body .page-hero .breadcrumb a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal, #23c6bd), var(--gold, #d9af55));
  opacity: 0.45;
  transform: scaleX(0.45);
  transform-origin: right;
  transition: 0.25s ease;
}

body .page-hero .breadcrumb a:hover {
  color: var(--gold, #d9af55) !important;
}

body .page-hero .breadcrumb a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Kicker */
body .page-hero .kicker {
  margin: 0 0 14px !important;
}

/* العنوان الكبير */
body .page-hero h1 {
  max-width: 900px !important;
  margin: 0 !important;
  font-size: clamp(42px, 5vw, 68px) !important;
  line-height: 1.12 !important;
  font-weight: 950 !important;
  letter-spacing: -0.035em !important;
  text-align: right !important;
}

/* الوصف */
body .page-hero p {
  max-width: 760px !important;
  margin: 6px 0 0 !important;
  color: rgba(246, 250, 250, 0.74) !important;
  font-size: 16px !important;
  line-height: 1.9 !important;
  text-align: right !important;
}

/* صفحات المشاريع ذات الصورة */
body .detail-hero.page-hero .detail-hero__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 500px) !important;
  gap: clamp(28px, 5vw, 64px) !important;
  align-items: center !important;
}

body .detail-hero.page-hero .detail-media img {
  width: 100% !important;
  height: clamp(280px, 32vw, 410px) !important;
  object-fit: cover !important;
  border-radius: 26px !important;
}

/* Responsive */
@media (max-width: 900px) {
  body .page-hero {
    min-height: 245px !important;
    padding-top: 82px !important;
    padding-bottom: 36px !important;
  }

  body .detail-hero.page-hero .detail-hero__grid {
    grid-template-columns: 1fr !important;
  }

  body .page-hero h1 {
    font-size: clamp(36px, 8vw, 54px) !important;
  }
}

@media (max-width: 700px) {
  body .page-hero {
    min-height: 230px !important;
    padding-top: 76px !important;
    padding-bottom: 34px !important;
  }

  body .page-hero::before {
    left: -230px;
    width: 400px;
    height: 400px;
  }

  body .page-hero::after {
    left: 24px;
    width: 120px;
    height: 120px;
  }

  body .page-hero h1 {
    font-size: 36px !important;
  }

  body .page-hero p {
    font-size: 14.5px !important;
  }
}


/* =========================================================
   Moeen Service Page Template
   Scoped and isolated: [data-scope="moeen-service-page"]
========================================================= */

[data-scope="moeen-service-page"] {
  --msp-bg: #020b0f;
  --msp-bg-2: #041419;
  --msp-teal: #23c6bd;
  --msp-teal-2: #4ee2d6;
  --msp-gold: #d9af55;
  --msp-gold-2: #f2cf7b;
  --msp-white: #ffffff;
  --msp-text: rgba(255,255,255,.88);
  --msp-muted: rgba(219,234,239,.68);
  --msp-muted-2: rgba(219,234,239,.52);
  --msp-line: rgba(35,198,189,.15);
  --msp-line-strong: rgba(35,198,189,.28);
  --msp-gold-line: rgba(217,175,85,.24);
  --msp-card: rgba(5,24,31,.66);
  --msp-card-2: rgba(2,14,19,.76);
  --msp-radius-xl: 30px;
  --msp-radius-lg: 22px;
  --msp-radius-md: 16px;
  --msp-shadow: 0 14px 34px rgba(0,0,0,.16);
  --msp-ease: cubic-bezier(.22,1,.36,1);

  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  color: var(--msp-text);
  background: var(--msp-bg);
  direction: rtl;
  overflow: hidden;
}

[data-scope="moeen-service-page"],
[data-scope="moeen-service-page"] * {
  box-sizing: border-box;
}

[data-scope="moeen-service-page"] a {
  color: inherit;
}

[data-scope="moeen-service-page"] .msp-container {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-inline: 18px;
}

[data-scope="moeen-service-page"] section {
  position: relative;
  isolation: isolate;
  padding: clamp(58px, 7vw, 98px) 0;
  background:
   
    radial-gradient(circle at 84% 16%, rgba(217,175,85,.045), transparent 32%),
    linear-gradient(180deg, var(--msp-bg-2) 0%, var(--msp-bg) 100%);
}

[data-scope="moeen-service-page"] section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .16;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 78%);
}

/* Reveal animation */
[data-scope="moeen-service-page"] .msp-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .55s var(--msp-ease),
    transform .55s var(--msp-ease);
}

[data-scope="moeen-service-page"] .msp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Shared heading */
[data-scope="moeen-service-page"] .msp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  min-height: 36px;
  padding: 7px 15px;
  border: 1px solid rgba(35,198,189,.28);
  border-radius: 999px;
  background: rgba(35,198,189,.07);
  color: var(--msp-teal);
  font-size: 13px;
  font-weight: 850;
}

[data-scope="moeen-service-page"] .msp-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--msp-gold);
  box-shadow: 0 0 14px rgba(217,175,85,.55);
}

[data-scope="moeen-service-page"] .msp-section-head {
  max-width: 840px;
  margin: 0 auto 36px;
  text-align: center;
}

[data-scope="moeen-service-page"] .msp-section-head h2 {
  margin: 14px 0 0;
  color: var(--msp-white);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -.04em;
}

[data-scope="moeen-service-page"] .msp-section-head h2 em {
  color: var(--msp-teal);
  font-style: normal;
  text-shadow: 0 0 22px rgba(35,198,189,.14);
}

[data-scope="moeen-service-page"] .msp-section-head p {
  max-width: 720px;
  margin: 13px auto 0;
  color: var(--msp-muted);
  font-size: 15px;
  line-height: 1.95;
}

/* Buttons */
[data-scope="moeen-service-page"] .msp-btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  overflow: hidden;
  border-radius: 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  isolation: isolate;
  transition:
    transform .22s var(--msp-ease),
    border-color .22s var(--msp-ease),
    background .22s var(--msp-ease),
    color .22s var(--msp-ease),
    box-shadow .22s var(--msp-ease);
}

[data-scope="moeen-service-page"] .msp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: translateX(110%);
  transition: transform .55s var(--msp-ease);
}

[data-scope="moeen-service-page"] .msp-btn:hover::before {
  transform: translateX(-110%);
}

[data-scope="moeen-service-page"] .msp-btn--primary {
  border: 1px solid rgba(35,198,189,.34);
  background: linear-gradient(135deg, var(--msp-teal-2), var(--msp-teal));
  color: #061016;
}

[data-scope="moeen-service-page"] .msp-btn--ghost {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.035);
  color: var(--msp-white);
}

[data-scope="moeen-service-page"] .msp-btn--block {
  width: 100%;
}

[data-scope="moeen-service-page"] .msp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,.16);
}

/* Hero */
[data-scope="moeen-service-page"] .msp-hero {
  padding-top: clamp(48px, 7vw, 86px);
}

[data-scope="moeen-service-page"] .msp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

[data-scope="moeen-service-page"] .msp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(219,234,239,.70);
  font-size: 13px;
}

[data-scope="moeen-service-page"] .msp-breadcrumb a {
  color: var(--msp-teal);
  text-decoration: none;
  transition: color .22s var(--msp-ease);
}

[data-scope="moeen-service-page"] .msp-breadcrumb a:hover {
  color: var(--msp-gold-2);
}

[data-scope="moeen-service-page"] .msp-hero h1 {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--msp-white);
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -.055em;
}

[data-scope="moeen-service-page"] .msp-hero h1 em {
  display: block;
  color: var(--msp-teal);
  font-style: normal;
  text-shadow: 0 0 28px rgba(35,198,189,.14);
}

[data-scope="moeen-service-page"] .msp-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--msp-muted);
  font-size: 16px;
  line-height: 2;
}

[data-scope="moeen-service-page"] .msp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

[data-scope="moeen-service-page"] .msp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

[data-scope="moeen-service-page"] .msp-trust span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid rgba(35,198,189,.16);
  border-radius: 999px;
  background: rgba(35,198,189,.045);
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  transition:
    color .22s var(--msp-ease),
    border-color .22s var(--msp-ease),
    background .22s var(--msp-ease),
    transform .22s var(--msp-ease);
}

[data-scope="moeen-service-page"] .msp-trust span:hover {
  transform: translateY(-2px);
  color: var(--msp-gold-2);
  border-color: rgba(217,175,85,.26);
  background: rgba(217,175,85,.06);
}

[data-scope="moeen-service-page"] .msp-hero__media {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(35,198,189,.18);
  border-radius: 30px;
  background: rgba(2,14,19,.46);
  box-shadow: 0 20px 42px rgba(0,0,0,.20);
  transform-style: preserve-3d;
  transition:
    transform .35s var(--msp-ease),
    border-color .35s var(--msp-ease),
    box-shadow .35s var(--msp-ease);
}

[data-scope="moeen-service-page"] .msp-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,11,15,.02), rgba(2,11,15,.35)),
    radial-gradient(circle at 80% 10%, rgba(35,198,189,.14), transparent 36%);
  pointer-events: none;
}

[data-scope="moeen-service-page"] .msp-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
  filter: saturate(.92) contrast(1.03) brightness(.88);
  transition: transform .55s var(--msp-ease), filter .55s var(--msp-ease);
}

[data-scope="moeen-service-page"] .msp-hero__media:hover {
  border-color: rgba(217,175,85,.26);
  box-shadow: 0 24px 52px rgba(0,0,0,.24);
}

[data-scope="moeen-service-page"] .msp-hero__media:hover img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.04) brightness(.92);
}

/* Outcomes */
[data-scope="moeen-service-page"] .msp-outcomes__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: start;
}

[data-scope="moeen-service-page"] .msp-outcomes__main,
[data-scope="moeen-service-page"] .msp-side-card {
  border: 1px solid rgba(35,198,189,.15);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(35,198,189,.055), transparent 34%),
    linear-gradient(180deg, rgba(7,31,40,.56), rgba(2,14,19,.72));
  box-shadow: 0 12px 28px rgba(0,0,0,.13);
  transition:
    transform .26s var(--msp-ease),
    border-color .26s var(--msp-ease),
    background .26s var(--msp-ease),
    box-shadow .26s var(--msp-ease);
}

[data-scope="moeen-service-page"] .msp-outcomes__main:hover,
[data-scope="moeen-service-page"] .msp-side-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35,198,189,.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(35,198,189,.075), transparent 34%),
    linear-gradient(180deg, rgba(8,36,46,.64), rgba(2,14,19,.78));
  box-shadow: 0 16px 36px rgba(0,0,0,.17);
}

[data-scope="moeen-service-page"] .msp-outcomes__main {
  padding: 18px;
}

[data-scope="moeen-service-page"] .msp-feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

[data-scope="moeen-service-page"] .msp-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(35,198,189,.12);
  border-radius: 17px;
  background: rgba(2,14,19,.30);
  color: var(--msp-white);
  line-height: 1.8;
  transition:
    transform .22s var(--msp-ease),
    color .22s var(--msp-ease),
    border-color .22s var(--msp-ease),
    background .22s var(--msp-ease);
}

[data-scope="moeen-service-page"] .msp-feature-list li::before {
  content: "✓";
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  border-radius: 9px;
  border: 1px solid rgba(217,175,85,.34);
  background: rgba(217,175,85,.10);
  color: var(--msp-gold-2);
  font-size: 12px;
  font-weight: 950;
}

[data-scope="moeen-service-page"] .msp-feature-list li:hover {
  transform: translateX(-4px);
  color: var(--msp-gold-2);
  border-color: rgba(217,175,85,.24);
  background: rgba(217,175,85,.055);
}

[data-scope="moeen-service-page"] .msp-side-panel {
  display: grid;
  gap: 14px;
}

[data-scope="moeen-service-page"] .msp-side-card {
  padding: 20px;
}

[data-scope="moeen-service-page"] .msp-side-card > span {
  display: block;
  margin-bottom: 10px;
  color: var(--msp-teal);
  font-size: 13px;
  font-weight: 900;
}

[data-scope="moeen-service-page"] .msp-side-card strong {
  display: block;
  color: var(--msp-white);
  font-size: 20px;
  line-height: 1.5;
}

[data-scope="moeen-service-page"] .msp-side-card p {
  margin: 10px 0 16px;
  color: var(--msp-muted);
  font-size: 13.5px;
  line-height: 1.9;
}

[data-scope="moeen-service-page"] .msp-related {
  display: grid;
  gap: 9px;
}

[data-scope="moeen-service-page"] .msp-related a {
  padding: 11px 12px;
  border: 1px solid rgba(35,198,189,.10);
  border-radius: 14px;
  background: rgba(2,14,19,.24);
  color: rgba(255,255,255,.74);
  text-decoration: none;
  font-size: 13px;
  transition: .22s var(--msp-ease);
}

[data-scope="moeen-service-page"] .msp-related a:hover {
  transform: translateX(-3px);
  color: var(--msp-gold-2);
  border-color: rgba(217,175,85,.24);
  background: rgba(217,175,85,.055);
}

/* Flip Slider */
[data-scope="moeen-service-page"] .msp-slider {
  position: relative;
  padding-inline: 44px;
}

[data-scope="moeen-service-page"] .msp-slider__viewport {
  overflow: hidden;
  padding: 5px;
}

[data-scope="moeen-service-page"] .msp-slider__track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transition: transform .42s var(--msp-ease);
}

[data-scope="moeen-service-page"] .msp-flip-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 330px;
  perspective: 1200px;
  cursor: pointer;
}

[data-scope="moeen-service-page"] .msp-flip-card__inner {
  position: relative;
  min-height: 330px;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .68s var(--msp-ease);
}

[data-scope="moeen-service-page"] .msp-flip-card:hover .msp-flip-card__inner,
[data-scope="moeen-service-page"] .msp-flip-card:focus .msp-flip-card__inner,
[data-scope="moeen-service-page"] .msp-flip-card.is-flipped .msp-flip-card__inner {
  transform: rotateY(180deg);
}

[data-scope="moeen-service-page"] .msp-flip-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(35,198,189,.15);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(35,198,189,.055), transparent 34%),
    linear-gradient(180deg, rgba(7,31,40,.58), rgba(2,14,19,.74));
  box-shadow: 0 12px 28px rgba(0,0,0,.13);
  backface-visibility: hidden;
  transition:
    border-color .24s var(--msp-ease),
    background .24s var(--msp-ease),
    box-shadow .24s var(--msp-ease);
}

[data-scope="moeen-service-page"] .msp-flip-card:hover .msp-flip-card__face {
  border-color: rgba(35,198,189,.28);
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}

[data-scope="moeen-service-page"] .msp-flip-card__front::before,
[data-scope="moeen-service-page"] .msp-flip-card__back::before {
  content: "";
  position: absolute;
  inset: 0 22px auto 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--msp-teal), var(--msp-gold), transparent);
  opacity: .75;
}

[data-scope="moeen-service-page"] .msp-flip-card__back {
  transform: rotateY(180deg);
  border-color: rgba(217,175,85,.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(217,175,85,.075), transparent 34%),
    linear-gradient(180deg, rgba(8,36,46,.68), rgba(2,14,19,.82));
}

[data-scope="moeen-service-page"] .msp-card-num {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid rgba(217,175,85,.28);
  border-radius: 15px;
  background: rgba(217,175,85,.08);
  color: var(--msp-gold-2);
  font-size: 13px;
  font-weight: 950;
}

[data-scope="moeen-service-page"] .msp-card-tag {
  width: fit-content;
  margin-top: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(35,198,189,.18);
  border-radius: 999px;
  background: rgba(35,198,189,.055);
  color: var(--msp-teal);
  font-size: 12px;
  font-weight: 900;
}

[data-scope="moeen-service-page"] .msp-flip-card h3 {
  margin: 14px 0 8px;
  color: var(--msp-white);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 950;
}

[data-scope="moeen-service-page"] .msp-flip-card p {
  margin: 0;
  color: var(--msp-muted);
  font-size: 14px;
  line-height: 1.9;
}

[data-scope="moeen-service-page"] .msp-flip-card small {
  margin-top: auto;
  color: rgba(255,255,255,.50);
  font-size: 12px;
}

[data-scope="moeen-service-page"] .msp-flip-card ul {
  display: grid;
  gap: 9px;
  margin: 6px 0 18px;
  padding: 0;
  list-style: none;
}

[data-scope="moeen-service-page"] .msp-flip-card li {
  display: flex;
  gap: 8px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.75;
}

[data-scope="moeen-service-page"] .msp-flip-card li::before {
  content: "✓";
  color: var(--msp-gold-2);
  font-weight: 950;
}

/* Slider controls */
[data-scope="moeen-service-page"] .msp-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(35,198,189,.22);
  border-radius: 999px;
  background: rgba(4,22,29,.86);
  color: var(--msp-teal);
  font-size: 18px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: .22s var(--msp-ease);
}

[data-scope="moeen-service-page"] .msp-slider__nav:hover {
  border-color: rgba(217,175,85,.30);
  color: var(--msp-gold-2);
  background: rgba(217,175,85,.075);
  transform: translateY(-50%) scale(1.05);
}

[data-scope="moeen-service-page"] .msp-slider__nav--prev {
  right: 0;
}

[data-scope="moeen-service-page"] .msp-slider__nav--next {
  left: 0;
}

[data-scope="moeen-service-page"] .msp-slider__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 22px;
}

[data-scope="moeen-service-page"] .msp-slider__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  cursor: pointer;
  transition: .22s var(--msp-ease);
}

[data-scope="moeen-service-page"] .msp-slider__dots button.is-active {
  width: 30px;
  background: linear-gradient(90deg, var(--msp-teal), var(--msp-gold));
}

/* Fit */
[data-scope="moeen-service-page"] .msp-fit__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

[data-scope="moeen-service-page"] .msp-fit-card {
  min-height: 125px;
  padding: 20px;
  border: 1px solid rgba(35,198,189,.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(35,198,189,.045), transparent 34%),
    linear-gradient(180deg, rgba(7,31,40,.52), rgba(2,14,19,.68));
  transition:
    transform .24s var(--msp-ease),
    border-color .24s var(--msp-ease),
    background .24s var(--msp-ease),
    box-shadow .24s var(--msp-ease);
}

[data-scope="moeen-service-page"] .msp-fit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217,175,85,.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(217,175,85,.065), transparent 34%),
    linear-gradient(180deg, rgba(8,36,46,.62), rgba(2,14,19,.76));
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}

[data-scope="moeen-service-page"] .msp-fit-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(217,175,85,.28);
  border-radius: 13px;
  background: rgba(217,175,85,.08);
  color: var(--msp-gold-2);
  font-size: 12px;
  font-weight: 950;
}

[data-scope="moeen-service-page"] .msp-fit-card p {
  margin: 12px 0 0;
  color: var(--msp-white);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 800;
}

[data-scope="moeen-service-page"] .msp-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(35,198,189,.15);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(35,198,189,.08), transparent 34%),
    rgba(35,198,189,.045);
}

[data-scope="moeen-service-page"] .msp-final-cta p {
  margin: 0;
  color: var(--msp-muted);
  line-height: 1.9;
}

/* Dragging */
[data-scope="moeen-service-page"] .msp-slider.is-dragging {
  cursor: grabbing;
}

[data-scope="moeen-service-page"] .msp-slider.is-dragging * {
  user-select: none;
}

/* Responsive */
@media (max-width: 1100px) {
  [data-scope="moeen-service-page"] .msp-hero__grid,
  [data-scope="moeen-service-page"] .msp-outcomes__grid {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-service-page"] .msp-hero__media {
    min-height: 320px;
  }

  [data-scope="moeen-service-page"] .msp-flip-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  [data-scope="moeen-service-page"] .msp-fit__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  [data-scope="moeen-service-page"] section {
    padding: 46px 0;
  }

  [data-scope="moeen-service-page"] .msp-container {
    padding-inline: 14px;
  }

  [data-scope="moeen-service-page"] .msp-hero h1,
  [data-scope="moeen-service-page"] .msp-section-head h2 {
    font-size: 34px;
  }

  [data-scope="moeen-service-page"] .msp-hero p,
  [data-scope="moeen-service-page"] .msp-section-head p {
    font-size: 14px;
  }

  [data-scope="moeen-service-page"] .msp-hero__media {
    min-height: 230px;
    border-radius: 22px;
  }

  [data-scope="moeen-service-page"] .msp-slider {
    padding-inline: 0;
  }

  [data-scope="moeen-service-page"] .msp-flip-card {
    flex-basis: 100%;
    min-height: 310px;
  }

  [data-scope="moeen-service-page"] .msp-flip-card__inner {
    min-height: 310px;
  }

  [data-scope="moeen-service-page"] .msp-slider__nav {
    display: none;
  }

  [data-scope="moeen-service-page"] .msp-fit__grid {
    grid-template-columns: 1fr;
  }

  [data-scope="moeen-service-page"] .msp-final-cta {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-scope="moeen-service-page"] *,
  [data-scope="moeen-service-page"] *::before,
  [data-scope="moeen-service-page"] *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-scope="moeen-service-page"] .msp-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}


[data-scope="moeen-service-page"] .msp-slider {
  overflow: hidden;
  touch-action: pan-y;
}

[data-scope="moeen-service-page"] .msp-slider__viewport {
  overflow: hidden !important;
}

[data-scope="moeen-service-page"] .msp-slider__track {
  display: flex !important;
  flex-wrap: nowrap !important;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

[data-scope="moeen-service-page"] .msp-flip-card {
  flex-shrink: 0 !important;
}


/**
 * Moeen Store Page
 * Premium modern RTL store styles.
 */

