/* =============================================================================
   MAZAYA — STYLES
   Dark industrial luxury · molten-orange accent · steel-silver highlights
   -----------------------------------------------------------------------------
   Contents
     01 Tokens            08 Marquee            15 Terms
     02 Base              09 About              16 FAQ
     03 Layout & type     10 Partnership        17 Contact & form
     04 Buttons           11 Products & modal   18 Footer
     05 Preloader/cursor  12 Why Mazaya         19 Utilities
     06 Header & menu     13 Process timeline   20 Responsive
     07 Hero              14 Global reach       21 Reduced motion
   RTL: the site uses CSS logical properties (inline-start/end) so Arabic mirrors
   automatically. Only a few [dir=rtl] overrides are needed (search "rtl").
   ========================================================================== */

/* ── 01 TOKENS ────────────────────────────────────────────────────────────── */
:root {
  --bg: #0a0a0b;
  --bg-2: #0e0f11;
  --surface: #141518;
  --surface-2: #1b1d21;
  --line: rgba(255, 255, 255, .09);
  --line-2: rgba(255, 255, 255, .17);

  --text: #eceae6;
  --muted: #a3a6ae;          /* 7.6:1 on --bg */
  --steel: #c9ced6;
  --steel-2: #8d96a5;

  --accent: #ff6b1a;         /* molten orange */
  --accent-2: #ff9a3d;
  --accent-3: #ffd08a;
  --copper: #c9773f;
  --grad-molten: linear-gradient(120deg, #ff5a0f 0%, #ff9a3d 58%, #ffd08a 100%);
  --grad-steel: linear-gradient(180deg, #f1f3f6 0%, #9aa3b1 55%, #5b626e 100%);

  --ff-display: 'Sora', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --gutter: clamp(20px, 4.2vw, 64px);
  --max: 1280px;
  --sec-y: clamp(88px, 11vw, 168px);
  --header-h: 76px;
  --r: 18px;
  --r-lg: 30px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.7, 0, .2, 1);
}
html[data-lang="ar"] {
  --ff-display: 'Cairo', 'IBM Plex Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
  --ff-body: 'IBM Plex Sans Arabic', 'Cairo', 'Segoe UI', Tahoma, sans-serif;
  font-size: 106%;                       /* Arabic reads visually smaller */
}

/* ── 02 BASE ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; background: var(--bg); }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--ff-body); font-size: clamp(1rem, .96rem + .18vw, 1.12rem); line-height: 1.7;
  overflow-x: clip; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--accent); color: #120a04; }

/* Lenis (smooth scroll) recommended rules */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* Accessible focus ring (keyboard only) */
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: fixed; inset-inline-start: 16px; top: -80px; z-index: 10001;
  background: var(--accent); color: #120a04; padding: .8rem 1.2rem; border-radius: 10px; font-weight: 600;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 16px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* subtle film grain (static, cheap) */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9000; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Icons */
.i { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.i--flip { transition: translate .35s var(--ease); }
[dir="rtl"] .i--flip { scale: -1 1; }
a:hover > .i--flip, button:hover > .i--flip, .btn:hover .i--flip { translate: 4px 0; }
[dir="rtl"] a:hover > .i--flip, [dir="rtl"] button:hover > .i--flip, [dir="rtl"] .btn:hover .i--flip { translate: -4px 0; }

/* Placeholder highlight — remove by setting highlightPlaceholders:false in content.js */
.ph { color: #ffe27a; background: rgba(255, 214, 10, .10); outline: 1px dashed rgba(255, 214, 10, .55); outline-offset: 1px; border-radius: 4px; padding: 0 .2em; -webkit-text-fill-color: #ffe27a; }
.no-ph .ph { all: unset; }

/* ── 03 LAYOUT & TYPE ─────────────────────────────────────────────────────── */
.container { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.section { position: relative; padding-block: var(--sec-y); }
.section--alt { background: var(--bg-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .85rem;
  font: 600 .78rem/1 var(--ff-display); letter-spacing: .2em; text-transform: uppercase; color: var(--accent-2);
}
.eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--grad-molten); }
html[data-lang="ar"] .eyebrow { letter-spacing: 0; font-size: .95rem; font-weight: 700; }

.display {
  font-family: var(--ff-display); font-weight: 700; line-height: 1.04; letter-spacing: -.035em;
  font-size: clamp(2.3rem, 1.2rem + 4.4vw, 5.2rem); text-wrap: balance;
}
.display--xl { font-size: clamp(2.5rem, .8rem + 5.3vw, 6.2rem); line-height: 1; letter-spacing: -.045em; }
html[data-lang="ar"] .display { line-height: 1.3; letter-spacing: 0; font-weight: 800; }
html[data-lang="ar"] .display--xl { line-height: 1.22; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1rem + .35vw, 1.3rem); max-width: 56ch; text-wrap: pretty; }

.accent, em.accent { font-style: normal; background: var(--grad-molten); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.is-split .accent { background: none; }
.is-split .accent .wi { background: var(--grad-molten); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }

/* word-mask reveal (text is split into words by JS — never letters, to keep Arabic joined) */
.w { display: inline-block; overflow: hidden; vertical-align: top; padding-block: .14em .2em; margin-block: -.14em -.2em; }
.wi { display: inline-block; will-change: transform; }
.line { display: block; }

.section-head { display: grid; gap: 1.4rem; margin-bottom: clamp(40px, 6vw, 84px); }
.section-head .lead { margin-top: .2rem; }
.section-head .display { font-size: clamp(2.2rem, 1.1rem + 3.9vw, 4.7rem); }
.section-head--split { grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.7fr 1fr; align-items: end; gap: 4rem; }
  .section-head--split .lead { justify-self: end; }
}

/* ── 04 BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .75rem;
  min-height: 54px; padding: 0 1.75rem; border-radius: 999px; border: 1px solid transparent;
  font: 600 .95rem/1 var(--ff-display); white-space: nowrap; overflow: hidden; isolation: isolate;
  transition: color .3s, border-color .3s, background-color .3s, box-shadow .3s;
}
html[data-lang="ar"] .btn { font-size: 1.02rem; }
.btn::before { content: ''; position: absolute; inset: 0; z-index: -1; transform: translateX(-110%) skewX(-18deg); transition: transform .6s var(--ease); }
.btn:hover::before { transform: translateX(110%) skewX(-18deg); }
.btn--primary { background: var(--grad-molten); color: #150b04; box-shadow: 0 12px 44px -12px rgba(255, 107, 26, .7); }
.btn--primary::before { background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent); }
.btn--primary:hover { box-shadow: 0 16px 56px -10px rgba(255, 107, 26, .9); }
.btn--ghost { border-color: var(--line-2); color: var(--text); background: rgba(255, 255, 255, .03); }
.btn--ghost::before { background: rgba(255, 107, 26, .18); }
.btn--ghost:hover { border-color: var(--accent); }
.btn--wa { background: #1fa855; color: #04150a; box-shadow: 0 12px 40px -14px rgba(31, 168, 85, .8); }
.btn--wa::before { background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent); }
.btn--sm { min-height: 44px; padding: 0 1.25rem; font-size: .86rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; pointer-events: none; }
.link-arrow { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--accent-2); }

/* ── 05 PRELOADER · CURTAIN · CURSOR ──────────────────────────────────────── */
#preloader { position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center; }
.pre__panel { position: absolute; inset-inline: 0; height: 50.5%; background: #070708; }
.pre__panel--top { top: 0; } .pre__panel--bottom { bottom: 0; }
.pre__center { position: relative; display: grid; justify-items: center; gap: 1.6rem; }
.pre__mark { width: clamp(72px, 14vw, 108px); height: auto; overflow: visible; }
.pre__stroke { fill: none; stroke: url(#gMolten); stroke-width: 1.4; stroke-linejoin: round; }
.pre__fill { fill: url(#gMolten); opacity: 0; }
.pre__word { font: 700 clamp(1.5rem, 4vw, 2.2rem)/1 var(--ff-display); letter-spacing: .5em; padding-inline-start: .5em; display: flex; }
html[data-lang="ar"] .pre__word { letter-spacing: 0; padding: 0; font-size: clamp(2rem, 6vw, 3rem); }
.pre__word span { display: inline-block; }
.pre__bar { width: min(240px, 60vw); height: 2px; background: rgba(255, 255, 255, .1); overflow: hidden; border-radius: 2px; }
.pre__bar i { display: block; height: 100%; background: var(--grad-molten); transform: scaleX(0); transform-origin: left; }
[dir="rtl"] .pre__bar i { transform-origin: right; }
.no-js #preloader { display: none; }

#curtain { position: fixed; inset: 0; z-index: 9990; background: #070708; display: grid; place-items: center; visibility: hidden; pointer-events: none; }
#curtain svg { width: 64px; height: 64px; opacity: .9; }

#cursor { position: fixed; inset: 0; z-index: 9999; pointer-events: none; display: none; direction: ltr; }
.cursor__pos { position: absolute; left: 0; top: 0; }
.cursor__dot { position: absolute; left: 0; top: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); transform: translate(-50%, -50%); }
.cursor__ring {
  position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .45);
  transform: translate(-50%, -50%); display: grid; place-items: center;
  transition: width .35s var(--ease), height .35s var(--ease), background-color .3s, border-color .3s;
}
.cursor__label { font: 700 .72rem/1 var(--ff-display); letter-spacing: .12em; text-transform: uppercase; color: #150b04; opacity: 0; transition: opacity .2s; }
html[data-lang="ar"] .cursor__label { letter-spacing: 0; font-size: .85rem; }
#cursor.is-link .cursor__ring { width: 68px; height: 68px; background: rgba(255, 107, 26, .14); border-color: var(--accent); }
#cursor.is-view .cursor__ring { width: 96px; height: 96px; background: var(--accent-2); border-color: var(--accent-2); }
#cursor.is-view .cursor__label { opacity: 1; }
#cursor.is-view .cursor__dot, #cursor.is-text .cursor__dot { opacity: 0; }
#cursor.is-text .cursor__ring { width: 4px; height: 26px; border-radius: 3px; background: var(--accent); border-color: var(--accent); }
#cursor.is-hidden { opacity: 0; }
@media (hover: hover) and (pointer: fine) {
  html.has-cursor, html.has-cursor a, html.has-cursor button, html.has-cursor [data-cursor], html.has-cursor label, html.has-cursor select { cursor: none; }
  html.has-cursor input, html.has-cursor textarea { cursor: none; }
  html.has-cursor #cursor { display: block; }
}

/* ── 06 HEADER & MENU ─────────────────────────────────────────────────────── */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100; height: var(--header-h);
  transition: background-color .4s, backdrop-filter .4s, border-color .4s, transform .55s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { background: rgba(10, 10, 11, .72); backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%); border-bottom-color: var(--line); }
.site-header.is-hidden { transform: translateY(-101%); }
.header__in { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.progress { position: absolute; inset-inline: 0; bottom: -1px; height: 2px; background: var(--grad-molten); transform: scaleX(0); transform-origin: left; }
[dir="rtl"] .progress { transform-origin: right; }

.logo { display: inline-flex; align-items: center; gap: .8rem; flex: none; }
.logo__mark { width: 38px; height: 38px; }
.logo__text { display: grid; gap: .28rem; line-height: 1; }
.logo__name { font: 700 1.18rem/1 var(--ff-display); letter-spacing: .3em; padding-inline-end: 0; }
.logo__sub { font: 500 .6rem/1 var(--ff-display); letter-spacing: .26em; text-transform: uppercase; color: var(--steel-2); }
html[data-lang="ar"] .logo__name { letter-spacing: 0; font-size: 1.7rem; line-height: 1.05; }
html[data-lang="ar"] .logo__sub { letter-spacing: 0; font-size: .82rem; text-transform: none; }

.nav { display: none; align-items: center; gap: clamp(.9rem, 1.6vw, 1.9rem); }
.nav a { position: relative; font: 500 .82rem/1 var(--ff-display); letter-spacing: .04em; color: var(--steel); padding-block: .6rem; transition: color .25s; }
html[data-lang="ar"] .nav a { font-size: .98rem; letter-spacing: 0; font-weight: 600; }
.nav a::after { content: ''; position: absolute; inset-inline: 0; bottom: .1rem; height: 1px; background: var(--grad-molten); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
[dir="rtl"] .nav a::after { transform-origin: right; }
.nav a:hover, .nav a.is-active { color: #fff; }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: .8rem; }
.header__cta { display: none; }

.lang { display: inline-flex; padding: 3px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03); }
.lang button { min-width: 44px; height: 34px; padding: 0 .7rem; border-radius: 999px; font: 600 .78rem/1 var(--ff-display); color: var(--steel); transition: background-color .3s, color .3s; }
.lang button[lang="ar"] { font-family: 'Cairo', 'IBM Plex Sans Arabic', var(--ff-display); font-size: .92rem; }
.lang button[aria-pressed="true"] { background: var(--grad-molten); color: #150b04; }
.lang button:not([aria-pressed="true"]):hover { color: #fff; }

.burger { width: 46px; height: 46px; display: grid; place-content: center; gap: 6px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03); }
.burger i { display: block; width: 20px; height: 1.6px; background: #fff; transition: transform .4s var(--ease), opacity .3s; }
.burger[aria-expanded="true"] i:first-child { transform: translateY(3.8px) rotate(45deg); }
.burger[aria-expanded="true"] i:last-child { transform: translateY(-3.8px) rotate(-45deg); }

.mnav {
  position: fixed; inset: 0; z-index: 99; background: radial-gradient(120% 80% at 100% 0, rgba(255, 90, 15, .18), transparent 60%), #08080a;
  padding: calc(var(--header-h) + 24px) var(--gutter) 32px; display: flex; flex-direction: column; justify-content: space-between; gap: 2rem;
  visibility: hidden; clip-path: inset(0 0 100% 0); transition: clip-path .75s var(--ease-io), visibility 0s .75s;
}
.mnav.is-open { visibility: visible; clip-path: inset(0); transition-delay: 0s; }
.mnav__links { display: grid; gap: .2rem; }
.mnav__links a { display: flex; align-items: baseline; gap: 1rem; padding-block: .55rem; font: 700 clamp(1.7rem, 7vw, 2.6rem)/1.15 var(--ff-display); letter-spacing: -.02em; border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(24px); transition: opacity .5s, transform .6s var(--ease); transition-delay: 0s; }
html[data-lang="ar"] .mnav__links a { letter-spacing: 0; font-size: clamp(1.7rem, 7vw, 2.4rem); }
.mnav__links a small { font: 500 .78rem var(--ff-display); color: var(--accent-2); letter-spacing: .1em; }
.mnav.is-open .mnav__links a { opacity: 1; transform: none; transition-delay: calc(.25s + var(--i) * .05s); }
.mnav__foot { display: grid; gap: 1.2rem; }
.mnav__foot .btn { width: 100%; }

@media (min-width: 1140px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
  .burger, .mnav { display: none; }
}

/* ── 07 HERO ──────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; isolation: isolate; padding-top: calc(var(--header-h) + 40px); background: #060607; }
.hero__bg { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(70% 55% at 72% 105%, rgba(255, 90, 15, .55), rgba(255, 90, 15, 0) 70%),
    radial-gradient(45% 40% at 18% 100%, rgba(201, 119, 63, .28), rgba(201, 119, 63, 0) 70%),
    radial-gradient(90% 70% at 50% 0, #15161a, #060607 70%); }
.hero__word { position: absolute; inset-inline: 0; top: 14%; z-index: 1; text-align: center; font: 800 clamp(9rem, 32vw, 30rem)/.8 var(--ff-display); letter-spacing: -.06em; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .06); user-select: none; pointer-events: none; white-space: nowrap; }
html[data-lang="ar"] .hero__word { letter-spacing: 0; -webkit-text-stroke: 0; color: rgba(255, 255, 255, .025); line-height: 1; }
.hero__skyline { position: absolute; inset-inline: 0; bottom: 0; z-index: 2; height: min(62vh, 640px); pointer-events: none; }
.hero__skyline svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__skyline .layer { will-change: transform; }
#sparks { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; pointer-events: none; }
.hero__fade { position: absolute; inset-inline: 0; bottom: 0; height: 28%; z-index: 4; background: linear-gradient(180deg, transparent, var(--bg)); pointer-events: none; }

.hero__content { position: relative; z-index: 6; padding-bottom: clamp(110px, 15vh, 150px); }
.hero__eyebrow { margin-bottom: 1.6rem; }
.hero__title { max-width: none; }
html[data-lang="ar"] .hero__title { max-width: 22ch; }
.hero__title .line + .line { margin-top: .04em; }
.hero__sub { margin-top: clamp(1.4rem, 3vw, 2.2rem); max-width: 54ch; color: var(--steel); font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem); }
.hero__cta { margin-top: clamp(1.8rem, 4vw, 2.8rem); display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__foot { position: absolute; z-index: 6; inset-inline: 0; bottom: 0; border-top: 1px solid var(--line); background: rgba(8, 8, 9, .55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hero__facts { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero__fact { display: flex; align-items: center; gap: .9rem; padding: 1.1rem 1.4rem; font: 500 .84rem/1.35 var(--ff-display); color: var(--steel); }
html[data-lang="ar"] .hero__fact { font-size: .98rem; }
.hero__fact + .hero__fact { border-inline-start: 1px solid var(--line); }
.hero__fact .i { color: var(--accent-2); width: 1.5em; height: 1.5em; }
.scroll-ind { position: absolute; z-index: 6; inset-inline-end: var(--gutter); bottom: 6.6rem; display: grid; justify-items: center; gap: .8rem; font: 600 .68rem/1 var(--ff-display); letter-spacing: .24em; text-transform: uppercase; color: var(--steel-2); }
html[data-lang="ar"] .scroll-ind { letter-spacing: 0; font-size: .85rem; }
.scroll-ind__line { width: 1px; height: 64px; background: var(--line-2); position: relative; overflow: hidden; }
.scroll-ind__line::after { content: ''; position: absolute; inset-inline: 0; top: 0; height: 40%; background: var(--grad-molten); animation: scrollLine 2.2s var(--ease-io) infinite; }
@keyframes scrollLine { 0% { transform: translateY(-100%); } 100% { transform: translateY(260%); } }

/* ── 08 MARQUEE ───────────────────────────────────────────────────────────── */
.marquee { position: relative; background: var(--bg); border-block: 1px solid var(--line); padding-block: clamp(.6rem, 1.6vw, 1.2rem); overflow: hidden; direction: ltr; }
.marquee__row { display: flex; width: max-content; animation: marquee 60s linear infinite; will-change: transform; }
.marquee__row--rev { animation-direction: reverse; animation-duration: 70s; }
.marquee:hover .marquee__row { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; gap: clamp(1.4rem, 3vw, 2.6rem); padding-inline-end: clamp(1.4rem, 3vw, 2.6rem); font: 700 clamp(1.7rem, 3.4vw, 3.2rem)/1.25 var(--ff-display); letter-spacing: -.02em; text-transform: uppercase; white-space: nowrap; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .32); }
.marquee__row--rev .marquee__item { color: rgba(255, 255, 255, .88); -webkit-text-stroke: 0; }
.marquee__item::after { content: ''; width: 12px; height: 12px; background: var(--grad-molten); transform: rotate(45deg); flex: none; }
html[data-lang="ar"] .marquee__item { -webkit-text-stroke: 0; color: rgba(255, 255, 255, .5); text-transform: none; letter-spacing: 0; font-weight: 800; }
html[data-lang="ar"] .marquee__row--rev .marquee__item { color: #fff; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── 09 ABOUT ─────────────────────────────────────────────────────────────── */
.about { border-radius: 44px 44px 0 0; margin-top: -1px; background: var(--bg); }
.about__grid { display: grid; gap: clamp(2rem, 5vw, 5rem); }
.about__title { margin-top: 1.4rem; }
.about__text { display: grid; gap: 1.3rem; color: var(--steel); font-size: clamp(1.05rem, 1rem + .3vw, 1.25rem); max-width: 60ch; }
.about__text p:last-child { color: var(--muted); font-size: .95em; padding-inline-start: 1.1rem; border-inline-start: 2px solid var(--accent); }
.about__license { margin-top: 1.6rem; font: 500 .85rem var(--ff-display); color: var(--steel-2); }
.about__mission { position: relative; margin-top: clamp(2.5rem, 6vw, 5rem); padding: clamp(1.8rem, 4vw, 3.2rem); border-radius: var(--r-lg); border: 1px solid var(--line); overflow: hidden;
  background: radial-gradient(80% 140% at 0 0, rgba(255, 107, 26, .16), transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01)); }
.about__mission .eyebrow { margin-bottom: 1.2rem; }
.about__mission > div:first-child > p:not(.eyebrow) { font: 600 clamp(1.3rem, 1rem + 1.6vw, 2.3rem)/1.3 var(--ff-display); letter-spacing: -.02em; max-width: 34ch; text-wrap: balance; }
html[data-lang="ar"] .about__mission > div:first-child > p:not(.eyebrow) { letter-spacing: 0; line-height: 1.6; font-weight: 700; }
.values { margin-top: 1.6rem; display: grid; gap: 1rem; grid-template-columns: 1fr; }
.value { padding: 1.3rem 1.4rem; border-radius: var(--r); border: 1px solid var(--line); background: rgba(255, 255, 255, .02); }
.value h3 { font: 700 1.05rem var(--ff-display); color: #fff; margin-bottom: .35rem; }
.value p { color: var(--muted); font-size: .96rem; line-height: 1.55; }
.stats { margin-top: clamp(2.5rem, 6vw, 5rem); display: grid; grid-template-columns: repeat(2, 1fr); border-block: 1px solid var(--line); }
.stat { padding: clamp(1.4rem, 3vw, 2.4rem) clamp(.8rem, 2vw, 1.8rem); }
.stat + .stat { border-inline-start: 1px solid var(--line); }
.stat:nth-child(3) { border-inline-start: 0; }
.stat:nth-child(n+3) { border-top: 1px solid var(--line); }
.stat__num { font: 700 clamp(2.6rem, 2rem + 3.4vw, 5rem)/1 var(--ff-display); letter-spacing: -.04em; background: var(--grad-steel); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; font-variant-numeric: tabular-nums; }
.stat__num .ph { padding: 0 .12em; outline-offset: 4px; }
.stat__label { margin-top: .7rem; color: var(--muted); font-size: .92rem; line-height: 1.4; max-width: 22ch; }
@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1.1fr 1fr; align-items: start; }
  .about__mission { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center; }
  .values { grid-template-columns: 1fr; margin-top: 0; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stat:nth-child(3) { border-inline-start: 1px solid var(--line); }
  .stat:nth-child(n+3) { border-top: 0; }
}

/* ── 10 PARTNERSHIP ───────────────────────────────────────────────────────── */
.prestige { position: relative; border-radius: var(--r-lg); padding: clamp(1.4rem, 4vw, 4rem); overflow: hidden; isolation: isolate;
  background: radial-gradient(60% 80% at 100% 0, rgba(255, 107, 26, .17), transparent 60%), radial-gradient(50% 60% at 0 100%, rgba(141, 150, 165, .12), transparent 60%), linear-gradient(180deg, #131417, #0d0e10);
  border: 1px solid var(--line-2); }
.prestige::before { content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(255, 154, 61, .7), transparent 30%, transparent 70%, rgba(201, 206, 214, .5)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.prestige__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); }
.prestige__title { margin: 1.3rem 0 1.4rem; font-size: clamp(2.1rem, 1.2rem + 3.4vw, 4.2rem); }
.prestige__body { display: grid; gap: 1rem; color: var(--steel); max-width: 56ch; }

.parties { margin-top: 2rem; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: .8rem; }
.party { min-height: 96px; padding: 1rem; border-radius: var(--r); border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03); display: grid; place-items: center; text-align: center; gap: .3rem; }
.party--ph { border-style: dashed; color: #ffe27a; font: 500 .82rem/1.3 var(--ff-display); }
.party img { max-height: 56px; width: auto; object-fit: contain; }
.party small { color: var(--muted); font-size: .72rem; line-height: 1.3; }
.party .logo__mark { width: 34px; height: 34px; }
.party__name { font: 700 .9rem var(--ff-display); letter-spacing: .04em; }
.link-chip { display: grid; justify-items: center; gap: .4rem; color: var(--accent-2); font: 600 .62rem/1.2 var(--ff-display); letter-spacing: .14em; text-transform: uppercase; max-width: 8.5rem; text-align: center; }
html[data-lang="ar"] .link-chip { letter-spacing: 0; font-size: .78rem; }
.link-chip__line { position: relative; width: clamp(40px, 8vw, 90px); height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-3)); border-radius: 2px; }
.link-chip__line::after { content: ''; position: absolute; top: 50%; width: 8px; height: 8px; margin-top: -4px; border-radius: 50%; background: #fff; box-shadow: 0 0 14px 3px var(--accent); animation: linkDot 2.4s var(--ease-io) infinite; }
@keyframes linkDot { 0% { inset-inline-start: 0; } 100% { inset-inline-start: calc(100% - 8px); } }

.split-lists { margin-top: 2rem; display: grid; gap: 1rem; }
.mini-list { padding: 1.3rem 1.4rem; border-radius: var(--r); border: 1px solid var(--line); background: rgba(255, 255, 255, .025); }
.mini-list h3 { font: 700 .82rem var(--ff-display); letter-spacing: .12em; text-transform: uppercase; color: var(--accent-2); margin-bottom: .9rem; }
html[data-lang="ar"] .mini-list h3 { letter-spacing: 0; font-size: 1rem; }
.mini-list li { display: flex; gap: .7rem; align-items: flex-start; padding-block: .32rem; color: var(--steel); font-size: .96rem; line-height: 1.45; }
.mini-list li .i { width: 1.1em; height: 1.1em; margin-top: .22em; color: var(--accent-2); }
.mini-list--muted li .i { color: var(--steel-2); }
.prestige__note { margin-top: 1.4rem; font-size: .9rem; color: var(--muted); padding-inline-start: 1rem; border-inline-start: 2px solid var(--steel-2); }

.doc-wrap { display: grid; align-content: center; gap: 1.4rem; perspective: 1200px; }
.doc { position: relative; transform-style: preserve-3d; transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform .5s var(--ease); will-change: transform; }
.doc.is-tilting { transition: transform .12s linear; }
.doc__tag { justify-self: start; font: 600 .68rem/1 var(--ff-display); letter-spacing: .14em; text-transform: uppercase; color: var(--steel-2); border: 1px solid var(--line-2); border-radius: 999px; padding: .3rem .7rem; }
html[data-lang="ar"] .doc__tag { letter-spacing: 0; font-size: .78rem; justify-self: end; }

/* Certificate mock: matches the real agency certificate's layout (ornate frame,
   bilingual heading, wax seal) with all body text blurred — the actual letter
   is never published on the site; see js/content.js → partnership.doc. */
.doc__paper { position: relative; background: linear-gradient(150deg, #cfa15a, #8a6a2f); border-radius: 14px; padding: 9px; aspect-ratio: 210 / 297; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .8); overflow: hidden; }
.doc__paper::after { content: ''; position: absolute; inset: 0; z-index: 3; background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, .5) 50%, transparent 58%); transform: translateX(var(--sheen, -120%)); pointer-events: none; }
.doc__paper > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.doc__sheet { position: relative; height: 100%; background: linear-gradient(160deg, #f6f3ea, #e6e1d2); color: #241f14; border-radius: 8px; box-shadow: 0 0 0 1px rgba(138, 106, 47, .5) inset, 0 0 0 5px #f6f3ea inset, 0 0 0 6px rgba(138, 106, 47, .55) inset; padding: clamp(1.3rem, 3.4vw, 2rem) clamp(1.1rem, 2.6vw, 1.6rem); display: flex; flex-direction: column; gap: .85rem; overflow: hidden; }
.doc__corner { position: absolute; width: 34px; height: 34px; opacity: .55; color: #8a6a2f; }
.doc__corner--tl { top: 10px; inset-inline-start: 10px; }
.doc__corner--tr { top: 10px; inset-inline-end: 10px; transform: scaleX(-1); }
.doc__corner--bl { bottom: 10px; inset-inline-start: 10px; transform: scaleY(-1); }
.doc__corner--br { bottom: 10px; inset-inline-end: 10px; transform: scale(-1, -1); }
.doc__logo { height: 40px; width: auto; margin-inline: auto; display: block; filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .12)); }
.doc__rule { display: flex; align-items: center; gap: .6rem; margin-block: .1rem; }
.doc__rule::before, .doc__rule::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, #8a6a2f, transparent); }
.doc__rule i { width: 6px; height: 6px; background: #8a6a2f; transform: rotate(45deg); flex: none; }
.doc__titles { display: flex; justify-content: space-between; align-items: baseline; gap: .8rem; }
.doc__title-en { font: 700 clamp(1.1rem, .9rem + .8vw, 1.5rem)/1 'Georgia', 'Times New Roman', serif; font-style: italic; color: #3a2f14; }
.doc__title-ar { font: 800 clamp(1.15rem, .9rem + .9vw, 1.6rem)/1 'Cairo', var(--ff-display); color: #3a2f14; }
.doc__para { font-size: .74rem; line-height: 1.65; color: #2a2517; filter: blur(2.6px); -webkit-filter: blur(2.6px); user-select: none; pointer-events: none; }
.doc__para--ar { text-align: end; font-family: 'Cairo', var(--ff-display); font-weight: 600; }
.doc__para--en { text-align: start; }
.doc__highlight { font: 700 .82rem/1.4 var(--ff-display); color: #a1481c; }
.doc__highlight--ar { text-align: end; font-family: 'Cairo', var(--ff-display); }
.doc__foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.doc__fields { display: grid; gap: .4rem; font-size: .68rem; flex: 1; }
.doc__fields div { display: flex; justify-content: space-between; gap: .8rem; border-bottom: 1px solid rgba(138, 106, 47, .35); padding-bottom: .3rem; }
.doc__fields dt { color: #6b6046; } .doc__fields dd { font-weight: 700; text-align: end; color: #241f14; }
.doc__wax { width: 64px; height: 64px; flex: none; filter: drop-shadow(0 4px 5px rgba(0, 0, 0, .35)); }
.doc__wax-text { font: 700 11px Georgia, serif; letter-spacing: .06em; fill: #e6d2a0; }
.doc__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.doc__pending { font-size: .82rem; color: var(--muted); }
@media (max-width: 420px) { .doc__titles { flex-direction: column; gap: .1rem; } .doc__foot { flex-direction: column; align-items: stretch; } .doc__wax { align-self: center; } }
@media (min-width: 1000px) {
  .prestige__grid { grid-template-columns: 1.25fr .8fr; align-items: center; }
  .split-lists { grid-template-columns: 1fr 1fr; }
}

/* ── 11 PRODUCTS & MODAL ──────────────────────────────────────────────────── */
.products { background: var(--bg-2); }
.pgrid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); grid-template-columns: 1fr; perspective: 1400px; }
.pcard { position: relative; border-radius: var(--r-lg); border: 1px solid var(--line); background: linear-gradient(180deg, #17181c, #0f1012); overflow: hidden;
  transform-style: preserve-3d; transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform .5s var(--ease), border-color .4s; will-change: transform; display: flex; flex-direction: column; }
.pcard.is-tilting { transition: transform .12s linear, border-color .4s; }
.pcard::before { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0; transition: opacity .4s; background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 130, 40, .2), transparent 60%); }
.pcard:hover { border-color: rgba(255, 154, 61, .55); }
.pcard:hover::before { opacity: 1; }
.pcard__art { position: relative; aspect-ratio: 3 / 2; display: grid; place-items: center; overflow: hidden; background: radial-gradient(60% 70% at 50% 100%, rgba(255, 107, 26, .24), transparent 70%), radial-gradient(90% 90% at 50% 0, #202227, #121316); transform: translateZ(0); }
.pcard__art svg, .pcard__art img { width: 78%; height: 78%; object-fit: contain; transition: transform .9s var(--ease); transform: translateZ(50px); filter: drop-shadow(0 22px 26px rgba(0, 0, 0, .55)); }
.pcard__art img { width: 100%; height: 100%; object-fit: cover; filter: none; }
.pcard:hover .pcard__art svg { transform: translateZ(50px) scale(1.09) rotate(-1.5deg); }
.pcard:hover .pcard__art img { transform: scale(1.08); }
.pcard__idx { position: absolute; top: 1rem; inset-inline-start: 1.2rem; z-index: 2; font: 700 .78rem var(--ff-display); letter-spacing: .14em; color: var(--steel-2); }
.pcard__body { position: relative; z-index: 2; padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: .8rem; flex: 1; transform: translateZ(20px); }
.pcard__name { font: 700 clamp(1.25rem, 1.1rem + .6vw, 1.6rem)/1.15 var(--ff-display); letter-spacing: -.02em; }
html[data-lang="ar"] .pcard__name { letter-spacing: 0; line-height: 1.35; }
.pcard__tag { color: var(--muted); font-size: .96rem; line-height: 1.5; }
.chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chip { padding: .32rem .65rem; border-radius: 999px; border: 1px solid var(--line-2); font: 500 .72rem/1.2 var(--ff-display); color: var(--steel); background: rgba(255, 255, 255, .03); white-space: nowrap; }
.chip--acc { border-color: rgba(255, 154, 61, .5); color: var(--accent-3); }
.pcard__more { margin-top: auto; padding-top: .6rem; display: inline-flex; align-items: center; gap: .6rem; font: 600 .88rem var(--ff-display); color: var(--accent-2); align-self: flex-start; }
html[data-lang="ar"] .pcard__more { font-size: 1rem; }
.pcard__more::after { content: ''; position: absolute; inset: 0; z-index: 3; border-radius: inherit; }
.pcard--cta { justify-content: center; padding: clamp(1.6rem, 3vw, 2.6rem); gap: 1rem; background: radial-gradient(90% 100% at 100% 0, rgba(255, 107, 26, .25), transparent 60%), linear-gradient(180deg, #1a1512, #100e0d); border-color: rgba(255, 154, 61, .3); }
.pcard--cta h3 { font: 700 clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem)/1.1 var(--ff-display); letter-spacing: -.03em; }
html[data-lang="ar"] .pcard--cta h3 { letter-spacing: 0; line-height: 1.4; }
.pcard--cta p { color: var(--steel); max-width: 44ch; }
.pcard--cta .btn { align-self: flex-start; margin-top: .6rem; }
.products__note { margin-top: 1.6rem; display: flex; gap: .7rem; align-items: center; color: var(--muted); font-size: .9rem; }
.products__note .i { color: var(--accent-2); flex: none; }
@media (min-width: 700px) { .pgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) {
  .pgrid { grid-template-columns: repeat(3, 1fr); }
  .pcard--cta { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; column-gap: 3rem; align-items: center; }
  .pcard--cta h3, .pcard--cta p { grid-column: 1; }
  .pcard--cta .btn { grid-column: 2; grid-row: 1 / span 2; align-self: center; margin: 0; }
}

/* Modal (native <dialog>) */
.modal { padding: 0; border: 1px solid var(--line-2); border-radius: var(--r-lg); background: #111215; color: var(--text); width: min(1040px, calc(100% - 24px)); max-height: min(88vh, 900px); overflow: hidden; box-shadow: 0 60px 160px -30px rgba(0, 0, 0, .9); }
.modal::backdrop { background: rgba(4, 4, 5, .78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.modal[open] { animation: modalIn .55s var(--ease); }
.modal[open]::backdrop { animation: fadeIn .4s; }
@keyframes modalIn { from { opacity: 0; transform: translateY(30px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal__inner { position: relative; max-height: min(88vh, 900px); overflow: auto; display: grid; }
.modal__close { position: absolute; top: 14px; inset-inline-end: 14px; z-index: 5; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(10, 10, 11, .7); display: grid; place-items: center; transition: background-color .3s, transform .4s var(--ease); }
.modal__close:hover { background: var(--accent); color: #150b04; transform: rotate(90deg); }
.pm__art { min-height: 220px; display: grid; place-items: center; background: radial-gradient(60% 70% at 50% 100%, rgba(255, 107, 26, .28), transparent 70%), radial-gradient(90% 90% at 50% 0, #23252a, #121316); padding: 2rem; }
.pm__art svg { width: min(360px, 80%); height: auto; filter: drop-shadow(0 26px 30px rgba(0, 0, 0, .6)); }
.pm__art img { width: 100%; height: 100%; object-fit: cover; }
.pm__body { padding: clamp(1.4rem, 3.4vw, 2.6rem); display: grid; gap: 1.3rem; align-content: start; }
.pm__body h2 { font: 700 clamp(1.8rem, 1.3rem + 2vw, 2.8rem)/1.05 var(--ff-display); letter-spacing: -.035em; padding-inline-end: 3rem; }
html[data-lang="ar"] .pm__body h2 { letter-spacing: 0; line-height: 1.35; }
.pm__desc { color: var(--steel); }
.pm__grp h3 { font: 700 .74rem var(--ff-display); letter-spacing: .16em; text-transform: uppercase; color: var(--accent-2); margin-bottom: .6rem; }
html[data-lang="ar"] .pm__grp h3 { letter-spacing: 0; font-size: .95rem; }
.pm__list li { position: relative; padding-inline-start: 1.2rem; padding-block: .18rem; color: var(--steel); font-size: .96rem; }
.pm__list li::before { content: ''; position: absolute; inset-inline-start: 0; top: .85em; width: 6px; height: 6px; background: var(--accent); transform: rotate(45deg); }
.pm__note { font-size: .82rem; color: var(--muted); }
@media (min-width: 860px) { .modal__inner { grid-template-columns: .85fr 1.15fr; } .pm__art { min-height: 100%; } }

/* Letter preview modal */
.lm { padding: clamp(1rem, 3vw, 2rem); display: grid; gap: 1rem; justify-items: center; }
.lm img { max-height: 76vh; width: auto; border-radius: 8px; }
.lm iframe { width: min(860px, 100%); height: 76vh; border: 0; border-radius: 8px; background: #fff; }

/* ── 12 WHY MAZAYA ────────────────────────────────────────────────────────── */
.why__grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; grid-template-columns: 1fr; }
.wcard { position: relative; padding: clamp(1.6rem, 3vw, 2.6rem); background: var(--bg); overflow: hidden; display: grid; gap: 1rem; align-content: start; min-height: 260px; transition: background-color .5s; }
.wcard::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .4s; background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 107, 26, .17), transparent 60%); }
.wcard:hover::before { opacity: 1; }
.wcard__top { display: flex; justify-content: space-between; align-items: center; }
.wcard__icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; border: 1px solid var(--line-2); background: linear-gradient(160deg, rgba(255, 154, 61, .16), rgba(255, 255, 255, .02)); color: var(--accent-2); transition: transform .5s var(--ease), background-color .3s; }
.wcard:hover .wcard__icon { transform: translateY(-4px) rotate(-6deg); }
.wcard__icon .i { width: 26px; height: 26px; }
.wcard__n { font: 700 .82rem var(--ff-display); letter-spacing: .14em; color: var(--steel-2); }
.wcard h3 { font: 700 clamp(1.2rem, 1.05rem + .6vw, 1.55rem)/1.2 var(--ff-display); letter-spacing: -.02em; }
html[data-lang="ar"] .wcard h3 { letter-spacing: 0; line-height: 1.4; }
.wcard p { color: var(--muted); max-width: 40ch; }
@media (min-width: 700px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .why__grid { grid-template-columns: repeat(3, 1fr); } }

/* ── 13 PROCESS TIMELINE ──────────────────────────────────────────────────── */
.process { background: var(--bg-2); overflow: clip; }
.timeline { position: relative; }
.timeline__list { display: grid; gap: clamp(1.4rem, 3vw, 2.6rem); }
.timeline__rail { position: absolute; inset-block: 0; inset-inline-start: 25px; width: 2px; background: var(--line-2); border-radius: 2px; }
.timeline__fill { position: absolute; inset: 0; background: var(--grad-molten); transform: scaleY(0); transform-origin: top; border-radius: 2px; box-shadow: 0 0 20px 2px rgba(255, 107, 26, .6); }
.tl { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 1.2rem; align-items: start; }
.tl__node { position: relative; z-index: 2; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-2); border: 1px solid var(--line-2); font: 700 .9rem var(--ff-display); color: var(--steel-2); transition: background-color .5s, color .5s, border-color .5s, box-shadow .5s, transform .6s var(--ease); }
.tl.is-active .tl__node { background: var(--grad-molten); border-color: transparent; color: #150b04; box-shadow: 0 0 0 8px rgba(255, 107, 26, .14), 0 0 34px rgba(255, 107, 26, .55); transform: scale(1.08); }
.tl__card { padding: 1.5rem 1.6rem; border-radius: var(--r); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .012)); transition: border-color .5s, background-color .5s; }
.tl.is-active .tl__card { border-color: rgba(255, 154, 61, .4); }
.tl__card h3 { font: 700 clamp(1.25rem, 1.1rem + .6vw, 1.7rem)/1.15 var(--ff-display); letter-spacing: -.02em; margin-bottom: .5rem; }
html[data-lang="ar"] .tl__card h3 { letter-spacing: 0; }
.tl__card p { color: var(--muted); max-width: 46ch; }
@media (min-width: 900px) {
  .timeline__rail { inset-inline-start: 50%; margin-inline-start: -1px; }
  .tl { grid-template-columns: 1fr 64px 1fr; gap: 0 2rem; align-items: center; }
  .tl__node { grid-column: 2; grid-row: 1; justify-self: center; width: 64px; height: 64px; }
  .tl__card { grid-row: 1; }
  .tl:nth-child(odd) .tl__card { grid-column: 1; text-align: end; }
  .tl:nth-child(odd) .tl__card p { margin-inline-start: auto; }
  .tl:nth-child(even) .tl__card { grid-column: 3; }
}

/* ── 14 GLOBAL REACH ──────────────────────────────────────────────────────── */
.reach__grid { display: grid; gap: 1.2rem; }
.map { position: relative; direction: ltr; width: 100%; border-radius: var(--r-lg); border: 1px solid var(--line); overflow: hidden; touch-action: pan-y;
  background: radial-gradient(70% 90% at 50% 40%, rgba(255, 107, 26, .08), transparent 70%), linear-gradient(180deg, #131417, #0b0c0e); }
.map canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.map__glow { -webkit-mask-image: radial-gradient(circle 150px at var(--mx, -400px) var(--my, -400px), #000 0%, transparent 100%); mask-image: radial-gradient(circle 150px at var(--mx, -400px) var(--my, -400px), #000 0%, transparent 100%); }
.map__routes { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.route { fill: none; stroke: url(#gRoute); stroke-width: 1.5; stroke-linecap: round; opacity: .55; transition: opacity .4s, stroke-width .4s; }
.route--halo { stroke-width: 7; opacity: .1; }
.route.is-dim { opacity: .18; }
.route.is-active { opacity: 1; stroke-width: 2.4; }
.route--halo.is-active { opacity: .28; stroke-width: 12; }
.comet { fill: #ffe0a8; }
.comet--halo { fill: rgba(255, 154, 61, .35); }
.marker { position: absolute; width: 34px; height: 34px; margin: -17px 0 0 -17px; border-radius: 50%; display: grid; place-items: center; z-index: 3; }
.marker__core { width: 11px; height: 11px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 3px rgba(255, 154, 61, .25), 0 0 16px 2px rgba(255, 107, 26, .8); transition: transform .35s var(--ease), background-color .3s; }
.marker::after { content: ''; position: absolute; inset: 6px; border-radius: 50%; border: 1px solid var(--accent-2); animation: ping 2.6s var(--ease) infinite; animation-delay: var(--d, 0s); opacity: 0; }
@keyframes ping { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(2.4); opacity: 0; } }
.marker__label { position: absolute; bottom: calc(100% - 4px); left: 50%; transform: translate(-50%, 6px); white-space: nowrap; padding: .35rem .7rem; border-radius: 8px; background: rgba(10, 10, 11, .92); border: 1px solid var(--line-2); font: 600 .72rem/1.2 var(--ff-display); opacity: 0; pointer-events: none; transition: opacity .3s, transform .4s var(--ease); }
[dir="rtl"] .marker__label { direction: rtl; font-family: var(--ff-body); font-size: .85rem; }
.marker:hover .marker__label, .marker:focus-visible .marker__label, .marker.is-active .marker__label { opacity: 1; transform: translate(-50%, 0); }
.marker:hover .marker__core, .marker.is-active .marker__core { transform: scale(1.35); background: #fff; }
.hub { position: absolute; z-index: 4; width: 0; height: 0; }
.hub__dot { position: absolute; width: 16px; height: 16px; margin: -8px 0 0 -8px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255, 255, 255, .18), 0 0 26px 6px rgba(255, 154, 61, .9); }
.hub__dot::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid #fff; animation: ping 2.4s var(--ease) infinite; }
.hub__label { position: absolute; top: -12px; left: 18px; transform: translateY(-100%); padding: .3rem .6rem; border-radius: 8px; background: rgba(10, 10, 11, .78); border: 1px solid var(--line-2); white-space: nowrap; font: 700 .72rem/1.25 var(--ff-display); letter-spacing: .06em; text-transform: uppercase; }
.hub__label small { display: block; font-weight: 500; color: var(--steel-2); letter-spacing: .02em; text-transform: none; }
[dir="rtl"] .hub__label { direction: rtl; font-family: var(--ff-body); text-transform: none; letter-spacing: 0; font-size: .85rem; }

.rlist { display: grid; gap: .7rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); }
.reach__actions { display: flex; justify-content: flex-end; min-height: 54px; }
.rbtn { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border-radius: var(--r); border: 1px solid var(--line); background: rgba(255, 255, 255, .02); text-align: start; transition: border-color .3s, background-color .3s, transform .4s var(--ease); }
.rbtn:hover, .rbtn.is-active { border-color: rgba(255, 154, 61, .55); background: rgba(255, 107, 26, .08); }
.rbtn__n { font: 700 .72rem var(--ff-display); letter-spacing: .12em; color: var(--steel-2); }
.rbtn__t { display: grid; gap: .1rem; }
.rbtn__t b { font: 600 1rem/1.25 var(--ff-display); }
.rbtn__t span { color: var(--muted); font-size: .84rem; line-height: 1.4; }
.rbtn .i { color: var(--accent-2); opacity: 0; transition: opacity .3s; }
.rbtn:hover .i, .rbtn.is-active .i { opacity: 1; }
.reach__cta { margin-top: .8rem; }

/* ── 15 TRADE TERMS ───────────────────────────────────────────────────────── */
.terms__block-title { font: 700 .82rem var(--ff-display); letter-spacing: .16em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 1.4rem; display: flex; align-items: center; gap: .8rem; }
html[data-lang="ar"] .terms__block-title { letter-spacing: 0; font-size: 1.05rem; }
.terms__block-title::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.incos { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.inco { position: relative; padding: clamp(1.4rem, 3vw, 2.2rem); border-radius: var(--r-lg); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01)); overflow: hidden; display: grid; gap: 1rem; align-content: start; transition: border-color .4s; }
.inco:hover { border-color: rgba(255, 154, 61, .5); }
.inco__code { font: 800 clamp(3rem, 2rem + 4vw, 5.4rem)/.9 var(--ff-display); letter-spacing: -.05em; color: transparent; -webkit-text-stroke: 1.5px var(--accent-2); }
.inco__name { font: 700 1.15rem var(--ff-display); }
html[data-lang="ar"] .inco__name { line-height: 1.4; }
.inco__text { color: var(--muted); font-size: .96rem; }
.ibar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; height: 10px; margin-top: .4rem; }
.ibar i { border-radius: 3px; background: rgba(255, 255, 255, .09); transform: scaleX(0); transform-origin: left; }
[dir="rtl"] .ibar i { transform-origin: right; }
.ibar i.on { background: var(--grad-molten); box-shadow: 0 0 14px rgba(255, 107, 26, .5); }
.ibar.is-in i { transform: scaleX(1); transition: transform .8s var(--ease); transition-delay: calc(var(--i) * .1s); }
.irows { display: grid; gap: .1rem; }
.irow { display: flex; align-items: center; gap: .7rem; padding-block: .42rem; border-bottom: 1px solid var(--line); font-size: .86rem; color: var(--muted); }
.irow:last-child { border-bottom: 0; }
.irow i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .18); flex: none; }
.irow.on { color: #fff; } .irow.on i { background: var(--accent-2); box-shadow: 0 0 10px var(--accent); }
.ilegend { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 1rem; color: var(--muted); font-size: .84rem; }
.ilegend span { display: inline-flex; align-items: center; gap: .55rem; }
.ilegend i { width: 22px; height: 8px; border-radius: 3px; background: rgba(255, 255, 255, .12); }
.ilegend i.on { background: var(--grad-molten); }
.terms__two { margin-top: clamp(3rem, 6vw, 5.5rem); display: grid; gap: clamp(2rem, 4vw, 3.6rem); }
.pay { display: grid; gap: .9rem; }
.pay__item { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; padding: 1.3rem 1.4rem; border-radius: var(--r); border: 1px solid var(--line); background: rgba(255, 255, 255, .025); transition: border-color .3s, transform .4s var(--ease); }
.pay__item:hover { border-color: rgba(255, 154, 61, .5); transform: translateX(6px); }
[dir="rtl"] .pay__item:hover { transform: translateX(-6px); }
.pay__ico { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(160deg, rgba(255, 154, 61, .18), rgba(255, 255, 255, .02)); color: var(--accent-2); border: 1px solid var(--line-2); }
.pay__item h3 { font: 700 1.05rem/1.3 var(--ff-display); margin-bottom: .25rem; }
html[data-lang="ar"] .pay__item h3 { line-height: 1.5; }
.pay__item p { color: var(--muted); font-size: .94rem; line-height: 1.55; }
.docs { display: grid; gap: .2rem; }
.doci { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; padding: 1rem .2rem; border-bottom: 1px solid var(--line); }
.doci__tick { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--accent-2); margin-top: .1rem; }
.doci__tick svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 24; stroke-dashoffset: 24; transition: stroke-dashoffset .7s var(--ease) .2s; }
.doci.is-in .doci__tick { background: rgba(255, 107, 26, .12); border-color: rgba(255, 154, 61, .6); }
.doci.is-in .doci__tick svg { stroke-dashoffset: 0; }
.doci h3 { font: 600 1.02rem/1.3 var(--ff-display); }
html[data-lang="ar"] .doci h3 { line-height: 1.5; }
.doci p { color: var(--muted); font-size: .9rem; line-height: 1.5; }
@media (min-width: 860px) { .incos { grid-template-columns: repeat(3, 1fr); } .terms__two { grid-template-columns: 1fr 1fr; } }

/* ── 16 FAQ ───────────────────────────────────────────────────────────────── */
.faq { background: var(--bg-2); }
.faq__grid { display: grid; gap: clamp(2rem, 5vw, 5rem); }
.faq__list { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem .2rem; text-align: start; font: 600 clamp(1.05rem, 1rem + .4vw, 1.3rem)/1.35 var(--ff-display); transition: color .3s; }
html[data-lang="ar"] .qa__q { line-height: 1.6; font-weight: 700; }
.qa__q:hover { color: var(--accent-3); }
.qa__ico { flex: none; position: relative; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-2); transition: background-color .3s, border-color .3s, transform .5s var(--ease); }
.qa__ico::before, .qa__ico::after { content: ''; position: absolute; left: 50%; top: 50%; width: 14px; height: 1.6px; background: currentColor; transform: translate(-50%, -50%); transition: transform .4s var(--ease); }
.qa__ico::after { transform: translate(-50%, -50%) rotate(90deg); }
.qa.is-open .qa__ico { background: var(--accent); border-color: var(--accent); color: #150b04; transform: rotate(180deg); }
.qa.is-open .qa__ico::after { transform: translate(-50%, -50%) rotate(0); }
.qa__a { display: grid; grid-template-rows: 0fr; visibility: hidden; transition: grid-template-rows .5s var(--ease), visibility 0s .5s; }
.qa.is-open .qa__a { grid-template-rows: 1fr; visibility: visible; transition-delay: 0s; }
.qa__a > div { overflow: hidden; }
.qa__a p { padding: 0 .2rem 1.6rem; color: var(--muted); max-width: 64ch; }
@media (min-width: 1000px) { .faq__grid { grid-template-columns: .8fr 1.4fr; align-items: start; } .faq__head { position: sticky; top: calc(var(--header-h) + 30px); } }

/* ── 17 CONTACT & FORM ────────────────────────────────────────────────────── */
.contact { position: relative; overflow: hidden; }
.contact::before { content: ''; position: absolute; inset-inline: 0; top: 0; height: 60%; background: radial-gradient(60% 100% at 80% 0, rgba(255, 107, 26, .14), transparent 70%); pointer-events: none; }
.contact__grid { position: relative; display: grid; gap: clamp(2rem, 5vw, 4.5rem); }
.contact__title { margin: 1.3rem 0 1.2rem; }
.ccards { margin-top: 2rem; display: grid; gap: .8rem; }
.ccard { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: center; padding: 1.1rem 1.2rem; border-radius: var(--r); border: 1px solid var(--line); background: rgba(255, 255, 255, .025); transition: border-color .3s, transform .4s var(--ease); }
a.ccard:hover { border-color: rgba(255, 154, 61, .55); transform: translateY(-2px); }
.ccard__ico { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; border: 1px solid var(--line-2); background: linear-gradient(160deg, rgba(255, 154, 61, .16), rgba(255, 255, 255, .02)); color: var(--accent-2); }
.ccard small { display: block; font: 600 .68rem/1 var(--ff-display); letter-spacing: .16em; text-transform: uppercase; color: var(--steel-2); margin-bottom: .3rem; }
html[data-lang="ar"] .ccard small { letter-spacing: 0; font-size: .82rem; }
.ccard b { font: 600 1.02rem/1.35 var(--ff-display); overflow-wrap: anywhere; }
.ccard span.sub { display: block; color: var(--muted); font-size: .86rem; margin-top: .2rem; }
.ccard bdi { unicode-bidi: isolate; }
.contact__wa { margin-top: 1.4rem; }
.social { margin-top: 1.4rem; display: flex; gap: .6rem; }
.social a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: background-color .3s, border-color .3s; }
.social a:hover { background: var(--accent); border-color: var(--accent); color: #150b04; }

.form { position: relative; padding: clamp(1.4rem, 3.4vw, 2.6rem); border-radius: var(--r-lg); border: 1px solid var(--line-2); background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 50px 120px -50px rgba(0, 0, 0, .9); }
.form__title { font: 700 1.3rem var(--ff-display); margin-bottom: 1.5rem; }
.form__grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.field { display: grid; gap: .5rem; align-content: start; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; min-height: 1.2em; font: 600 .8rem/1.2 var(--ff-display); letter-spacing: .04em; color: var(--steel); }
html[data-lang="ar"] .field label { font-size: .95rem; letter-spacing: 0; }
.field label sup { color: var(--accent-2); font-size: 1em; line-height: 0; vertical-align: baseline; margin-inline-start: .15em; }
.field input, .field select, .field textarea { width: 100%; min-height: 54px; padding: .85rem 1rem; border-radius: 12px; border: 1px solid var(--line-2); background: rgba(6, 6, 7, .6); color: var(--text); transition: border-color .25s, box-shadow .25s, background-color .25s; }
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #767a83; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(255, 255, 255, .3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent-2); box-shadow: 0 0 0 4px rgba(255, 107, 26, .18); background: rgba(6, 6, 7, .85); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none' stroke='%23ff9a3d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M1 1l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; padding-inline-end: 2.6rem; }
[dir="rtl"] .field select { background-position: left 1rem center; }
.field select option { background: #17181c; color: var(--text); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #ff6b6b; }
.field__err { color: #ff8f8f; font-size: .8rem; min-height: 0; }
.qty { display: grid; grid-template-columns: .85fr 1.15fr; gap: .6rem; }
.field .qty select { padding-inline-start: .8rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__foot { margin-top: 1.5rem; display: grid; gap: 1rem; }
.form__priv { color: var(--muted); font-size: .84rem; }
.form__status { min-height: 1.5em; font-size: .95rem; padding: 0; border-radius: 12px; }
.form__status.is-ok, .form__status.is-err, .form__status.is-info { padding: .9rem 1.1rem; }
.form__status.is-ok { background: rgba(31, 168, 85, .14); border: 1px solid rgba(31, 168, 85, .5); color: #9df0bd; }
.form__status.is-err { background: rgba(255, 107, 107, .12); border: 1px solid rgba(255, 107, 107, .5); color: #ffb3b3; }
.form__status.is-info { background: rgba(255, 154, 61, .1); border: 1px solid rgba(255, 154, 61, .4); color: var(--accent-3); }
@media (min-width: 620px) { .form__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .contact__grid { grid-template-columns: .9fr 1.15fr; align-items: start; } }

/* ── 18 FOOTER ────────────────────────────────────────────────────────────── */
.footer { position: relative; overflow: hidden; border-top: 1px solid var(--line); background: #070708; padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer__grid { display: grid; gap: 2.4rem; grid-template-columns: 1fr; }
.footer__blurb { color: var(--muted); max-width: 40ch; margin-top: 1.2rem; font-size: .95rem; }
.footer h3 { font: 700 .74rem var(--ff-display); letter-spacing: .18em; text-transform: uppercase; color: var(--steel-2); margin-bottom: 1.1rem; }
html[data-lang="ar"] .footer h3 { letter-spacing: 0; font-size: .95rem; }
.footer li + li { margin-top: .55rem; }
.footer li a { color: var(--steel); transition: color .25s; font-size: .96rem; overflow-wrap: anywhere; }
.footer li a:hover { color: var(--accent-2); }
.footer__lang { margin-top: 1.4rem; }
.footer__disc { margin-top: clamp(2.4rem, 5vw, 4rem); padding-top: 1.6rem; border-top: 1px solid var(--line); color: #8c8f97; font-size: .8rem; line-height: 1.7; max-width: 100ch; }
.footer__bar { display: flex; flex-wrap: wrap; gap: .8rem 2rem; justify-content: space-between; align-items: center; padding-block: 1.4rem; color: #8c8f97; font-size: .82rem; }
.footer__bar a { display: inline-flex; align-items: center; gap: .5rem; color: var(--steel); }
.footer__bar a:hover { color: var(--accent-2); }
.footer__word { margin-top: 1rem; text-align: center; font: 800 clamp(5rem, 24vw, 22rem)/.8 var(--ff-display); letter-spacing: -.05em; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .11); user-select: none; white-space: nowrap; overflow: hidden; padding-bottom: .06em; background: linear-gradient(180deg, rgba(255, 107, 26, .25), transparent 70%); -webkit-background-clip: text; background-clip: text; }
html[data-lang="ar"] .footer__word { letter-spacing: 0; -webkit-text-stroke: 0; color: rgba(255, 255, 255, .05); line-height: 1.1; }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }

/* ── 19 UTILITIES ─────────────────────────────────────────────────────────── */
.noscript { position: fixed; inset-inline: 0; bottom: 0; padding: 1rem var(--gutter); background: #ffe27a; color: #111; z-index: 10002; text-align: center; }
[data-tilt] { will-change: transform; }

/* ── 20 RESPONSIVE TWEAKS ─────────────────────────────────────────────────── */
@media (max-width: 899px) {
  .hero__facts { grid-template-columns: 1fr; }
  .hero__fact { padding: .6rem 1rem; }
  .hero__fact + .hero__fact { border-inline-start: 0; border-top: 1px solid var(--line); }
  .hero__content { padding-bottom: 210px; }
  .scroll-ind { display: none; }
  .hero__word { top: 18%; }
  .about { border-radius: 28px 28px 0 0; }
}
@media (max-width: 560px) {
  :root { --header-h: 68px; }
  .logo__sub { display: none; }
  .header__actions .lang { display: none; }     /* language switch lives in the mobile menu */
  .parties { grid-template-columns: 1fr; }
  .link-chip { max-width: none; grid-auto-flow: column; }
  .link-chip__line { width: 2px; height: 34px; background: linear-gradient(180deg, var(--accent), var(--accent-3)); }
  .link-chip__line::after { animation: none; inset-inline-start: -3px; top: 50%; }
  .hero__cta .btn { flex: 1 1 100%; }
  .qty { grid-template-columns: 1fr; }
}
@media (hover: none) { .pcard, .doc { transform: none !important; } }

/* ── 21 REDUCED MOTION ────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .marquee__row { animation: none; }
  .scroll-ind__line::after { animation: none; }
  #preloader { display: none; }
  .ibar i { transform: none; }
  .doci__tick svg { stroke-dashoffset: 0; }
}

/* ── 22 LATE ADDITIONS ────────────────────────────────────────────────────── */
[hidden] { display: none !important; }
html { scrollbar-gutter: stable; }
html.is-locked { overflow: hidden; }
[tabindex="-1"]:focus { outline: none; }
/* product art follows the pointer a little (depth illusion inside the tilting card) */
.pcard { --zoom: 1; }
.pcard:hover { --zoom: 1.09; }
.pcard__art svg, .pcard__art img { transform: translate(calc((var(--px, .5) - .5) * -18px), calc((var(--py, .5) - .5) * -14px)) scale(var(--zoom)); transition: transform .5s var(--ease); }
.pcard__art img { width: 100%; height: 100%; }
.pcard:hover .pcard__art svg, .pcard:hover .pcard__art img { transform: translate(calc((var(--px, .5) - .5) * -18px), calc((var(--py, .5) - .5) * -14px)) scale(var(--zoom)); }

/* ── 23 BAGHLAF LOGO PANEL & "ABOUT BAGHLAF" LINE ────────────────────────── */
.party--logo { background: #fff; border-color: #fff; }
.party--logo img { max-height: 46px; width: auto; max-width: 100%; }
.party--logo small { color: #3a3d44; }
.prestige__about { margin-top: 1.2rem; max-width: 56ch; font-size: .95rem; color: var(--muted); padding-inline-start: 1rem; border-inline-start: 2px solid var(--accent); }
.chip .ph { padding: 0 .1em; }

/* ── 24 PRODUCT FILTER · 3-TILE STATS ────────────────────────────────────── */
.pfilter { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: clamp(1.2rem, 2.4vw, 1.8rem); }
.pchip { padding: .6rem 1.1rem; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03); font: 600 .84rem/1 var(--ff-display); color: var(--steel); transition: background-color .3s, color .3s, border-color .3s; }
html[data-lang="ar"] .pchip { font-size: 1rem; }
.pchip:hover { border-color: var(--accent); color: #fff; }
.pchip.is-on { background: var(--grad-molten); border-color: transparent; color: #150b04; }
.pcard.is-filter-in { animation: filterIn .55s var(--ease) both; }
@keyframes filterIn { from { opacity: 0; translate: 0 22px; } to { opacity: 1; translate: 0 0; } }
.stats { grid-template-columns: 1fr !important; }
.stat { display: flex; align-items: baseline; gap: 1.4rem; border-inline-start: 0 !important; }
.stat + .stat { border-top: 1px solid var(--line) !important; }
.stat__label { margin-top: 0; max-width: none; }
@media (min-width: 700px) {
  .stats { grid-template-columns: repeat(3, 1fr) !important; }
  .stat { display: block; border-top: 0 !important; }
  .stat + .stat { border-inline-start: 1px solid var(--line) !important; }
  .stat__label { margin-top: .7rem; max-width: 28ch; }
}

