:root {
  --ink: #071721;
  --ink-2: #0d2430;
  --ink-3: #143743;
  --teal: #4fb3a6;
  --teal-deep: #287f78;
  --gold: #c9a35b;
  --gold-light: #e0c486;
  --paper: #f5f4ef;
  --white: #ffffff;
  --muted: #67767c;
  --line: rgba(7, 23, 33, .14);
  --dark-line: rgba(255, 255, 255, .14);
  --shadow: 0 26px 80px rgba(7, 23, 33, .12);
  --shell: min(1240px, calc(100vw - 64px));
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", "Noto Sans Arabic", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(7, 23, 33, .94);
  box-shadow: 0 10px 35px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(201,163,91,.85);
  transform: rotate(45deg);
}
.brand-mark::after { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(79,179,166,.48); }
.brand-mark span { color: var(--gold-light); font: 700 19px/1 "Manrope", sans-serif; transform: rotate(-45deg); }
.brand-copy { display: grid; line-height: 1; gap: 5px; letter-spacing: .17em; }
.brand-copy strong { font: 700 14px/1 "Manrope", sans-serif; }
.brand-copy small { color: rgba(255,255,255,.58); font: 600 9px/1 "Manrope", sans-serif; letter-spacing: .42em; }
.nav-panel { display: flex; align-items: center; justify-content: flex-end; gap: 34px; flex: 1; }
.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a { position: relative; color: rgba(255,255,255,.75); font-size: 14px; font-weight: 500; transition: color .2s ease; }
.nav-links a::after { content: ""; position: absolute; inset: auto 0 -8px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--white); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.language-toggle {
  min-width: 64px;
  padding: 8px 10px;
  color: rgba(255,255,255,.8);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: "Noto Sans Arabic", "DM Sans", sans-serif;
  font-size: 13px;
}
.menu-toggle { display: none; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 23px;
  border: 1px solid transparent;
  font: 700 13px/1.2 "Manrope", "Noto Sans Arabic", sans-serif;
  letter-spacing: .035em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--gold-light); border-color: var(--gold-light); }
