:root {
  --ink: #061724;
  --midnight: #061724;
  --navy: #092536;
  --navy-2: #0e3044;
  --panel: #102d3f;
  --cyan: #38b5dd;
  --cyan-strong: #0f789e;
  --cyan-soft: #9bdcf0;
  --amber: #f2a51a;
  --amber-light: #ffc759;
  --paper: #f1f5f6;
  --paper-2: #e2eaed;
  --white: #ffffff;
  --muted: #536a77;
  --muted-dark: #b8ccd5;
  --line: #cbd7dc;
  --line-dark: rgba(149, 203, 222, 0.19);
  --shadow: 0 28px 72px rgba(3, 18, 29, 0.18);
  --font-en: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-ar: "IBM Plex Sans Arabic", "Noto Sans Arabic", Tahoma, sans-serif;
  --container: 1280px;
  --radius: 4px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--amber); color: var(--ink); }

:lang(ar) {
  font-family: var(--font-ar);
  letter-spacing: normal !important;
  line-height: 1.7;
}

:lang(ar) h1 { line-height: 1.3; }
:lang(ar) h2, :lang(ar) h3 { line-height: 1.38; }
:lang(ar) em { font-style: normal; }
:lang(ar) h1, :lang(ar) h2, :lang(ar) h3 { font-family: var(--font-ar); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { touch-action: manipulation; }
button { font: inherit; }
svg { display: block; }
.ltr, bdi { direction: ltr; unicode-bidi: isolate; }

.skip-link {
  position: fixed;
  z-index: 1000;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  padding: 10px 16px;
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }

.section-shell {
  width: min(var(--container), calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  inset-block-start: 0;
  background: rgba(6, 23, 36, 0.96);
  border-block-end: 1px solid var(--line-dark);
  backdrop-filter: blur(12px);
}

.header-shell {
  width: min(var(--container), calc(100% - 56px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 54px;
  padding: 5px 10px;
  border-radius: 3px;
  background: var(--white);
}

.brand__logo { width: 138px; height: auto; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-inline: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 28px;
  color: #d2e2e8;
  font-size: 0.9rem;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 19px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease-out;
}

[dir="rtl"] .desktop-nav a::after { transform-origin: right; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 9px; }

.language-switch, .menu-button {
  min-width: 48px;
  min-height: 48px;
  border: 1px solid rgba(143, 200, 220, 0.3);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
  transition: border-color 180ms ease-out, background-color 180ms ease-out;
}

.language-switch { padding-inline: 13px; font-weight: 700; }
.language-switch:hover, .menu-button:hover { border-color: var(--amber); background: rgba(242, 165, 26, 0.1); }

.menu-button {
  display: none;
  place-items: center;
  padding: 12px;
}

.menu-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out, box-shadow 180ms ease-out;
}

.button--header, .button--primary {
  background: var(--amber);
  color: #16212a;
  box-shadow: 0 12px 32px rgba(242, 165, 26, 0.16);
}

.button--header { min-height: 48px; }
.button--header:hover, .button--primary:hover {
  background: var(--amber-light);
  box-shadow: 0 14px 36px rgba(242, 165, 26, 0.25);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
}

.button--secondary:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.09); }

.directional-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

[dir="rtl"] .directional-icon { transform: scaleX(-1); }

.mobile-nav {
  width: 100%;
  padding: 10px 24px 24px;
  border-block-start: 1px solid var(--line-dark);
  background: var(--midnight);
  color: var(--white);
}

.mobile-nav a {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding-inline: 4px;
  border-block-end: 1px solid var(--line-dark);
  font-weight: 600;
}

.mobile-nav__cta {
  justify-content: center;
  margin-block-start: 14px;
  border: 0 !important;
  border-radius: 3px;
  background: var(--amber);
  color: var(--ink);
}

.hero {
  position: relative;
  block-size: 704px;
  min-height: 704px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #061724 0%, #081f2e 54%, #0b2b3e 100%);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 82% 34%, rgba(56, 181, 221, 0.15), transparent 26%),
    radial-gradient(circle at 68% 88%, rgba(242, 165, 26, 0.08), transparent 24%);
}

.blueprint-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(135, 208, 232, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(135, 208, 232, 0.11) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 43%, #000 100%);
}

[dir="rtl"] .blueprint-grid { mask-image: linear-gradient(270deg, transparent 0%, #000 43%, #000 100%); }

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(117, 211, 241, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.orbit--one { width: 710px; height: 710px; inset-block-start: -150px; inset-inline-end: -90px; }
.orbit--two { width: 470px; height: 470px; inset-block-start: -30px; inset-inline-end: 22px; border-color: rgba(242, 165, 26, 0.16); }

.hero__shell {
  position: relative;
  block-size: 704px;
  min-height: 704px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  grid-template-rows: minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  padding-block: 78px 94px;
}

.hero__shell::before {
  content: "";
  position: absolute;
  inset-block: 52px;
  inset-inline: 0;
  border-inline: 1px solid rgba(145, 206, 226, 0.14);
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  max-width: 640px;
  padding-inline-start: 22px;
  animation: copy-in 360ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero__copy::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 2px;
  width: 4px;
  height: 42px;
  background: var(--amber);
}

.hero__context {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0 0 27px;
  color: #bcd3dd;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero__context span {
  padding-inline: 0 13px;
  border: 0;
  background: transparent;
}

.hero__context span + span {
  padding-inline: 13px 0;
  border-inline-start: 1px solid rgba(184, 217, 228, 0.36);
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 5.6vw, 5.65rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.025em;
}

:lang(ar) .hero h1 {
  max-width: 14ch;
  font-family: var(--font-ar);
  line-height: 1.42;
  letter-spacing: normal;
  font-size: clamp(2.3rem, 5vw, 5rem);
}

.hero__lead {
  max-width: 610px;
  margin: 27px 0 0;
  color: #c9dbe3;
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.7;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 11px; margin-block-start: 33px; }

.hero__media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
}

.hero__image-stage {
  position: relative;
  width: min(820px, 121%);
  margin-inline: -3% -14%;
  padding-block: 34px;
  border-block-end: 3px solid var(--amber);
  animation: equipment-in 390ms 70ms cubic-bezier(0.16, 0.84, 0.22, 1) both;
}

.hero__image-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10% 6% 3%;
  border: 1px solid rgba(141, 207, 228, 0.2);
  background: rgba(8, 35, 50, 0.3);
}

.hero__image-stage img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 36px 34px rgba(0, 0, 0, 0.3));
}

