:root {
  --ink: #13211f;
  --muted: #596864;
  --surface: #ffffff;
  --surface-soft: #f5f3ee;
  --line: #d8ded8;
  --green: #0d3b35;
  --green-2: #14564d;
  --amber: #c48a3b;
  --steel: #486775;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(18, 32, 30, 0.16);
  --max: 1180px;
  --arabic-font: "Cairo", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.lang-ar {
  direction: rtl;
  font-family: var(--arabic-font);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: calc(100% - 32px);
  max-width: var(--max);
  margin: 16px auto 0;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(11, 28, 27, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(19, 33, 31, 0.12);
  box-shadow: 0 14px 36px rgba(12, 26, 24, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--green);
  background: var(--white);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-header.is-scrolled .brand-mark {
  color: var(--white);
  background: var(--green);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
  white-space: nowrap;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.site-header.is-scrolled .brand small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.language-toggle {
  min-height: 38px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-family: var(--arabic-font);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.site-header.is-scrolled .language-toggle {
  color: var(--green);
  background: rgba(13, 59, 53, 0.07);
  border-color: rgba(13, 59, 53, 0.16);
}

.language-toggle:hover,
.language-toggle:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.site-header.is-scrolled .language-toggle:hover,
.site-header.is-scrolled .language-toggle:focus-visible {
  color: var(--green);
  background: rgba(13, 59, 53, 0.12);
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.site-header.is-scrolled .site-nav a {
  color: var(--green);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  color: var(--green);
  background: rgba(13, 59, 53, 0.08);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  color: var(--white);
  background: #0b1f1d;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-trade.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 20, 19, 0.9) 0%, rgba(9, 28, 26, 0.72) 36%, rgba(9, 28, 26, 0.2) 74%),
    linear-gradient(180deg, rgba(7, 20, 19, 0.36) 0%, rgba(7, 20, 19, 0.62) 100%);
}

body.lang-ar .hero-shade {
  background:
    linear-gradient(270deg, rgba(7, 20, 19, 0.92) 0%, rgba(9, 28, 26, 0.74) 42%, rgba(9, 28, 26, 0.18) 78%),
    linear-gradient(180deg, rgba(7, 20, 19, 0.36) 0%, rgba(7, 20, 19, 0.62) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 150px 0 76px;
}

body.lang-ar .hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.lang-ar .eyebrow,
body.lang-ar .section-kicker {
  font-family: var(--arabic-font);
  text-transform: none;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 76px;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

body.lang-ar .hero h1 {
  font-family: var(--arabic-font);
  font-weight: 900;
  line-height: 1.1;
}

.hero-legal {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

body.lang-ar .hero-legal {
  font-family: var(--arabic-font);
  line-height: 1.45;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  overflow-wrap: anywhere;
}

body.lang-ar .hero-copy {
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

body.lang-ar .hero-actions {
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 14px 28px rgba(196, 138, 59, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #d79a47;
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: -42px auto 0;
  position: relative;
  z-index: 3;
  background: var(--surface);
  border: 1px solid rgba(19, 33, 31, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fact {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
}

body.lang-ar .fact {
  border-right: 0;
  border-left: 1px solid var(--line);
  text-align: right;
}

body.lang-ar .fact:last-child {
  border-left: 0;
}

.fact:last-child {
  border-right: 0;
}

.fact span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.fact strong {
  display: block;
  color: var(--green);
  font-size: 17px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.section {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 0;
}

.section-band {
  width: 100%;
  max-width: none;
  padding: 88px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--surface-soft);
}

.intro-grid,
.license-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.license-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--green);
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
}

.intro p,
.section-heading p,
.license-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.intro p + p {
  margin-top: 16px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto 34px;
}

body.lang-ar .section-heading,
body.lang-ar .intro-grid,
body.lang-ar .license-section,
body.lang-ar .contact-section,
body.lang-ar .sector-card,
body.lang-ar .capability,
body.lang-ar .license-panel div,
body.lang-ar .inquiry-form {
  text-align: right;
}

.section-heading > div {
  max-width: 620px;
}

.section-heading p {
  max-width: 430px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.sector-card {
  min-height: 260px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid rgba(19, 33, 31, 0.1);
  border-radius: 8px;
}

.sector-card .icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  color: var(--green);
  background: #e5ece7;
  border-radius: 6px;
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.sector-card h3,
.capability h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.sector-card p,
.capability p {
  margin: 0;
  color: var(--muted);
}

.capabilities {
  padding-bottom: 70px;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.capability {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  min-height: 184px;
  padding: 28px;
  background: var(--surface);
}

.capability span {
  color: var(--amber);
  font-size: 14px;
  font-weight: 900;
}

.license-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 88px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: linear-gradient(135deg, var(--green) 0%, #102724 52%, #243f49 100%);
}

.license-copy h2,
.license-copy p {
  color: var(--white);
}

.license-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
}

.license-panel {
  padding: 6px 0;
}

.license-panel dl {
  margin: 0;
}

.license-panel div {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 0.58fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

body.lang-ar .license-panel div {
  grid-template-columns: minmax(0, 0.58fr) minmax(150px, 0.42fr);
}

.license-panel div:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.license-panel dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.license-panel dd {
  margin: 0;
  color: var(--white);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-section {
  align-items: stretch;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  color: var(--green);
  font-weight: 800;
}

.contact-lines span {
  color: var(--muted);
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfd7d1;
  border-radius: 6px;
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 4px rgba(20, 86, 77, 0.12);
  outline: none;
}

.inquiry-form .btn {
  width: fit-content;
}

body.lang-ar .inquiry-form .btn {
  justify-self: start;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px max(20px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.74);
  background: #0a1d1b;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 960px) {
  .quick-facts,
  .sector-grid,
  .capability-list,
  .intro-grid,
  .license-section,
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 16px;
  }

  .intro-grid,
  .license-section,
  .contact-section {
    gap: 34px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .intro h2,
  .section-heading h2,
  .license-copy h2,
  .contact-copy h2 {
    font-size: 44px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 10px;
  }

  .brand strong {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
    color: currentColor;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 4px;
    padding: 12px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .header-actions {
    gap: 8px;
  }

  .language-toggle {
    min-height: 42px;
    padding: 7px 10px;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a,
  .site-header.is-scrolled .site-nav a {
    color: var(--green);
  }

  .hero {
    min-height: 82vh;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 20, 19, 0.92) 0%, rgba(7, 20, 19, 0.76) 58%, rgba(7, 20, 19, 0.42) 100%),
      linear-gradient(180deg, rgba(7, 20, 19, 0.28) 0%, rgba(7, 20, 19, 0.64) 100%);
  }

  body.lang-ar .hero-shade {
    background:
      linear-gradient(270deg, rgba(7, 20, 19, 0.93) 0%, rgba(7, 20, 19, 0.78) 58%, rgba(7, 20, 19, 0.44) 100%),
      linear-gradient(180deg, rgba(7, 20, 19, 0.28) 0%, rgba(7, 20, 19, 0.64) 100%);
  }

  .hero-inner {
    width: calc(100% - 28px);
    max-width: var(--max);
    padding-top: 128px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-legal {
    font-size: 20px;
  }

  .hero-actions,
  .site-footer {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .quick-facts {
    width: calc(100% - 28px);
    margin-top: -30px;
  }

  .fact {
    padding: 18px;
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  body.lang-ar .fact:nth-child(2) {
    border-left: 0;
  }

  .fact:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section,
  .section-band,
  .license-section,
  .contact-section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .intro h2,
  .section-heading h2,
  .license-copy h2,
  .contact-copy h2 {
    font-size: 36px;
  }

  .sector-grid,
  .capability-list,
  .intro-grid,
  .license-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .capability {
    grid-template-columns: 54px 1fr;
    min-height: 0;
  }

  .license-panel div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body.lang-ar .license-panel div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .site-header {
    width: calc(100% - 80px);
    max-width: 310px;
  }

  .brand strong {
    max-width: 112px;
  }

  .hero-inner,
  .quick-facts,
  .section {
    width: calc(100% - 80px);
    max-width: 310px;
  }

  .hero h1,
  .hero-legal,
  .hero-copy,
  .hero-actions {
    max-width: 340px;
  }

  .hero-copy {
    font-size: 16px;
  }

  body.lang-ar .site-header,
  body.lang-ar .hero-inner,
  body.lang-ar .quick-facts,
  body.lang-ar .section {
    width: calc(100% - 80px);
    max-width: 310px;
  }

  body.lang-ar .hero-inner {
    align-items: stretch;
  }

  body.lang-ar .hero h1,
  body.lang-ar .hero-legal,
  body.lang-ar .hero-copy,
  body.lang-ar .hero-actions {
    max-width: 100%;
  }

  body.lang-ar .hero h1 {
    font-size: 30px;
  }

  body.lang-ar .hero-legal {
    font-size: 14px;
  }

  body.lang-ar .hero-copy {
    font-size: 14px;
    line-height: 1.8;
  }
}

@media (max-width: 460px) {
  .quick-facts {
    grid-template-columns: 1fr;
  }

  .fact {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  body.lang-ar .fact {
    border-left: 0;
  }

  .fact:first-child {
    border-top: 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-legal {
    font-size: 18px;
  }

  .hero-copy,
  .intro p,
  .section-heading p,
  .license-copy p,
  .contact-copy p {
    font-size: 16px;
  }
}
