:root {
  --ink: #0b1015;
  --ink-soft: #151b21;
  --graphite: #252c32;
  --muted: #667079;
  --paper: #f8f7f3;
  --warm-white: #fffdf9;
  --line: rgba(11, 16, 21, 0.13);
  --gold: #c89543;
  --gold-dark: #9b6a27;
  --silver: #dce0e2;
  --green: #1ea668;
  --display: "Alexandria", sans-serif;
  --body: "IBM Plex Sans Arabic", sans-serif;
  --shadow: 0 24px 70px rgba(11, 16, 21, 0.13);
  --page-padding: clamp(1.25rem, 6vw, 7rem);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: var(--body);
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  top: -5rem;
  right: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 0.3rem;
  background: #fff;
  color: var(--ink);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  min-height: 96px;
  padding: 0 var(--page-padding);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(5, 8, 11, 0.72), rgba(5, 8, 11, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
}

.brand-icon {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 0.35rem;
  background: var(--gold);
  color: #fff;
  font-size: 1rem;
  transform: skewX(-5deg);
}

.brand-icon i {
  transform: skewX(5deg);
}

.brand-copy {
  display: grid;
  gap: 0.16rem;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.03rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.62rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.3rem);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.65rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  width: 100%;
}

.header-call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  direction: ltr;
}

.header-call i {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

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

.hero-media {
  background: url("assets/hero-luxury-v2.webp") center center / cover no-repeat;
  animation: hero-scale 1.5s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 9, 12, 0.04) 0%, rgba(6, 9, 12, 0.18) 38%, rgba(6, 9, 12, 0.88) 72%, rgba(6, 9, 12, 0.97) 100%),
    linear-gradient(0deg, rgba(6, 9, 12, 0.7), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(750px, 54vw);
  margin-top: 5rem;
  margin-right: var(--page-padding);
}

.eyebrow,
.section-label {
  margin-bottom: 1.2rem;
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow i {
  color: #d8ad64;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.045em;
}

h1 {
  max-width: 720px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 5.4vw, 6.1rem);
  line-height: 1.34;
  font-weight: 700;
}

h1 span {
  color: #f0d5a5;
}

.hero-description {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 2;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  min-height: 58px;
  padding: 0.8rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 35px rgba(17, 125, 77, 0.3);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: #188d58;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-note {
  margin: 1.5rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.75rem;
}

.hero-note i {
  color: #58c68f;
}

.proof-strip {
  position: relative;
  z-index: 5;
  width: min(1260px, calc(100% - 2.5rem));
  min-height: 128px;
  margin: -64px auto 0;
  padding: 1.4rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-radius: 0.65rem;
  background: var(--warm-white);
  box-shadow: var(--shadow);
}

.proof-strip > div {
  min-height: 62px;
  padding: 0 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-left: 1px solid var(--line);
}

.proof-strip > div:last-child {
  border-left: 0;
}

.proof-strip > div > i {
  color: var(--gold-dark);
  font-size: 1.15rem;
}

.proof-strip span {
  display: grid;
  gap: 0.2rem;
}

.proof-strip strong {
  font-family: var(--display);
  font-size: 0.8rem;
}

.proof-strip small {
  color: var(--muted);
  font-size: 0.68rem;
}

.section {
  padding: clamp(6rem, 10vw, 10rem) var(--page-padding);
}

.section-heading {
  max-width: 1260px;
  margin: 0 auto 3.5rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 4rem;
}

.section-heading h2,
.services h2,
.assurance h2,
.coverage h2,
.faq h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4vw, 4.65rem);
  line-height: 1.5;
}

.section-heading > p {
  max-width: 560px;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 2;
}

.process {
  padding-top: clamp(8rem, 13vw, 13rem);
  background:
    radial-gradient(circle at 12% 30%, rgba(200, 149, 67, 0.09), transparent 25%),
    var(--paper);
}

.process-grid {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  list-style: none;
}

.process-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--warm-white);
  box-shadow: 0 18px 45px rgba(11, 16, 21, 0.06);
}

.process-card:nth-child(2) {
  transform: translateY(1.6rem);
}

.process-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--silver);
}

.process-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(0deg, rgba(11, 16, 21, 0.52), transparent);
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.process-card:hover .process-image img {
  transform: scale(1.035);
}

.step-badge {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
}

.process-copy {
  min-height: 230px;
  padding: 1.7rem;
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 1rem;
  align-items: start;
}

.process-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 149, 67, 0.32);
  border-radius: 0.45rem;
  color: var(--gold-dark);
}

.process-copy h3 {
  margin-bottom: 0.7rem;
  font-size: 1.14rem;
  line-height: 1.65;
}

.process-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.95;
}

