/* ─── IMPORTS ────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;1,300;1,400&family=DM+Mono:wght@300;400&family=DM+Sans:wght@200;300;400&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --black:      #0A0908;
  --surface:    #111010;
  --border:     #1E1D1C;
  --muted:      #4A4845;
  --subtle:     #7A7774;
  --text:       #EAE8E3;
  --white:      #F5F3EE;
  --gold:       #C8972A;
  --gold-light: #E8B94A;
  --gold-deep:  #6B4E15;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --max-w: 1200px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --section-py: clamp(5rem, 10vw, 10rem);
}

/* ─── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body[dir="rtl"] { font-family: 'Segoe UI', 'Cairo', var(--font-body); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── LAYOUT ─────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
.label {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--subtle);
}

.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.display em {
  font-style: italic;
  color: var(--gold);
}

/* ─── FADE-UP ANIMATION ──────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ─── NAVBAR ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--black);
  border-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.nav-logo svg { flex-shrink: 0; }
.nav-wordmark {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.9375rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: flex;
}
.nav-wordmark .ya,
.nav-wordmark .br { color: var(--text); }
.nav-wordmark .d   { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7A7774;
  transition: color 0.25s ease;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.lang-toggle {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--subtle);
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lang-toggle:hover { border-color: var(--muted); color: var(--text); }

.nav-mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-mobile-btn span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ─── MOBILE NAV ─────────────────────────────────────────────────────────── */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-drawer.open {
  opacity: 1;
  pointer-events: all;
}
.nav-drawer a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text);
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--muted); }

/* ─── SECTION HEADER ─────────────────────────────────────────────────────── */
.section-header {
  margin-bottom: 4rem;
}
.section-header .label { margin-bottom: 1rem; }
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.1;
}
.section-header h2 em { font-style: italic; color: var(--gold); }

/* ─── THIN RULE ──────────────────────────────────────────────────────────── */
.rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  border: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 10rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 20% 50%, rgba(200,151,42,0.04) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(42,95,232,0.025) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Giant ghost mark – the YADBAR triangle in the background */
.hero-ghost {
  position: absolute;
  right: -6vw;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(340px, 48vw, 680px);
  height: auto;
  opacity: 0.028;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Thin gold hairline across the top */
.hero-topline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.35;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-inline: var(--gutter);
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}
.hero-label {
  margin-bottom: 0;
}