.button-primary:hover { background: #edd49a; border-color: #edd49a; }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.38); }
.button-outline:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.button-small { min-height: 40px; padding: 10px 17px; font-size: 12px; }
.button-link { display: inline-flex; align-items: center; gap: 16px; color: rgba(255,255,255,.82); font-size: 14px; font-weight: 600; }
.button-link i { color: var(--gold-light); font-style: normal; transition: transform .2s ease; }
.button-link:hover i { transform: translateY(4px); }

.hero {
  position: relative;
  min-height: 780px;
  height: min(900px, 100vh);
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center right; opacity: .68; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,23,33,.99) 0%, rgba(7,23,33,.92) 37%, rgba(7,23,33,.45) 68%, rgba(7,23,33,.6) 100%), linear-gradient(0deg, rgba(7,23,33,.82), transparent 44%); }
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to right, black, transparent 76%);
}
.hero-routes { position: absolute; right: -7%; top: 0; width: min(66vw, 900px); height: 100%; opacity: .7; }
.hero-routes svg { width: 100%; height: 100%; }
.hero-routes circle, .hero-routes path { fill: none; stroke: rgba(201,163,91,.26); stroke-width: 1; }
.hero-routes path { stroke: rgba(79,179,166,.42); stroke-dasharray: 8 8; }
.hero-routes .route-node { fill: var(--gold-light); stroke: var(--gold-light); filter: drop-shadow(0 0 9px rgba(224,196,134,.95)); animation: pulse 2.5s ease-in-out infinite; }
.hero-routes .node-b { animation-delay: .8s; }
.hero-routes .node-c { animation-delay: 1.5s; }
@keyframes pulse { 50% { opacity: .45; r: 10px; } }
.hero-content {
  position: relative;
  z-index: 2;
  height: calc(100% - 68px);
  padding-top: var(--header-h);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, .62fr);
  align-items: center;
  gap: 8vw;
}
.hero-copy { max-width: 780px; padding-bottom: 20px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 26px; color: rgba(255,255,255,.65); }
.eyebrow span { width: 36px; height: 1px; background: var(--gold-light); }
.eyebrow b { font: 700 11px/1.4 "Manrope", "Noto Sans Arabic", sans-serif; letter-spacing: .14em; }
.hero h1, .section h2, .contact h2 {
  margin: 0;
  font-family: "Manrope", "Noto Sans Arabic", sans-serif;
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1.02;
}
.hero h1 { max-width: 800px; font-size: clamp(48px, 5.4vw, 82px); }
.hero h1 em, .section h2 em, .contact h2 em {
  color: var(--gold-light);
  font-family: "Playfair Display", "Noto Sans Arabic", serif;
  font-weight: 600;
  letter-spacing: -.025em;
}
.hero-intro { max-width: 680px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.hero-card {
  align-self: end;
  margin-bottom: 76px;
  padding: 28px;
  background: rgba(8,27,37,.78);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
}
.hero-card-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--dark-line); }
.hero-card-top span { color: rgba(255,255,255,.58); font: 700 10px/1 "Manrope", sans-serif; letter-spacing: .18em; }
.hero-card-top i { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 14px var(--teal); }
.hero-card > p { margin: 22px 0 25px; color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.65; }
.platform-flow { display: flex; align-items: center; justify-content: space-between; gap: 8px; color: var(--white); font: 700 11px/1.2 "Manrope", "Noto Sans Arabic", sans-serif; text-transform: uppercase; letter-spacing: .06em; }
.platform-flow b { color: var(--gold); }
.region-bar { position: absolute; z-index: 3; inset: auto 0 0; min-height: 68px; display: flex; align-items: center; background: rgba(7,23,33,.78); border-top: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(12px); }
.region-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.region-inner > span { color: rgba(255,255,255,.55); font-size: 12px; }
.region-note { text-align: right; }
.regions { display: flex; align-items: center; gap: 19px; }
.regions b { font: 700 11px/1 "Manrope", sans-serif; letter-spacing: .15em; }
.regions i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.section { position: relative; padding: 125px 0; }
.kicker { margin: 0 0 18px; color: var(--teal-deep); font: 800 11px/1.4 "Manrope", "Noto Sans Arabic", sans-serif; letter-spacing: .18em; }
.section h2, .contact h2 { font-size: clamp(38px, 4.7vw, 64px); }
.section-lead { font-size: clamp(19px, 1.8vw, 24px); line-height: 1.58; }
.section-marker { padding-top: 3px; }
.section-marker span { color: var(--gold); font: 600 60px/1 "Playfair Display", serif; }
.section-marker p { margin: 13px 0 0; color: var(--muted); font: 700 10px/1 "Manrope", sans-serif; letter-spacing: .17em; }
.about { background: var(--paper); }
.about-layout { display: grid; grid-template-columns: 130px 1fr; gap: 70px; }
.about-main { max-width: 980px; }
.about-main h2 { max-width: 920px; }
.about-main .section-lead { max-width: 860px; margin: 32px 0 38px; color: #31464e; }
.about-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding-top: 34px; border-top: 1px solid var(--line); }
.about-columns p { margin: 0; color: var(--muted); }
.purpose-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 88px; box-shadow: var(--shadow); }
.purpose-card { position: relative; min-height: 390px; padding: 54px; overflow: hidden; }
.purpose-card h3 { max-width: 500px; margin: 56px 0 18px; font: 700 clamp(27px, 2.5vw, 38px)/1.18 "Manrope", "Noto Sans Arabic", sans-serif; letter-spacing: -.035em; }
.purpose-card > p:last-child { max-width: 520px; margin: 0; }
.purpose-icon { position: absolute; top: 45px; right: 48px; color: var(--gold-light); font: 300 40px/1 "Manrope", sans-serif; }
.purpose-dark { color: var(--white); background: var(--ink-2); }
.purpose-dark .kicker { color: var(--gold-light); }
.purpose-dark > p:last-child { color: rgba(255,255,255,.68); }
.purpose-dark::after { content: ""; position: absolute; right: -110px; bottom: -120px; width: 330px; height: 330px; border: 1px solid rgba(79,179,166,.26); border-radius: 50%; box-shadow: 0 0 0 55px rgba(79,179,166,.04), 0 0 0 110px rgba(79,179,166,.025); }
.purpose-light { background: var(--white); }
.purpose-light > p:last-child { color: var(--muted); }

