

:root {
  --navy-950: #06111f;
  --navy-900: #09182b;
  --navy-800: #102741;
  --navy-700: #173b63;
  --blue-700: #164d9f;
  --blue-600: #1f63c8;
  --blue-100: #e7f0fb;
  --gold-600: #b58b34;
  --gold-100: #f6ecd7;
  --ink: #111827;
  --muted: #5a6472;
  --soft: #f4f7fa;
  --panel: #ffffff;
  --line: #d9e0e8;
  --line-dark: rgba(255, 255, 255, 0.15);
  --success: #146c43;
  --danger: #b42318;
  --font-ar: "Noto Kufi Arabic", "Manrope", Arial, sans-serif;
  --font-en: "Manrope", "Noto Kufi Arabic", Arial, sans-serif;
  --container: 1180px;
  --gutter: clamp(18px, 4vw, 44px);
  --section: clamp(56px, 8vw, 96px);
  --r: 2px;
  --r-lg: 4px;
  --shadow: 0 14px 34px rgba(6, 17, 31, 0.11);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-ar);
  line-height: 1.75;
  overflow-x: hidden;
}
body.ltr,
html[lang="en"] body {
  font-family: var(--font-en);
  line-height: 1.65;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  color: inherit;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
p {
  margin: 0 0 1rem;
}
h1,
h2,
h3,
h4 {
  margin: 0 0 0.65em;
  line-height: 1.28;
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--gold-600);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  top: -70px;
  inset-inline-start: 16px;
  z-index: 1000;
  background: var(--navy-900);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--r);
}
.skip-link:focus {
  top: 14px;
}
.req {
  color: var(--blue-600);
}
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.section {
  padding: var(--section) 0;
}
.section--tint {
  background: var(--soft);
  border-block: 1px solid var(--line);
}
.section--dark {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
}
.section--dark h2,
.section--dark h3,
.section--dark .section-head__title {
  color: #fff;
}
.section--dark .section-head__lead {
  color: rgba(255, 255, 255, 0.68);
}
.section__foot {
  margin-top: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold-600);
}
.eyebrow--light {
  color: var(--gold-100);
}
.section-head {
  max-width: 760px;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .eyebrow {
  justify-content: center;
}
.section-head__title {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 800;
  letter-spacing: 0;
}
.section-head__lead {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 70ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--r);
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
}
.btn__icon svg {
  width: 100%;
  height: 100%;
}
.btn--sm {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 0.84rem;
}
.btn--block {
  width: 100%;
}
.btn--primary {
  background: var(--blue-600);
  color: #fff;
}
.btn--primary:hover {
  background: var(--navy-700);
}
.btn--accent {
  background: #116a70;
  color: #fff;
}
.btn--accent:hover {
  background: #0b4f55;
}
.btn--outline {
  background: #fff;
  color: var(--navy-800);
  border-color: var(--line);
}
.btn--outline:hover {
  border-color: var(--blue-600);
  color: var(--blue-700);
}
.btn--outline-light,
.btn--ghost-light {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}
.btn--outline-light:hover,
.btn--ghost-light:hover {
  background: #fff;
  color: var(--navy-900);
}
.btn--light {
  background: #fff;
  color: var(--navy-900);
}