.hero-heading {
  font-size: clamp(4rem, 12vw, 8.5rem);
  margin-bottom: 2.5rem;
  max-width: 13ch;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  color: var(--subtle);
  font-weight: 200;
  max-width: 38ch;
  margin-bottom: 3.5rem;
  line-height: 1.85;
  letter-spacing: 0.01em;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Bottom meta row */
.hero-meta {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  padding-inline: var(--gutter);
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--muted);
}
.hero-scroll .label { color: inherit; }
.scroll-line {
  width: 48px;
  height: 1px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: scroll-anim 2.4s ease infinite;
}
@keyframes scroll-anim {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}
.hero-coords {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PHILOSOPHY
═══════════════════════════════════════════════════════════════════════════ */
.philosophy {
  padding-block: clamp(6rem, 14vw, 13rem);
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.philosophy::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(200,151,42,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.philosophy-inner {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}

/* Large decorative Arabic numeral watermark */
.philosophy-inner::before {
  content: 'يدبر';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 18rem);
  font-style: italic;
  color: var(--text);
  opacity: 0.018;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.philosophy-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
  line-height: 1.6;
  color: var(--text);
}

.philosophy-quote .arabic {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  color: var(--gold);
  display: block;
  margin-bottom: 2rem;
  font-style: italic;
  letter-spacing: 0.04em;
}

.philosophy-quote .line {
  display: block;
  color: var(--subtle);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-top: 1.25rem;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PORTFOLIO SECTION
═══════════════════════════════════════════════════════════════════════════ */
.portfolio-section {
  padding-block: var(--section-py);
  background: var(--surface);
  position: relative;
}
.portfolio-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.company-card {
  background: var(--surface);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.company-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.company-card:hover { background: #141313; }
.company-card:hover::before { opacity: 1; }

.card-accent-blue::before  { background: #2A5FE8; }
.card-accent-gold::before  { background: var(--gold); }
.card-accent-muted::before { background: var(--muted); }

.card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
}
.status-dot.active { background: #22C55E; }

.card-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
}
.card-name em { font-style: italic; }

.card-desc {
  font-size: 0.9375rem;
  color: var(--subtle);
  font-weight: 200;
  line-height: 1.75;
  flex: 1;
}

.card-sub {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.card-sub strong {
  display: block;
  color: var(--subtle);
  margin-top: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOQSTEN SPOTLIGHT
═══════════════════════════════════════════════════════════════════════════ */
.moqsten-section {
  padding-block: var(--section-py);
  background: #060B1A;
  position: relative;
  overflow: hidden;
}
.moqsten-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(42,95,232,0.25);
}
.moqsten-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 70% 50%, rgba(42,95,232,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.moqsten-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.moqsten-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.moqsten-logo-wrap svg { width: 64px; height: auto; }

.moqsten-brand {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #3A6FFF;
}

.moqsten-content h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.12;
  margin-bottom: 1.5rem;
}
.moqsten-content h2 em { font-style: italic; color: var(--gold); }

.moqsten-content p {
  font-size: 1rem;
  color: var(--subtle);
  font-weight: 200;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 44ch;
}

/* ═══════════════════════════════════════════════════════════════════════════
   VALUES
═══════════════════════════════════════════════════════════════════════════ */
.values-section {
  padding-block: var(--section-py);
  background: var(--black);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}

.value-item {
  background: var(--black);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  transition: color 0.3s ease;
}
.value-item:hover .value-num { color: var(--gold); }

.value-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.value-title .arabic {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-size: 1.125rem;
}

.value-body {
  font-size: 0.9375rem;
  color: var(--subtle);
  font-weight: 200;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT STRIP
═══════════════════════════════════════════════════════════════════════════ */
.contact-strip {
  padding-block: var(--section-py);
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.contact-strip-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}

.contact-strip h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 20ch;
  line-height: 1.15;
}
.contact-strip h2 em { font-style: italic; color: var(--gold); }

.contact-strip-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.25rem;
}
.contact-strip-info a {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--subtle);
  transition: color 0.2s ease;
}
.contact-strip-info a:hover { color: var(--gold); }
.contact-strip-info .location {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════════ */
footer {
  padding-block: 3rem;
  border-top: 1px solid var(--border);
  background: var(--black);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.footer-name {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-name .wordmark {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.875rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: flex;
}
.footer-name .wordmark .d { color: var(--gold); }
.footer-name .arabic-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-right .label { color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════════════════════════ */
.page-hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border);
}
.page-hero .label { margin-bottom: 1.5rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.08;
  max-width: 18ch;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  margin-top: 2rem;
  font-size: 1.0625rem;
  color: var(--subtle);
  font-weight: 200;
  max-width: 48ch;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════════════════ */
.story-section {
  padding-block: var(--section-py);
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.story-sidebar {
  position: sticky;
  top: 8rem;
}
.story-sidebar .display {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.story-body p {
  font-size: 1.0625rem;
  color: var(--subtle);
  font-weight: 200;
  line-height: 1.9;
  margin-bottom: 1.75rem;
}
.story-body p:last-child { margin-bottom: 0; }
.story-body .pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.55;
  padding-left: 1.5rem;
  border-left: 1px solid var(--gold);
  margin-block: 2.5rem;
}
.story-body .pullquote em { font-style: italic; color: var(--gold); }

.vision-section {
  padding-block: var(--section-py);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vision-text {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}
.vision-text .display {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.vision-text p {
  font-size: 1rem;
  color: var(--subtle);
  font-weight: 200;
  line-height: 1.85;
}

.team-section { padding-block: var(--section-py); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.team-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--muted);
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
}
.team-role {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--subtle);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PORTFOLIO PAGE
═══════════════════════════════════════════════════════════════════════════ */
.venture-section {
  padding-block: var(--section-py);
  border-bottom: 1px solid var(--border);
}
.venture-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.venture-meta { display: flex; flex-direction: column; gap: 0.75rem; }
.venture-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}
.venture-name em { font-style: italic; color: var(--gold); }
.venture-desc {
  font-size: 1.0625rem;
  color: var(--subtle);
  font-weight: 200;
  line-height: 1.8;
  max-width: 56ch;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-item {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.75rem;
}
.feature-item .label { margin-bottom: 0.75rem; }
.feature-item p {
  font-size: 0.9375rem;
  color: var(--subtle);
  font-weight: 200;
  line-height: 1.7;
}

.moqsten-case {
  padding-block: var(--section-py);
  background: #060B1A;
  border-top: 1px solid rgba(42,95,232,0.2);
  border-bottom: 1px solid rgba(42,95,232,0.2);
}
.moqsten-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(42,95,232,0.15);
  border: 1px solid rgba(42,95,232,0.15);
  margin-top: 3rem;
}
.stat-item {
  background: #060B1A;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: #3A6FFF;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.future-section {
  padding-block: var(--section-py);
  background: var(--surface);
}
.future-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.future-item {
  background: var(--surface);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.future-item .label { color: var(--muted); }
.future-item h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.75rem;
}
.future-item h3 em { font-style: italic; color: var(--gold); }
.future-item p {
  font-size: 0.9375rem;
  color: var(--subtle);
  font-weight: 200;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════════════════ */
.contact-section {
  padding-block: var(--section-py);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}
.contact-info h2 em { font-style: italic; color: var(--gold); }
.contact-info p {
  font-size: 1rem;
  color: var(--subtle);
  font-weight: 200;
  line-height: 1.8;
}

.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-child { border-top: 1px solid var(--border); }
.contact-detail .label { margin-bottom: 0.25rem; }
.contact-detail a, .contact-detail span {
  font-size: 1rem;
  color: var(--text);
  font-weight: 200;
  transition: color 0.2s ease;
}
.contact-detail a:hover { color: var(--gold); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.875rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.2s ease, background 0.2s ease;
  margin-top: 0.5rem;
  width: fit-content;
}
.whatsapp-btn:hover { border-color: #25D366; color: #25D366; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  width: 100%;
  transition: border-color 0.2s ease;
  outline: none;
  resize: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--muted); }
.form-field textarea { height: 160px; }

/* ═══════════════════════════════════════════════════════════════════════════
   RTL / ARABIC
═══════════════════════════════════════════════════════════════════════════ */
[data-lang="ar"] .hero-heading,
[data-lang="ar"] h1,
[data-lang="ar"] h2,
[data-lang="ar"] h3,
[data-lang="ar"] .nav-links a,
[data-lang="ar"] .label {
  letter-spacing: 0;
}

[data-lang="ar"] .nav-wordmark {
  letter-spacing: 0.2em;
}

/* hide/show language content — only target elements with ONE lang attr, not both */
[data-lang="en"] [data-ar]:not([data-en]),
[data-lang="ar"] [data-en]:not([data-ar]) { display: none !important; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .moqsten-inner { grid-template-columns: 1fr; gap: 3rem; }
  .story-inner   { grid-template-columns: 1fr; gap: 3rem; }
  .story-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
  .nav-drawer { display: flex; }

  .company-grid  { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .feature-list  { grid-template-columns: 1fr; }
  .moqsten-stats { grid-template-columns: 1fr; }
  .future-grid   { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .form-row      { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }

  .contact-strip-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-right { text-align: left; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .venture-header { flex-direction: column; }
}