.capabilities { color: var(--white); background: var(--ink); }
.capabilities .kicker { color: var(--gold-light); }
.section-heading { display: grid; grid-template-columns: 1fr .65fr; gap: 80px; align-items: end; margin-bottom: 66px; }
.section-heading > p { max-width: 520px; margin: 0 0 6px; color: rgba(255,255,255,.62); }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--dark-line); border-left: 1px solid var(--dark-line); }
.capability-card { position: relative; min-height: 315px; padding: 30px 27px; border-right: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); transition: background .25s ease, transform .25s ease; }
.capability-card:hover { z-index: 2; background: var(--ink-3); transform: translateY(-5px); }
.capability-card > span { color: rgba(255,255,255,.33); font: 600 11px/1 "Manrope", sans-serif; }
.capability-card > i { position: absolute; top: 25px; right: 25px; color: var(--gold-light); font: 300 27px/1 "Manrope", sans-serif; font-style: normal; }
.capability-card h3 { margin: 94px 0 18px; font: 700 20px/1.25 "Manrope", "Noto Sans Arabic", sans-serif; letter-spacing: -.025em; }
.capability-card p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.65; }

.ecosystem { background: #ebece7; }
.ecosystem-heading > p { color: var(--muted); }
.ecosystem-list { border-top: 1px solid var(--line); }
.ecosystem-row { display: grid; grid-template-columns: 70px 1.05fr 1.2fr 40px; gap: 30px; align-items: center; min-height: 142px; padding: 25px 18px; border-bottom: 1px solid var(--line); transition: background .25s ease, padding .25s ease; }
.ecosystem-row:hover { padding-inline: 28px; background: rgba(255,255,255,.7); }
.eco-number { color: var(--gold); font: 600 20px/1 "Playfair Display", serif; }
.ecosystem-row small { color: var(--teal-deep); font: 700 10px/1.2 "Manrope", "Noto Sans Arabic", sans-serif; letter-spacing: .12em; }
.ecosystem-row h3 { margin: 8px 0 0; font: 700 clamp(20px, 2vw, 28px)/1.2 "Manrope", "Noto Sans Arabic", sans-serif; letter-spacing: -.035em; }
.ecosystem-row p { max-width: 500px; margin: 0; color: var(--muted); font-size: 15px; }
.ecosystem-row > i { color: var(--gold); font-size: 21px; font-style: normal; }

.process { color: var(--white); background: var(--ink-2); overflow: hidden; }
.process::before { content: ""; position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.15) 50%, transparent 50.2%); background-size: 150px 100%; }
.process-layout { position: relative; display: grid; grid-template-columns: .75fr 1.25fr; gap: 10vw; }
.process .kicker { color: var(--gold-light); }
.process-copy { position: sticky; top: 130px; align-self: start; }
.process-copy > p:last-child { max-width: 390px; margin: 30px 0 0; color: rgba(255,255,255,.6); }
.process-steps { margin: 0; padding: 0; list-style: none; counter-reset: none; }
.process-steps li { display: grid; grid-template-columns: 72px 1fr; gap: 25px; min-height: 160px; padding: 30px 0; border-bottom: 1px solid var(--dark-line); }
.process-steps li:first-child { border-top: 1px solid var(--dark-line); }
.process-steps b { color: var(--gold-light); font: 600 28px/1 "Playfair Display", serif; }
.process-steps h3 { margin: 0 0 9px; font: 700 23px/1.2 "Manrope", "Noto Sans Arabic", sans-serif; }
.process-steps p { max-width: 470px; margin: 0; color: rgba(255,255,255,.58); }