.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar__lead {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.topbar__contact a {
  color: #fff;
  font-weight: 700;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 22px rgba(6, 17, 31, 0.08);
}
.navbar {
  position: relative;
}
.navbar__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.8fr) auto;
  align-items: center;
  gap: 22px;
}
.site-header.is-scrolled .navbar__inner {
  min-height: 62px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  width: 116px;
  height: auto;
}
.brand__text {
  display: grid;
  line-height: 1.5;
  min-width: 0;
}
.brand__text strong {
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand__text small {
  color: var(--muted);
  font-size: 0.68rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 310px;
}
.navbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.lang-switch {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--navy-900);
  font-weight: 800;
  background: #fff;
}
.lang-switch:hover {
  border-color: var(--blue-600);
  color: var(--blue-700);
}
.lang-switch--panel {
  display: none;
}
.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  cursor: pointer;
}
.menu-toggle__bar {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  transform: translateX(-50%);
}
.menu-toggle__bar:nth-child(1) {
  top: 14px;
}
.menu-toggle__bar:nth-child(2) {
  top: 21px;
}
.menu-toggle__bar:nth-child(3) {
  top: 28px;
}
.menu-toggle.is-open .menu-toggle__bar:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}
.menu-toggle.is-open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open .menu-toggle__bar:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}
.menu-panel {
  display: flex;
  justify-content: center;
  min-width: 0;
}
.menu-panel__head {
  display: none;
}
.menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}
.nav-link,
.menu-list > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.nav-link:hover,
.menu-list > li > a:hover {
  color: var(--blue-700);
  background: transparent;
  border-bottom-color: var(--blue-100);
}
.nav-link.is-active,
.menu-list > li > a.is-active {
  color: var(--blue-700);
  background: transparent;
  border-bottom-color: var(--blue-600);
}
.nav-link--cta,
.menu-list > li > .nav-link--cta {
  min-height: 42px;
  padding-inline: 16px;
  color: #fff;
  background: var(--blue-600);
  border: 1px solid var(--blue-600);
  border-bottom-color: var(--blue-600);
}
.nav-link--cta:hover,
.menu-list > li > .nav-link--cta:hover,
.nav-link--cta.is-active,
.menu-list > li > .nav-link--cta.is-active {
  color: #fff;
  background: var(--navy-800);
  border-color: var(--navy-800);
  box-shadow: 0 10px 22px rgba(31, 99, 200, 0.18);
}
.has-sub {
  position: relative;
}
.submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  z-index: 40;
  min-width: 235px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s ease;
}
.has-sub:hover .submenu,
.has-sub:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 3px;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(6, 17, 31, 0.28), rgba(6, 17, 31, 0.58)),
    url("../images/hero-logistics.png") center / cover no-repeat;
}
.hero--afdal .hero__img--afdal {
  background-image:
    linear-gradient(rgba(6, 35, 39, 0.55), rgba(6, 35, 39, 0.78)),
    url("../images/hero-afdal.svg");
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 17, 31, 0.96) 0%,
    rgba(6, 17, 31, 0.82) 42%,
    rgba(6, 17, 31, 0.2) 100%
  );
}
[dir="rtl"] .hero__overlay {
  background: linear-gradient(
    -90deg,
    rgba(6, 17, 31, 0.96) 0%,
    rgba(6, 17, 31, 0.82) 42%,
    rgba(6, 17, 31, 0.2) 100%
  );
}
.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue-600), var(--gold-600));
  z-index: 4;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 78px 0 90px;
}
.hero__eyebrow {
  color: var(--gold-100);
  font-weight: 800;
  margin-bottom: 14px;
}
.hero__title {
  color: #fff;
  max-width: 15ch;
  font-size: clamp(2.25rem, 4.7vw, 4.2rem);
  font-weight: 800;
  line-height: 1.16;
}
.hero__title-line,
.hero__title-accent {
  display: block;
}
.hero__title-accent {
  color: var(--gold-100);
}
.hero__lead {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  margin-bottom: 24px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__scroll {
  display: none;
}

.intro__grid,
.afdal__grid,
.who__grid,
.split,
.contact-grid,
.loc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}
.intro__visual,
.split__visual,
.afdal__visual {
  position: relative;
}
.intro__img,
.split__img,
.afdal__img,
.who__img {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.intro__img {
  background-image:
    linear-gradient(rgba(16, 39, 65, 0.16), rgba(16, 39, 65, 0.22)),
    url("../images/intro.svg");
}
.split__img {
  aspect-ratio: 4 / 3.1;
  background-image:
    linear-gradient(rgba(16, 39, 65, 0.16), rgba(16, 39, 65, 0.2)),
    url("../images/service-generic.svg");
}
.split__img--customs {
  background-image:
    linear-gradient(rgba(16, 39, 65, 0.16), rgba(16, 39, 65, 0.2)),
    url("../images/customs.svg");
}
.split__img--unloading {
  background-image:
    linear-gradient(rgba(16, 39, 65, 0.16), rgba(16, 39, 65, 0.2)),
    url("../images/unloading.svg");
}
.split__img--storage {
  background-image:
    linear-gradient(rgba(16, 39, 65, 0.16), rgba(16, 39, 65, 0.2)),
    url("../images/storage.svg");
}
.split__img--why {
  background-image:
    linear-gradient(rgba(16, 39, 65, 0.16), rgba(16, 39, 65, 0.2)),
    url("../images/why.svg");
}
.split__img--afdal,
.afdal__img {
  background-image:
    linear-gradient(rgba(17, 106, 112, 0.16), rgba(17, 106, 112, 0.24)),
    url("../images/afdal.svg");
}
.who__img {
  background-image:
    linear-gradient(rgba(16, 39, 65, 0.16), rgba(16, 39, 65, 0.22)),
    url("../images/about.svg");
}
.intro__badge {
  position: absolute;
  inset-inline-end: 22px;
  bottom: -18px;
  width: min(360px, 90%);
  padding: 18px;
  color: #fff;
  background: var(--navy-900);
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
[dir="rtl"] .intro__badge {
  inset-inline-end: auto;
  inset-inline-start: 22px;
}
.intro__badge strong,
.intro__badge span {
  display: block;
}
.intro__badge strong {
  font-weight: 800;
  font-size: 0.98rem;
}
.intro__badge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
}
.intro__text,
.split__text,
.afdal__text,
.two-col__text,
.who__text,
.services__intro,
.legal p {
  color: var(--muted);
}

.service-grid,
.why-grid,
.cap-grid,
.licenses__grid,
.values-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.service-grid,
.why-grid,
.cap-grid {
  grid-template-columns: repeat(4, 1fr);
}
.licenses__grid {
  grid-template-columns: repeat(3, 1fr);
}
.values-grid {
  grid-template-columns: repeat(3, 1fr);
}
.service-card,
.why-card,
.cap-card,
.value-card,
.license-card,
.triptych__card,
.benefit-card,
.faq-item,
.loc-card,
.afdal-contact__block,
.contact-form-wrap,
.afdal-contactcard,
.two-col__panel,
.note-banner {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: none;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 22px;
  overflow: hidden;
  transition:
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--blue-600);
}
.service-card:hover {
  border-color: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.service-card__num {
  color: var(--blue-700);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.service-card__icon {
  width: 52px;
  height: 52px;
  margin: 18px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-100);
  border: 1px solid #d0e1f7;
  border-radius: var(--r);
}
.service-card__icon i {
  width: 28px;
  height: 28px;
  display: block;
}
.service-card__title {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.service-card__desc {
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
}
.service-card__link {
  margin-top: 14px;
  color: var(--navy-900);
  font-size: 0.86rem;
  font-weight: 800;
}
.service-card__link::after {
  content: "\2192";
  margin-inline-start: 6px;
}
[dir="rtl"] .service-card__link::after {
  content: "\2190";
}
.why-card,
.cap-card,
.value-card,
.triptych__card {
  padding: 22px;
}
.why-card {
  border-top: 4px solid var(--blue-600);
  min-height: 180px;
  transition: 0.18s ease;
}
.why-card:hover,
.cap-card:hover,
.loc-card:hover,
.loc-card.is-active {
  border-color: var(--blue-600);
  box-shadow: var(--shadow);
}
.why-card__mark {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--gold-600);
  margin-bottom: 14px;
}
.why-card__title,
.cap-card__title,
.value-card__title,
.triptych__title {
  font-size: 1.06rem;
  font-weight: 800;
  color: var(--navy-900);
}
.why-card__desc,
.cap-card__desc,
.value-card__desc,
.triptych__text {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}
.cap-card__title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-inline-end: 8px;
  background: var(--blue-600);
  border-radius: 2px;
  transform: translateY(-1px);
}
.cap-card--afdal .cap-card__title::before {
  background: #116a70;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.timeline__item {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.045);
}
.timeline__num {
  display: inline-flex;
  width: 44px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: var(--gold-100);
  color: var(--navy-900);
  border-radius: var(--r);
  font-weight: 800;
  font-size: 0.82rem;
}
.timeline__title {
  color: #fff;
  font-size: 1.04rem;
  font-weight: 800;
  margin: 14px 0 6px;
}
.timeline__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin: 0;
}
.section--tint .timeline__item {
  background: #fff;
  border-color: var(--line);
}
.section--tint .timeline__title {
  color: var(--navy-900);
}
.section--tint .timeline__desc {
  color: var(--muted);
}