.hero__scope {
  position: absolute;
  inset-inline-end: 0;
  inset-block-end: 35px;
  min-width: 220px;
  display: grid;
  gap: 5px;
  padding: 17px 18px;
  border: 1px solid var(--line-dark);
  border-inline-start: 3px solid var(--amber);
  background: rgba(4, 21, 32, 0.91);
  color: #d7e7ed;
  font-size: 0.84rem;
  font-weight: 650;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.credibility {
  position: relative;
  z-index: 2;
  background: var(--navy);
  color: var(--white);
  border-block: 1px solid var(--line-dark);
}

.credibility__grid { display: grid; grid-template-columns: 0.62fr 1fr 1fr; }

.credential {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 25px 34px;
  border-inline-end: 1px solid var(--line-dark);
}

.credential:first-child { padding-inline-start: 0; }
.credential:last-child { border-inline-end: 0; }
.credential strong { color: var(--white); font-size: 1.08rem; }
.credential:first-child strong {
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 2.55rem;
  line-height: 0.9;
  letter-spacing: 0.01em;
}
:lang(ar) .credential:first-child strong { font-family: var(--font-ar); letter-spacing: normal; }
.credential span { color: var(--muted-dark); font-size: 0.88rem; }

.section { padding-block: 106px; }
section[id] { scroll-margin-top: calc(var(--header-height) + 16px); }

.section-heading__label {
  margin: 0 0 15px;
  color: var(--cyan-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-heading h2, .support-intro h2, .contact-panel h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 4.2vw, 4.4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

:lang(ar) .section-heading h2, :lang(ar) .support-intro h2, :lang(ar) .contact-panel h2 {
  font-family: var(--font-ar);
  letter-spacing: normal;
  line-height: 1.32;
  font-size: clamp(2.25rem, 3.8vw, 4rem);
}

.section--about { background: var(--paper); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1.22fr);
  gap: clamp(50px, 8vw, 116px);
  align-items: start;
}

.about-copy {
  max-width: 730px;
  padding-inline-start: clamp(26px, 4vw, 54px);
  border-inline-start: 1px solid var(--line);
  color: #38515e;
  font-size: 1.06rem;
}

.about-copy p { margin: 0 0 22px; }

.about-copy > p:nth-child(2) {
  margin-block-start: 28px;
  padding: 21px 23px;
  border-inline-start: 3px solid var(--cyan-strong);
  background: #e4ecef;
  color: #173544;
  font-weight: 600;
}

.company-commitment {
  margin: 28px 0 0;
  padding: 24px;
  border: 1px solid #c4d4da;
  border-inline-start: 3px solid var(--amber);
  background: var(--white);
}

.company-commitment strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.2;
}

:lang(ar) .company-commitment strong {
  font-family: var(--font-ar);
  line-height: 1.4;
  letter-spacing: normal;
}

.company-commitment p { margin: 12px 0 0; color: #38515e; }

.registration {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 24px;
  margin-block-start: 35px;
  padding: 24px;
  border: 1px solid #19394b;
  border-block-start: 3px solid var(--amber);
  background: var(--midnight);
  color: var(--white);
}

.registration__label { color: #a9c3ce; font-size: 0.88rem; font-weight: 650; }
.registration bdi { color: var(--white); font-weight: 800; }

.section--solutions {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.section--solutions::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.5;
}

.section-heading--row {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.76fr);
  align-items: end;
  gap: 48px;
  margin-block-end: 50px;
}

.section--solutions .section-heading h2 { color: var(--white); }
.section--solutions .section-heading__label { color: var(--amber); }
.section-heading--row > p { max-width: 500px; margin: 0; color: var(--muted-dark); }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.solution-card {
  position: relative;
  grid-column: span 3;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #0b2a3c;
  color: var(--white);
  transition: border-color 180ms ease-out, background-color 180ms ease-out;
}

.solution-card:nth-child(-n+2) {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(0, 56%) minmax(0, 1fr);
  align-items: center;
}

.solution-card:hover { border-color: rgba(242, 165, 26, 0.55); background: #0e3044; }

.solution-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 56px;
  height: 3px;
  background: var(--cyan);
}

.solution-card--service::before, .solution-card:nth-child(5)::before, .solution-card:nth-child(6)::before { background: var(--amber); }

.solution-card__media {
  flex: 0 0 auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a2637;
}

.solution-card:nth-child(-n+2) .solution-card__media {
  width: 100%;
  height: auto;
  min-height: 0;
}

.solution-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.025);
  transition: transform 220ms ease-out, filter 220ms ease-out;
}

