@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@500;600;700;800&family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&display=swap");

:root {
  --red: #a70d12;
  --red-dark: #78090d;
  --red-bright: #c9161d;
  --ink: #171a1d;
  --charcoal: #22262a;
  --charcoal-2: #2d3237;
  --muted: #667078;
  --line: #dce0e3;
  --paper: #ffffff;
  --soft: #f5f6f7;
  --soft-red: #fff5f5;
  --shadow: 0 22px 70px rgba(18, 22, 26, 0.14);
  --header-height: 88px;
  --radius: 8px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "IBM Plex Sans Arabic", Tahoma, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.85;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(167, 13, 18, 0.35);
  outline-offset: 3px;
}

::selection {
  color: #fff;
  background: var(--red);
}

.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;
}

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

.section {
  position: relative;
  padding: 104px 0;
}

.section--soft {
  background: var(--soft);
}

.section--dark {
  color: #fff;
  background: var(--ink);
}

.section--tight {
  padding-block: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 700;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section-title {
  max-width: 820px;
  margin: 0;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 700;
  line-height: 1.35;
}

.section-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--dark .section-lead {
  color: #c8cdd1;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
}

.section-head__action {
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease,
    background-color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 13px 30px rgba(167, 13, 18, 0.24);
}

.btn--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 17px 36px rgba(120, 9, 13, 0.3);
}

.btn--outline {
  color: var(--ink);
  border-color: #b9bec2;
  background: rgba(255, 255, 255, 0.86);
}

.btn--outline:hover {
  color: var(--red);
  border-color: var(--red);
}

.btn--light {
  color: var(--ink);
  background: #fff;
}

.btn svg,
.icon-link svg,
.nav-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 1.9;
}

.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--red);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(20, 24, 28, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  transition: height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  box-shadow: 0 12px 36px rgba(18, 22, 26, 0.1);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  min-width: 230px;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  transition: width 220ms ease, height 220ms ease;
}

.is-scrolled .brand img {
  width: 52px;
  height: 52px;
}

.brand__copy {
  display: grid;
  line-height: 1.35;
}

.brand__name {
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
}

.brand__tagline {
  color: var(--muted);
  font-size: 0.74rem;
}

.desktop-nav {
  display: flex;
  height: 100%;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.nav-link,
.nav-trigger {
  display: inline-flex;
  height: 44px;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  border: 0;
  border-radius: 5px;
  color: #343a3f;
  background: transparent;
  font-weight: 600;
  transition: color 170ms ease, background-color 170ms ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-trigger:hover {
  color: var(--red);
  background: var(--soft-red);
}

.nav-dropdown {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% - 6px);
  right: 50%;
  width: min(720px, 78vw);
  padding: 18px;
  border: 1px solid rgba(20, 24, 28, 0.08);
  border-radius: 8px;
  opacity: 0;
  background: #fff;
  box-shadow: var(--shadow);
  pointer-events: none;
  transform: translate(50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%, 0);
}

.nav-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.nav-service {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  transition: color 170ms ease, background-color 170ms ease;
}

.nav-service:hover {
  color: var(--red);
  background: var(--soft);
}

.nav-service__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-service__icon svg {
  width: 19px;
  height: 19px;
}

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

.header-phone {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  transition: color 170ms ease, border-color 170ms ease;
}

.header-phone:hover {
  color: var(--red);
  border-color: var(--red);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  position: fixed;
  z-index: 1300;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(9, 11, 13, 0.72);
  backdrop-filter: blur(3px);
  transition: opacity 300ms ease;
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(92vw, 430px);
  height: 100%;
  flex-direction: column;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(167, 13, 18, 0.18), transparent 35%),
    var(--ink);
  box-shadow: -22px 0 70px rgba(0, 0, 0, 0.34);
  transform: translateX(104%);
  transition: transform 360ms cubic-bezier(0.22, 0.84, 0.32, 1);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__head {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-brand img {
  width: 56px;
  height: 56px;
  padding: 4px;
  border-radius: 50%;
  background: #fff;
}

.mobile-brand strong {
  display: block;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: 1rem;
}

.mobile-brand span {
  color: #aeb5ba;
  font-size: 0.76rem;
}

.menu-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  background: transparent;
}

.mobile-menu__body {
  flex: 1;
  padding: 18px 22px 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-nav-link,
.mobile-services__toggle {
  display: flex;
  width: 100%;
  min-height: 55px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  background: transparent;
  font-weight: 600;
  text-align: right;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: #ff6c72;
}

.mobile-services__toggle svg {
  transition: transform 200ms ease;
}

.mobile-services.is-open .mobile-services__toggle svg {
  transform: rotate(180deg);
}

.mobile-services__list {
  display: grid;
  max-height: 0;
  gap: 4px;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
}

.mobile-services.is-open .mobile-services__list {
  max-height: 700px;
  padding: 10px 0 12px;
}

.mobile-service-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 5px;
  color: #c8cdd1;
  font-size: 0.92rem;
}

.mobile-service-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.mobile-menu__foot {
  padding: 18px 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
}

.mobile-menu__foot .btn {
  width: 100%;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: #e8eaec;
}

.home-hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1781 / 883;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__actions {
  position: absolute;
  z-index: 3;
  top: 55%;
  right: clamp(5%, 7vw, 10%);
  display: flex;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-actions 700ms 350ms ease forwards;
}

@keyframes hero-actions {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-hero__actions .btn {
  min-width: 175px;
}

.hero-mobile-actions {
  display: none;
}

.intro-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.intro-band::before {
  position: absolute;
  top: -70%;
  left: -4%;
  width: 48%;
  height: 220%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.intro-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.8fr;
  gap: 64px;
  padding: 72px 0;
}

.intro-band__label {
  color: #ff777c;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.intro-band__copy {
  margin: 0;
  color: #d4d8db;
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  grid-column: span 4;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: var(--charcoal);
  isolation: isolate;
}

.service-card:nth-child(1),
.service-card:nth-child(6) {
  grid-column: span 8;
}

.service-card__media,
.service-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card__media img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.service-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 28%, rgba(11, 13, 15, 0.94) 100%);
}