.afdal-section {
  background: #fff;
}
.afdal__license,
.afdal-relation {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  background: var(--gold-100);
  border: 1px solid #e1c98b;
  border-radius: var(--r);
  color: var(--navy-900);
  font-weight: 800;
  margin: 4px 0 18px;
}
.license-card {
  padding: 22px;
  text-align: start;
  border-top: 4px solid var(--navy-800);
}
.license-card__label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.license-card__value {
  display: block;
  color: var(--navy-900);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.page-hero {
  position: relative;
  padding: 70px 0 58px;
  color: #fff;
  overflow: hidden;
  background: var(--navy-900);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    var(--navy-950),
    var(--navy-800) 62%,
    var(--blue-700)
  );
}
[dir="rtl"] .page-hero__bg {
  background: linear-gradient(
    -115deg,
    var(--navy-950),
    var(--navy-800) 62%,
    var(--blue-700)
  );
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
}
.page-hero__title {
  max-width: 20ch;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 800;
}
.page-hero__lead {
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
}
.page-hero__actions {
  margin-top: 18px;
}
.breadcrumb__inner {
  padding: 0 0 12px;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}
.breadcrumb__list a:hover {
  color: #fff;
}
.breadcrumb__sep {
  width: 5px;
  height: 5px;
  background: var(--gold-600);
  border-radius: 50%;
}
.breadcrumb__list li[aria-current] {
  color: #fff;
  font-weight: 800;
}

