/* سَديد — مؤسسي على منهج البيج فور: أبيض نقي، كتل صلبة، بلا شبكة زخرفية،
   والرؤى هي المنتج لا الحجز.  #FFFFFF · كحلي #0F1E33 · بترولي #1F4E46 */

:root {
  --white: #FFFFFF;
  --off: #F4F4F2;
  --ink: #0F1E33;
  --mint: #7FB4A8;       /* البترولي على الخلفيات الكحلية */
  --ink-2: #55607220;
  --gray: #5B6473;
  --teal: #1F4E46;
  --rule: #E2E2DF;
  --rule-2: #CFCFCA;

  --serif: "Playfair Display", serif;
  --ar: "Almarai", sans-serif;
  --en: "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --ease: cubic-bezier(.2,.7,.3,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: clip; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: var(--ar); font-weight: 300;
  background: var(--white); color: var(--ink);
  line-height: 1.95; font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3 { font-weight: 800; line-height: 1.24; letter-spacing: -.015em; }
::selection { background: var(--ink); color: var(--white); }
:focus-visible { outline: 1.5px solid var(--teal); outline-offset: 3px; }

.wrap { max-width: 1280px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 52px); }
[hidden] { display: none !important; }

.secno {
  font-family: var(--ar); font-weight: 700; font-size: .8rem;
  letter-spacing: 0; color: var(--teal);
}

/* ── روابط ── */
.lnk {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 700; color: var(--ink);
  border-bottom: 1.5px solid var(--ink); padding-bottom: 4px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.lnk::after { content: "←"; font-size: .9em; transition: transform .25s var(--ease); }
.lnk:hover { color: var(--teal); border-color: var(--teal); }
.lnk:hover::after { transform: translateX(-4px); }
[dir="ltr"] .lnk::after { content: "→"; }
[dir="ltr"] .lnk:hover::after { transform: translateX(4px); }
.lnk--sm { font-size: .82rem; }
.lnk--light { color: var(--white); border-color: var(--white); }
.lnk--light:hover { color: var(--white); border-color: rgba(255,255,255,.55); }

/* ═══ ١ الشريط العلوي ═══ */
.topbar { background: var(--off); border-bottom: 1px solid var(--rule); font-size: .76rem; }
.topbar__in { display: flex; align-items: center; justify-content: space-between; padding-block: 8px; }
.topbar__nav { display: flex; gap: 22px; color: var(--gray); }
.topbar__nav a:hover, .topbar__lang:hover { color: var(--ink); }
.topbar__lang { color: var(--gray); }
@media (max-width: 700px) { .topbar__nav a:nth-child(n+2) { display: none; } }

/* ═══ ٢ الهيدر ═══ */
.hd {
  position: sticky; top: 0; z-index: 40;
  background: var(--white); border-bottom: 1px solid var(--rule-2);
}
.hd__in { display: flex; align-items: center; justify-content: space-between; gap: 28px; height: 78px; }
.brand { display: flex; align-items: baseline; gap: 14px; }
.brand__ar { font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; }
.brand__en {
  font-family: var(--serif); font-size: .78rem; letter-spacing: .32em;
  color: var(--gray); font-weight: 500;
}
.hd__nav { display: flex; gap: clamp(16px, 2.4vw, 34px); font-size: .88rem; font-weight: 400; }
.hd__nav a { position: relative; padding-block: 6px; transition: color .25s var(--ease); }
.hd__nav a::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 2px;
  background: var(--teal); transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform .3s var(--ease);
}
.hd__nav a:hover { color: var(--teal); }
.hd__nav a:hover::after { transform: scaleX(1); }
.hd__side { display: flex; align-items: center; gap: 18px; }
.hd__search { background: none; border: 0; cursor: pointer; color: var(--ink); padding: 4px; display: grid; place-content: center; }
.hd__search svg { width: 19px; height: 19px; }
.hd__search:hover { color: var(--teal); }
.hd__offices { font-size: .86rem; font-weight: 700; border-bottom: 1.5px solid var(--ink); padding-bottom: 3px; }
.hd__offices:hover { color: var(--teal); border-color: var(--teal); }
@media (max-width: 1020px) { .hd__nav { display: none; } }