.service-card:hover .service-card__media img {
  transform: scale(1.045);
}

.service-card__body {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.service-card__number {
  display: block;
  margin-bottom: 6px;
  color: #ff777c;
  font-size: 0.82rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 0 0 8px;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: 1.45rem;
  line-height: 1.45;
}

.service-card p {
  max-width: 520px;
  margin: 0;
  color: #d8dcdf;
  font-size: 0.94rem;
  line-height: 1.7;
}

.service-card__arrow {
  position: absolute;
  left: 24px;
  bottom: 28px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  transition: color 180ms ease, background-color 180ms ease,
    border-color 180ms ease, transform 180ms ease;
}

.service-card:hover .service-card__arrow {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
  transform: translateX(-3px);
}

.service-card--no-image {
  min-height: 330px;
  color: var(--ink);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(167, 13, 18, 0.06), transparent 55%),
    #fff;
}

.service-card--no-image::before {
  position: absolute;
  top: 26px;
  left: 26px;
  width: 116px;
  height: 116px;
  content: "";
  border: 1px solid rgba(167, 13, 18, 0.16);
  border-radius: 50%;
}

.service-card--no-image::after {
  display: none;
}

.service-card--no-image .service-card__body {
  position: relative;
  padding-top: 88px;
}

.service-card--no-image p {
  color: var(--muted);
}

.service-card--no-image .service-card__arrow {
  color: var(--red);
  border-color: rgba(167, 13, 18, 0.32);
}

.service-card--no-image:hover .service-card__arrow {
  color: #fff;
}

.finder {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.finder__intro {
  position: relative;
  padding: 54px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(167, 13, 18, 0.92), rgba(120, 9, 13, 0.98)),
    var(--red);
}

.finder__intro::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.finder__intro h2 {
  margin: 0 0 16px;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.35;
}

.finder__intro p {
  margin: 0;
  color: #ffdfe0;
}

.finder__panel {
  padding: 44px;
}

.finder__label {
  display: block;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.finder__choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 26px;
}

.finder-choice {
  min-height: 68px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font-weight: 600;
  transition: color 170ms ease, border-color 170ms ease,
    background-color 170ms ease, transform 170ms ease;
}

.finder-choice:hover,
.finder-choice.is-selected {
  color: var(--red);
  border-color: var(--red);
  background: var(--soft-red);
  transform: translateY(-2px);
}

.finder__result {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-right: 4px solid var(--red);
  background: var(--soft);
}

.finder__result strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Alexandria", Tahoma, sans-serif;
}