.solution-card:hover .solution-card__media img { transform: scale(1.02); filter: saturate(1) contrast(1.02); }

.solution-card__body {
  flex: 1;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.solution-card:nth-child(-n+2) .solution-card__body {
  min-height: 0;
  align-self: stretch;
  justify-content: center;
  padding: 30px;
}
.solution-card h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.46rem;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
:lang(ar) .solution-card h3 { font-family: var(--font-ar); letter-spacing: normal; line-height: 1.38; font-size: 1.24rem; }
.solution-card p { margin: 13px 0 0; color: #b8ced7; font-size: 0.92rem; }
:lang(ar) .solution-card p { line-height: 1.65; }

.profile-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-block-start: 38px;
}

.profile-gallery figure {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #0a2637;
}

.profile-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.015);
  transition: filter 180ms ease-out;
}

.profile-gallery figure:hover img { filter: saturate(1); }
.gallery-note { margin: 12px 0 0; color: #91afbc; font-size: 0.82rem; }

.section--support { background: var(--paper-2); }

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(520px, 1.26fr);
  gap: clamp(50px, 8vw, 120px);
}

.support-intro {
  position: sticky;
  inset-block-start: calc(var(--header-height) + 40px);
  align-self: start;
}

.support-intro p:last-child { max-width: 500px; margin: 25px 0 0; color: var(--muted); font-size: 1.04rem; }

.process { margin: 0; padding: 0; list-style: none; border-block-start: 1px solid #b8c9d0; }

.process li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding-block: 27px;
  border-block-end: 1px solid #b8c9d0;
}

.process > li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #d1921c;
  color: #8c5c00;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

:lang(ar) .process > li > span { font-family: var(--font-ar); letter-spacing: normal; }
.process h3 { margin: 0; font-family: var(--font-display); font-size: 1.32rem; line-height: 1.15; }
:lang(ar) .process h3 { font-family: var(--font-ar); line-height: 1.38; }
.process p { margin: 8px 0 0; color: var(--muted); font-size: 0.94rem; }

.section--experience {
  position: relative;
  overflow: hidden;
  background: var(--midnight);
  color: var(--white);
}

.section--experience::after {
  content: "";
  position: absolute;
  inset-block-start: -260px;
  inset-inline-end: -250px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(80, 184, 218, 0.16);
  border-radius: 50%;
}

.section--experience > .section-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(48px, 7vw, 108px);
  align-items: start;
}

.section-heading--light {
  position: sticky;
  inset-block-start: calc(var(--header-height) + 40px);
  max-width: 580px;
  margin: 0;
}