/* ═══ ٣ الهيرو — صورة بعرض الشاشة وعنوان فوقها ═══ */
/* الهيرو يملأ ما تبقى من الشاشة تحت الشريط العلوي والهيدر (٣٣ + ٧٨) */
.hero {
  position: relative; display: grid; align-items: end;
  min-height: max(520px, calc(100vh - 111px));
  min-height: max(520px, calc(100svh - 111px));
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,30,51,.92) 0%, rgba(15,30,51,.55) 42%, rgba(15,30,51,.18) 100%);
}
.hero__over { position: relative; padding-block: clamp(40px, 6vw, 76px); color: var(--white); max-width: 900px; }
.hero__eyebrow {
  font-family: var(--ar); font-weight: 700; font-size: .84rem; letter-spacing: 0;
  color: rgba(255,255,255,.88); margin-bottom: 16px;
}
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 4.2rem); line-height: 1.18; }
.hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.14rem); font-weight: 400;
  color: rgba(255,255,255,.9); max-width: 52ch; margin: 20px 0 30px;
}

/* ═══ شريط الرؤى ═══ */
.strip { border-bottom: 1px solid var(--rule); }
.strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.sc {
  padding: clamp(28px, 3.4vw, 44px) clamp(20px, 2.4vw, 36px);
  border-inline-start: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 10px;
  transition: background .3s var(--ease);
}
.sc:first-child { border-inline-start: 0; }
.sc:hover { background: var(--off); }
.sc__k {
  font-family: var(--ar); font-weight: 700; font-size: .78rem;
  letter-spacing: 0; color: var(--teal);
}
.sc h3 { font-size: clamp(1.04rem, 1.5vw, 1.24rem); line-height: 1.5; flex: 1; }
.sc__m { font-size: .8rem; color: var(--gray); font-family: var(--ar); }
.sc .lnk { align-self: flex-start; margin-top: 6px; }
@media (max-width: 900px) {
  .strip__grid { grid-template-columns: 1fr; }
  .sc { border-inline-start: 0; border-top: 1px solid var(--rule); }
  .sc:first-child { border-top: 0; }
}

/* ═══ التعريف ═══ */
.intro { padding-block: clamp(56px, 8vw, 104px); }
.intro__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 5vw, 76px); align-items: center; }
.intro__fig { position: relative; }
.intro__fig img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.intro__fig figcaption {
  font-size: .78rem; color: var(--gray); padding-top: 12px;
  border-top: 1px solid var(--rule); margin-top: 14px;
}
.intro__body .secno { display: block; margin-bottom: 18px; }
.intro__facts {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1px; background: rgba(255,255,255,.18);
  margin: 30px 0 28px;
}
.intro__facts > div { background: var(--ink); padding: 18px 16px; }
.intro__facts dt { font-size: .74rem; color: var(--mint); }
.intro__facts dd { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 800; color: var(--white); line-height: 1.35; }
.intro__lead { font-size: clamp(1.25rem, 2.4vw, 1.85rem); font-weight: 700; line-height: 1.6; max-width: 30ch; }
.intro__sub { color: var(--gray); margin: 18px 0 28px; max-width: 52ch; }
@media (max-width: 860px) {
  .intro__grid { grid-template-columns: 1fr; gap: 28px; }
  .intro__fig img { aspect-ratio: 16/10; }
  .intro__facts { grid-template-columns: 1fr 1fr; }
}

/* ═══ ترويسة قسم مشتركة ═══ */
.sh { max-width: 74ch; margin-bottom: clamp(34px, 4.5vw, 58px); }
.sh .secno { display: block; margin-bottom: 16px; }
.sh h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); }
.sh__sub { color: var(--gray); margin-top: 16px; max-width: 60ch; }
.sh--row {
  max-width: none; display: grid; grid-template-columns: 1fr auto;
  gap: clamp(24px, 5vw, 80px); align-items: end;
}
.sh--row .sh__sub { margin-top: 0; max-width: 42ch; padding-bottom: 6px; }
@media (max-width: 820px) { .sh--row { grid-template-columns: 1fr; align-items: start; } }

/* ═══ ٤ الممارسات ═══ */
.prac { padding-block: clamp(56px, 7vw, 100px); border-top: 1px solid var(--rule); }
.prac__list { border-top: 1px solid var(--rule-2); }
.pr {
  display: grid; grid-template-columns: 86px 1fr;
  gap: clamp(16px, 3vw, 44px); align-items: start;
  padding-block: clamp(26px, 3vw, 40px);
  border-bottom: 1px solid var(--rule);
  transition: background .35s var(--ease);
}
.pr:hover { background: var(--off); }
.pr__n { font-size: 1.05rem; font-weight: 800; color: var(--teal); padding-top: 4px; }
.pr__b { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(16px, 3vw, 48px); align-items: start; }
.pr__b h3 { font-size: clamp(1.15rem, 1.9vw, 1.5rem); grid-column: 1 / -1; margin-bottom: -6px; }
.pr__b > p { color: var(--gray); }
.pr__t { display: grid; gap: 7px; font-size: .84rem; align-content: start; padding-top: 4px; }
.pr__t li { position: relative; padding-inline-start: 15px; color: var(--ink); }
.pr__t li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: .82em;
  width: 6px; height: 1px; background: var(--teal);
}
@media (max-width: 860px) {
  .pr { grid-template-columns: 52px 1fr; }
  .pr__b { grid-template-columns: 1fr; gap: 14px; }
}