.finder__result p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.coverage {
  overflow: hidden;
  background: radial-gradient(circle at 18% 28%, rgba(167, 13, 18, 0.22), transparent 34%),
    linear-gradient(135deg, #111417 0%, var(--ink) 52%, #22262a 100%);
}

.coverage::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.5;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to left, #000 18%, transparent 88%);
  pointer-events: none;
}

.coverage::after {
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 64%);
  pointer-events: none;
}

.coverage__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  align-items: center;
  gap: 70px;
}

.coverage .eyebrow {
  color: #ff6268;
}

.coverage__copy {
  position: relative;
  z-index: 2;
}

.coverage__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.coverage__link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  color: #f4f5f6;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  transition: color 180ms ease, border-color 180ms ease;
}

.coverage__link:hover {
  color: #fff;
  border-color: var(--red-bright);
}

.coverage__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.coverage__meta span {
  display: grid;
  gap: 3px;
  padding: 16px 14px;
  color: #cfd4d7;
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.045);
}

.coverage__meta strong {
  color: #fff;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: 1.15rem;
}

.coverage__routes {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 48%, rgba(201, 22, 29, 0.22), transparent 23%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 26px 70px rgba(0, 0, 0, 0.26);
  isolation: isolate;
}

.coverage__routes::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.coverage__routes::after {
  position: absolute;
  top: 49%;
  right: 47%;
  width: 150px;
  height: 150px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 22, 29, 0.26), transparent 66%);
  transform: translate(50%, -50%);
  pointer-events: none;
}

.route-path {
  position: absolute;
  z-index: 1;
  border: 0;
  border-top: 2px dashed rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.route-path--main {
  top: 45%;
  right: 10%;
  width: 78%;
  height: 134px;
  transform: rotate(-8deg);
}

.route-path--upper {
  top: 29%;
  right: 22%;
  width: 56%;
  height: 112px;
  opacity: 0.7;
  transform: rotate(16deg);
}

.route-path--lower {
  top: 56%;
  right: 18%;
  width: 62%;
  height: 118px;
  opacity: 0.64;
  transform: rotate(-20deg);
}

.route-dot {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  width: auto;
  height: auto;
  min-width: 84px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border: 0;
  color: #fff;
  background: transparent;
  backdrop-filter: none;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transform: translate(50%, -50%);
  transition: transform 180ms ease;
}

.route-dot span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(20, 23, 27, 0.68);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.route-dot::after {
  display: block;
  width: 15px;
  height: 15px;
  content: "";
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 8px rgba(201, 22, 29, 0.12), 0 0 28px rgba(201, 22, 29, 0.48);
}

.route-dot:hover {
  border-color: transparent;
  background: transparent;
  transform: translate(50%, -50%) scale(1.06);
}

.route-dot:hover span {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(167, 13, 18, 0.72);
}

.route-dot--sa {
  top: 51%;
  right: 48%;
  min-width: 100px;
}

.route-dot--sa span {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.route-dot--kw {
  top: 18%;
  right: 61%;
}

.route-dot--bh {
  top: 34%;
  right: 36%;
}

.route-dot--qa {
  top: 47%;
  right: 26%;
}

.route-dot--ae {
  top: 66%;
  right: 18%;
}

.route-dot--om {
  top: 76%;
  right: 5%;
}

.route-pulse {
  position: absolute;
  z-index: 2;
  top: 52%;
  right: 48%;
  width: 16px;
  height: 16px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(201, 22, 29, 0.5);
  transform: translate(50%, -50%);
  animation: route-pulse 2s infinite;
}

@keyframes route-pulse {
  70% {
    box-shadow: 0 0 0 24px rgba(201, 22, 29, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 22, 29, 0);
  }
}

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

.benefit-item {
  min-height: 205px;
  padding: 30px;
  background: #fff;
}

.benefit-item__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
}

.benefit-item h3 {
  margin: 0 0 9px;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: 1.05rem;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.steps-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: steps;
}

.steps-track::before {
  position: absolute;
  top: 37px;
  right: 9%;
  left: 9%;
  height: 1px;
  content: "";
  background: var(--line);
}

.step {
  position: relative;
  counter-increment: steps;
}

.step__number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  background: #fff;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  transition: color 200ms ease, border-color 200ms ease,
    background-color 200ms ease, transform 200ms ease;
}

.step:hover .step__number {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-4px);
}

