/* ═══════════════════════════════════════════════════════════════════
   تاج سيجنتشر — design tokens
   Every directional rule below uses LOGICAL properties (inline-start /
   inline-end), never left/right. The document is RTL; hardcoding `left`
   is how an Arabic layout silently breaks.
   ═══════════════════════════════════════════════════════════════════ */
:root {
  --ink:      #071411;
  --ink-2:    #0c221c;
  --ink-3:    #123329;
  --brand:    #0f7a5c;
  --brand-2:  #17a87c;
  --brand-3:  #35c79a;
  --sand:     #d9c7a3;
  --sand-2:   #f0e6d2;
  --paper:    #fbfaf8;
  --paper-2:  #f3f2ed;
  --line:     #e3e1d8;
  --line-2:   #cfcdc2;
  --text:     #16211d;
  --muted:    #5d6b66;
  --muted-on-dark: #9db3ab;

  --container: 1180px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(7, 20, 17, .05), 0 2px 8px rgba(7, 20, 17, .04);
  --shadow-md: 0 2px 4px rgba(7, 20, 17, .05), 0 12px 28px rgba(7, 20, 17, .08);
  --shadow-lg: 0 8px 20px rgba(7, 20, 17, .10), 0 32px 64px rgba(7, 20, 17, .14);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-block-start: 84px; /* sticky header height */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans Arabic", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { line-height: 1.35; font-weight: 700; margin: 0; letter-spacing: -.005em; text-wrap: balance; }
p  { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img, svg { max-width: 100%; }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--brand-3);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ─── الأرقام: تظهر لاتينية دائمًا، ومقيَّدة الاتجاه داخل نص عربي ─── */
.num { font-variant-numeric: tabular-nums; unicode-bidi: isolate; direction: ltr; }

.skip {
  position: absolute;
  inset-block-start: -100px;
  inset-inline-start: 16px;
  z-index: 200;
  background: var(--brand-2);
  color: #fff;
  padding: .7rem 1.2rem;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  transition: inset-block-start .18s var(--ease);
}
.skip:focus { inset-block-start: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
}

/* ═══════════════════ HEADER ═══════════════════ */
.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  background: rgba(251, 250, 248, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-block-end: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand__mark { width: 34px; height: 34px; color: var(--brand); flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-weight: 700; font-size: 1.06rem; letter-spacing: -.01em; }
.brand__kind { font-size: .74rem; color: var(--muted); font-weight: 400; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  padding: .5rem .85rem;
  border-radius: 9px;
  font-size: .95rem;
  font-weight: 400;
  color: var(--muted);
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav a:hover { color: var(--text); background: var(--paper-2); }

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .82rem 1.6rem;
  border-radius: 11px;
  font-weight: 600;
  font-size: .98rem;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), background .18s var(--ease),
              border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(15, 122, 92, .28); }
.btn--primary:hover { background: var(--brand-2); box-shadow: 0 10px 26px rgba(15, 122, 92, .34); }

.btn--ghost-dark { background: rgba(255, 255, 255, .06); color: #fff; border-color: rgba(255, 255, 255, .22); }
.btn--ghost-dark:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .38); }

.btn--outline { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--outline:hover { border-color: var(--brand); color: var(--brand); }

.btn--sm { padding: .58rem 1.15rem; font-size: .9rem; }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
/* شبكة نجمية ثمانية — نمط هندسي خفيف، لا يزاحم النص */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%2317a87c' stroke-width='1'%3E%3Cpath d='M36 6 L48 18 L66 18 L66 36 L48 48 L36 66 L24 48 L6 36 L6 18 L24 18 Z'/%3E%3Cpath d='M36 18 L48 36 L36 54 L24 36 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 72px 72px;
  opacity: .07;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* النص في الجهة اليمنى (بداية RTL)، فالضوء يملأ الجهة اليسرى الفارغة —
     يوازن التكوين ويرفع تباين النص بدل أن يغسله من خلفه. */
  background:
    radial-gradient(72% 92% at 24% 14%, rgba(23, 168, 124, .34), transparent 64%),
    radial-gradient(52% 66% at 88% 96%, rgba(217, 199, 163, .10), transparent 62%),
    linear-gradient(180deg, transparent 52%, rgba(7, 20, 17, .94) 100%);
}
/* `.hero__inner` IS the `.container`, so capping its max-width here would also
   re-trigger its `margin-inline: auto` and centre the whole hero. The cap
   belongs on an inner block; the container keeps its full width and its
   start-alignment. */