/* ═══ ٥ القطاعات ═══ */
.sect { padding-block: clamp(56px, 7vw, 100px); background: var(--off); border-block: 1px solid var(--rule); }
.sect__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--rule-2); border: 1px solid var(--rule-2);
}
.sect__grid li {
  background: var(--off); padding: clamp(22px, 2.6vw, 34px) clamp(16px, 2vw, 26px);
  font-size: clamp(.95rem, 1.4vw, 1.1rem); font-weight: 700;
  display: flex; flex-direction: column; gap: 12px; min-height: 128px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.sect__grid li span { font-size: .78rem; font-weight: 700; color: var(--teal); transition: color .3s var(--ease); }
.sect__grid li:hover { background: var(--ink); color: var(--white); }
.sect__grid li:hover span { color: var(--mint); }
@media (max-width: 900px) { .sect__grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══ ٦ المنهجية ═══ */
.meth { padding-block: clamp(56px, 7vw, 100px); }
.meth__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--ink); }
.meth__row li {
  padding: clamp(24px, 2.6vw, 34px) clamp(16px, 2vw, 30px) clamp(24px, 2.6vw, 34px) 0;
  border-inline-start: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 12px;
}
.meth__row li:first-child { border-inline-start: 0; padding-inline-start: 0; }
.meth__row li:not(:first-child) { padding-inline-start: clamp(16px, 2vw, 30px); }
.meth__n { font-size: .82rem; font-weight: 700; color: var(--teal); }
.meth__row h3 { font-size: clamp(1.1rem, 1.7vw, 1.35rem); }
.meth__row p { color: var(--gray); font-size: .92rem; flex: 1; }
.meth__d {
  font-size: .78rem; font-weight: 700; color: var(--ink);
  border-top: 1px solid var(--rule); padding-top: 12px; margin-top: 6px;
}
@media (max-width: 900px) {
  .meth__row { grid-template-columns: 1fr; }
  .meth__row li, .meth__row li:not(:first-child) {
    border-inline-start: 0; border-top: 1px solid var(--rule);
    padding-inline: 0;
  }
  .meth__row li:first-child { border-top: 0; }
}