.split--reverse .split__visual {
  order: 2;
}
[dir="rtl"] .split .split__visual {
  order: 2;
}
[dir="rtl"] .split--reverse .split__visual,
[dir="rtl"] .split:not(.split--reverse) .split__copy {
  order: auto;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.two-col__panel {
  padding: 24px;
}
.two-col__panel--dark,
.two-col__panel--accent {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
}
.two-col__panel--dark .two-col__title,
.two-col__panel--accent .two-col__title {
  color: #fff;
}
.two-col__title {
  font-size: 1.18rem;
  font-weight: 800;
}
.checklist,
.mini-steps {
  display: grid;
  gap: 12px;
}
.checklist__item,
.mini-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: 0.92rem;
}
.checklist__mark,
.benefit-card__mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  border-radius: var(--r);
  background: var(--blue-600);
  position: relative;
}
.checklist__mark::after,
.benefit-card__mark::after {
  content: "\2713";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}
.checklist__strong,
.mini-steps__title {
  display: block;
  color: var(--navy-900);
  font-weight: 800;
}
.checklist--light .checklist__item,
.checklist--light .checklist__strong {
  color: rgba(255, 255, 255, 0.9);
}
.mini-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 34px;
  border-radius: var(--r);
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 800;
  font-size: 0.82rem;
}
.mini-steps__desc {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  font-weight: 700;
}
.note-banner {
  padding: 26px;
  background: var(--soft);
  text-align: start;
}
.note-banner__title {
  font-size: 1.35rem;
  font-weight: 800;
}
.note-banner__text {
  color: var(--muted);
  margin: 0;
}
.triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.triptych__num {
  color: var(--blue-700);
  font-weight: 800;
  font-size: 0.82rem;
}

.faq__layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-item {
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 0;
  background: #fff;
  text-align: start;
  font-weight: 800;
  cursor: pointer;
}
.faq-item__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--blue-600);
  transform: translate(-50%, -50%);
  transition: 0.2s ease;
}
.faq-item__icon::before {
  width: 14px;
  height: 2px;
}
.faq-item__icon::after {
  width: 2px;
  height: 14px;
}
.faq-item.is-open {
  border-color: var(--blue-600);
}
.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item__a {
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}
.faq-item__a p {
  margin: 0;
}
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.faq-tab {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  font-weight: 800;
  font-size: 0.86rem;
  cursor: pointer;
}
.faq-tab:hover,
.faq-tab.is-active {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
}
.faq-group {
  display: none;
}
.faq-group.is-active {
  display: block;
}