.step h3 {
  margin: 0 0 8px;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: 1.08rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.business {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 570px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.business__media {
  min-height: 570px;
}

.business__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  color: #fff;
}

.business__copy h2 {
  margin: 0 0 18px;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.4;
}

.business__copy p {
  margin: 0 0 24px;
  color: #cdd2d5;
}

.business__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.business__list li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: #e8eaec;
  font-size: 0.84rem;
}

.trust-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.trust-panel__copy h2 {
  margin: 0 0 14px;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.trust-panel__copy p {
  margin: 0 0 22px;
  color: var(--muted);
}

.trust-panel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-chip {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 0.88rem;
  font-weight: 600;
}

.trust-panel__badge {
  display: grid;
  place-items: center;
  padding: 20px;
  border-radius: 6px;
  background: var(--soft);
}

.trust-panel__badge img {
  width: 100%;
  max-width: 600px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 700;
  text-align: right;
}

.faq-question span:last-child {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  transition: color 180ms ease, background-color 180ms ease,
    transform 180ms ease;
}

.faq-item.is-open .faq-question span:last-child {
  color: #fff;
  background: var(--red);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}

.faq-answer__inner {
  max-width: 930px;
  padding: 0 0 24px;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  color: #fff;
  background: var(--red);
}

.cta-band::before,
.cta-band::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.cta-band::before {
  top: -120px;
  right: -60px;
  width: 340px;
  height: 340px;
}

.cta-band::after {
  bottom: -150px;
  left: 5%;
  width: 420px;
  height: 420px;
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0 0 8px;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.4;
}

.cta-band p {
  margin: 0;
  color: #ffdfe0;
}

.cta-band__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.page-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(16, 18, 20, 0.2), rgba(16, 18, 20, 0.9));
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 520px;
  align-items: center;
}

.page-hero__content {
  max-width: 700px;
  padding: 70px 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #d3d7da;
  font-size: 0.85rem;
}

.breadcrumbs a:hover {
  color: #fff;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.32;
}

.page-hero p {
  max-width: 650px;
  margin: 0 0 28px;
  color: #e0e3e5;
  font-size: 1.08rem;
}

.page-hero--graphic {
  min-height: 470px;
  background:
    radial-gradient(circle at 20% 20%, rgba(167, 13, 18, 0.32), transparent 28%),
    linear-gradient(135deg, #202428, #111315);
}

.page-hero--graphic::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.12;
  background-image: linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 75% 50%, #000, transparent 55%);
}

.page-hero--graphic .page-hero__inner {
  min-height: 470px;
}

.page-hero__graphic-icon {
  position: absolute;
  top: 50%;
  left: 9%;
  display: grid;
  width: 220px;
  height: 220px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.82);
  transform: translateY(-50%);
}

.page-hero__graphic-icon svg {
  width: 94px;
  height: 94px;
  stroke-width: 1.2;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 70px;
}

.article-main {
  min-width: 0;
}