/* ═══ ٧ مؤشر النضج ═══ */
.idx { padding-block: clamp(56px, 7vw, 100px); background: var(--ink); color: var(--white); }
.idx .sh h2 { color: var(--white); }
.idx .sh__sub { color: rgba(255,255,255,.68); }
.secno--light, .idx .secno { color: #7FB4A8; }
.idx__grid {
  display: grid; grid-template-columns: 1.25fr .95fr;
  gap: clamp(28px, 5vw, 74px); align-items: start;
}
.idx__q { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.18); }
.iq { padding-block: clamp(18px, 2.2vw, 26px); border-bottom: 1px solid rgba(255,255,255,.18); }
.iq__t { font-size: clamp(.98rem, 1.5vw, 1.1rem); font-weight: 700; margin-bottom: 14px; }
.iq__t b { display: block; font-size: .76rem; font-weight: 700; color: #7FB4A8; margin-bottom: 6px; }
.iq__opts { display: flex; gap: 8px; flex-wrap: wrap; }
.iq__opts button {
  font-family: var(--ar); font-size: .82rem; font-weight: 400;
  color: rgba(255,255,255,.82); background: none; cursor: pointer;
  border: 1px solid rgba(255,255,255,.28); padding: 8px 15px;
  transition: all .25s var(--ease);
}
.iq__opts button:hover { border-color: rgba(255,255,255,.7); color: var(--white); }
.iq__opts button.on { background: var(--white); color: var(--ink); border-color: var(--white); font-weight: 700; }

.idx__out { border: 1px solid rgba(255,255,255,.2); padding: clamp(22px, 2.6vw, 32px); position: sticky; top: 100px; }
.radar { width: 100%; height: auto; display: block; }
.idx__score { border-top: 1px solid rgba(255,255,255,.2); margin-top: 18px; padding-top: 18px; }
.idx__lbl { font-size: .76rem; color: rgba(255,255,255,.6); }
.idx__val { display: flex; align-items: baseline; gap: 8px; }
.idx__val b { font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.1; }
.idx__val span { font-size: .8rem; color: rgba(255,255,255,.6); }
.idx__band { font-size: .92rem; font-weight: 700; color: #7FB4A8; margin-top: 6px; }
.idx__note { font-size: .84rem; color: rgba(255,255,255,.66); margin-top: 12px; line-height: 1.8; }
@media (max-width: 900px) { .idx__grid { grid-template-columns: 1fr; } .idx__out { position: static; } }

/* ═══ ٨ مركز الرؤى ═══ */
.ins { padding-block: clamp(56px, 7vw, 100px); }
.ins__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  flex-wrap: wrap; border-bottom: 1px solid var(--rule-2); padding-bottom: 16px; margin-bottom: 0;
}
.ins__f { display: flex; gap: 8px; flex-wrap: wrap; }
.fbtn {
  font-family: var(--ar); font-size: .84rem; font-weight: 400; cursor: pointer;
  background: none; border: 1px solid var(--rule-2); color: var(--ink);
  padding: 8px 17px; transition: all .25s var(--ease);
}
.fbtn:hover { border-color: var(--ink); }
.fbtn.is-on { background: var(--ink); color: var(--white); border-color: var(--ink); font-weight: 700; }
.ins__count { font-size: .8rem; color: var(--gray); }
.ins__list { display: grid; }
.ic {
  display: grid; grid-template-columns: 132px 1fr auto;
  gap: clamp(14px, 3vw, 40px); align-items: center;
  padding-block: clamp(20px, 2.4vw, 28px);
  border-bottom: 1px solid var(--rule);
  transition: background .3s var(--ease), padding-inline .3s var(--ease);
}
.ic:hover { background: var(--off); }
.ic__k { font-size: .76rem; font-weight: 700; color: var(--teal); }
.ic__b h3 { font-size: clamp(1rem, 1.6vw, 1.22rem); line-height: 1.55; }
.ic__m { font-size: .8rem; color: var(--gray); margin-top: 6px; }
.ic__go { font-size: .84rem; font-weight: 700; white-space: nowrap; border-bottom: 1.5px solid var(--ink); padding-bottom: 3px; }
.ic:hover .ic__go { color: var(--teal); border-color: var(--teal); }
@media (max-width: 780px) {
  .ic { grid-template-columns: 1fr; gap: 8px; }
  .ic__go { justify-self: start; }
}

/* ═══ ٩ دراسات الحالة ═══ */
.cases { padding-block: clamp(56px, 7vw, 100px); background: var(--off); border-block: 1px solid var(--rule); }
.cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule-2); border: 1px solid var(--rule-2); }
.cs { background: var(--off); padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; gap: 12px; }
.cs__sector { font-size: .76rem; font-weight: 700; color: var(--teal); }
.cs__num { font-size: clamp(2.4rem, 5.4vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
.cs__cap { color: var(--gray); font-size: .92rem; }
@media (max-width: 900px) { .cases__grid { grid-template-columns: 1fr; } }

/* ═══ ١٠ القيادة — كتلة كحلية تُبرز البورتريهات الأبيض والأسود ═══ */
.lead { padding-block: clamp(56px, 7vw, 100px); background: var(--ink); color: var(--white); }
.lead .sh h2 { color: var(--white); }
.lead .sh__sub { color: rgba(255,255,255,.66); }
.lead .secno { color: var(--mint); }
.lead__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.6vw, 36px); }
.ld figure { overflow: hidden; margin-bottom: 16px; background: rgba(255,255,255,.06); }
.ld img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: grayscale(1) contrast(1.06) brightness(.94); transition: transform .8s var(--ease), filter .5s var(--ease); }
.ld:hover img { transform: scale(1.03); filter: grayscale(1) contrast(1.02) brightness(1.04); }
.ld h3 { font-size: 1.05rem; }
.ld__role { font-size: .8rem; font-weight: 700; color: var(--mint); margin: 4px 0 10px; }
.ld__t { font-size: .86rem; color: rgba(255,255,255,.62); }
@media (max-width: 900px) { .lead__grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══ ١١ الحوكمة ═══ */
.gov { padding-block: clamp(56px, 7vw, 100px); border-top: 1px solid var(--rule); }
.gov__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border-top: 1px solid var(--ink); }
.gov__grid article { background: var(--white); padding: clamp(24px, 2.8vw, 34px) clamp(18px, 2.2vw, 28px) clamp(24px, 2.8vw, 34px) 0; }
.gov__grid article:not(:first-child) { padding-inline-start: clamp(18px, 2.2vw, 28px); }
.gov__grid h3 { font-size: 1.02rem; margin-bottom: 10px; }
.gov__grid p { font-size: .9rem; color: var(--gray); }
@media (max-width: 900px) {
  .gov__grid { grid-template-columns: 1fr; gap: 0; background: none; }
  .gov__grid article, .gov__grid article:not(:first-child) { padding: 22px 0; border-bottom: 1px solid var(--rule); }
}