.cta-band {
  padding: clamp(46px, 7vw, 76px) 0;
  background: var(--navy-900);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band__copy {
  max-width: 700px;
}
.cta-band__title {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.cta-band__text {
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}
.cta-band__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.locations-preview .section-head {
  margin-bottom: 26px;
}
.loc-layout {
  align-items: stretch;
}
.loc-map {
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #edf3f8;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.loc-map::before {
  display: none;
}
.loc-map__region {
  position: relative;
  width: 80%;
  height: 60%;
  background: url("../images/sa-03.svg") center / contain no-repeat;
  opacity: 0.92;
}
.loc-map__pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50% 50% 50% 0;
  background: var(--blue-600);
  transform: rotate(-45deg) translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(31, 99, 200, 0.13);
  cursor: pointer;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    scale 0.18s ease;
}
[dir="rtl"] .loc-map__pin {
  transform: rotate(45deg) translate(50%, -50%);
}
.loc-map__pin::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: #fff;
  border-radius: 50%;
}
.loc-map__pin:hover,
.loc-map__pin:focus,
.loc-map__pin.is-active {
  background: var(--gold-600);
  box-shadow: 0 0 0 11px rgba(181, 139, 52, 0.18);
  scale: 1.16;
}
.loc-cards {
  display: grid;
  gap: 12px;
  align-content: start;
}
.loc-card {
  width: 100%;
  text-align: start;
  padding: 18px;
  cursor: pointer;
  transition: 0.18s ease;
}
.loc-card.is-active {
  border-inline-start: 5px solid var(--blue-600);
  background: #fafdff;
}
[dir="rtl"] .loc-card.is-active {
  border-inline-start: 1px solid var(--blue-600);
  border-inline-end: 5px solid var(--blue-600);
}
.loc-card__name {
  color: var(--navy-900);
  font-size: 1.04rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.loc-card__desc {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.loc-card__contact {
  display: grid;
  gap: 3px;
  margin-bottom: 12px;
  padding: 10px 12px;
  background: #f8fbff;
  border: 1px solid #dbe8f7;
  border-radius: var(--r);
}

.loc-card__contact a {
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.loc-card__contact a:hover {
  color: var(--blue-700);
}
.loc-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.loc-card__services li {
  padding: 5px 9px;
  border: 1px solid #d0e1f7;
  border-radius: var(--r);
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 800;
}
.loc-card__cta {
  width: fit-content;
}

.contact-grid {
  align-items: start;
}
.contact-info__title,
.contact-form__title {
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--navy-900);
}
.contact-info__group {
  margin-bottom: 22px;
}
.contact-info__sub {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--blue-700);
  margin-bottom: 8px;
}
.contact-info__line {
  display: grid;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info__label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}
.contact-info__value {
  color: var(--navy-900);
  font-weight: 800;
  overflow-wrap: anywhere;
}
.contact-info__locations li {
  position: relative;
  padding: 6px 0;
  padding-inline-start: 18px;
  font-weight: 700;
}
.contact-info__locations li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold-600);
}

.operations-list {
  display: grid;
  gap: 10px;
}

.operation-contact {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.operation-contact strong {
  color: var(--navy-900);
  font-weight: 800;
}

.operation-contact a {
  color: var(--blue-700);
  font-size: 0.84rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.afdal-contactcard {
  padding: 18px;
  background: #edf7f7;
  border-color: #cfe6e7;
}
.afdal-contactcard__title {
  color: #0b4f55;
  font-size: 1rem;
  font-weight: 800;
}
.afdal-contactcard__text {
  color: var(--muted);
  font-size: 0.9rem;
}
.afdal-contactcard__email {
  display: inline-block;
  color: #0b4f55;
  font-weight: 800;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}
.contact-form-wrap {
  padding: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field {
  margin-bottom: 14px;
}
.form-label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 800;
}
.form-input,
.form-select {
  width: 100%;
  min-height: 50px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  color: var(--ink);
}
.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(31, 99, 200, 0.12);
}
.form-textarea {
  min-height: 136px;
  resize: vertical;
}
.form-select {
  appearance: none;
}
.form-select-wrap {
  position: relative;
}
.form-select-wrap::after {
  content: "";
  position: absolute;
  inset-inline-end: 14px;
  top: 50%;
  transform: translateY(-35%);
  border-inline: 6px solid transparent;
  border-top: 7px solid var(--navy-800);
  pointer-events: none;
}
.form-input.is-invalid,
.form-select.is-invalid {
  border-color: var(--danger);
}
.form-error {
  display: block;
  min-height: 18px;
  margin-top: 3px;
  color: var(--danger);
  font-size: 0.76rem;
  font-weight: 700;
}
.form-privacy {
  color: var(--muted);
  font-size: 0.78rem;
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.form-status {
  margin-top: 12px;
  padding: 12px;
  border-radius: var(--r);
  font-weight: 800;
}
.form-status.is-success {
  color: var(--success);
  background: #e9f7ef;
  border: 1px solid #bde6ce;
}
.form-status.is-error {
  color: var(--danger);
  background: #fff1f0;
  border: 1px solid #ffd1cc;
}

.afdal-page :focus-visible {
  outline-color: #116a70;
}
.afdal-license,
.afdal-contact {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.afdal-license {
  grid-template-columns: repeat(2, 1fr);
}
.afdal-contact {
  grid-template-columns: repeat(2, 1fr);
}
.afdal-license .license-card {
  border-top-color: #116a70;
}
.afdal-contact__block {
  padding: 18px;
}
.afdal-contact__label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.afdal-contact__value,
.afdal-social__link {
  color: var(--navy-900);
  font-weight: 800;
  overflow-wrap: anywhere;
}
.afdal-social {
  display: grid;
  gap: 4px;
}

.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 46px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.35fr;
  gap: 24px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.footer__brand img {
  width: 126px;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}
.footer__brand p {
  max-width: 36ch;
  font-size: 0.88rem;
}
.footer__legal-entity {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  font-weight: 700;
}
.footer__title {
  position: relative;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  padding-bottom: 10px;
  margin-bottom: 12px;
}
.footer__title::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-600);
}
.footer__col ul {
  display: grid;
  gap: 7px;
}
.footer__col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 600;
}
.footer__col a:hover {
  color: #fff;
}
.footer__contact a {
  overflow-wrap: anywhere;
}
.footer__afdal {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: grid;
  gap: 4px;
}
.footer__afdal strong {
  color: #fff;
  font-size: 0.86rem;
}
.footer__bottom {
  padding: 18px 0;
}
.footer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}
.footer__links {
  display: flex;
  gap: 16px;
}
.developer-link {
  color: #fff;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.developer-link:hover {
  color: var(--gold-100);
  border-color: var(--gold-100);
}