.section-heading--light h2 { color: var(--white); }
.section-heading--light .section-heading__label { color: var(--amber); }
.section-heading--light > p:last-child { max-width: 560px; margin: 23px 0 0; color: #b9ced7; }

.experience-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }

.experience-panel {
  padding: 29px 31px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #0b2a3c;
}

.experience-panel--wide { grid-column: auto; border-inline-start: 3px solid var(--amber); }
.experience-panel h3 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.38rem;
  line-height: 1.12;
}
:lang(ar) .experience-panel h3 { font-family: var(--font-ar); line-height: 1.38; }
.experience-panel__lead { margin: -6px 0 18px; color: #b9ced7; font-size: 0.92rem; }
.clean-list, .tag-list { margin: 0; padding: 0; list-style: none; }
.clean-list { display: grid; gap: 11px; }

.clean-list li {
  position: relative;
  padding-inline-start: 22px;
  color: #d6e5ea;
}

.clean-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.72em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--amber);
}

.tag-list { display: flex; flex-wrap: wrap; gap: 7px; }

.tag-list li {
  padding: 8px 11px;
  border: 1px solid rgba(163, 208, 225, 0.22);
  border-radius: 2px;
  color: #d7e7ed;
  font-size: 0.86rem;
}

.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }

.partner-grid > div {
  display: grid;
  gap: 7px;
  padding: 20px;
  border-inline-start: 2px solid var(--cyan);
  background: rgba(3, 20, 30, 0.34);
}

.partner-grid strong { color: var(--white); }
.partner-grid span { color: #c2d5dd; font-size: 0.9rem; }
.experience-note { margin: 18px 0 0; color: #9fbbc7; font-size: 0.82rem; }

.section--contact { background: var(--paper); }

.contact-panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  border: 1px solid #bfcfd5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel__copy {
  position: relative;
  padding: clamp(38px, 6vw, 74px);
  background: var(--white);
}

.contact-panel__copy::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 4px;
  background: var(--amber);
}

.contact-panel__copy > p:not(.section-heading__label) { max-width: 520px; margin: 23px 0 29px; color: var(--muted); }

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: 1px;
  background: rgba(154, 199, 215, 0.22);
  font-style: normal;
}

.contact-details > a, .contact-details > div {
  min-height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 28px;
  background: var(--navy);
  color: var(--white);
}

.contact-details > a { transition: background-color 180ms ease-out; }
.contact-details > a:hover { background: var(--navy-2); }
.contact-details span { color: var(--amber-light); font-size: 0.82rem; font-weight: 700; }