.services {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(3rem, 9vw, 10rem);
  background: var(--warm-white);
}

.services-intro {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.services-intro > p:not(.section-label) {
  max-width: 520px;
  margin: 1.3rem 0 1.6rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link i {
  color: var(--gold-dark);
}

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

.service-list article {
  position: relative;
  min-height: 240px;
  padding: 2rem 5.2rem 2rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.service-list article > i {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  color: var(--gold-dark);
  font-size: 1.6rem;
  transform: translateY(-50%);
}

.service-number {
  position: absolute;
  left: 0.2rem;
  top: 50%;
  color: rgba(11, 16, 21, 0.12);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 800;
  transform: translateY(-50%);
}

.service-list h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.7;
}

.service-list p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 2;
}

.assurance {
  position: relative;
  min-height: 690px;
  padding: clamp(6rem, 10vw, 10rem) var(--page-padding);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(3rem, 11vw, 12rem);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.assurance::before {
  content: "";
  position: absolute;
  top: -35%;
  left: -10%;
  width: 55vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018), 0 0 0 140px rgba(255, 255, 255, 0.012);
}

.assurance-copy,
.assurance-list {
  position: relative;
  z-index: 1;
}

.assurance-copy .section-label {
  color: #dfba79;
}

.assurance-copy > p:not(.section-label) {
  max-width: 520px;
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 2;
}

.assurance-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.assurance-list article {
  padding: 1.7rem 0;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.assurance-list article > i {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  background: rgba(200, 149, 67, 0.16);
  color: #dfba79;
}

.assurance-list h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.assurance-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.9;
}

.coverage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
  background: #ebe9e3;
}

.emirates {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(11, 16, 21, 0.12);
  border-radius: 0.55rem;
  background: rgba(11, 16, 21, 0.12);
  list-style: none;
}

.emirates li {
  min-height: 94px;
  padding: 1rem;
  display: grid;
  place-items: center;
  background: #f7f5ef;
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 600;
}

.emirates li:last-child {
  grid-column: 2 / 3;
  color: var(--gold-dark);
}

.faq {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(3rem, 10vw, 11rem);
  background: var(--warm-white);
}

.faq-heading {
  align-self: start;
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  min-height: 96px;
  padding: 1.35rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  list-style: none;
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.75;
}

summary::-webkit-details-marker {
  display: none;
}

summary i {
  color: var(--gold-dark);
  font-size: 0.8rem;
  transition: transform 200ms ease;
}

details[open] summary i {
  transform: rotate(180deg);
}

details p {
  max-width: 680px;
  margin: -0.45rem 0 1.6rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 2;
}

.contact {
  position: relative;
  min-height: 610px;
  padding: 6rem var(--page-padding);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 16, 21, 0.72), rgba(11, 16, 21, 0.96) 67%),
    url("assets/process-handshake.webp") center / cover no-repeat;
  color: #fff;
}

.contact::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 8px;
  height: 100%;
  background: var(--gold);
}

.contact-content {
  position: relative;
  z-index: 1;
  max-width: 810px;
}

.contact .section-label {
  color: #dfba79;
}