.content-block {
  padding: 0 0 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.content-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.content-block h2 {
  margin: 0 0 20px;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.5;
}

.content-block h3 {
  margin: 30px 0 12px;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: 1.16rem;
}

.content-block p {
  margin: 0 0 18px;
  color: #454d53;
}

.content-block ul,
.content-block ol {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.content-block li {
  position: relative;
  padding-right: 27px;
  color: #3e464c;
}

.content-block ul li::before {
  position: absolute;
  top: 0.82em;
  right: 0;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--red);
}

.content-block ol {
  counter-reset: content-list;
}

.content-block ol li {
  counter-increment: content-list;
  padding-right: 42px;
}

.content-block ol li::before {
  position: absolute;
  top: 3px;
  right: 0;
  display: grid;
  width: 28px;
  height: 28px;
  content: counter(content-list);
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
}

.article-aside {
  position: sticky;
  top: 106px;
}

.aside-box {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.aside-box + .aside-box {
  margin-top: 16px;
}

.aside-box--dark {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.aside-box h3 {
  margin: 0 0 12px;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: 1.04rem;
}

.aside-box p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.aside-box--dark p {
  color: #cbd0d3;
}

.aside-box .btn {
  width: 100%;
}

.aside-service-list {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aside-service-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #3e464c;
  font-size: 0.9rem;
  font-weight: 600;
}

.aside-service-list li:last-child a {
  border-bottom: 0;
}

.aside-service-list a:hover {
  color: var(--red);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 34px;
}

.contact-details {
  padding: 38px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
}

.contact-details h2 {
  margin: 0 0 14px;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: 2rem;
}

.contact-details > p {
  margin: 0 0 30px;
  color: #cbd0d3;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-method:last-child {
  border-bottom: 0;
}

.contact-method__icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
}

.contact-method small {
  display: block;
  color: #9fa7ad;
}

.contact-method strong {
  direction: ltr;
  display: block;
  font-size: 1rem;
  text-align: right;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 11px 13px;
  border: 1px solid #cfd4d7;
  border-radius: 5px;
  outline: none;
  color: var(--ink);
  background: #fff;
  transition: border-color 170ms ease, box-shadow 170ms ease;
}

.form-field textarea {
  min-height: 125px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(167, 13, 18, 0.1);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.request-form .btn {
  width: fit-content;
  min-width: 220px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #15181b;
}

.site-footer::before {
  position: absolute;
  top: -280px;
  left: -220px;
  width: 580px;
  height: 580px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.85fr 1.15fr;
  gap: 46px;
  padding: 76px 0 56px;
}

.footer-about .brand {
  min-width: 0;
  margin-bottom: 20px;
}

.footer-about .brand img {
  padding: 4px;
  border-radius: 50%;
  background: #fff;
}

.footer-about .brand__tagline {
  color: #aeb5ba;
}

.footer-about > p {
  margin: 0 0 22px;
  color: #bfc5c9;
  font-size: 0.92rem;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.icon-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  color: #fff;
  transition: border-color 170ms ease, background-color 170ms ease;
}

.icon-link:hover {
  border-color: var(--red);
  background: var(--red);
}

.footer-column h3 {
  margin: 0 0 20px;
  color: #fff;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #bfc5c9;
  font-size: 0.9rem;
  transition: color 170ms ease, transform 170ms ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(-3px);
}

.footer-contact-list {
  display: grid;
  gap: 13px;
}

.footer-contact-item {
  display: flex;
  align-items: start;
  gap: 10px;
  color: #c7ccd0;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 5px;
  color: #ff6c72;
}

.footer-contact-item span {
  direction: ltr;
  text-align: right;
}

.footer-map {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: #30363b;
}

.footer-map iframe {
  width: 100%;
  height: 210px;
  border: 0;
  filter: grayscale(0.8) contrast(1.05);
  pointer-events: none;
}

.footer-map__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 14px;
  background: linear-gradient(transparent 45%, rgba(12, 14, 16, 0.92));
}

.footer-map__label {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-trust {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-trust__copy {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.footer-trust__mark {
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: #fff;
}

.footer-trust__mark svg {
  width: 30px;
  height: 30px;
}

.footer-trust__copy strong {
  display: block;
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: 0.95rem;
}

.footer-trust__copy span {
  display: block;
  color: #aeb5ba;
  font-size: 0.83rem;
}

.footer-trust__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  padding: 18px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.footer-trust__badge img {
  width: min(100%, 255px);
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.24));
}

.footer-bottom {
  position: relative;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #929ba2;
  font-size: 0.82rem;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-launcher {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
}

.contact-launcher__main {
  position: relative;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 35px rgba(120, 9, 13, 0.32);
  transition: transform 180ms ease, background-color 180ms ease;
}

.contact-launcher__main::before {
  position: absolute;
  inset: -7px;
  content: "";
  border: 1px solid rgba(167, 13, 18, 0.32);
  border-radius: inherit;
  animation: contact-ring 2.4s infinite;
}

@keyframes contact-ring {
  70% {
    opacity: 0;
    transform: scale(1.18);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.contact-launcher.is-open .contact-launcher__main {
  background: var(--ink);
}

.contact-launcher__icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-launcher__icon--chat {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.contact-launcher__icon--close {
  opacity: 0;
  transform: scale(0.72) rotate(-90deg);
}

.contact-launcher.is-open .contact-launcher__icon--chat {
  opacity: 0;
  transform: scale(0.72) rotate(90deg);
}

.contact-launcher.is-open .contact-launcher__icon--close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.contact-launcher__main svg {
  width: 27px;
  height: 27px;
}

.contact-launcher__options {
  display: grid;
  gap: 9px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.contact-launcher.is-open .contact-launcher__options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-option {
  display: flex;
  width: max-content;
  min-width: 146px;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 22, 26, 0.14);
  font-size: 0.85rem;
  font-weight: 700;
}

.contact-option__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
}

.contact-option--whatsapp .contact-option__icon {
  background: #1fa855;
}

.contact-option--phone .contact-option__icon {
  background: var(--red);
}

.contact-option svg {
  width: 18px;
  height: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal="right"] {
  transform: translateX(30px);
}

[data-reveal="left"] {
  transform: translateX(-30px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0);
}

.not-found {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  padding: 70px 0;
  text-align: center;
}

.not-found__code {
  color: var(--red);
  font-family: "Alexandria", Tahoma, sans-serif;
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 800;
  line-height: 1;
}

.not-found h1 {
  margin: 12px 0;
  font-family: "Alexandria", Tahoma, sans-serif;
}

.not-found p {
  margin: 0 0 24px;
  color: var(--muted);
}

@media (max-width: 1120px) {
  :root {
    --header-height: 80px;
  }

  .desktop-nav,
  .header-actions .btn,
  .header-phone {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
  }

  .home-hero__actions {
    top: 57%;
    right: 4%;
  }

  .home-hero__actions .btn {
    min-width: 145px;
    min-height: 46px;
    padding-inline: 17px;
    font-size: 0.88rem;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(6) {
    grid-column: span 6;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .section {
    padding-block: 78px;
  }

  .section-head {
    display: block;
  }

  .section-head__action {
    margin-top: 22px;
  }

  .home-hero__actions {
    display: none;
  }

  .hero-mobile-actions {
    display: flex;
    gap: 10px;
    padding: 18px 20px 22px;
    background: #fff;
  }

  .hero-mobile-actions .btn {
    flex: 1;
  }

  .intro-band__inner,
  .finder,
  .coverage__grid,
  .business,
  .trust-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-band__inner {
    gap: 18px;
  }

  .finder__intro,
  .finder__panel,
  .business__copy {
    padding: 38px;
  }

  .coverage__routes {
    min-height: 360px;
  }

  .benefit-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 24px;
  }

  .steps-track::before {
    display: none;
  }

  .business__media {
    min-height: 420px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .aside-box + .aside-box {
    margin-top: 0;
  }

  .footer-trust {
    grid-template-columns: 1fr;
  }

  .page-hero__graphic-icon {
    left: 4%;
    width: 150px;
    height: 150px;
    opacity: 0.24;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 51px;
    height: 51px;
  }

  .brand__name {
    font-size: 0.94rem;
  }

  .brand__tagline {
    display: none;
  }

  .home-hero__media {
    aspect-ratio: 1781 / 883;
  }

  .home-hero__media img {
    object-fit: contain;
    background: #e8eaec;
  }

  .hero-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 14px;
  }

  .hero-mobile-actions .btn {
    min-height: 48px;
    padding: 10px;
    font-size: 0.84rem;
  }

  .intro-band__inner {
    padding-block: 48px;
  }

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

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(6) {
    grid-column: auto;
    min-height: 385px;
  }

  .service-card--no-image {
    min-height: 285px;
  }

  .service-card__body {
    padding: 22px;
  }

  .service-card__arrow {
    left: 18px;
    bottom: 22px;
  }

  .finder__intro,
  .finder__panel,
  .business__copy,
  .trust-panel,
  .contact-details,
  .request-form {
    padding: 26px;
  }

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

  .finder__result {
    display: grid;
  }

  .finder__result .btn {
    width: 100%;
  }

  .coverage__grid {
    gap: 20px;
  }

  .coverage__routes {
    min-height: 310px;
    transform: scale(0.88);
    transform-origin: center;
  }

  .route-dot {
    width: 78px;
    height: 78px;
    font-size: 0.85rem;
  }

  .benefit-list,
  .steps-track {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    min-height: 0;
  }

  .step {
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 16px;
  }

  .step__number {
    grid-row: span 2;
    width: 58px;
    height: 58px;
    margin: 0;
  }

  .business__media {
    min-height: 310px;
  }

  .trust-panel {
    gap: 28px;
  }

  .cta-band__inner,
  .footer-bottom__inner {
    display: grid;
  }

  .cta-band__actions {
    display: grid;
    width: 100%;
  }

  .cta-band__actions .btn {
    width: 100%;
  }

  .page-hero,
  .page-hero__inner,
  .page-hero--graphic,
  .page-hero--graphic .page-hero__inner {
    min-height: 430px;
  }

  .page-hero__media::after {
    background: linear-gradient(90deg, rgba(16, 18, 20, 0.45), rgba(16, 18, 20, 0.9));
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .article-aside,
  .request-form {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: auto;
  }

  .request-form .btn {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 58px;
  }

  .footer-map {
    min-height: 230px;
  }

  .footer-map iframe {
    height: 230px;
  }

  .footer-trust__copy {
    align-items: start;
  }

  .contact-launcher {
    right: 16px;
    bottom: 16px;
  }

  .contact-launcher__main {
    width: 58px;
    height: 58px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* v20260614b footer ministry + map */
.footer-map__cta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 980px) {
  .footer-trust {
    grid-template-columns: 1fr;
  }

  .footer-trust__badge {
    min-height: 110px;
  }
}

@media (max-width: 640px) {
  .footer-map {
    padding: 12px;
  }

  .footer-map iframe {
    min-height: 220px;
  }

  .footer-map__cta {
    width: 100%;
  }

  .footer-trust__copy {
    align-items: flex-start;
  }
}



/* cache-break 20260614c: footer ministry + interactive map */
.footer-map {
  display: grid !important;
  gap: 12px !important;
  min-height: 0 !important;
  padding: 14px !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)) !important;
}

.footer-map iframe {
  min-height: 240px !important;
  height: 240px !important;
  border-radius: 12px !important;
  pointer-events: auto !important;
  filter: none !important;
  background: #0b1016 !important;
}

.footer-map__cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 48px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  background: rgba(255,255,255,0.05) !important;
  color: #fff !important;
  font-weight: 700 !important;
  width: max-content !important;
  transition: transform .2s ease, border-color .2s ease, background .2s ease !important;
}

.footer-map__cta:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(255,255,255,0.22) !important;
  background: rgba(255,255,255,0.08) !important;
}

.footer-map__cta span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.footer-map__cta svg {
  width: 18px !important;
  height: 18px !important;
}

.footer-trust {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px) !important;
  gap: 28px !important;
}

.footer-trust__badge {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 126px !important;
  padding: 18px 24px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18) !important;
}

.footer-trust__badge img {
  width: min(100%, 255px) !important;
  height: auto !important;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.24)) !important;
}

@media (max-width: 980px) {
  .footer-trust {
    grid-template-columns: 1fr !important;
  }

  .footer-trust__badge {
    min-height: 110px !important;
  }
}

@media (max-width: 640px) {
  .footer-map {
    padding: 12px !important;
  }

  .footer-map iframe {
    min-height: 220px !important;
    height: 220px !important;
  }

  .footer-map__cta {
    width: 100% !important;
  }

  .footer-trust__copy {
    align-items: flex-start !important;
  }
}

/* cache-break 20260614e: chat launcher icon */

@media (max-width: 1120px) {
  .coverage__grid {
    gap: 44px;
  }
}

@media (max-width: 900px) {
  .coverage__actions {
    gap: 12px;
  }

  .coverage__routes {
    min-height: 390px;
  }
}

@media (max-width: 680px) {
  .coverage__grid {
    gap: 24px;
  }

  .coverage__actions,
  .coverage__actions .btn,
  .coverage__link {
    width: 100%;
  }

  .coverage__actions {
    display: grid;
  }

  .coverage__meta {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .coverage__routes {
    min-height: 345px;
    transform: none;
  }

  .coverage__routes::before {
    inset: 12px;
    background-size: 30px 30px;
  }

  .route-path--main {
    top: 43%;
    right: 8%;
    width: 84%;
    height: 104px;
  }

  .route-path--upper {
    top: 27%;
    right: 17%;
    width: 63%;
    height: 86px;
  }

  .route-path--lower {
    top: 58%;
    right: 13%;
    width: 70%;
    height: 88px;
  }

  .route-dot {
    min-width: 68px;
    gap: 6px;
    font-size: 0.78rem;
  }

  .route-dot span {
    min-height: 30px;
    padding: 6px 10px;
  }

  .route-dot::after {
    width: 12px;
    height: 12px;
    border-width: 2px;
  }

  .route-dot--sa {
    top: 50%;
    right: 50%;
  }

  .route-dot--kw {
    top: 18%;
    right: 61%;
  }

  .route-dot--bh {
    top: 34%;
    right: 34%;
  }

  .route-dot--qa {
    top: 48%;
    right: 24%;
  }

  .route-dot--ae {
    top: 66%;
    right: 18%;
  }

  .route-dot--om {
    top: 77%;
    right: 7%;
  }
}