.legal {
  max-width: 850px;
}
.legal h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 24px;
}
.error-page {
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: var(--soft);
}
.error-page__inner {
  text-align: center;
  padding: 60px 0;
}
.error-page__code {
  display: block;
  color: var(--navy-900);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
}
.error-page__code--alt {
  color: var(--blue-600);
}
.error-page__title {
  font-size: 1.5rem;
  font-weight: 800;
}
.error-page__text {
  max-width: 55ch;
  margin-inline: auto;
  color: var(--muted);
}
.error-page__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1120px) {
  .service-grid,
  .why-grid,
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .navbar__inner {
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.9fr) auto;
    gap: 14px;
  }
  .brand__text small {
    max-width: 230px;
  }
  .nav-link,
  .menu-list > li > a {
    padding-inline: 7px;
    font-size: 0.76rem;
  }
}

@media (max-width: 900px) {
  .topbar__lead {
    max-width: 62vw;
  }
  .navbar__inner {
    display: flex;
    justify-content: space-between;
    width: min(var(--container), calc(100% - 2 * var(--gutter)));
    min-height: 68px;
    gap: 16px;
  }
  .navbar__actions {
    margin-inline-start: auto;
  }
  .menu-toggle {
    display: block;
  }
  .brand__text small {
    max-width: 220px;
  }
  .menu-panel {
    position: fixed;
    top: 0;
    inset-inline-end: -100%;
    width: min(88vw, 370px);
    height: 100vh;
    z-index: 90;
    display: block;
    padding: 0 18px 22px;
    background: #fff;
    border-inline-start: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow-y: auto;
    transition: inset-inline-end 0.25s ease;
  }
  .menu-panel__head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 82px;
    margin: 0 -18px 14px;
    padding: 14px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .menu-panel__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }
  .menu-panel__brand img {
    width: 70px;
    height: auto;
    flex: 0 0 auto;
  }
  .menu-panel__brand span {
    display: grid;
    min-width: 0;
    line-height: 1.35;
  }
  .menu-panel__brand strong {
    color: var(--navy-900);
    font-size: 1rem;
    font-weight: 800;
  }
  .menu-panel__brand small {
    color: var(--blue-700);
    font-size: 0.72rem;
    font-weight: 700;
  }
  .menu-close {
    position: relative;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: #fff;
    cursor: pointer;
    transition:
      border-color 0.18s ease,
      background 0.18s ease,
      transform 0.18s ease;
  }
  .menu-close:hover,
  .menu-close:focus-visible {
    background: var(--blue-100);
    border-color: var(--blue-600);
  }
  .menu-close:active {
    transform: scale(0.97);
  }
  .menu-close span,
  .menu-close::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--navy-900);
    transform-origin: center;
  }
  .menu-close span {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .menu-close::before {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .menu-panel.is-open {
    inset-inline-end: 0;
  }
  [dir="rtl"] .menu-panel:not(.is-open) {
    inset-inline-end: auto;
    inset-inline-start: -100%;
  }
  [dir="rtl"] .menu-panel.is-open {
    inset-inline-end: auto;
    inset-inline-start: 0;
    border-inline-start: 0;
    border-inline-end: 1px solid var(--line);
  }
  .menu-list {
    display: grid;
    gap: 4px;
    align-items: stretch;
  }
  .nav-link,
  .menu-list > li > a {
    width: 100%;
    min-height: 46px;
    font-size: 0.95rem;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: var(--r);
  }
  .nav-link--cta,
  .menu-list > li > .nav-link--cta {
    min-height: 50px;
    justify-content: center;
    margin-top: 8px;
    color: #fff;
    background: var(--blue-600);
    border-color: var(--blue-600);
    box-shadow: 0 12px 24px rgba(31, 99, 200, 0.16);
  }
  .nav-link:hover,
  .menu-list > li > a:hover,
  .nav-link.is-active,
  .menu-list > li > a.is-active {
    background: var(--blue-100);
    border-color: #d0e1f7;
  }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 12px 8px;
    min-width: 0;
  }
  .intro__grid,
  .afdal__grid,
  .who__grid,
  .split,
  .contact-grid,
  .loc-layout,
  .faq__layout,
  .two-col {
    grid-template-columns: 1fr;
  }
  .split--reverse .split__visual,
  [dir="rtl"] .split .split__visual {
    order: auto;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid,
  .benefit-grid,
  .triptych,
  .afdal-contact {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 70vh;
  }
  .hero__content {
    padding: 62px 0 72px;
  }
}

@media (max-width: 620px) {
  .topbar__contact {
    display: none;
  }
  .navbar__inner {
    min-height: 66px;
    gap: 10px;
  }
  .navbar__actions {
    gap: 8px;
  }
  .brand img {
    width: 92px;
  }
  .brand__text small {
    display: none;
  }
  .brand__text strong {
    font-size: 0.82rem;
    max-width: 150px;
  }
  .hero__title {
    font-size: 2rem;
  }
  .hero__lead {
    font-size: 0.92rem;
  }
  .service-grid,
  .why-grid,
  .cap-grid,
  .licenses__grid,
  .timeline,
  .afdal-license {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__meta {
    align-items: flex-start;
    flex-direction: column;
  }
  .intro__badge {
    position: static;
    width: 100%;
    margin-top: 12px;
  }
  .loc-map {
    min-height: 330px;
  }
  .contact-form-wrap {
    padding: 18px;
  }
}

@media (max-width: 420px) {
  .btn {
    width: 100%;
  }
  .hero__actions {
    width: 100%;
  }
  .section {
    padding: 46px 0;
  }
}

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

.topbar {
  background: #071324;
}

.topbar__inner {
  justify-content: center;
}

.topbar__contact-list {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.topbar__item:hover {
  color: #fff;
}

.topbar__item--wide {
  max-width: 48%;
}

.topbar__item span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  color: var(--gold-100);
}

.topbar__icon svg,
.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.brand__text strong {
  font-size: 1.12rem;
}

[dir="rtl"] .brand__text strong {
  font-size: 1.22rem;
}

.brand__text small {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-700);
}

[dir="rtl"] .brand__text small {
  font-size: 0.82rem;
}

.service-card {
  isolation: isolate;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(31, 99, 200, 0.08),
    rgba(181, 139, 52, 0.08)
  );
  opacity: 0;
  transition: opacity 0.24s ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: var(--blue-600);
  box-shadow: 0 18px 38px rgba(6, 17, 31, 0.14);
  transform: translateY(-4px);
}