/* ═══ ١٢ الوظائف ═══ */
.care { padding-block: clamp(56px, 7vw, 100px); background: var(--off); border-block: 1px solid var(--rule); }
.care__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 76px); align-items: center; }
.care__body .secno { display: block; margin-bottom: 16px; }
.care__body h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.care__t { color: var(--gray); margin: 18px 0 28px; max-width: 54ch; }
.care__jobs { border-top: 1px solid var(--rule-2); margin-bottom: 28px; }
.care__jobs li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding-block: 15px; border-bottom: 1px solid var(--rule);
  font-size: .95rem; font-weight: 700;
}
.care__jobs em { font-style: normal; font-size: .8rem; font-weight: 400; color: var(--gray); }
.care__fig img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 900px) { .care__grid { grid-template-columns: 1fr; } .care__fig { order: -1; } }

/* ═══ ١٣ التواصل ═══ */
.cta { padding-block: clamp(56px, 7vw, 100px); background: var(--ink); color: var(--white); }
.cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 84px); align-items: start; }
.cta h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.cta .secno { display: block; margin-bottom: 16px; }
.cta__t { color: rgba(255,255,255,.72); margin: 18px 0 34px; max-width: 46ch; }
.cta__offices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; border-top: 1px solid rgba(255,255,255,.2); padding-top: 22px; }
.cta__offices h4 { font-size: .92rem; font-weight: 800; margin-bottom: 8px; }
.cta__offices p { font-size: .82rem; color: rgba(255,255,255,.66); line-height: 1.9; }

.cta__form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.fld { display: grid; gap: 7px; }
.fld--full { grid-column: 1 / -1; }
.fld label { font-size: .78rem; color: rgba(255,255,255,.7); }
.fld input, .fld select, .fld textarea {
  font-family: var(--ar); font-size: .92rem; font-weight: 300; color: var(--white);
  background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.32);
  padding: 9px 0; transition: border-color .25s var(--ease);
  border-radius: 0; -webkit-appearance: none; appearance: none;
}
.fld select { background-image: none; }
.fld select option { color: var(--ink); }
.fld textarea { resize: vertical; line-height: 1.8; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: 0; border-color: var(--white); }
.fld.bad input, .fld.bad select, .fld.bad textarea { border-color: #E08E7A; }
.sbtn {
  grid-column: 1 / -1; justify-self: start;
  font-family: var(--ar); font-size: .9rem; font-weight: 700; cursor: pointer;
  background: var(--white); color: var(--ink); border: 1px solid var(--white);
  padding: 13px 34px; transition: all .25s var(--ease);
}
.sbtn:hover { background: transparent; color: var(--white); }
.cta__msg { grid-column: 1 / -1; font-size: .86rem; }
.cta__msg--ok { color: #7FB4A8; }
.cta__msg--err { color: #E08E7A; }
@media (max-width: 900px) { .cta__grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .cta__form { grid-template-columns: 1fr; } .cta__offices { grid-template-columns: 1fr; } }

/* ═══ الفوتر المؤسسي ═══ */
.ft { border-top: 1px solid var(--rule-2); background: var(--off); }
.ft__grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px); padding-block: clamp(40px, 5vw, 62px);
}
.ft__brand .brand__ar { font-size: 1.5rem; font-weight: 800; }
.ft__brand .brand__en { font-family: var(--serif); font-size: .74rem; letter-spacing: .32em; color: var(--gray); margin-inline-start: 12px; }
.ft__brand p { font-size: .82rem; color: var(--gray); margin-top: 14px; line-height: 2; }
.ft__col { display: grid; gap: 10px; align-content: start; font-size: .84rem; }
.ft__col b { font-size: .8rem; font-weight: 800; margin-bottom: 4px; }
.ft__col a { color: var(--gray); transition: color .2s var(--ease); }
.ft__col a:hover { color: var(--teal); }
.ft__base {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--rule-2); padding-block: 20px;
  font-size: .76rem; color: var(--gray);
}
.ft__note a { color: var(--teal); border-bottom: 1px solid currentColor; }
@media (max-width: 820px) { .ft__grid { grid-template-columns: 1fr 1fr; } }