.hero__inner {
  padding-block: clamp(3.75rem, 9vw, 6.5rem) clamp(3.5rem, 8vw, 5.5rem);
}
.hero__content { max-width: 46rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .38rem .95rem .38rem .8rem;
  border: 1px solid rgba(23, 168, 124, .40);
  background: rgba(23, 168, 124, .12);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--brand-3);
  margin-block-end: 1.6rem;
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-3);
  box-shadow: 0 0 0 4px rgba(53, 199, 154, .22);
}

.hero h1 {
  font-size: clamp(2.15rem, 6.2vw, 3.9rem);
  line-height: 1.24;
  letter-spacing: -.02em;
  margin-block-end: 1.5rem;
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--brand-3), var(--sand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede {
  text-wrap: pretty;
  font-size: clamp(1.03rem, 2.2vw, 1.2rem);
  line-height: 1.9;
  color: #c6d6d0;
  margin-block-end: 2.4rem;
  max-width: 38rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 2.4rem;
  margin-block-start: 3.4rem;
  padding-block-start: 2rem;
  border-block-start: 1px solid rgba(255, 255, 255, .12);
}
.hero__meta-item { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: var(--muted-on-dark); }
.hero__meta-item svg { width: 17px; height: 17px; color: var(--brand-3); flex-shrink: 0; }

/* ═══════════════════ SECTIONS ═══════════════════ */
.section { padding-block: clamp(3.75rem, 9vw, 6.5rem); }
.section--tint { background: var(--paper-2); border-block: 1px solid var(--line); }
.section--dark { background: var(--ink-2); color: #fff; }

.section__head { max-width: 40rem; margin-block-end: clamp(2.25rem, 5vw, 3.5rem); }
.section__label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--brand);
  margin-block-end: .85rem;
}
.section--dark .section__label { color: var(--brand-3); }
.section__title {
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  letter-spacing: -.018em;
  margin-block-end: 1rem;
}
.section__sub { color: var(--muted); font-size: 1.04rem; line-height: 1.85; }
.section--dark .section__sub { color: var(--muted-on-dark); }

/* ═══════════════════ PRODUCT — رقيمي ═══════════════════ */
.product {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4.5vw, 3.5rem);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.product::before {
  content: "";
  position: absolute;
  inset-block-start: -40%;
  inset-inline-end: -18%;
  width: 70%;
  aspect-ratio: 1;
  z-index: -1;
  background: radial-gradient(circle, rgba(23, 168, 124, .30), transparent 68%);
}