.service-card:hover::after,
.service-card:focus-visible::after {
  opacity: 1;
}

.service-card__icon {
  color: var(--blue-700);
  transition:
    transform 0.24s ease,
    color 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease;
}

.service-card:hover .service-card__icon,
.service-card:focus-visible .service-card__icon {
  color: #fff;
  background: var(--blue-600);
  border-color: var(--blue-600);
  transform: translateY(-2px);
}

.service-card__link {
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.service-card:hover .service-card__link,
.service-card:focus-visible .service-card__link {
  color: var(--blue-700);
  transform: translateX(-3px);
}

[dir="ltr"] .service-card:hover .service-card__link,
[dir="ltr"] .service-card:focus-visible .service-card__link {
  transform: translateX(3px);
}

.license-card {
  min-height: 136px;
  display: grid;
  align-content: center;
  gap: 6px;
}

.license-card__label {
  font-size: 1rem;
  color: var(--navy-900);
}

.license-card__value {
  font-size: 0.9rem;
  color: var(--muted);
}

.licenses {
  background: #fff;
  border-block: 1px solid var(--line);
}

.licenses .section-head {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  align-items: end;
  gap: 24px;
}

.licenses .section-head__title {
  margin-bottom: 0;
  color: var(--navy-900);
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
}

.licenses .eyebrow {
  margin-bottom: 0;
}

.licenses__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.license-card {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border: 0;
  border-inline-start: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

[dir="rtl"] .license-card:first-child,
[dir="ltr"] .license-card:last-child {
  border-inline-start: 0;
}

.license-card:hover {
  background: #f8fafc;
  border-color: #cfd8e3;
  transform: translateY(-1px);
}

.license-card__logo {
  width: 62px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 62px;
  background: #eef2f5;
  color: #8b949e;
  border: 1px solid #e2e7ed;
  padding: 8px;
  overflow: visible;
}

.license-card__logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) saturate(0.2) opacity(0.72);
  transition: filter 0.18s ease;
}