.contact-details bdi, .contact-details p {
  margin: 0;
  color: #e7f0f4;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.contact-details__manager { grid-column: 1 / -1; min-height: 124px !important; }

.site-footer {
  padding-block: 40px;
  background: #03131d;
  color: #a9bec7;
  border-block-start: 1px solid var(--line-dark);
}

.footer-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand { max-width: 460px; }

.footer-brand__plate {
  width: 142px;
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 7px 9px;
  border-radius: 3px;
  background: var(--white);
}

.footer-brand__plate img { width: 100%; height: auto; }
.footer-brand p { margin: 14px 0 0; font-size: 0.82rem; }
.footer-meta { text-align: end; font-size: 0.82rem; }
.footer-meta p { margin: 4px 0; }

@keyframes copy-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes equipment-in {
  from { opacity: 0; transform: translateX(24px) scale(0.985); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

[dir="rtl"] .hero__copy,
[dir="rtl"] .about-copy,
[dir="rtl"] .section-heading,
[dir="rtl"] .support-intro,
[dir="rtl"] .solution-card__body,
[dir="rtl"] .experience-panel,
[dir="rtl"] .contact-panel {
  text-align: start;
  direction: rtl;
}

[dir="rtl"] .brand__logo,
[dir="rtl"] .footer-brand img,
[dir="rtl"] .solution-card__media img,
[dir="rtl"] .profile-gallery img { transform: none; }

[dir="rtl"] .hero__image-stage img { transform: scaleX(-1); }

@media (max-width: 1120px) {
  .desktop-nav { gap: 17px; }
  .desktop-nav a { font-size: 0.84rem; }
  .button--header { display: none; }
  .hero__shell { grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr); }
  .hero__image-stage { margin-inline: -1% -16%; }
  .solution-card:nth-child(-n+2) {
    grid-column: span 12;
    grid-template-columns: minmax(0, 52%) minmax(0, 1fr);
  }
}

@media (max-width: 920px) {
  :root { --header-height: 76px; }
  .desktop-nav { display: none; }
  .header-shell { min-height: var(--header-height); }
  .header-actions { margin-inline-start: auto; }
  .menu-button { display: grid; }
  .hero { block-size: auto; min-height: auto; }
  .hero__shell { block-size: auto; min-height: auto; grid-template-columns: 1fr; grid-template-rows: auto auto; gap: 22px; padding-block: 64px 56px; }
  .hero__shell::before { inset-block: 34px; }
  .hero__copy { grid-column: 1; grid-row: 1; max-width: 760px; min-block-size: clamp(376px, calc(560px - 20vw), 390px); }
  .hero h1 { max-width: 14ch; }
  .hero__media { grid-column: 1; grid-row: 2; min-height: 390px; }
  .hero__image-stage, [dir="rtl"] .hero__image-stage { width: min(850px, 114%); margin-inline: -7%; }
  .hero__scope { inset-block-end: 10px; }
  .credibility__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .credential:first-child { padding-inline-start: 28px; }
  .credential:nth-child(2) { border-inline-end: 0; }
  .credential:last-child { grid-column: 1 / -1; border-block-start: 1px solid var(--line-dark); }
  .about-grid, .section-heading--row, .support-grid, .section--experience > .section-shell, .contact-panel { grid-template-columns: 1fr; }
  .section-heading--row { align-items: start; gap: 23px; }
  .about-copy { padding-inline-start: 28px; }
  .support-intro, .section-heading--light { position: static; }
  .section-heading--light { max-width: 760px; }
  .solution-card { grid-column: span 6; }
  .solution-card:nth-child(-n+2) {
    grid-column: span 12;
    grid-template-columns: minmax(0, 52%) minmax(0, 1fr);
  }
  .profile-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .section-shell, .header-shell { width: min(100% - 32px, var(--container)); }
  .site-header { backdrop-filter: none; }
  .brand { min-height: 50px; padding: 5px 8px; }
  .brand__logo { width: 118px; }
  .header-shell { gap: 10px; }
  .header-actions { gap: 7px; }
  .language-switch, .menu-button { min-width: 46px; min-height: 46px; }
  .hero__shell { padding-block: 48px 40px; }
  .hero__shell::before { display: none; }
  .hero__copy { min-block-size: clamp(440px, calc(620px - 30vw), 510px); padding-inline-start: 17px; }
  .hero__copy::before { width: 3px; height: 36px; }
  .hero__context { margin-block-end: 20px; font-size: 0.78rem; }
  .hero h1 { max-width: none; font-size: clamp(3rem, 14vw, 4rem); line-height: 0.96; }
  :lang(ar) .hero h1 { max-width: none; font-size: clamp(2.45rem, 11vw, 3.5rem); line-height: 1.4; }
  .hero__lead { margin-block-start: 21px; }
  .hero__actions { display: grid; }
  .button { width: 100%; }
  .hero__media { min-height: 278px; }
  .hero__image-stage, [dir="rtl"] .hero__image-stage { width: 112%; margin-inline: -6%; padding-block: 20px; }
  .hero__scope { position: static; width: 100%; margin-block-start: -10px; }
  .orbit--one { width: 430px; height: 430px; }
  .orbit--two { width: 300px; height: 300px; }
  .credibility__grid { grid-template-columns: 1fr; }
  .credential { min-height: 104px; padding: 23px 0 !important; border-inline-end: 0; border-block-end: 1px solid var(--line-dark); }
  .credential:last-child { grid-column: auto; border-block-start: 0; border-block-end: 0; }
  .section { padding-block: 76px; }
  .about-grid { gap: 35px; }
  .about-copy { padding-inline-start: 20px; }
  .section-heading h2, .support-intro h2, .contact-panel h2 { font-size: clamp(2.55rem, 12vw, 3.5rem); }
  :lang(ar) .section-heading h2, :lang(ar) .support-intro h2, :lang(ar) .contact-panel h2 { font-size: clamp(2.15rem, 9.6vw, 3rem); }
  .solution-card, .solution-card:nth-child(-n+2) { grid-column: span 12; min-height: 0; display: flex; }
  .solution-card__media, .solution-card:nth-child(-n+2) .solution-card__media {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .solution-card__body, .solution-card:nth-child(-n+2) .solution-card__body { min-height: 0; padding: 25px; }
  .support-grid { gap: 43px; }
  .process li { grid-template-columns: 48px 1fr; gap: 12px; }
  .partner-grid { grid-template-columns: 1fr; }
  .contact-panel__copy { padding: 36px 24px; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-details > a, .contact-details > div { min-height: 124px; padding: 24px; }
  .footer-grid { align-items: flex-start; flex-direction: column; gap: 28px; }
  .footer-meta { text-align: start; }
}

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