.product__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--brand-3);
  border: 1px solid rgba(23, 168, 124, .4);
  background: rgba(23, 168, 124, .12);
  border-radius: 999px;
  padding: .3rem .85rem;
  margin-block-end: 1.25rem;
}
.product__name {
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  letter-spacing: -.02em;
  margin-block-end: .3rem;
}
.product__name-en {
  font-size: .95rem;
  color: var(--muted-on-dark);
  font-weight: 400;
  letter-spacing: .02em;
  margin-block-end: 1.25rem;
  direction: ltr;
  unicode-bidi: isolate;
  text-align: start;
}
.product__summary { font-size: 1.1rem; color: #d3e2dc; margin-block-end: 1rem; line-height: 1.85; }
.product__body { color: var(--muted-on-dark); margin-block-end: 1.75rem; line-height: 1.9; }

.product__points { display: grid; gap: .85rem; margin-block-end: 2rem; }
.product__points li { display: flex; gap: .75rem; align-items: flex-start; font-size: .97rem; color: #cbdbd5; }
.product__points svg { width: 19px; height: 19px; color: var(--brand-3); flex-shrink: 0; margin-block-start: .35rem; }

.product__url {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: .84rem;
  color: var(--sand);
  direction: ltr;
  unicode-bidi: isolate;
  margin-block-start: 1.1rem;
}

/* لقطة تجريدية لمستند — تُرسم بالـ CSS، لا صورة تُحمَّل */
.doc-mock {
  background: linear-gradient(160deg, #fff, #f2f5f3);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.6deg);
  transition: transform .4s var(--ease);
  aspect-ratio: 1 / 1.28;
  display: flex;
  flex-direction: column;
}
.product:hover .doc-mock { transform: rotate(0deg) translateY(-6px); }
.doc-mock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block-end: .9rem;
  border-block-end: 2px solid var(--brand);
  margin-block-end: 1.1rem;
}
.doc-mock__logo { display: flex; align-items: center; gap: .45rem; }
.doc-mock__logo svg { width: 20px; height: 20px; color: var(--brand); }
.doc-mock__logo span { font-size: .72rem; font-weight: 700; color: var(--ink); }
.doc-mock__no {
  font-family: ui-monospace, Menlo, monospace;
  font-size: .62rem;
  color: var(--muted);
  direction: ltr;
  unicode-bidi: isolate;
}
.doc-mock__line { height: 7px; border-radius: 4px; background: var(--line); margin-block-end: .62rem; }
.doc-mock__line--title { height: 11px; width: 58%; background: var(--ink-3); opacity: .8; margin-block-end: 1rem; }
.doc-mock__line--w90 { width: 90%; }
.doc-mock__line--w75 { width: 75%; }
.doc-mock__line--w60 { width: 60%; }
.doc-mock__table { margin-block-start: auto; border-block-start: 1px solid var(--line); padding-block-start: .9rem; }
.doc-mock__row { display: flex; justify-content: space-between; gap: 1rem; padding-block: .38rem; }
.doc-mock__row span { height: 7px; border-radius: 4px; background: var(--line); }
.doc-mock__row span:first-child { flex: 1; }
.doc-mock__row span:last-child { width: 34px; }
.doc-mock__row--total span { background: var(--brand); opacity: .75; }
.doc-mock__row--total { border-block-start: 1px solid var(--line); margin-block-start: .3rem; padding-block-start: .6rem; }

/* ما الذي يُصدره رقيمي — شريط إثبات بدل بطاقات "قريبًا" الفارغة */
.uses {
  margin-block-start: 1.5rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 1.9rem);
}
.uses__title { font-size: 1.02rem; margin-block-end: 1.15rem; }
.uses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: .8rem 1.5rem;
}
.uses__grid li { display: flex; align-items: center; gap: .6rem; font-size: .96rem; font-weight: 600; }
.uses__grid svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; }
.uses__note {
  margin-block-start: 1.35rem;
  padding-block-start: 1.1rem;
  border-block-start: 1px solid var(--line);
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.85;
}
.uses__note a { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════════════ CARD GRIDS ═══════════════════ */
.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.5rem); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(15, 122, 92, .12), rgba(23, 168, 124, .06));
  color: var(--brand);
  margin-block-end: 1.15rem;
}
.card__icon svg { width: 23px; height: 23px; }
.card h3 { font-size: 1.13rem; margin-block-end: .6rem; }
.card p { color: var(--muted); font-size: .96rem; line-height: 1.85; }

/* المبادئ — قائمة مرقّمة على خلفية داكنة */
.principle { display: flex; gap: 1.15rem; align-items: flex-start; }
.principle__no {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 11px;
  border: 1px solid rgba(23, 168, 124, .35);
  background: rgba(23, 168, 124, .10);
  color: var(--brand-3);
  font-weight: 700;
  font-size: .95rem;
  font-variant-numeric: tabular-nums;
}
.principle h3 { font-size: 1.1rem; margin-block-end: .5rem; }
.principle p { color: var(--muted-on-dark); font-size: .96rem; line-height: 1.85; }

/* ═══════════════════ CONTACT ═══════════════════ */
.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4.5vw, 3.25rem);
  box-shadow: var(--shadow-sm);
}
.contact h2 { font-size: clamp(1.5rem, 3.6vw, 2.15rem); letter-spacing: -.018em; margin-block-end: .9rem; }
.contact p { color: var(--muted); line-height: 1.85; margin-block-end: 1.75rem; max-width: 34rem; }
.contact__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.contact__details { display: grid; gap: 1.1rem; min-width: 15rem; }
.contact__row { display: flex; gap: .8rem; align-items: flex-start; }
.contact__row svg { width: 19px; height: 19px; color: var(--brand); flex-shrink: 0; margin-block-start: .3rem; }
.contact__key { font-size: .78rem; color: var(--muted); display: block; margin-block-end: .1rem; }
.contact__val { font-weight: 600; font-size: .96rem; word-break: break-word; }
.contact__val--ltr { direction: ltr; unicode-bidi: isolate; text-align: start; display: block; }