.license-card__logo--fasah img,
.license-card__logo--tga img {
  max-width: 86%;
  max-height: 86%;
}

.license-card__logo span {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.license-card:hover .license-card__logo img {
  filter: grayscale(0.2) saturate(0.8) opacity(0.95);
}

.license-card__body {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.license-card__label {
  color: var(--navy-900);
  font-size: 0.98rem;
  font-weight: 800;
}

.license-card__value {
  color: #8b949e;
  font-size: 0.78rem;
  font-weight: 700;
}

.loc-map {
  background: #f8fafc;
}

.loc-map__region {
  width: min(76%, 460px);
  height: 82%;
  background-image: url("../images/sa-03.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: none;
  opacity: 1;
}

.loc-map__pin {
  width: 20px;
  height: 20px;
  background: var(--blue-700);
  box-shadow:
    0 0 0 7px rgba(31, 99, 200, 0.14),
    0 10px 18px rgba(6, 17, 31, 0.2);
}

.loc-map__pin:hover,
.loc-map__pin:focus,
.loc-map__pin.is-active {
  background: var(--gold-600);
  box-shadow:
    0 0 0 11px rgba(181, 139, 52, 0.22),
    0 14px 24px rgba(6, 17, 31, 0.18);
}

.loc-card {
  position: relative;
}

.loc-card::after {
  content: "";
  position: absolute;
  inset-block: 12px;
  inset-inline-start: 0;
  width: 0;
  background: var(--gold-600);
  transition: width 0.2s ease;
}

[dir="rtl"] .loc-card::after {
  inset-inline-start: auto;
  inset-inline-end: 0;
}

.loc-card:hover::after,
.loc-card.is-active::after {
  width: 4px;
}

.footer__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.footer__credit {
  justify-self: end;
}

[dir="rtl"] .footer__credit {
  justify-self: start;
}

@media (max-width: 900px) {
  .licenses .section-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }

  .licenses__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-inline: 1px solid var(--line);
  }

  .license-card {
    border-inline-start: 0;
    border-bottom: 1px solid var(--line);
  }

  .license-card:nth-last-child(-n + 1) {
    border-bottom: 0;
  }

  .topbar__contact-list {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .topbar__contact-list::-webkit-scrollbar {
    display: none;
  }

  .topbar__item {
    flex: 0 0 auto;
  }

  .topbar__item--wide {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .licenses__grid {
    grid-template-columns: 1fr;
  }

  .license-card {
    min-height: 92px;
    padding: 16px;
  }

  .brand__text strong,
  [dir="rtl"] .brand__text strong {
    font-size: 1rem;
  }

  .brand__text small,
  [dir="rtl"] .brand__text small {
    display: block;
    font-size: 0.7rem;
  }

  .footer__meta {
    grid-template-columns: 1fr;
  }

  .footer__credit,
  [dir="rtl"] .footer__credit {
    justify-self: start;
  }
}