.contact-content > p:not(.section-label) {
  max-width: 650px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 2;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.button-light:hover,
.button-light:focus-visible {
  background: #fff;
  color: var(--ink);
}

.site-footer {
  min-height: 130px;
  padding: 1.8rem var(--page-padding);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  background: #06090c;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
}

.site-footer p {
  margin: 0;
}

.site-footer > a:last-child {
  justify-self: end;
  font-family: var(--display);
  direction: ltr;
}

.mobile-cta {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes hero-scale {
  from { transform: scale(1.045); }
  to { transform: scale(1); }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero-content {
    width: min(680px, 68vw);
  }

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

  .proof-strip > div:nth-child(2) {
    border-left: 0;
  }

  .proof-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .process-card:nth-child(2) {
    transform: none;
  }

  .process-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
  }

  .process-card:last-child .process-image {
    aspect-ratio: auto;
  }

  .services,
  .assurance,
  .coverage,
  .faq {
    grid-template-columns: 1fr;
  }

  .services-intro {
    position: static;
  }

  .services-intro > p:not(.section-label) {
    max-width: 720px;
  }

  .assurance {
    gap: 3rem;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 72px;
    font-size: 17px;
  }

  .site-header {
    min-height: 78px;
    padding: 0 1rem;
  }

  .brand-icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .brand-copy small,
  .header-call span {
    display: none;
  }

  .header-call i {
    width: 2.35rem;
    height: 2.35rem;
  }

  .hero {
    min-height: 820px;
    height: auto;
    align-items: end;
  }

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

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(6, 9, 12, 0.98) 0%, rgba(6, 9, 12, 0.91) 45%, rgba(6, 9, 12, 0.22) 78%, rgba(6, 9, 12, 0.38) 100%),
      linear-gradient(90deg, rgba(6, 9, 12, 0.15), rgba(6, 9, 12, 0.45));
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding: 12.5rem 1.25rem 7rem;
    display: flex;
    flex-direction: column;
  }

  .eyebrow,
  .section-label {
    font-size: 0.72rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.65rem, 11.8vw, 4rem);
    line-height: 1.5;
  }

  .hero-description {
    max-width: none;
    font-size: 1rem;
    line-height: 1.95;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    order: 2;
    margin-top: 1rem;
  }

  .hero-actions .button-outline {
    display: none;
  }

  .button {
    width: 100%;
    font-size: 0.87rem;
  }

  .hero-note {
    order: 1;
    margin-top: 1.15rem;
    align-items: flex-start;
    font-size: 0.78rem;
    line-height: 1.8;
  }

  .proof-strip {
    width: calc(100% - 1.5rem);
    margin-top: -3rem;
    padding: 0.7rem 0.85rem;
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip > div {
    min-height: 86px;
    padding: 0.8rem;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .proof-strip > div > i {
    margin-top: 0.15rem;
  }

  .proof-strip strong {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .proof-strip small {
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .section {
    padding: 5.5rem 1.25rem;
  }

  .section-heading {
    margin-bottom: 2.3rem;
    display: block;
  }

  .section-heading h2,
  .services h2,
  .assurance h2,
  .coverage h2,
  .faq h2,
  .contact h2 {
    max-width: none;
    font-size: clamp(2.15rem, 9.5vw, 3.15rem);
    line-height: 1.6;
  }

  .section-heading > p {
    margin-top: 1.2rem;
    font-size: 1rem;
    line-height: 1.95;
  }

  .process {
    padding-top: 8rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-card:last-child {
    grid-column: auto;
    display: block;
  }

  .process-card:last-child .process-image {
    aspect-ratio: 4 / 3;
  }

  .process-image {
    aspect-ratio: 4 / 3;
  }

  .process-copy {
    min-height: 0;
    padding: 1.4rem;
    grid-template-columns: 2.6rem 1fr;
    gap: 0.85rem;
  }

  .process-icon {
    width: 2.6rem;
    height: 2.6rem;
  }

  .process-copy h3 {
    font-size: 1.05rem;
  }

  .process-copy p,
  .services-intro > p:not(.section-label),
  .assurance-copy > p:not(.section-label),
  .contact-content > p:not(.section-label) {
    font-size: 1rem;
    line-height: 1.95;
  }

  .services {
    gap: 2.6rem;
  }

  .service-list article {
    min-height: 220px;
    padding: 4.5rem 0 1.8rem;
  }

  .service-list article > i {
    top: 1.7rem;
    right: 0;
    transform: none;
  }

  .service-number {
    top: 1rem;
    left: 0;
    font-size: 2.4rem;
    transform: none;
  }

  .service-list h3 {
    font-size: 1.2rem;
  }

  .service-list p {
    font-size: 0.98rem;
  }

  .assurance {
    min-height: 0;
    padding: 5.5rem 1.25rem;
  }

  .assurance-list article {
    grid-template-columns: 3rem 1fr;
    gap: 0.85rem;
  }

  .assurance-list article > i {
    width: 3rem;
    height: 3rem;
  }

  .assurance-list p {
    font-size: 0.94rem;
  }

  .coverage {
    gap: 2.5rem;
  }

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

  .emirates li {
    min-height: 78px;
    font-size: 0.8rem;
  }

  .emirates li:last-child {
    grid-column: 1 / -1;
  }

  .faq {
    gap: 2.5rem;
  }

  summary {
    min-height: 88px;
    font-size: 0.9rem;
  }

  details p {
    font-size: 0.98rem;
  }

  .contact {
    min-height: 670px;
    padding: 5rem 1.25rem;
    align-items: end;
    background:
      linear-gradient(0deg, rgba(11, 16, 21, 0.98) 0%, rgba(11, 16, 21, 0.86) 55%, rgba(11, 16, 21, 0.2) 100%),
      url("assets/process-handshake.webp") 54% center / cover no-repeat;
  }

  .site-footer {
    min-height: 190px;
    padding: 2rem 1.25rem 6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
  }

  .site-footer > a:last-child {
    justify-self: auto;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    height: 72px;
    padding: 0.45rem;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0.45rem;
    background: rgba(6, 9, 12, 0.96);
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(12px);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0.35rem;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
  }

  .mobile-cta a:last-child {
    border-color: var(--green);
    background: var(--green);
  }
}

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