.reach { color: var(--white); background: #0a202b; overflow: hidden; }
.reach-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 75px; }
.reach .kicker { color: var(--gold-light); }
.reach-copy > p:nth-of-type(2) { max-width: 480px; margin: 30px 0; color: rgba(255,255,255,.65); }
.hq-card { display: flex; align-items: center; gap: 18px; width: fit-content; margin-top: 38px; padding: 17px 22px; border: 1px solid var(--dark-line); background: rgba(255,255,255,.045); }
.pin { position: relative; width: 16px; height: 16px; border: 2px solid var(--gold-light); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.pin::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--teal); }
.hq-card div { display: grid; gap: 5px; }
.hq-card small { color: rgba(255,255,255,.46); font: 700 9px/1 "Manrope", sans-serif; letter-spacing: .16em; }
.hq-card strong { font-size: 14px; }
.map-panel { padding: 20px; border: 1px solid var(--dark-line); background: radial-gradient(circle at 52% 50%, rgba(79,179,166,.13), transparent 48%), rgba(255,255,255,.025); }
.world-map { width: 100%; }
.world-map .land { fill: rgba(255,255,255,.075); stroke: rgba(255,255,255,.16); stroke-width: 1; }
.route-line { fill: none; stroke: var(--teal); stroke-width: 1.5; stroke-dasharray: 7 7; animation: dash 18s linear infinite; }
.route-delay { animation-delay: -6s; }
.route-delay-two { animation-delay: -11s; }
@keyframes dash { to { stroke-dashoffset: -180; } }
.map-point circle:first-child { fill: rgba(201,163,91,.12); stroke: var(--gold-light); stroke-width: 1; }
.map-point circle:last-child { fill: var(--gold-light); }
.map-point.hq circle:first-child { fill: rgba(79,179,166,.18); stroke: var(--teal); animation: mapPulse 2.6s ease infinite; transform-origin: 488px 241px; }
@keyframes mapPulse { 50% { transform: scale(1.55); opacity: .45; } }
.map-legend { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; padding: 8px 0 15px; }
.map-legend span { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.52); font: 700 10px/1 "Manrope", sans-serif; letter-spacing: .13em; }
.map-legend i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.leadership { background: var(--paper); }
.leadership-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: stretch; }
.leader-visual { position: relative; min-height: 570px; display: flex; align-items: center; justify-content: center; color: var(--white); background: var(--ink); overflow: hidden; }
.leader-monogram { position: relative; z-index: 2; color: var(--gold-light); font: 600 clamp(85px, 12vw, 168px)/1 "Playfair Display", serif; letter-spacing: -.1em; }
.leader-lines { position: absolute; width: 420px; height: 420px; border: 1px solid rgba(201,163,91,.28); border-radius: 50%; box-shadow: 0 0 0 55px rgba(79,179,166,.04), 0 0 0 110px rgba(79,179,166,.025), 0 0 0 165px rgba(201,163,91,.02); }
.leader-visual small { position: absolute; inset: auto 32px 28px; color: rgba(255,255,255,.38); font: 700 9px/1.4 "Manrope", sans-serif; letter-spacing: .14em; }
.leader-copy { align-self: center; padding-block: 25px; }
.leader-copy h2 { font-size: clamp(36px, 4.1vw, 57px); }
.leader-role { margin: 16px 0 34px; color: var(--teal-deep); font-weight: 700; }
.leader-copy .section-lead { max-width: 650px; margin: 0 0 24px; }
.leader-copy > p:not(.kicker):not(.leader-role):not(.section-lead) { max-width: 650px; color: var(--muted); }
.leader-copy blockquote { max-width: 650px; margin: 34px 0 0; padding: 27px 0 0 28px; color: #2b4149; border-top: 1px solid var(--line); border-left: 3px solid var(--gold); font: italic 600 19px/1.55 "Playfair Display", "Noto Sans Arabic", serif; }

.partnerships { background: #e7e9e4; }
.partnership-heading { max-width: 850px; margin-bottom: 60px; }
.partnership-heading > p:last-child { max-width: 700px; margin: 28px 0 0; color: var(--muted); }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.partner-card { min-height: 365px; display: flex; flex-direction: column; padding: 34px; background: var(--white); border-top: 3px solid transparent; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.partner-card:hover { transform: translateY(-7px); border-color: var(--gold); box-shadow: var(--shadow); }
.partner-card > span { color: var(--gold); font: 600 20px/1 "Playfair Display", serif; }
.partner-card h3 { margin: 65px 0 17px; font: 700 24px/1.28 "Manrope", "Noto Sans Arabic", sans-serif; letter-spacing: -.03em; }
.partner-card p { margin: 0; color: var(--muted); font-size: 15px; }
.partner-card a { margin-top: auto; padding-top: 28px; color: var(--teal-deep); font-size: 14px; font-weight: 700; }

.contact { position: relative; padding: 120px 0; color: var(--white); background: var(--ink); overflow: hidden; }
.contact-orbit { position: absolute; left: -200px; bottom: -340px; width: 740px; height: 740px; border: 1px solid rgba(201,163,91,.16); border-radius: 50%; box-shadow: 0 0 0 90px rgba(79,179,166,.025), 0 0 0 180px rgba(201,163,91,.018); }
.contact-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; }
.kicker-light { color: var(--gold-light); }
.contact-copy > p:nth-of-type(2) { max-width: 560px; margin: 28px 0 38px; color: rgba(255,255,255,.62); }
.contact-details { display: grid; gap: 0; border-top: 1px solid var(--dark-line); }
.contact-details > * { display: grid; gap: 7px; padding: 18px 0; border-bottom: 1px solid var(--dark-line); }
.contact-details small { color: rgba(255,255,255,.4); font: 700 9px/1 "Manrope", sans-serif; letter-spacing: .17em; }
.contact-details strong { font-size: 15px; font-weight: 600; }
.contact-details a:hover strong { color: var(--gold-light); }
.contact-form { padding: 42px; color: var(--ink); background: var(--white); box-shadow: 0 32px 90px rgba(0,0,0,.25); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: grid; gap: 9px; margin-bottom: 22px; }
.contact-form label > span { color: #3e5158; font-size: 13px; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 52px; padding: 13px 14px; color: var(--ink); background: #f6f6f3; border: 1px solid #d9ddda; border-radius: 0; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--teal-deep); box-shadow: 0 0 0 3px rgba(40,127,120,.12); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9ba5a7; }
.form-submit { width: 100%; margin-top: 4px; }
.form-note, .form-status { margin: 12px 0 0; color: #7b898d; font-size: 12px; text-align: center; }
.form-status { min-height: 20px; color: var(--teal-deep); font-weight: 700; }

.site-footer { color: rgba(255,255,255,.66); background: #040f15; }
.footer-top { min-height: 150px; display: grid; grid-template-columns: auto 1fr auto; gap: 45px; align-items: center; border-bottom: 1px solid var(--dark-line); }
.footer-top > p { margin: 0; text-align: center; font-size: 13px; }
.footer-email { color: var(--gold-light); font-size: 13px; }
.footer-bottom { min-height: 68px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 25px; align-items: center; font-size: 11px; }
.footer-bottom span:nth-child(2) { color: rgba(255,255,255,.42); text-align: center; }
.footer-bottom a { text-align: right; }
.whatsapp { position: fixed; z-index: 80; right: 24px; bottom: 24px; width: 54px; height: 54px; display: grid; place-items: center; color: var(--white); background: #1f9d78; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; box-shadow: 0 12px 35px rgba(7,23,33,.28); transition: transform .2s ease, background .2s ease; }
.whatsapp:hover { transform: translateY(-3px) scale(1.03); background: #168568; }
.whatsapp svg { width: 27px; height: 27px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

html[dir="rtl"] body { font-family: "Noto Sans Arabic", "DM Sans", sans-serif; }
html[dir="rtl"] .hero h1,
html[dir="rtl"] .section h2,
html[dir="rtl"] .contact h2,
html[dir="rtl"] .purpose-card h3,
html[dir="rtl"] .capability-card h3,
html[dir="rtl"] .ecosystem-row h3,
html[dir="rtl"] .process-steps h3,
html[dir="rtl"] .partner-card h3 { letter-spacing: 0; }
html[dir="rtl"] .hero h1 em,
html[dir="rtl"] .section h2 em,
html[dir="rtl"] .contact h2 em { font-family: "Noto Sans Arabic", sans-serif; font-style: normal; }
html[dir="rtl"] .nav-links a::after { transform-origin: right; }
html[dir="rtl"] .region-note, html[dir="rtl"] .footer-bottom a { text-align: left; }
html[dir="rtl"] .leader-copy blockquote { padding: 27px 28px 0 0; border-left: 0; border-right: 3px solid var(--gold); font-family: "Noto Sans Arabic", sans-serif; font-style: normal; }
html[dir="rtl"] .hero-shade { transform: scaleX(-1); }
html[dir="rtl"] .hero-media img { transform: scaleX(-1); }
html[dir="rtl"] .hero-routes { right: auto; left: -7%; transform: scaleX(-1); }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 44px, 1080px); }
  .nav-links { gap: 17px; }
  .nav-links a { font-size: 13px; }
  .nav-actions .button { display: none; }
  .hero-content { grid-template-columns: minmax(0, 1.2fr) minmax(270px, .55fr); gap: 45px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .reach-layout { grid-template-columns: .8fr 1.2fr; gap: 35px; }
}

@media (max-width: 860px) {
  :root { --header-h: 74px; --shell: min(100% - 36px, 760px); }
  .site-header, .site-header.scrolled { height: var(--header-h); background: rgba(7,23,33,.95); backdrop-filter: blur(18px); }
  .menu-toggle { width: 44px; height: 44px; display: grid; place-content: center; gap: 7px; padding: 0; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.22); cursor: pointer; }
  .menu-toggle span { width: 20px; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav-panel { position: fixed; inset: var(--header-h) 0 auto; max-height: calc(100vh - var(--header-h)); display: grid; gap: 0; padding: 20px 18px 28px; background: rgba(7,23,33,.98); border-top: 1px solid var(--dark-line); box-shadow: 0 30px 50px rgba(0,0,0,.25); overflow: auto; transform: translateY(-120%); opacity: 0; visibility: hidden; transition: transform .28s ease, opacity .28s ease, visibility .28s ease; }
  .nav-panel.open { transform: none; opacity: 1; visibility: visible; }
  .nav-links { display: grid; gap: 0; }
  .nav-links a { padding: 16px 4px; font-size: 17px; border-bottom: 1px solid var(--dark-line); }
  .nav-links a::after { display: none; }
  .nav-actions { justify-content: space-between; padding-top: 18px; }
  .nav-actions .button { display: inline-flex; }
  .hero { min-height: 800px; height: auto; }
  .hero-media img { opacity: .45; object-position: 68% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(7,23,33,.98), rgba(7,23,33,.78)), linear-gradient(0deg, rgba(7,23,33,.95), transparent 55%); }
  .hero-routes { right: -35%; width: 1100px; opacity: .4; }
  .hero-content { min-height: 800px; height: auto; grid-template-columns: 1fr; align-content: center; gap: 45px; padding-top: 125px; padding-bottom: 120px; }
  .hero-card { align-self: auto; max-width: 520px; margin: 0; }
  .region-inner { grid-template-columns: 1fr; gap: 10px; padding: 16px 0; text-align: center; }
  .region-inner > span { display: none; }
  .regions { justify-content: center; flex-wrap: wrap; }
  .section { padding: 95px 0; }
  .about-layout { grid-template-columns: 1fr; gap: 35px; }
  .section-marker { display: none; }
  .purpose-grid { grid-template-columns: 1fr; margin-top: 65px; }
  .purpose-card { min-height: 330px; padding: 42px; }
  .purpose-card h3 { margin-top: 48px; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; margin-bottom: 48px; }
  .ecosystem-row { grid-template-columns: 54px 1fr 32px; gap: 20px; }
  .ecosystem-row p { grid-column: 2 / 3; }
  .ecosystem-row > i { grid-column: 3; grid-row: 1 / 3; }
  .process-layout { grid-template-columns: 1fr; gap: 55px; }
  .process-copy { position: static; }
  .reach-layout { grid-template-columns: 1fr; gap: 55px; }
  .leadership-layout { grid-template-columns: 1fr; gap: 55px; }
  .leader-visual { min-height: 420px; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-card { min-height: 300px; }
  .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .footer-top { grid-template-columns: 1fr; gap: 25px; padding: 38px 0; text-align: center; }
  .footer-brand { justify-self: center; }
  .footer-bottom { grid-template-columns: 1fr; gap: 12px; padding: 23px 0; text-align: center; }
  .footer-bottom a { text-align: center !important; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  .brand-mark { width: 37px; height: 37px; }
  .brand-copy strong { font-size: 12px; }
  .brand-copy small { font-size: 8px; }
  .nav-actions .button { min-height: 40px; padding-inline: 14px; }
  .hero { min-height: 780px; }
  .hero-content { min-height: 780px; padding-top: 116px; padding-bottom: 106px; }
  .hero h1 { font-size: clamp(43px, 13vw, 61px); }
  .hero-intro { margin-top: 24px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 30px; }
  .hero-card { display: none; }
  .region-bar { min-height: 72px; }
  .regions { gap: 11px; }
  .regions b { font-size: 9px; }
  .section { padding: 78px 0; }
  .section h2, .contact h2 { font-size: clamp(35px, 10.5vw, 48px); }
  .about-main .section-lead { margin-block: 25px 30px; }
  .about-columns { grid-template-columns: 1fr; gap: 20px; }
  .purpose-grid { width: 100%; margin-top: 50px; }
  .purpose-card { min-height: 315px; padding: 34px 28px; }
  .purpose-icon { top: 30px; right: 28px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 270px; }
  .capability-card h3 { margin-top: 78px; }
  .ecosystem-row { grid-template-columns: 38px 1fr 23px; gap: 14px; min-height: 150px; padding: 23px 5px; }
  .ecosystem-row:hover { padding-inline: 9px; }
  .ecosystem-row p { font-size: 14px; }
  .process-steps li { grid-template-columns: 50px 1fr; gap: 15px; min-height: 145px; }
  .map-panel { margin-inline: -8px; padding: 6px; }
  .map-legend { gap: 13px; }
  .map-legend span { font-size: 8px; }
  .leader-visual { min-height: 340px; }
  .leader-lines { width: 270px; height: 270px; }
  .leader-copy blockquote { padding-left: 20px; font-size: 17px; }
  html[dir="rtl"] .leader-copy blockquote { padding-right: 20px; }
  .partner-card { min-height: 320px; padding: 28px; }
  .contact { padding: 78px 0; }
  .contact-form { margin-inline: -7px; padding: 28px 20px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-details strong { word-break: break-word; }
  .whatsapp { right: 16px; bottom: 16px; width: 50px; height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