/* حقل لم يُملأ بعد — مرئي عمدًا حتى لا يُنشر بالغلط */
.pending {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: #fef3c7;
  color: #92400e;
  border: 1px dashed #d97706;
  border-radius: 6px;
  padding: .05rem .5rem;
  font-size: .82rem;
  font-weight: 600;
  direction: rtl;
  unicode-bidi: isolate;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.site-footer { background: var(--ink); color: #fff; padding-block: clamp(2.75rem, 6vw, 4rem) 2rem; }
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: 2.5rem;
  padding-block-end: 2.5rem;
  border-block-end: 1px solid rgba(255, 255, 255, .12);
}
.footer__about { max-width: 25rem; }
.footer__about .brand__mark { color: var(--brand-3); }
.footer__about .brand__kind { color: var(--muted-on-dark); }
.footer__about p { color: var(--muted-on-dark); font-size: .93rem; line-height: 1.85; margin-block-start: 1.1rem; }
.footer__col h4 { font-size: .84rem; letter-spacing: .08em; color: var(--sand); margin-block-end: 1rem; }
.footer__col li { margin-block-end: .6rem; }
.footer__col a, .footer__col span { color: var(--muted-on-dark); font-size: .93rem; transition: color .18s var(--ease); }
.footer__col a:hover { color: #fff; }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block-start: 1.75rem;
  font-size: .85rem;
  color: var(--muted-on-dark);
}
.footer__legal-ids { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.social { display: flex; gap: .6rem; }
.social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, .16);
  color: var(--muted-on-dark);
  transition: all .18s var(--ease);
}
.social a:hover { color: #fff; border-color: var(--brand-3); background: rgba(23, 168, 124, .14); }
.social svg { width: 17px; height: 17px; }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 900px) {
  .product  { grid-template-columns: 1fr; }
  .product__visual { order: -1; max-width: 20rem; margin-inline: auto; }
  .contact  { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav { display: none; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__legal { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .btn:hover, .card:hover, .product:hover .doc-mock { transform: none; }
}

@media print {
  .site-header, .hero::before, .hero::after, .btn { display: none; }
  body { background: #fff; color: #000; }
}

/* ═══════════════════ الصفحات النظامية ═══════════════════ */
.legal-head {
  background: var(--ink);
  color: #fff;
  padding-block: clamp(2.75rem, 7vw, 4.5rem) clamp(2.25rem, 5vw, 3.25rem);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.legal-head::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(60% 100% at 22% 0%, rgba(23, 168, 124, .26), transparent 66%);
}
.legal-head h1 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); letter-spacing: -.02em; margin-block-end: .75rem; }
.legal-head p { color: var(--muted-on-dark); max-width: 40rem; line-height: 1.85; }

/* تبويب بين الصفحات النظامية */
.legal-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-block-start: 1.75rem; }
.legal-tabs a {
  padding: .5rem 1.1rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--muted-on-dark);
  border: 1px solid rgba(255, 255, 255, .18);
  transition: all .18s var(--ease);
}
.legal-tabs a:hover { color: #fff; border-color: rgba(255, 255, 255, .4); }
.legal-tabs a[aria-current="page"] {
  color: var(--ink);
  background: var(--sand-2);
  border-color: var(--sand-2);
}

.legal { padding-block: clamp(2.5rem, 6vw, 4rem); }
.legal__body { max-width: 44rem; }
.legal__body h2 {
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  margin-block: 2.5rem .85rem;
  padding-block-end: .6rem;
  border-block-end: 1px solid var(--line);
}
.legal__body h2:first-of-type { margin-block-start: 0; }
.legal__body p { margin-block-end: 1.1rem; line-height: 1.95; }
.legal__body ul { margin-block-end: 1.1rem; display: grid; gap: .6rem; }
.legal__body li { display: flex; gap: .7rem; align-items: flex-start; line-height: 1.9; }
.legal__body li::before {
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-2);
  margin-block-start: .78rem;
}
.legal__body a { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal__body a:hover { color: var(--brand-2); }
.legal__body strong, .legal__body b { font-weight: 700; }

/* من نحن — يتكرّر في كل صفحة نظامية عمدًا */
.legal__who {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-inline-start: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  margin-block-end: 2.25rem;
  font-size: .96rem;
  line-height: 1.9;
}
.legal__who dl { display: grid; gap: .45rem; margin: 0; }
.legal__who div { display: flex; gap: .6rem; flex-wrap: wrap; }
.legal__who dt { color: var(--muted); min-width: 7.5rem; }
.legal__who dd { margin: 0; font-weight: 600; }

.legal__updated {
  margin-block-start: 2.75rem;
  padding-block-start: 1.25rem;
  border-block-start: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}