/* ═══ الوضع الإنجليزي ═══ */
body.en { font-family: var(--en); }
body.en h1, body.en h2, body.en h3, body.en h4 { letter-spacing: -.02em; }
body.en .secno, body.en .sc__k, body.en .ic__k, body.en .cs__sector,
body.en .ld__role, body.en .iq__t b, body.en .cs__lbl, body.en .sr__g, body.en .map__role {
  letter-spacing: .1em; text-transform: uppercase; font-size: .7rem;
}
body.en .brand__ar { display: none; }
body.en .brand__en { font-size: 1.32rem; letter-spacing: .22em; color: var(--ink); font-weight: 600; }
body.en .ft__brand .brand__en { margin-inline-start: 0; font-size: 1.2rem; color: var(--ink); }
.topbar__lang {
  font-family: inherit; font-size: inherit; color: var(--gray);
  background: none; border: 0; cursor: pointer; padding: 0;
}
.topbar__lang:hover { color: var(--ink); }

/* ── رابط التخطي ── */
.skip {
  position: fixed; inset-inline-start: 50%; top: 8px; transform: translate(-50%, -200%);
  z-index: 90; background: var(--ink); color: var(--white);
  padding: 10px 20px; font-size: .85rem; font-weight: 700;
  transition: transform .2s var(--ease);
}
.skip:focus { transform: translate(-50%, 0); }
.vh {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
body.locked { overflow: hidden; }

/* ═══ قائمة الجوال ═══ */
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px 2px; }
.burger span {
  display: block; width: 22px; height: 1.6px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger span + span { margin-top: 5px; }
.burger.on span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
.mnav {
  position: fixed; inset: 0; z-index: 55; background: var(--white);
  opacity: 0; transition: opacity .3s var(--ease);
  overflow-y: auto;
}
.mnav.on { opacity: 1; }
.mnav__top { border-bottom: 1px solid var(--rule-2); }
.mnav__topin { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.mnav__in { display: grid; padding-top: 4px; }
.mnav__in a {
  padding-block: 17px; border-bottom: 1px solid var(--rule);
  font-size: 1.08rem; font-weight: 700;
  transform: translateY(8px); opacity: 0;
  transition: opacity .4s var(--ease), transform .4s var(--ease), color .2s var(--ease);
}
.mnav.on .mnav__in a { opacity: 1; transform: none; }
.mnav__in a:hover { color: var(--teal); }
.mnav__in a:nth-child(1) { transition-delay: .04s }
.mnav__in a:nth-child(2) { transition-delay: .07s }
.mnav__in a:nth-child(3) { transition-delay: .10s }
.mnav__in a:nth-child(4) { transition-delay: .13s }
.mnav__in a:nth-child(5) { transition-delay: .16s }
.mnav__in a:nth-child(6) { transition-delay: .19s }
.mnav__in a:nth-child(7) { transition-delay: .22s }
.mnav__in a:nth-child(8) { transition-delay: .25s }
.mnav__in a:nth-child(9) { transition-delay: .28s }
.mnav__in a:nth-child(10) { transition-delay: .31s }
.mnav__lang {
  justify-self: start; margin-top: 26px; font-family: inherit;
  font-size: .88rem; font-weight: 700; cursor: pointer;
  background: none; color: var(--ink); border: 1px solid var(--rule-2);
  padding: 11px 26px; transition: all .25s var(--ease);
}
.mnav__lang:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
@media (max-width: 1020px) { .burger { display: block; } }
@media (max-width: 620px) { .hd__offices { display: none; } }
@media (min-width: 1021px) { .mnav { display: none !important; } }

/* ═══ البحث ═══ */
.srch {
  position: fixed; inset: 0; z-index: 60; background: var(--white);
  opacity: 0; transition: opacity .26s var(--ease); overflow-y: auto;
}
.srch.on { opacity: 1; }
.srch__bar { border-bottom: 1px solid var(--rule-2); position: sticky; top: 0; background: var(--white); }
.srch__barin { display: flex; align-items: center; gap: 14px; height: 92px; }
.srch__icon { width: 22px; height: 22px; color: var(--gray); flex: none; }
.srch__barin input {
  flex: 1; font-family: inherit; font-size: clamp(1.1rem, 2.4vw, 1.7rem); font-weight: 700;
  color: var(--ink); background: none; border: 0; padding: 0;
  -webkit-appearance: none; appearance: none;
}
.srch__barin input:focus { outline: 0; }
/* زر المسح الأصلي في كروم يكرّر زر الإغلاق */
.srch__barin input::-webkit-search-cancel-button,
.srch__barin input::-webkit-search-decoration { -webkit-appearance: none; display: none; }
.srch__barin input::placeholder { color: var(--rule-2); font-weight: 400; }
.srch__x { background: none; border: 0; cursor: pointer; font-size: 1.1rem; color: var(--gray); padding: 8px; }
.srch__x:hover { color: var(--ink); }
.srch__body { padding-block: 26px 60px; }
.srch__hint, .srch__none { color: var(--gray); font-size: .92rem; }
.srch__n { font-size: .78rem; color: var(--teal); font-weight: 700; margin-bottom: 6px; }
.sr {
  display: grid; gap: 4px; width: 100%; text-align: start;
  font-family: inherit; background: none; cursor: pointer;
  border: 0; border-bottom: 1px solid var(--rule);
  padding: 16px 0; transition: padding-inline-start .25s var(--ease), background .25s var(--ease);
}
.sr:hover { background: var(--off); padding-inline-start: 14px; }
.sr__g { font-size: .72rem; font-weight: 700; color: var(--teal); }
.sr__t { font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.sr__s { font-size: .84rem; color: var(--gray); overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.sr mark { background: #FBEFA8; color: inherit; }

/* ═══ درج الرؤية ═══ */
.drw { position: fixed; inset: 0; z-index: 70; }
.drw__scrim {
  position: absolute; inset: 0; background: rgba(15,30,51,.5);
  opacity: 0; transition: opacity .3s var(--ease);
}
.drw.on .drw__scrim { opacity: 1; }
.drw__panel {
  position: absolute; inset-block: 0; inset-inline-end: 0;
  width: min(560px, 100%); background: var(--white);
  overflow-y: auto; transform: translateX(0);
  transition: transform .34s var(--ease);
}
[dir="rtl"] .drw__panel { transform: translateX(-100%); }
[dir="ltr"] .drw__panel { transform: translateX(100%); }
.drw.on .drw__panel { transform: none; }
.drw__x {
  position: sticky; top: 0; float: inline-end; margin: 14px;
  background: var(--white); border: 1px solid var(--rule-2); cursor: pointer;
  width: 38px; height: 38px; font-size: .95rem; color: var(--ink);
}
.drw__x:hover { background: var(--off); }
.drw__in { padding: clamp(26px, 4vw, 48px); padding-top: 8px; clear: both; }
.drw__k { font-size: .76rem; font-weight: 700; color: var(--teal); margin-bottom: 12px; }
.drw__in h3 { font-size: clamp(1.3rem, 2.6vw, 1.75rem); line-height: 1.42; }
.drw__m { font-size: .82rem; color: var(--gray); margin: 10px 0 22px; padding-bottom: 22px; border-bottom: 1px solid var(--rule); }
.drw__lead { font-size: 1.02rem; line-height: 2; }
.drw__sub { font-size: .78rem; font-weight: 700; color: var(--teal); margin: 28px 0 12px; }
.drw__pts { display: grid; gap: 12px; margin-bottom: 30px; }
.drw__pts li { position: relative; padding-inline-start: 20px; font-size: .94rem; }
.drw__pts li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: .85em;
  width: 9px; height: 1px; background: var(--teal);
}
.sbtn--dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.sbtn--dark:hover { background: transparent; color: var(--ink); }
.drw__note { font-size: .82rem; color: var(--gray); margin-top: 14px; }

/* ═══ توسعة دراسات الحالة ═══ */
.cs__btn {
  align-self: flex-start; margin-top: 6px; background: none; cursor: pointer;
  font-family: inherit; font-size: .84rem; font-weight: 700; color: var(--ink);
  border: 0; border-bottom: 1.5px solid var(--ink); padding: 0 0 4px;
  display: inline-flex; align-items: center; gap: 9px;
}
.cs__btn::after { content: "+"; font-size: 1em; line-height: 1; transition: transform .3s var(--ease); }
.cs.open .cs__btn::after { content: "−"; }
.cs__btn:hover { color: var(--teal); border-color: var(--teal); }
.cs__more { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .38s var(--ease); }
.cs.open .cs__more { grid-template-rows: 1fr; }
.cs__inner { overflow: hidden; }
.cs.open .cs__inner { padding-top: 22px; }
.cs__lbl { font-size: .74rem; font-weight: 700; color: var(--teal); margin-bottom: 6px; }
.cs__inner p:not(.cs__lbl) { font-size: .9rem; color: var(--gray); margin-bottom: 18px; }
.cs__inner p:last-child { margin-bottom: 0; }

/* بطاقات الرؤى صارت أزرارا */
.sc .lnk, .ic { font-family: inherit; }
.sc button.lnk { background: none; cursor: pointer; }
.ic { width: 100%; text-align: start; background: none; border: 0; border-bottom: 1px solid var(--rule); cursor: pointer; }
.ic__b { display: block; }
.ic__h { display: block; font-size: clamp(1rem, 1.6vw, 1.22rem); line-height: 1.55; font-weight: 800; }
.ic__k, .ic__go { display: block; }

/* ═══ خريطة المكاتب ═══ */
.map {
  display: grid; gap: clamp(18px, 2.6vw, 28px);
  border-top: 1px solid rgba(255,255,255,.2); padding-top: 26px;
}
.map__svg { width: 100%; height: auto; overflow: visible; }
.map__land { fill: rgba(255,255,255,.10); stroke: rgba(255,255,255,.38); stroke-width: 1.1; }
.pin { cursor: pointer; }
.pin__halo { fill: rgba(127,180,168,.16); opacity: 0; transition: opacity .3s var(--ease); }
.pin__dot { fill: rgba(255,255,255,.5); transition: fill .3s var(--ease), r .3s var(--ease); }
.pin__lbl { font-size: 13px; fill: rgba(255,255,255,.55); transition: fill .3s var(--ease); }
.pin:hover .pin__dot { fill: var(--white); }
.pin:hover .pin__lbl { fill: var(--white); }
.pin.on .pin__halo { opacity: 1; }
.pin.on .pin__dot { fill: #7FB4A8; }
.pin.on .pin__lbl { fill: #7FB4A8; font-weight: 700; }
.pin:focus { outline: 0; }
.pin:focus-visible .pin__halo { opacity: 1; }
.map__card {
  display: grid; grid-template-columns: minmax(120px, auto) 1fr;
  gap: clamp(18px, 3vw, 40px);
  border-top: 1px solid rgba(255,255,255,.2); padding-top: 20px;
}
.map__role { font-size: .74rem; font-weight: 700; color: #7FB4A8; margin-bottom: 6px; }
.map__card h4 { font-size: 1.35rem; }
.map__det p { font-size: .86rem; color: rgba(255,255,255,.68); line-height: 2; }
.map__det .map__t { color: rgba(255,255,255,.5); margin-top: 10px; }
@media (max-width: 560px) { .map__card { grid-template-columns: 1fr; gap: 14px; } }

/* ═══ نشرة الرؤى ═══ */
.news {
  display: grid; grid-template-columns: 1fr auto; gap: clamp(18px, 4vw, 60px);
  align-items: center; margin-top: clamp(34px, 4vw, 56px);
  background: var(--ink); color: var(--white); padding: clamp(28px, 3.4vw, 44px);
}
.news__t h3 { font-size: 1.28rem; }
.news__t p { font-size: .88rem; color: rgba(255,255,255,.62); margin-top: 6px; }
.news__f { display: flex; gap: 0; align-items: stretch; }
.news__f input {
  font-family: inherit; font-size: .92rem; color: var(--white);
  background: none; border: 0; border-bottom: 1px solid rgba(255,255,255,.34);
  padding: 11px 2px; min-width: min(240px, 46vw); border-radius: 0;
}
.news__f input::placeholder { color: rgba(255,255,255,.36); }
.news__f input:focus { outline: 0; border-color: var(--white); }
.news__f button {
  font-family: inherit; font-size: .88rem; font-weight: 700; cursor: pointer;
  background: var(--white); color: var(--ink); border: 1px solid var(--white);
  padding: 0 28px; margin-inline-start: 14px; transition: all .25s var(--ease);
}
.news__f button:hover { background: transparent; color: var(--white); }
.news__msg { grid-column: 1 / -1; font-size: .86rem; color: var(--mint); }
.news__msg.bad { color: #E08E7A; }
@media (max-width: 760px) {
  .news { grid-template-columns: 1fr; }
  .news__f input { flex: 1; min-width: 0; }
}

/* ── ظهور بطيء ── */
.rv { opacity: 0; transform: translateY(10px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* قاعدة صارمة: لا mono على أي نص عربي أو أرقام هندية.
   الـmono لا يدعم الأرقام الهندية ولا يصل الحروف — يُستخدم للاتيني فقط. */
[lang="en"] .num, .lat {
  font-family: var(--mono); letter-spacing: .04em;
  direction: ltr; unicode-bidi: isolate; display: inline-block;
}


/* ═══ ملاءمة الجوال: أهداف لمس لا تقل عن ٤٤ بكسل ═══ */
@media (hover: none), (max-width: 760px) {
  .topbar__in { padding-block: 4px; }
  .topbar__nav a, .topbar__lang {
    display: inline-flex; align-items: center; min-height: 40px; padding-inline: 2px;
  }
  .hd__search, .burger { min-width: 44px; min-height: 44px; }
  .hd__offices { display: inline-flex; align-items: center; min-height: 44px; }
  .lnk { min-height: 44px; align-items: center; }
  .cs__btn { min-height: 44px; }
  .ft__col a, .mnav__in a { display: block; min-height: 40px; line-height: 40px; }
  .ft__note a { display: inline-block; min-height: 32px; }
  .fbtn, .iq__opts button { min-height: 44px; }
  .sr { min-height: 56px; }
  .ic { min-height: 60px; }
}
