:root {
  --brand: #052253;
  --brand-hover: #07306f;
  --brand-pressed: #03183c;
  --accent: #1199ef;
  --accent-hover-bg: #eef8ff;
  --muted: #697a98;
  --soft-blue: #eaf8ff;
  --white: #ffffff;
  --shell-width: min(1784px, calc(100vw - 80px));
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--brand);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
}

img {
  display: block;
}

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

.homepage {
  min-height: 100vh;
  background: var(--white);
}

.figma-frame {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--white);
}

.figma-frame::after {
  position: absolute;
  right: -8vw;
  bottom: -18vw;
  z-index: 0;
  width: min(46vw, 798px);
  aspect-ratio: 0.738;
  pointer-events: none;
  content: "";
  background: var(--soft-blue);
  border-radius: 50% 0 0 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(5, 34, 83, 0.08);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  transition:
    transform 220ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(5, 34, 83, 0.08);
}

.nav-shell {
  position: relative;
  display: flex;
  width: var(--shell-width);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.brand-mark {
  position: relative;
  width: 77px;
  height: 56px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark img {
  position: absolute;
  top: -68.06%;
  left: -36.59%;
  width: 162.6%;
  max-width: none;
  height: 222.22%;
  object-fit: cover;
}

.nav-links {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 8px;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.7);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 120ms ease;
}

.button:focus-visible {
  outline: 3px solid rgba(17, 153, 239, 0.28);
  outline-offset: 3px;
}

.button-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(5, 34, 83, 0.16);
}

.button-primary:hover {
  background: var(--brand-hover);
  box-shadow: 0 8px 20px rgba(5, 34, 83, 0.18);
  transform: translateY(-1px);
}

.button-primary:active {
  background: var(--brand-pressed);
  box-shadow: 0 1px 2px rgba(5, 34, 83, 0.12);
  transform: translateY(0);
}

.button-outline {
  border: 1px solid var(--accent);
  background: var(--white);
  color: var(--accent);
}

.button-outline:hover {
  background: var(--accent-hover-bg);
  box-shadow: 0 8px 20px rgba(17, 153, 239, 0.12);
  transform: translateY(-1px);
}

.button-outline:active {
  background: #dff2ff;
  box-shadow: none;
  transform: translateY(0);
}

.button-nav {
  width: 163px;
  height: 35px;
  border-radius: 8px;
}

.button-hero {
  width: 179px;
  height: 43px;
}

.hero-section {
  position: relative;
  z-index: 1;
  padding: clamp(112px, 11vw, 130px) 0 clamp(52px, 7vw, 96px);
}

.hero-shell {
  display: grid;
  width: var(--shell-width);
  min-height: calc(100vh - var(--header-height));
  align-items: center;
  grid-template-columns: minmax(430px, 580px) minmax(470px, 540px);
  grid-template-rows: 1fr auto;
  justify-content: space-between;
  column-gap: clamp(56px, 7vw, 140px);
  row-gap: clamp(44px, 7vw, 96px);
  margin: 0 auto;
}

.hero-copy {
  width: min(100%, 580px);
  grid-column: 1;
  grid-row: 1;
}

.copy-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.copy-stack h1 {
  max-width: 580px;
  margin: 0;
  color: var(--brand);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1.12px;
  line-height: 1.2;
}

.copy-stack p {
  max-width: 587px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.photo-grid {
  display: grid;
  width: min(100%, 540px);
  height: 600px;
  grid-column: 2;
  grid-row: 1 / span 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1vw, 20px);
  justify-self: end;
}

.photo-column {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  gap: clamp(12px, 1vw, 20px);
}

.photo-tile {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(16px, 1.2vw, 24px);
  background: #eef6fb;
}

.tile-large {
  flex: 0 0 62.17%;
}

.tile-small {
  flex: 1 1 auto;
}

.tile-medium {
  flex: 0 0 47.5%;
}

.tile-tall {
  flex: 1 1 auto;
}

.photo-image {
  position: absolute;
  max-width: none;
  object-fit: cover;
}

.image-five {
  top: -22%;
  left: -43%;
  width: 186%;
  height: 169%;
  border-radius: inherit;
}

.image-seven {
  top: -16%;
  left: -5%;
  width: 125%;
  height: 196%;
}

.image-six {
  top: -6%;
  left: -13%;
  width: 136%;
  height: 148%;
}

.image-four {
  top: -8%;
  left: -14%;
  width: 117%;
  height: 130%;
}

.service-areas {
  width: min(100%, 495px);
  grid-column: 1;
  grid-row: 2;
}

.service-areas h2 {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.service-areas ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 18px 16px;
  list-style: none;
}

.service-areas li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--white);
  color: var(--brand);
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

.service-showcase {
  position: relative;
  z-index: 1;
  padding: 64px 0;
  background: var(--white);
}

.services-figma-shell {
  width: min(1152px, calc(100vw - 128px));
  margin: 0 auto;
}

.services-figma-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

.services-figma-top > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-figma-top p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.services-figma-top h2 {
  margin: 0;
  color: var(--brand);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.services-view-button {
  min-width: 191px;
  height: 43px;
  padding: 0 48px;
  border-radius: 12px;
}

.services-tabs {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.services-tabs::-webkit-scrollbar {
  display: none;
}

.services-tabs button {
  flex: 0 0 auto;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  font-family: inherit;
  line-height: 1.5;
}

.services-tabs button.is-active {
  border-bottom-color: var(--brand);
  color: var(--brand);
  font-weight: 700;
}

.services-figma-panel {
  position: relative;
  display: flex;
  height: 562px;
  align-items: flex-end;
  overflow: hidden;
  padding: 36px;
  border-radius: 16px;
  background: var(--brand);
}

.services-figma-panel > img,
.services-panel-overlay {
  position: absolute;
  inset: 0;
}

.services-figma-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-panel-overlay {
  background: linear-gradient(180deg, rgba(53, 52, 52, 0.2) 54%, rgba(0, 0, 0, 0.2) 100%);
}

.services-tile-row {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}

.services-tile-row a {
  display: flex;
  height: 180px;
  flex-direction: column;
  overflow: hidden;
  border-radius: 14.1px;
  background: var(--white);
  box-shadow:
    0 0.8px 1.6px rgba(0, 0, 0, 0.16),
    0 0.8px 2.4px rgba(0, 0, 0, 0.12);
  transition:
    box-shadow 160ms ease,
    transform 160ms ease;
}

.services-tile-row a:hover,
.services-tile-row a:focus-visible {
  box-shadow:
    0 12px 24px rgba(5, 34, 83, 0.18),
    0 2px 6px rgba(5, 34, 83, 0.08);
  transform: translateY(-2px);
}

.services-tile-row a:focus-visible {
  outline: 3px solid rgba(17, 153, 239, 0.26);
  outline-offset: 3px;
}

.services-tile-row img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.services-tile-row h3 {
  display: flex;
  min-height: 62px;
  align-items: center;
  margin: 0;
  padding: 0 14px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.cities-section {
  position: relative;
  z-index: 1;
  padding: 88px 0 96px;
  background: var(--white);
}

.cities-shell {
  width: min(1152px, calc(100vw - 80px));
  margin: 0 auto;
}

.cities-heading {
  max-width: 580px;
  margin: 0 auto 48px;
  text-align: center;
}

.cities-heading p {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.cities-heading h2 {
  margin: 0;
  color: var(--brand);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

.cities-heading span {
  display: block;
  max-width: 470px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.city-card-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 28px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.city-card-row::-webkit-scrollbar {
  display: none;
}

.city-card {
  display: flex;
  width: 176px;
  min-width: 176px;
  flex-direction: column;
  padding: 16px;
  border: 1px solid rgba(5, 34, 83, 0.08);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(5, 34, 83, 0.06);
  scroll-snap-align: start;
}

.city-card.is-active {
  border-color: var(--accent);
}

.city-card h3 {
  margin: 0;
  color: var(--brand);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.city-card p {
  margin: 6px 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
}

.city-visual {
  position: relative;
  display: flex;
  height: 124px;
  overflow: hidden;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(17, 153, 239, 0.78), rgba(5, 34, 83, 0.98));
  color: rgba(255, 255, 255, 0.82);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.city-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.02) 52%),
    linear-gradient(180deg, rgba(5, 34, 83, 0.06), rgba(5, 34, 83, 0.62));
}

.city-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.city-visual span {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(5, 34, 83, 0.26);
}

.served-areas-panel {
  margin-top: 20px;
  padding: 28px;
  border: 1px solid rgba(17, 153, 239, 0.16);
  border-radius: 20px;
  background: rgba(250, 253, 255, 0.92);
}

.served-areas-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.served-areas-top h3 {
  margin: 0;
  color: var(--brand);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.served-areas-top h3 span {
  color: var(--accent);
}

.area-view-button {
  width: 116px;
  height: 36px;
  border-radius: 12px;
}

.area-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-chip-list li {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(5, 34, 83, 0.06);
  border-radius: 12px;
  background: var(--white);
  color: #34445f;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(5, 34, 83, 0.04);
}

.why-choose-section {
  position: relative;
  z-index: 1;
  padding: 88px 0 96px;
  background: var(--white);
}

.why-choose-shell {
  width: min(1152px, calc(100vw - 80px));
  margin: 0 auto;
}

.why-choose-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.why-choose-heading p {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.why-choose-heading h2 {
  margin: 0;
  color: var(--brand);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) repeat(2, minmax(260px, 1fr));
  gap: 24px;
}

.trust-card {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid rgba(5, 34, 83, 0.1);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(5, 34, 83, 0.06);
}

.trust-card-featured {
  min-height: 384px;
  grid-row: span 2;
  background:
    radial-gradient(circle at 92% 10%, rgba(17, 153, 239, 0.18) 0 22%, transparent 23%),
    radial-gradient(circle at 0% 96%, rgba(17, 153, 239, 0.14) 0 26%, transparent 27%),
    var(--brand);
  color: var(--white);
}

.trust-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 16px;
  background: rgba(17, 153, 239, 0.1);
  color: var(--brand);
  font-size: 16px;
  font-weight: 700;
}

.trust-card-featured .trust-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.trust-card h3 {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.trust-card-featured h3 {
  color: var(--white);
  font-size: 28px;
  letter-spacing: -0.56px;
  line-height: 1.2;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.trust-card-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.trust-stats {
  display: grid;
  margin-top: 56px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-stats div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.trust-stats strong,
.trust-stats span {
  display: block;
}

.trust-stats strong {
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.trust-stats span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.2;
}

.booking-process {
  position: relative;
  z-index: 1;
  padding: 48px 0;
  background: var(--brand);
  color: var(--white);
}

.process-shell {
  display: flex;
  width: min(1152px, calc(100vw - 80px));
  min-height: 572px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto;
}

.process-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.section-kicker {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.process-top h2 {
  margin: 0;
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.56px;
  line-height: 1;
}

.process-button {
  width: 179px;
  height: 43px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--white);
  color: #0c0c0c;
}

.process-button:hover {
  background: #f2f7fb;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.process-button:active {
  background: #e6eef5;
  box-shadow: none;
  transform: translateY(0);
}

.process-steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  list-style: none;
}

.process-steps li {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.process-steps span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.process-steps h3 {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.process-steps p {
  max-width: 264px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.faq-section {
  position: relative;
  z-index: 1;
  padding: 80px 0 96px;
  background: #f9fbfd;
}

.faq-shell {
  width: min(960px, calc(100vw - 48px));
  margin: 0 auto;
}

.faq-heading {
  margin: 0 auto 48px;
  text-align: center;
}

.faq-heading p {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-heading h2 {
  max-width: 560px;
  margin: 0 auto;
  color: var(--brand);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid #dde5ed;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: none;
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}

.faq-list details[open] {
  border-color: #cfdbe7;
  background: #ffffff;
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 68px 24px 28px;
  color: var(--brand);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 14px;
  height: 14px;
  content: "";
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-list summary:focus-visible {
  border-radius: 24px;
  outline: 3px solid rgba(17, 153, 239, 0.25);
  outline-offset: 2px;
}

.faq-list details p {
  max-width: 780px;
  margin: -8px 68px 26px 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 64px 0 24px;
  background: var(--brand);
  color: var(--white);
}

.footer-shell {
  display: grid;
  width: min(1152px, calc(100vw - 80px));
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: 48px;
  margin: 0 auto;
}

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

.footer-logo {
  display: flex;
  width: 108px;
  height: 76px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 8px;
  border-radius: 10px;
  background: var(--white);
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand h2,
.footer-column h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.footer-brand p,
.footer-column p,
.footer-column a,
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column a {
  transition: color 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  width: min(1152px, calc(100vw - 80px));
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.detail-frame::after {
  top: 18%;
  bottom: auto;
}

.service-detail-page {
  position: relative;
  z-index: 1;
  width: min(1152px, calc(100vw - 80px));
  margin: 0 auto;
  padding: 128px 0 96px;
}

.detail-hero {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 64px;
}

.detail-back-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 36px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.detail-copy > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
}

.detail-copy h1 {
  max-width: 560px;
  margin: 0;
  color: var(--brand);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1.12px;
  line-height: 1.12;
}

.detail-copy > span {
  display: block;
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.detail-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.detail-image-wrap {
  position: relative;
  aspect-ratio: 1 / 0.84;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #eef6fb;
  box-shadow: 0 24px 60px rgba(5, 34, 83, 0.12);
}

.detail-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.detail-panel {
  padding: 32px;
  border: 1px solid rgba(5, 34, 83, 0.08);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(5, 34, 83, 0.06);
}

.detail-panel-dark {
  background: var(--brand);
  color: var(--white);
}

.detail-panel h2 {
  margin: 0 0 20px;
  color: var(--brand);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.56px;
  line-height: 1.2;
}

.detail-panel-dark h2 {
  color: var(--white);
}

.detail-panel ul,
.detail-panel ol {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-panel li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.detail-panel-dark li {
  color: rgba(255, 255, 255, 0.72);
}

.detail-panel li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 999px;
  background: var(--accent);
}

@media (max-width: 1180px) {
  :root {
    --shell-width: min(100% - 48px, 920px);
  }

  .hero-shell {
    min-height: auto;
    align-items: start;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-top: 24px;
  }

  .hero-copy,
  .photo-grid,
  .service-areas {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-copy {
    width: min(100%, 580px);
  }

  .copy-stack h1 {
    font-size: clamp(42px, 6vw, 56px);
  }

  .copy-stack p {
    max-width: 587px;
    font-size: 18px;
  }

  .photo-grid {
    width: min(100%, 540px);
    height: 600px;
    justify-self: start;
  }

  .service-areas {
    width: 100%;
  }

  .process-shell {
    width: min(100% - 48px, 920px);
  }

  .services-figma-shell,
  .why-choose-shell,
  .footer-shell,
  .footer-bottom {
    width: min(100% - 48px, 920px);
  }

  .services-figma-panel {
    height: 520px;
    padding: 28px;
  }

  .services-tile-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .services-tile-row a {
    flex: 0 0 180px;
    scroll-snap-align: start;
  }

  .cities-shell {
    width: min(100% - 48px, 920px);
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-card-featured {
    min-height: auto;
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .faq-heading h2 {
    font-size: 40px;
  }

  .service-detail-page {
    width: min(100% - 48px, 920px);
  }

  .detail-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-image-wrap {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell-width: min(100% - 32px, 560px);
    --header-height: 60px;
  }

  .figma-frame::after {
    right: -28vw;
    bottom: -20vw;
    width: 90vw;
  }

  .nav-links {
    display: none;
  }

  .brand-mark {
    width: 66px;
    height: 48px;
  }

  .button-nav {
    width: 142px;
    height: 40px;
    font-size: 14px;
  }

  .hero-section {
    padding-top: 92px;
  }

  .hero-shell {
    row-gap: 40px;
  }

  .copy-stack {
    gap: 18px;
  }

  .copy-stack h1 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.14;
  }

  .copy-stack p {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 28px;
  }

  .button-hero {
    width: 100%;
    height: 52px;
  }

  .photo-grid {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
  }

  .photo-column {
    height: auto;
  }

  .photo-tile {
    aspect-ratio: 1 / 1.1;
    flex-basis: auto;
  }

  .tile-large,
  .tile-small,
  .tile-medium,
  .tile-tall {
    height: auto;
  }

  .service-areas h2 {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .service-areas ul {
    gap: 14px 12px;
  }

  .service-areas li {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 15px;
  }

  .booking-process {
    padding: 40px 0;
  }

  .process-shell {
    width: min(100% - 32px, 560px);
    min-height: auto;
    gap: 96px;
  }

  .process-top {
    flex-direction: column;
    gap: 24px;
  }

  .process-top h2 {
    max-width: 320px;
  }

  .process-button {
    width: 100%;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-steps li {
    min-height: auto;
  }

  .process-steps p {
    max-width: 420px;
  }

  .service-showcase {
    padding: 56px 0 72px;
  }

  .services-figma-shell,
  .why-choose-shell,
  .footer-shell,
  .footer-bottom {
    width: min(100% - 32px, 560px);
  }

  .services-figma-top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 22px;
  }

  .services-figma-top h2 {
    font-size: 28px;
    line-height: 1.15;
  }

  .services-view-button {
    width: 100%;
    height: 43px;
  }

  .services-tabs {
    gap: 20px;
    margin-bottom: 16px;
  }

  .services-tabs button {
    font-size: 16px;
  }

  .services-figma-panel {
    min-height: 520px;
    height: auto;
    padding: 24px;
    border-radius: 16px;
  }

  .services-tile-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .services-tile-row a {
    height: 160px;
    flex: 0 0 180px;
    scroll-snap-align: start;
  }

  .services-tile-row img {
    height: 104px;
  }

  .services-tile-row h3 {
    min-height: 56px;
    font-size: 13px;
  }

  .cities-section {
    padding: 56px 0 72px;
  }

  .cities-shell {
    width: min(100% - 32px, 560px);
  }

  .cities-heading {
    margin-bottom: 32px;
  }

  .cities-heading p {
    margin-bottom: 12px;
  }

  .cities-heading h2 {
    font-size: 32px;
  }

  .cities-heading span {
    margin-top: 16px;
    font-size: 16px;
  }

  .served-areas-panel {
    padding: 20px;
    border-radius: 16px;
  }

  .served-areas-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .area-view-button {
    width: 100%;
    height: 43px;
  }

  .why-choose-section {
    padding: 56px 0 72px;
  }

  .why-choose-heading {
    margin-bottom: 32px;
  }

  .why-choose-heading p {
    margin-bottom: 12px;
  }

  .why-choose-heading h2 {
    font-size: 32px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .trust-card,
  .trust-card-featured {
    min-height: auto;
    padding: 24px;
  }

  .trust-card-featured h3 {
    font-size: 24px;
  }

  .trust-card p {
    font-size: 15px;
  }

  .trust-stats {
    margin-top: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-stats div {
    padding: 14px;
  }

  .faq-section {
    padding: 56px 0 72px;
  }

  .faq-shell {
    width: min(100% - 32px, 560px);
  }

  .faq-heading {
    margin-bottom: 32px;
  }

  .faq-heading p {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .faq-heading h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .faq-list summary {
    min-height: 64px;
    padding: 20px 52px 20px 20px;
    font-size: 16px;
  }

  .faq-list summary::after {
    right: 22px;
    width: 14px;
    height: 14px;
  }

  .faq-list details p {
    margin: -6px 52px 22px 20px;
    font-size: 15px;
  }

  .site-footer {
    padding-top: 48px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    margin-top: 36px;
  }

  .service-detail-page {
    width: min(100% - 32px, 560px);
    padding: 96px 0 72px;
  }

  .detail-copy h1 {
    font-size: 40px;
    line-height: 1.14;
  }

  .detail-copy > span {
    font-size: 16px;
  }

  .detail-actions {
    flex-direction: column;
  }

  .detail-content-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .detail-panel {
    padding: 24px;
  }

  .detail-panel h2 {
    font-size: 24px;
  }
}

html {
  background:
    radial-gradient(circle at 15% 0%, rgba(17, 153, 239, 0.08), transparent 28%),
    radial-gradient(circle at 100% 18%, rgba(17, 153, 239, 0.06), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 20%, #f7fbff 100%);
  scroll-behavior: smooth;
}

body {
  background: transparent;
  color: var(--brand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.homepage,
.qatar-page {
  min-height: 100vh;
  background: transparent;
}

.figma-frame {
  background: transparent;
}

.figma-frame::before {
  position: absolute;
  inset: -8% auto auto -10%;
  width: min(36vw, 460px);
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(17, 153, 239, 0.12) 0%, transparent 72%);
  filter: blur(8px);
}

.figma-frame::after {
  right: -10vw;
  bottom: -14vw;
  width: min(44vw, 760px);
  background: radial-gradient(circle, rgba(17, 153, 239, 0.11) 0%, transparent 72%);
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.95;
}

.site-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(5, 34, 83, 0.08);
  box-shadow: 0 16px 40px rgba(5, 34, 83, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100vw - 48px));
}

.brand-mark {
  width: 82px;
  height: 58px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(5, 34, 83, 0.08);
}

.brand-mark img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.button {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.button-primary {
  box-shadow: 0 16px 30px rgba(5, 34, 83, 0.18);
}

.button-outline {
  border-width: 1.5px;
}

.button-nav {
  min-height: 44px;
  width: 176px;
  height: auto;
}

.button-hero {
  min-height: 54px;
  width: 188px;
  height: auto;
}

.hero-section {
  padding: clamp(112px, 11vw, 146px) 0 clamp(56px, 8vw, 112px);
}

.hero-shell {
  width: min(1180px, calc(100vw - 48px));
  align-items: center;
  column-gap: clamp(32px, 5vw, 80px);
  row-gap: 40px;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
}

.hero-copy {
  width: min(100%, 600px);
}

.hero-eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.copy-stack {
  gap: 18px;
}

.copy-stack h1 {
  max-width: 620px;
  font-size: clamp(44px, 5.7vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.copy-stack p {
  max-width: 580px;
  font-size: 18px;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(17, 153, 239, 0.16);
  border-radius: 999px;
  background: rgba(17, 153, 239, 0.09);
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(5, 34, 83, 0.05);
}

.hero-actions {
  margin-top: 24px;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-metrics div {
  padding: 16px 18px;
  border: 1px solid rgba(5, 34, 83, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 36px rgba(5, 34, 83, 0.07);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  margin: 0;
  color: var(--brand);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.photo-grid {
  position: relative;
  width: min(100%, 580px);
  height: clamp(540px, 49vw, 660px);
  align-self: center;
}

.photo-column {
  gap: 16px;
}

.photo-tile {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(5, 34, 83, 0.1);
  background: #eef6fb;
}

.hero-spotlight {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: 300px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 50px rgba(5, 34, 83, 0.18);
  backdrop-filter: blur(16px);
}

.hero-spotlight p {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-spotlight strong {
  display: block;
  color: var(--brand);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-spotlight span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.service-areas {
  width: min(100%, 560px);
  padding: 22px 24px;
  border: 1px solid rgba(5, 34, 83, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(5, 34, 83, 0.08);
  backdrop-filter: blur(12px);
}

.service-areas h2 {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.service-areas ul {
  gap: 12px;
}

.service-areas li {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(5, 34, 83, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: 0 10px 20px rgba(5, 34, 83, 0.04);
  font-size: 15px;
}

.service-showcase {
  padding: clamp(68px, 7vw, 104px) 0;
  background: linear-gradient(180deg, rgba(246, 250, 255, 0.92) 0%, #ffffff 100%);
}

.services-figma-shell {
  width: min(1180px, calc(100vw - 48px));
}

.services-figma-top {
  align-items: end;
  margin-bottom: 22px;
}

.services-figma-top p {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.services-figma-top h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.services-view-button {
  min-width: 210px;
  height: 48px;
  padding: 0 26px;
  border-radius: 999px;
}

.services-tabs {
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  overflow: visible;
}

.services-tabs button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(5, 34, 83, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  box-shadow: 0 12px 24px rgba(5, 34, 83, 0.04);
  font-size: 15px;
}

.services-tabs button.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(5, 34, 83, 0.16);
}

.services-figma-panel {
  min-height: 620px;
  height: auto;
  padding: 32px;
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(5, 34, 83, 0.12);
}

.services-figma-panel > img {
  filter: saturate(0.97) contrast(1.02);
}

.services-panel-overlay {
  background: linear-gradient(180deg, rgba(5, 34, 83, 0.06) 0%, rgba(5, 34, 83, 0.28) 100%);
}

.services-tile-row {
  gap: 16px;
  align-items: stretch;
}

.services-tile-row a {
  height: 236px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 40px rgba(5, 34, 83, 0.12);
  backdrop-filter: blur(14px);
}

.service-card-media {
  position: relative;
  height: 122px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(17, 153, 239, 0.08), rgba(5, 34, 83, 0.05));
}

.services-tile-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px 14px 16px;
}

.service-card-kicker {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.services-tile-row h3 {
  margin-top: 8px;
  min-height: auto;
  padding: 0;
  font-size: 16px;
  line-height: 1.25;
}

.service-card-copy {
  display: -webkit-box;
  overflow: hidden;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.service-card-link {
  margin-top: auto;
  padding-top: 12px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.services-tile-row a:hover,
.services-tile-row a:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(5, 34, 83, 0.18);
}

.city-card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
  padding: 0;
}

.city-card {
  width: auto;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(5, 34, 83, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(5, 34, 83, 0.08);
}

.city-card h3 {
  font-size: 20px;
}

.city-card p {
  margin-top: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.city-visual {
  height: 136px;
  border-radius: 18px;
}

.served-areas-panel {
  padding: 30px;
  border-color: rgba(17, 153, 239, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(5, 34, 83, 0.03) 0%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow: 0 18px 44px rgba(5, 34, 83, 0.06);
}

.served-areas-top h3 {
  font-size: 20px;
}

.area-chip-list li {
  border: 1px solid rgba(5, 34, 83, 0.08);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 18px rgba(5, 34, 83, 0.04);
}

.why-choose-section {
  padding: clamp(72px, 7vw, 104px) 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.why-choose-shell {
  width: min(1180px, calc(100vw - 48px));
}

.why-choose-heading {
  margin-bottom: 48px;
}

.why-choose-heading h2 {
  font-size: clamp(32px, 3.4vw, 46px);
}

.why-choose-grid {
  grid-template-columns: minmax(0, 1.08fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  padding: 28px;
  border: 1px solid rgba(5, 34, 83, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.96) 100%);
  box-shadow: 0 18px 44px rgba(5, 34, 83, 0.08);
}

.trust-card-featured {
  position: relative;
  overflow: hidden;
  background: #052253;
  color: #ffffff;
}

.trust-card-featured::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 34, 83, 0.16) 0%, rgba(5, 34, 83, 0.76) 72%),
    linear-gradient(135deg, rgba(17, 153, 239, 0.12), rgba(5, 34, 83, 0.52));
}

.trust-card-featured::after {
  position: absolute;
  z-index: 1;
  right: -12%;
  bottom: -20%;
  width: 260px;
  height: 260px;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(17, 153, 239, 0.24) 0%, rgba(17, 153, 239, 0) 70%);
}

.trust-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.trust-card-featured > :not(.trust-card-photo) {
  position: relative;
  z-index: 2;
}

.trust-icon {
  border-radius: 999px;
  background: rgba(17, 153, 239, 0.12);
  color: var(--brand);
}

.trust-card-featured .trust-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.trust-card h3 {
  font-size: 20px;
}

.trust-card-featured h3 {
  font-size: clamp(26px, 2.8vw, 34px);
}

.trust-card p {
  font-size: 16px;
  line-height: 1.65;
}

.trust-card-featured p {
  color: rgba(255, 255, 255, 0.74);
}

.trust-stats {
  margin-top: 32px;
  gap: 12px;
}

.trust-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.trust-stats strong {
  font-size: 26px;
}

.booking-process {
  padding: clamp(72px, 7vw, 104px) 0;
  background: linear-gradient(135deg, #041c45 0%, #052253 48%, #07306f 100%);
}

.process-shell {
  width: min(1180px, calc(100vw - 48px));
  min-height: auto;
  gap: 40px;
}

.process-top {
  align-items: end;
}

.process-top h2 {
  font-size: clamp(28px, 3.2vw, 42px);
}

.process-button {
  min-width: 184px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand);
}

.process-steps {
  gap: 18px;
}

.process-steps li {
  min-height: 214px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.process-steps span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.process-steps h3 {
  font-size: 20px;
}

.process-steps p {
  max-width: none;
  font-size: 15px;
  line-height: 1.6;
}

.faq-section {
  padding: clamp(72px, 7vw, 104px) 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.faq-shell {
  width: min(980px, calc(100vw - 48px));
}

.faq-heading {
  margin-bottom: 40px;
}

.faq-heading h2 {
  font-size: clamp(32px, 3.4vw, 46px);
}

.faq-list details {
  border-color: rgba(5, 34, 83, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(5, 34, 83, 0.06);
}

.faq-list summary {
  min-height: 84px;
  padding: 24px 68px 24px 28px;
  font-size: 18px;
}

.faq-list details p {
  font-size: 16px;
}

.site-footer {
  padding: 72px 0 24px;
  background: linear-gradient(180deg, #052253 0%, #03183c 100%);
}

.footer-shell {
  width: min(1180px, calc(100vw - 48px));
  gap: 40px;
}

.footer-bottom {
  width: min(1180px, calc(100vw - 48px));
}

.service-detail-page {
  width: min(1180px, calc(100vw - 48px));
  padding: 128px 0 104px;
}

.detail-hero {
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
}

.detail-back-link {
  margin-bottom: 28px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(17, 153, 239, 0.08);
}

.detail-copy > p {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.detail-copy h1 {
  max-width: 620px;
  font-size: clamp(42px, 5.6vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-copy > span {
  max-width: 580px;
  font-size: 18px;
  line-height: 1.6;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-badges li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(5, 34, 83, 0.08);
  border-radius: 999px;
  background: rgba(5, 34, 83, 0.04);
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
}

.detail-actions {
  margin-top: 28px;
  flex-wrap: wrap;
}

.detail-facts {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.detail-facts div {
  padding: 16px 18px;
  border: 1px solid rgba(5, 34, 83, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(5, 34, 83, 0.06);
}

.detail-facts dt {
  margin: 0;
  color: var(--brand);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.detail-facts dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.detail-image-wrap {
  border-radius: 32px;
  box-shadow: 0 28px 68px rgba(5, 34, 83, 0.16);
}

.detail-image-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(5, 34, 83, 0.14);
  backdrop-filter: blur(16px);
}

.detail-image-card p {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.detail-image-card strong {
  display: block;
  color: var(--brand);
  font-size: 18px;
  line-height: 1.4;
}

.detail-image-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.detail-content-grid {
  gap: 20px;
  margin-top: 48px;
}

.detail-panel {
  padding: 28px;
  border: 1px solid rgba(5, 34, 83, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(5, 34, 83, 0.08);
}

.detail-panel h2 {
  font-size: 26px;
}

.detail-panel-dark {
  background: linear-gradient(180deg, #052253 0%, #03183c 100%);
  color: #ffffff;
}

.detail-panel-dark h2 {
  color: #ffffff;
}

.detail-panel li {
  font-size: 16px;
  line-height: 1.65;
}

.mobile-cta-bar {
  position: fixed;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(5, 34, 83, 0.16);
  backdrop-filter: blur(16px);
}

.mobile-cta-primary {
  background: var(--brand);
  color: #ffffff;
}

.mobile-cta-secondary {
  border: 1px solid rgba(5, 34, 83, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand);
}

@media (max-width: 760px) {
  .homepage,
  .qatar-page {
    padding-bottom: 96px;
  }

  .site-header {
    height: 60px;
  }

  .nav-shell {
    width: min(100% - 20px, 560px);
  }

  .brand-mark {
    width: 68px;
    height: 48px;
  }

  .button-nav {
    width: 136px;
    height: 40px;
    font-size: 13px;
  }

  .hero-section {
    padding-top: 88px;
  }

  .hero-shell {
    width: min(100% - 20px, 560px);
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .hero-eyebrow {
    margin-bottom: 14px;
    letter-spacing: 0.14em;
  }

  .copy-stack h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .copy-stack p {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-badges {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-badges li {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 22px;
  }

  .button-hero {
    width: 100%;
    min-height: 52px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .hero-metrics div {
    padding: 14px 15px;
    border-radius: 18px;
  }

  .hero-metrics > div:last-child {
    grid-column: 1 / -1;
  }

  .hero-metrics dt {
    font-size: 22px;
  }

  .hero-metrics dd {
    font-size: 12px;
  }

  .photo-grid {
    width: 100%;
    height: auto;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 10px 10px 0;
    margin-right: -10px;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .photo-grid::-webkit-scrollbar {
    display: none;
  }

  .photo-column {
    display: contents;
  }

  .photo-tile {
    flex: 0 0 142px;
    width: 142px;
    aspect-ratio: 4 / 5;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(5, 34, 83, 0.07);
    scroll-snap-align: start;
  }

  .tile-large,
  .tile-small,
  .tile-medium,
  .tile-tall {
    height: auto;
  }

  .hero-spotlight {
    position: static;
    flex: 0 0 206px;
    max-width: 206px;
    margin: 0;
    align-self: stretch;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(5, 34, 83, 0.1);
    scroll-snap-align: start;
  }

  .hero-spotlight p {
    margin-bottom: 6px;
    font-size: 9px;
    letter-spacing: 0.12em;
    line-height: 1.2;
  }

  .hero-spotlight strong {
    font-size: 13px;
    line-height: 1.32;
  }

  .hero-spotlight span {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.4;
  }

  .service-areas {
    padding: 20px;
  }

  .service-areas ul {
    gap: 10px;
  }

  .service-areas li {
    min-height: 38px;
    padding: 0 12px;
    font-size: 14px;
  }

  .service-showcase {
    padding: 56px 0 72px;
  }

  .services-figma-shell {
    width: min(100% - 20px, 560px);
  }

  .services-figma-top {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 18px;
  }

  .services-view-button {
    width: 100%;
    min-width: 0;
  }

  .services-tabs {
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .services-tabs::-webkit-scrollbar {
    display: none;
  }

  .services-tabs button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .services-figma-panel {
    min-height: 0;
    padding: 18px;
    border-radius: 24px;
  }

  .services-tile-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .services-tile-row a {
    flex: 0 0 208px;
    height: 236px;
    scroll-snap-align: start;
  }

  .service-card-copy {
    -webkit-line-clamp: 2;
  }

  .cities-section {
    padding: 56px 0 72px;
  }

  .cities-shell {
    width: min(100% - 20px, 560px);
  }

  .cities-heading {
    margin-bottom: 28px;
  }

  .cities-heading h2 {
    font-size: 32px;
  }

  .cities-heading span {
    margin-top: 14px;
    font-size: 16px;
  }

  .city-card-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 2px 24px;
    scroll-snap-type: x mandatory;
  }

  .city-card {
    width: 188px;
    min-width: 188px;
  }

  .served-areas-panel {
    padding: 20px;
    border-radius: 20px;
  }

  .served-areas-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .area-view-button {
    width: 100%;
    height: 43px;
  }

  .why-choose-section {
    padding: 56px 0 72px;
  }

  .why-choose-shell {
    width: min(100% - 20px, 560px);
  }

  .why-choose-heading {
    margin-bottom: 28px;
  }

  .why-choose-heading h2 {
    font-size: 32px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .trust-card,
  .trust-card-featured {
    padding: 24px;
  }

  .trust-card-featured h3 {
    font-size: 24px;
  }

  .trust-card p {
    font-size: 15px;
  }

  .trust-stats {
    margin-top: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-stats div {
    padding: 14px;
  }

  .booking-process {
    padding: 56px 0;
  }

  .process-shell {
    width: min(100% - 20px, 560px);
    gap: 28px;
  }

  .process-top {
    flex-direction: column;
    gap: 18px;
  }

  .process-button {
    width: 100%;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-steps li {
    min-height: 0;
    padding: 22px;
  }

  .faq-section {
    padding: 56px 0 72px;
  }

  .faq-shell {
    width: min(100% - 20px, 560px);
  }

  .faq-heading {
    margin-bottom: 28px;
  }

  .faq-heading h2 {
    font-size: 32px;
  }

  .faq-list summary {
    min-height: 64px;
    padding: 18px 48px 18px 18px;
    font-size: 16px;
  }

  .faq-list details p {
    margin: -4px 48px 20px 18px;
    font-size: 15px;
  }

  .site-footer {
    padding-top: 48px;
  }

  .footer-shell {
    width: min(100% - 20px, 560px);
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    width: min(100% - 20px, 560px);
    margin-top: 36px;
  }

  .service-detail-page {
    width: min(100% - 20px, 560px);
    padding: 96px 0 80px;
  }

  .detail-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .detail-back-link {
    margin-bottom: 22px;
  }

  .detail-copy h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  .detail-copy > span {
    font-size: 16px;
  }

  .detail-actions {
    flex-direction: column;
  }

  .detail-badges {
    margin-top: 22px;
  }

  .detail-facts {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .detail-image-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: visible;
    aspect-ratio: auto;
    border-radius: 24px;
    padding: 12px;
  }

  .detail-image-wrap img {
    height: auto;
    aspect-ratio: 1 / 0.84;
    border-radius: 18px;
  }

  .detail-image-card {
    position: static;
    margin: 0;
  }

  .detail-content-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .detail-panel {
    padding: 22px;
  }

  .detail-panel h2 {
    font-size: 24px;
  }

  .mobile-cta-bar {
    display: grid;
  }
}

/* Compact professional refinement layer */
:root {
  --shell-width: min(1120px, calc(100vw - 64px));
}

html {
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 34%, #f7fbff 100%);
}

.figma-frame::before,
.figma-frame::after {
  opacity: 0.42;
  filter: blur(18px);
}

.site-header {
  height: 60px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(5, 34, 83, 0.06);
}

.nav-shell,
.hero-shell,
.services-figma-shell,
.cities-shell,
.why-choose-shell,
.process-shell,
.footer-shell,
.footer-bottom,
.service-detail-page {
  width: var(--shell-width);
}

.brand-mark {
  width: 74px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(5, 34, 83, 0.06);
}

.nav-links {
  gap: 20px;
  font-size: 13px;
}

.button {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: 0;
}

.button-primary {
  box-shadow: 0 8px 18px rgba(5, 34, 83, 0.14);
}

.button-primary:hover,
.button-outline:hover {
  box-shadow: 0 10px 22px rgba(5, 34, 83, 0.12);
}

.button-nav {
  width: 146px;
  min-height: 36px;
}

.button-hero {
  width: 158px;
  min-height: 44px;
}

.hero-section {
  padding: clamp(92px, 8vw, 118px) 0 clamp(44px, 6vw, 78px);
}

.hero-shell {
  column-gap: clamp(28px, 4vw, 64px);
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.92fr);
  row-gap: 28px;
}

.hero-copy {
  width: min(100%, 560px);
}

.hero-eyebrow,
.services-figma-top p,
.detail-copy > p,
.hero-spotlight p,
.detail-image-card p {
  font-size: 11px;
  letter-spacing: 0.12em;
}

.copy-stack {
  gap: 14px;
}

.copy-stack h1,
.detail-copy h1 {
  letter-spacing: 0;
}

.copy-stack h1 {
  max-width: 560px;
  font-size: clamp(40px, 4.8vw, 58px);
  line-height: 1.08;
}

.copy-stack p,
.detail-copy > span {
  max-width: 530px;
  font-size: 16px;
  line-height: 1.58;
}

.hero-badges,
.detail-badges {
  gap: 8px;
  margin-top: 20px;
}

.hero-badges li,
.detail-badges li,
.service-areas li,
.area-chip-list li {
  min-height: 32px;
  padding: 0 11px;
  border-radius: 8px;
  font-size: 13px;
  box-shadow: none;
}

.hero-actions,
.detail-actions {
  gap: 10px;
  margin-top: 20px;
}

.hero-metrics,
.detail-facts {
  gap: 10px;
  margin-top: 20px;
}

.hero-metrics div,
.detail-facts div {
  padding: 13px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(5, 34, 83, 0.05);
}

.hero-metrics dt {
  font-size: 23px;
}

.detail-facts dt {
  font-size: 21px;
}

.hero-metrics dd,
.detail-facts dd {
  font-size: 12px;
}

.photo-grid {
  width: min(100%, 510px);
  height: clamp(470px, 43vw, 560px);
}

.photo-column {
  gap: 12px;
}

.photo-tile {
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(5, 34, 83, 0.08);
}

.photo-tile::after,
.service-card-media::after,
.detail-image-wrap::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    inset 0 -18px 28px rgba(5, 34, 83, 0.08);
}

.service-card-media::after {
  border-radius: 0;
}

.hero-spotlight,
.detail-image-card {
  max-width: 268px;
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(5, 34, 83, 0.12);
}

.hero-spotlight strong,
.detail-image-card strong {
  font-size: 15px;
  line-height: 1.38;
}

.hero-spotlight span,
.detail-image-card span {
  font-size: 12px;
  line-height: 1.45;
}

.service-areas {
  width: min(100%, 520px);
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(5, 34, 83, 0.06);
}

.service-areas h2 {
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.service-showcase,
.cities-section,
.why-choose-section,
.booking-process,
.faq-section {
  padding: clamp(56px, 6vw, 82px) 0;
}

.services-figma-top,
.process-top {
  margin-bottom: 18px;
}

.services-figma-top h2,
.cities-heading h2,
.why-choose-heading h2,
.faq-heading h2,
.process-top h2 {
  font-size: clamp(28px, 2.8vw, 38px);
  letter-spacing: 0;
}

.services-view-button,
.process-button {
  min-width: 160px;
  height: 40px;
  border-radius: 8px;
}

.services-tabs {
  gap: 8px;
  margin-bottom: 18px;
}

.services-tabs button {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  box-shadow: none;
  font-size: 14px;
}

.services-tabs button.is-active {
  box-shadow: 0 8px 18px rgba(5, 34, 83, 0.14);
}

.services-figma-panel {
  min-height: 510px;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(5, 34, 83, 0.1);
}

.services-tile-row {
  gap: 12px;
}

.services-tile-row a {
  height: 202px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(5, 34, 83, 0.1);
}

.services-tile-row a:hover,
.services-tile-row a:focus-visible {
  box-shadow: 0 16px 34px rgba(5, 34, 83, 0.14);
  transform: translateY(-3px);
}

.service-card-media {
  height: 100px;
}

.service-card-body {
  padding: 12px;
}

.service-card-kicker,
.service-card-link {
  font-size: 10px;
  letter-spacing: 0.1em;
}

.services-tile-row h3 {
  margin-top: 6px;
  font-size: 14px;
}

.service-card-copy {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.38;
  -webkit-line-clamp: 2;
}

.city-card-row,
.why-choose-grid,
.process-steps {
  gap: 14px;
}

.city-card,
.served-areas-panel,
.trust-card,
.process-steps li,
.faq-list details,
.detail-panel {
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(5, 34, 83, 0.06);
}

.city-card {
  padding: 14px;
}

.city-card h3,
.trust-card h3,
.process-steps h3 {
  font-size: 17px;
}

.city-visual {
  height: 110px;
  border-radius: 10px;
  font-size: 20px;
}

.served-areas-panel {
  padding: 22px;
}

.why-choose-heading,
.cities-heading,
.faq-heading {
  margin-bottom: 34px;
}

.trust-card {
  min-height: 154px;
  padding: 22px;
}

.trust-card-featured {
  min-height: 330px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 12px;
}

.trust-card-featured h3 {
  font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: 0;
}

.trust-card p {
  font-size: 14px;
  line-height: 1.55;
}

.trust-stats {
  margin-top: 24px;
  gap: 10px;
}

.trust-stats div {
  padding: 13px;
  border-radius: 10px;
}

.trust-stats strong {
  font-size: 22px;
}

.trust-stats span {
  font-size: 12px;
}

.process-shell {
  gap: 30px;
}

.process-steps li {
  min-height: 174px;
  padding: 20px;
}

.process-steps span {
  width: 36px;
  height: 36px;
}

.process-steps p {
  font-size: 13px;
  line-height: 1.5;
}

.faq-list summary {
  min-height: 66px;
  padding: 20px 60px 20px 22px;
  font-size: 16px;
}

.faq-list details p {
  font-size: 14px;
  line-height: 1.55;
}

.site-footer {
  padding: 56px 0 22px;
}

.footer-shell {
  gap: 30px;
}

.service-detail-page {
  padding: 108px 0 78px;
}

.detail-hero {
  gap: clamp(32px, 4vw, 56px);
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 1fr);
}

.detail-back-link {
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
}

.detail-copy h1 {
  font-size: clamp(38px, 4.8vw, 56px);
}

.detail-image-wrap {
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(5, 34, 83, 0.12);
}

.detail-content-grid {
  gap: 16px;
  margin-top: 34px;
}

.detail-panel {
  padding: 22px;
}

.detail-panel h2 {
  font-size: 22px;
}

.detail-panel li {
  font-size: 14px;
  line-height: 1.55;
}

.mobile-cta {
  min-height: 46px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(5, 34, 83, 0.14);
  font-size: 13px;
}

@media (max-width: 760px) {
  :root {
    --shell-width: min(calc(100% - 24px), 560px);
  }

  .homepage,
  .qatar-page {
    padding-bottom: 82px;
  }

  .site-header {
    height: 58px;
  }

  .nav-shell,
  .hero-shell,
  .services-figma-shell,
  .cities-shell,
  .why-choose-shell,
  .process-shell,
  .faq-shell,
  .footer-shell,
  .footer-bottom,
  .service-detail-page {
    width: var(--shell-width);
  }

  .brand-mark {
    width: 62px;
    height: 44px;
  }

  .button-nav {
    width: 122px;
    min-height: 36px;
  }

  .hero-section {
    padding-top: 82px;
  }

  .copy-stack h1,
  .detail-copy h1 {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.12;
  }

  .copy-stack p {
    font-size: 15px;
  }

  .button-hero {
    min-height: 44px;
  }

  .hero-metrics div,
  .detail-facts div {
    padding: 12px;
  }

  .photo-tile {
    flex-basis: 132px;
    width: 132px;
  }

  .hero-spotlight {
    flex-basis: 190px;
    max-width: 190px;
  }

  .service-showcase,
  .cities-section,
  .why-choose-section,
  .booking-process,
  .faq-section {
    padding: 46px 0 58px;
  }

  .services-figma-top,
  .process-top {
    gap: 14px;
  }

  .services-view-button,
  .process-button,
  .area-view-button {
    height: 40px;
  }

  .services-figma-panel {
    padding: 14px;
    border-radius: 14px;
  }

  .services-tile-row a {
    flex-basis: 188px;
    height: 198px;
  }

  .city-card {
    width: 168px;
    min-width: 168px;
  }

  .trust-card,
  .trust-card-featured,
  .process-steps li,
  .detail-panel {
    padding: 18px;
  }

  .trust-card-featured {
    min-height: auto;
  }

  .process-steps li {
    min-height: 0;
  }

  .faq-list summary {
    min-height: 58px;
    padding: 16px 46px 16px 18px;
    font-size: 15px;
  }

  .service-detail-page {
    padding: 88px 0 64px;
  }

  .detail-image-wrap {
    border-radius: 14px;
    padding: 10px;
  }

  .detail-image-wrap img {
    border-radius: 10px;
  }
}

@media (max-width: 760px) {
  .hero-shell,
  .detail-hero {
    display: flex;
    width: var(--shell-width);
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy,
  .photo-grid,
  .service-areas,
  .detail-copy,
  .detail-image-wrap {
    width: 100%;
    max-width: none;
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
  }

  .hero-copy,
  .detail-copy {
    min-width: 0;
  }

  .detail-hero {
    gap: 20px;
  }

  .hero-copy {
    display: contents;
  }

  .detail-copy {
    display: contents;
  }

  .photo-grid {
    order: 2;
    margin-top: 8px;
  }

  .service-areas {
    order: 6;
    margin-top: 2px;
  }

  .hero-eyebrow,
  .copy-stack {
    order: 1;
  }

  .detail-back-link,
  .detail-copy > p,
  .detail-copy h1,
  .detail-copy > span {
    order: 1;
  }

  .detail-image-wrap {
    order: 2;
    margin-top: 4px;
  }

  .hero-badges {
    order: 3;
    margin-top: 6px;
  }

  .detail-badges {
    order: 3;
    margin-top: 4px;
  }

  .hero-actions {
    order: 4;
  }

  .detail-actions {
    order: 4;
  }

  .hero-metrics {
    order: 5;
  }

  .detail-facts {
    order: 5;
  }

  .copy-stack h1,
  .copy-stack p,
  .detail-copy h1,
  .detail-copy > span {
    width: 100%;
    max-width: none;
  }

  .hero-eyebrow {
    max-width: 260px;
    line-height: 1.25;
  }

  .copy-stack h1,
  .detail-copy h1 {
    text-wrap: balance;
  }

  .copy-stack p,
  .detail-copy > span {
    color: #526686;
    text-wrap: pretty;
  }

  .hero-badges,
  .detail-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .hero-badges li,
  .detail-badges li {
    justify-content: center;
    min-height: 38px;
    text-align: center;
  }

  .hero-badges li:last-child,
  .detail-badges li:last-child {
    grid-column: 1 / -1;
  }

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

  .button-hero,
  .detail-actions .button-hero {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metrics > div:last-child {
    grid-column: auto;
  }

  .hero-metrics div,
  .detail-facts div {
    min-width: 0;
  }

  .hero-metrics dt,
  .detail-facts dt {
    font-size: 20px;
  }

  .hero-metrics dd,
  .detail-facts dd {
    overflow-wrap: anywhere;
  }

  .photo-grid {
    display: grid;
    height: auto;
    margin-right: 0;
    overflow: visible;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .photo-column {
    display: flex;
    gap: 10px;
  }

  .photo-tile {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 0.82;
  }

  .hero-spotlight {
    grid-column: 1 / -1;
    max-width: none;
    flex-basis: auto;
  }

  .service-areas {
    padding: 16px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 1px 0 rgba(5, 34, 83, 0.05),
      0 8px 18px rgba(5, 34, 83, 0.08);
  }

  .service-areas ul,
  .area-chip-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-areas li,
  .area-chip-list li {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .services-figma-top h2,
  .cities-heading h2,
  .why-choose-heading h2,
  .faq-heading h2,
  .process-top h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.15;
    text-wrap: balance;
  }

  .services-tabs {
    margin-right: -12px;
    padding-right: 12px;
  }

  .services-figma-panel {
    min-height: auto;
    background: transparent;
    box-shadow: none;
  }

  .services-figma-panel > img,
  .services-panel-overlay {
    display: none;
  }

  .services-tile-row {
    display: grid;
    overflow: visible;
    padding-bottom: 0;
    grid-template-columns: 1fr;
  }

  .services-tile-row a {
    width: 100%;
    height: auto;
    min-height: 142px;
    flex-basis: auto;
    display: grid;
    grid-template-columns: minmax(124px, 38%) minmax(0, 1fr);
  }

  .service-card-media {
    height: 100%;
    min-height: 142px;
  }

  .service-card-body {
    min-width: 0;
    padding: 12px 14px;
  }

  .services-tile-row h3,
  .service-card-copy {
    overflow-wrap: anywhere;
  }

  .city-card-row {
    display: grid;
    overflow: visible;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-card {
    width: 100%;
    min-width: 0;
  }

  .city-visual {
    height: 90px;
  }

  .served-areas-top {
    gap: 14px;
  }

  .why-choose-grid,
  .process-steps,
  .detail-content-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-stats,
  .detail-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-facts > div:first-child {
    grid-column: 1 / -1;
  }

  .detail-image-wrap {
    overflow: hidden;
    padding: 0;
    background: #eaf4fb;
  }

  .detail-image-wrap img {
    width: 100%;
    aspect-ratio: 1.18;
    object-fit: cover;
  }

  .detail-image-card {
    position: static;
    margin: 10px;
  }

  .faq-list details,
  .detail-panel,
  .trust-card,
  .process-steps li,
  .city-card,
  .served-areas-panel {
    border-radius: 12px;
  }
}

@media (max-width: 420px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-badges,
  .detail-badges,
  .area-chip-list,
  .city-card-row,
  .trust-stats,
  .detail-facts {
    grid-template-columns: 1fr;
  }

  .hero-badges li:last-child,
  .detail-badges li:last-child,
  .detail-facts > div:first-child {
    grid-column: auto;
  }

  .services-tile-row a {
    min-height: 136px;
    grid-template-columns: minmax(116px, 40%) minmax(0, 1fr);
  }

  .service-card-media {
    min-height: 136px;
  }
}

/* Balanced centralization without flattening every card's text alignment */
.hero-shell,
.services-figma-shell,
.cities-shell,
.why-choose-shell,
.process-shell,
.faq-shell,
.footer-shell,
.footer-bottom,
.service-detail-page {
  margin-right: auto;
  margin-left: auto;
}

.hero-metrics,
.detail-facts {
  width: 100%;
  max-width: 560px;
}

.hero-badges,
.detail-badges,
.hero-actions,
.detail-actions,
.service-areas ul,
.area-chip-list,
.services-tabs {
  justify-content: center;
}

.services-figma-top,
.process-top,
.served-areas-top {
  align-items: center;
}

@media (max-width: 760px) {
  .hero-copy,
  .detail-copy,
  .service-areas,
  .cities-heading,
  .why-choose-heading,
  .process-top,
  .faq-heading,
  .footer-brand {
    text-align: center;
  }

  .hero-eyebrow,
  .detail-copy > p {
    justify-content: center;
    width: 100%;
  }

  .copy-stack h1,
  .copy-stack p,
  .detail-copy h1,
  .detail-copy > span,
  .cities-heading span,
  .footer-brand p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-badges li,
  .detail-badges li,
  .service-areas li,
  .area-chip-list li {
    align-items: center;
    justify-content: center;
  }

  .detail-back-link {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-metrics,
  .detail-facts {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    min-height: auto;
    padding: clamp(88px, 8.5vh, 112px) 0 clamp(18px, 3vh, 30px);
  }

  .hero-shell {
    min-height: auto;
    align-content: center;
    align-items: center;
    row-gap: clamp(14px, 2vh, 22px);
  }

  .hero-eyebrow {
    margin-bottom: 12px;
  }

  .copy-stack {
    gap: 12px;
  }

  .copy-stack h1 {
    font-size: clamp(46px, 4.6vw, 60px);
    line-height: 1.05;
  }

  .copy-stack p {
    max-width: 520px;
    font-size: 15px;
    line-height: 1.48;
  }

  .hero-badges {
    margin-top: 18px;
  }

  .hero-actions,
  .hero-metrics {
    margin-top: 16px;
  }

  .hero-metrics div {
    padding: 11px 14px;
  }

  .hero-metrics dt {
    font-size: 22px;
  }

  .hero-metrics dd {
    margin-top: 5px;
  }

  .photo-grid {
    width: min(100%, 500px);
    height: clamp(430px, 50vh, 520px);
  }

  .hero-spotlight {
    right: 16px;
    bottom: 16px;
    max-width: 250px;
    padding: 12px 14px;
  }

  .hero-spotlight p {
    margin-bottom: 7px;
  }

  .hero-spotlight strong {
    font-size: 14px;
    line-height: 1.34;
  }

  .hero-spotlight span {
    margin-top: 7px;
    font-size: 12px;
  }

  .service-areas {
    width: min(100%, 520px);
    padding: 14px 18px;
  }

  .service-areas h2 {
    margin-bottom: 12px;
  }

  .service-areas ul {
    gap: 8px;
  }

  .service-areas li {
    min-height: 30px;
    padding: 0 12px;
  }

  .service-showcase {
    padding-top: clamp(36px, 4.5vh, 58px);
  }
}

@media (min-width: 1024px) and (max-height: 820px) {
  .hero-section {
    padding-top: 76px;
    padding-bottom: 14px;
  }

  .copy-stack h1 {
    font-size: clamp(42px, 4vw, 54px);
  }

  .photo-grid {
    height: clamp(390px, 49vh, 455px);
  }

  .hero-badges,
  .hero-actions,
  .hero-metrics {
    margin-top: 12px;
  }

  .service-areas {
    padding: 12px 16px;
  }

  .service-showcase {
    padding-top: 32px;
  }
}

/* Final non-structural UI polish */
:root {
  --surface: rgba(255, 255, 255, 0.96);
  --surface-muted: #f7fbff;
  --line-soft: rgba(5, 34, 83, 0.1);
  --line-blue: rgba(17, 153, 239, 0.24);
  --shadow-soft: 0 10px 28px rgba(5, 34, 83, 0.06);
  --shadow-card: 0 16px 38px rgba(5, 34, 83, 0.09);
  --shadow-lift: 0 22px 48px rgba(5, 34, 83, 0.13);
}

[id] {
  scroll-margin-top: 84px;
}

.site-header {
  border-bottom: 1px solid rgba(5, 34, 83, 0.06);
}

.nav-links a {
  padding: 0 2px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand);
}

.nav-links a::after {
  height: 3px;
  bottom: 4px;
}

.button {
  border: 1px solid transparent;
}

.button-primary,
.mobile-cta-primary {
  background: linear-gradient(180deg, #082a63 0%, #052253 100%);
}

.button-primary:hover,
.mobile-cta-primary:hover {
  background: linear-gradient(180deg, #0a3477 0%, #062b67 100%);
}

.button-outline,
.mobile-cta-secondary {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.96);
}

.button-outline:hover,
.mobile-cta-secondary:hover {
  border-color: #0c88d8;
  background: #f1f9ff;
}

.hero-badges li,
.detail-badges li,
.service-areas li,
.area-chip-list li,
.services-tabs button {
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    transform 140ms ease,
    box-shadow 160ms ease;
}

.hero-badges li:hover,
.detail-badges li:hover,
.service-areas li:hover,
.area-chip-list li:hover {
  border-color: var(--line-blue);
  background: #f1f9ff;
  transform: translateY(-1px);
}

.hero-metrics div,
.detail-facts div,
.service-areas,
.served-areas-panel,
.trust-card,
.city-card,
.faq-list details,
.detail-panel {
  border-color: var(--line-soft);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-metrics div,
.detail-facts div {
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 140ms ease;
}

.hero-metrics div:hover,
.detail-facts div:hover {
  border-color: var(--line-blue);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.photo-tile,
.detail-image-wrap,
.service-card-media {
  background: #eaf4fb;
}

.photo-tile::after,
.service-card-media::after,
.detail-image-wrap::after {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.36),
    inset 0 -22px 30px rgba(5, 34, 83, 0.09),
    inset 0 16px 24px rgba(255, 255, 255, 0.08);
}

.hero-spotlight,
.detail-image-card {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.service-showcase {
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.services-figma-top {
  align-items: center;
}

.services-tabs {
  width: fit-content;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 6px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 26px rgba(5, 34, 83, 0.05);
}

.services-tabs button {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.services-tabs button:hover,
.services-tabs button:focus-visible {
  background: #eef8ff;
  color: var(--brand);
}

.services-tabs button.is-active {
  background: linear-gradient(180deg, #082a63 0%, #052253 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(5, 34, 83, 0.16);
}

.services-tabs button.is-active:hover,
.services-tabs button.is-active:focus-visible {
  border-color: var(--brand);
  background: linear-gradient(180deg, #0a3477 0%, #052253 100%);
  color: #ffffff;
}

.services-figma-panel {
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.services-tile-row a {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-card);
}

.services-tile-row a:hover,
.services-tile-row a:focus-visible {
  box-shadow: var(--shadow-lift);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-link::after {
  content: "->";
  color: var(--accent);
  font-size: 12px;
  transition: transform 140ms ease;
}

.services-tile-row a:hover .service-card-link::after,
.services-tile-row a:focus-visible .service-card-link::after {
  transform: translateX(2px);
}

.cities-section,
.faq-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--surface-muted) 100%);
}

.city-card,
.trust-card,
.process-steps li,
.faq-list details,
.detail-panel {
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 140ms ease;
}

.city-card:hover,
.city-card:focus-within,
.trust-card:not(.trust-card-featured):hover,
.process-steps li:hover,
.faq-list details:hover,
.detail-panel:hover {
  border-color: var(--line-blue);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.city-card:hover,
.city-card:focus-within {
  border-color: var(--accent);
  box-shadow: 0 16px 38px rgba(17, 153, 239, 0.12);
}

.trust-card:not(.trust-card-featured):hover,
.trust-card:not(.trust-card-featured):focus-within {
  border-color: var(--accent);
  box-shadow: 0 16px 38px rgba(17, 153, 239, 0.12);
}

.city-card.is-active {
  border-color: var(--accent);
  box-shadow: 0 16px 38px rgba(17, 153, 239, 0.12);
}

.city-visual {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.18)),
    linear-gradient(145deg, rgba(17, 153, 239, 0.52), rgba(5, 34, 83, 0.92));
}

.trust-card-featured,
.detail-panel-dark {
  box-shadow: 0 18px 44px rgba(5, 34, 83, 0.16);
}

.faq-list summary {
  transition: background-color 160ms ease;
}

.faq-list details:hover summary,
.faq-list summary:focus-visible {
  background: #f7fbff;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-column a {
  transition:
    color 160ms ease,
    transform 140ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  transform: translateX(2px);
}

.mobile-cta-bar {
  max-width: 520px;
  margin-right: auto;
  margin-left: auto;
  padding: 4px;
  border: 1px solid rgba(5, 34, 83, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(5, 34, 83, 0.16);
  backdrop-filter: blur(16px);
}

.mobile-cta {
  min-height: 42px;
  border-radius: 9px;
  box-shadow: none;
}

@media (max-width: 760px) {
  [id] {
    scroll-margin-top: 74px;
  }

  .services-tabs {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .services-tile-row a {
    box-shadow: 0 10px 28px rgba(5, 34, 83, 0.08);
  }

  .service-card-body {
    justify-content: center;
  }

  .mobile-cta-bar {
    right: 14px;
    left: 14px;
    gap: 6px;
  }
}

@media (max-width: 760px) {
  .hero-section {
    padding-top: 72px;
    padding-bottom: 40px;
  }

  .hero-shell {
    row-gap: 18px;
  }

  .brand-mark {
    width: 58px;
    height: 40px;
  }

  .button-nav {
    width: 116px;
    min-height: 34px;
    font-size: 12px;
  }

  .hero-eyebrow {
    max-width: 300px;
    margin: 0 auto 10px;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.1em;
  }

  .copy-stack {
    gap: 10px;
  }

  .copy-stack h1 {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(30px, 8.4vw, 36px);
    line-height: 1.08;
  }

  .copy-stack p {
    max-width: 340px;
    font-size: 14px;
    line-height: 1.45;
  }

  .photo-grid {
    gap: 8px;
    margin-top: 0;
  }

  .photo-column {
    gap: 8px;
  }

  .photo-tile {
    aspect-ratio: 0.9;
    border-radius: 12px;
  }

  .hero-spotlight {
    padding: 12px;
  }
}

@media (max-width: 420px) {
  .hero-section {
    padding-top: 66px;
  }

  .copy-stack h1 {
    max-width: 320px;
    font-size: clamp(28px, 8.1vw, 34px);
  }

  .copy-stack p {
    max-width: 320px;
    font-size: 13px;
    line-height: 1.42;
  }

  .hero-eyebrow {
    font-size: 9px;
  }
}

/* Hero de-clutter pass */
@media (min-width: 1181px) {
  :root {
    --shell-width: min(1220px, calc(100vw - 72px));
  }

  .hero-section {
    padding: clamp(94px, 8vh, 116px) 0 clamp(34px, 5vh, 60px);
  }

  .hero-shell {
    align-items: center;
    grid-template-columns: minmax(0, 610px) minmax(420px, 540px);
    column-gap: clamp(42px, 4.6vw, 76px);
  }

  .hero-copy {
    width: min(100%, 620px);
  }

  .copy-stack {
    gap: 14px;
  }

  .copy-stack h1 {
    max-width: 610px;
    font-size: clamp(48px, 4.45vw, 60px);
    line-height: 1.06;
  }

  .copy-stack p {
    max-width: 550px;
    font-size: 16.5px;
    line-height: 1.55;
  }

  .hero-badges {
    justify-content: flex-start;
    gap: 0;
    margin-top: 18px;
  }

  .hero-badges li {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #3f567a;
    font-size: 13px;
    box-shadow: none;
  }

  .hero-badges li + li::before {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 12px 2px;
    content: "";
    vertical-align: middle;
    border-radius: 999px;
    background: var(--accent);
    opacity: 0.72;
  }

  .hero-badges li:hover {
    border-color: transparent;
    background: transparent;
    transform: none;
  }

  .hero-actions {
    justify-content: flex-start;
    margin-top: 24px;
  }

  .button-hero {
    width: 172px;
    min-height: 48px;
  }

  .hero-metrics {
    max-width: 548px;
    margin-top: 20px;
    padding: 8px;
    border: 1px solid rgba(5, 34, 83, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 36px rgba(5, 34, 83, 0.06);
    gap: 0;
  }

  .hero-metrics div {
    padding: 10px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-metrics div + div {
    border-left: 1px solid rgba(5, 34, 83, 0.08);
  }

  .hero-metrics div:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
  }

  .hero-metrics dt {
    font-size: 24px;
  }

  .hero-metrics dd {
    margin-top: 4px;
    font-size: 12.5px;
  }

  .service-areas {
    width: min(100%, 548px);
    padding: 15px 18px;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(5, 34, 83, 0.055);
  }

  .service-areas h2 {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.15em;
  }

  .service-areas ul {
    gap: 8px;
  }

  .service-areas li {
    min-height: 32px;
    padding: 0 13px;
    font-size: 13px;
  }

  .photo-grid {
    width: min(100%, 560px);
    height: clamp(430px, 40vw, 520px);
    grid-template-columns: minmax(0, 1.34fr) minmax(150px, 0.66fr);
    gap: 14px;
  }

  .photo-column {
    gap: 14px;
  }

  .photo-column:first-child .tile-large {
    flex: 1 1 auto;
  }

  .photo-column:first-child .tile-small {
    display: none;
  }

  .tile-medium,
  .tile-tall {
    flex: 1 1 0;
    min-height: 0;
  }

  .photo-tile {
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(5, 34, 83, 0.1);
  }

  .hero-spotlight {
    right: auto;
    bottom: 18px;
    left: 18px;
    max-width: 282px;
    padding: 14px 16px;
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(5, 34, 83, 0.16);
  }

  .hero-spotlight p {
    margin-bottom: 8px;
    font-size: 10.5px;
  }

  .hero-spotlight strong {
    font-size: 15px;
    line-height: 1.36;
  }

  .hero-spotlight span {
    display: none;
  }
}

@media (max-width: 1180px) {
  .hero-badges {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-badges li {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
    box-shadow: none;
  }

  .hero-metrics {
    max-width: 560px;
    margin-top: 18px;
  }

  .hero-metrics div {
    box-shadow: 0 10px 24px rgba(5, 34, 83, 0.045);
  }

  .photo-grid {
    max-width: 560px;
    height: clamp(430px, 64vw, 540px);
  }

  .photo-column:first-child .tile-large {
    flex: 1 1 auto;
  }

  .photo-column:first-child .tile-small {
    display: none;
  }

  .tile-medium,
  .tile-tall {
    flex: 1 1 0;
  }

  .hero-spotlight span {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .hero-badges li {
    width: auto;
    min-height: 32px;
    padding: 0 10px;
    white-space: nowrap;
  }

  .hero-actions {
    display: none;
  }

  .hero-metrics {
    gap: 8px;
  }

  .hero-metrics div {
    padding: 10px 8px;
  }

  .photo-grid {
    height: auto;
    align-items: stretch;
    grid-template-columns: minmax(0, 1.12fr) minmax(112px, 0.88fr);
    gap: 8px;
  }

  .photo-column {
    height: 100%;
  }

  .photo-tile {
    flex: 0 0 auto;
    width: 100%;
  }

  .photo-column:first-child .tile-small {
    display: none;
  }

  .photo-column:first-child .tile-large {
    flex: 1 1 auto;
    height: 100%;
    aspect-ratio: auto;
  }

  .photo-column:nth-child(2) .photo-tile {
    aspect-ratio: 1.08;
  }

  .hero-spotlight {
    position: static;
    grid-column: 1 / -1;
    align-self: start;
    height: auto;
    min-height: 0;
    max-width: none;
    flex-basis: auto;
    padding: 12px 14px;
    border-radius: 12px;
    text-align: left;
  }

  .hero-spotlight strong {
    font-size: 14px;
  }
}

/* Mobile hero containment pass */
@media (max-width: 760px) {
  html,
  body,
  .homepage,
  .figma-frame {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-section {
    padding-top: 68px;
    padding-bottom: 34px;
  }

  .hero-shell {
    width: min(calc(100% - 28px), 372px);
    max-width: calc(100vw - 28px);
    row-gap: 14px;
  }

  .copy-stack h1 {
    max-width: 330px;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.1;
  }

  .copy-stack p {
    max-width: 330px;
    font-size: 13.5px;
  }

  .photo-grid {
    width: 100%;
    max-width: 352px;
    margin: 2px auto 0;
    overflow: visible;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 8px;
  }

  .photo-column {
    min-width: 0;
    height: auto;
  }

  .photo-column:first-child .tile-large {
    height: auto;
    aspect-ratio: 0.78;
  }

  .photo-column:nth-child(2) .photo-tile {
    aspect-ratio: 1.04;
  }

  .photo-tile {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    border-radius: 12px;
  }

  .hero-spotlight {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    padding: 11px 12px;
    text-align: center;
  }

  .hero-spotlight p {
    margin-bottom: 6px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-spotlight strong {
    font-size: 13px;
    line-height: 1.34;
  }

  .services-tabs {
    margin-right: 0;
    padding-right: 6px;
  }

  .services-tabs,
  .services-tile-row,
  .city-card-row {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .hero-shell {
    width: min(calc(100% - 24px), 360px);
    max-width: calc(100vw - 24px);
  }

  .photo-grid {
    max-width: 100%;
  }
}

/* Qatar coverage map */
.coverage-map-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 3vw, 36px);
}

.coverage-map-card {
  min-width: 0;
  margin: 0;
}

.coverage-map-card img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(5, 34, 83, 0.1));
}

.coverage-area-copy {
  min-width: 0;
}

.coverage-area-copy p {
  max-width: 660px;
  margin: 0 0 20px;
  color: #526686;
  font-size: 15px;
  line-height: 1.58;
}

.coverage-area-copy .area-chip-list {
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .coverage-map-layout {
    grid-template-columns: 1fr;
  }

  .coverage-map-card {
    width: min(100%, 420px);
    margin-right: auto;
    margin-left: auto;
  }

  .coverage-area-copy p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .coverage-area-copy .area-chip-list {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .coverage-map-layout {
    gap: 18px;
  }

  .coverage-map-card {
    width: min(100%, 340px);
  }

  .coverage-map-card img {
    max-height: none;
  }

  .coverage-area-copy p {
    max-width: 320px;
    margin-bottom: 16px;
    font-size: 13.5px;
    line-height: 1.5;
  }

  .coverage-area-copy .area-chip-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .coverage-area-copy .area-chip-list li {
    min-height: 36px;
    padding: 0 8px;
    font-size: 12px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  .coverage-area-copy .area-chip-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Service detail polish and compatibility */
.detail-back-link {
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 140ms ease;
}

.detail-back-link:hover,
.detail-back-link:focus-visible {
  background: #dff2ff;
  color: var(--brand);
  transform: translateX(-2px);
}

.detail-panel-dark {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #052253 0%, #03183c 100%);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(5, 34, 83, 0.16);
}

.detail-panel-dark h2 {
  color: #ffffff;
}

.detail-panel-dark li {
  color: rgba(255, 255, 255, 0.78);
}

.detail-panel-dark li::before {
  background: #3bb7ff;
  box-shadow: 0 0 0 4px rgba(59, 183, 255, 0.14);
}

.detail-panel:hover,
.detail-panel:focus-within {
  border-color: var(--accent);
  box-shadow: 0 16px 38px rgba(17, 153, 239, 0.12);
}

.detail-panel-dark:hover,
.detail-panel-dark:focus-within {
  border-color: rgba(17, 153, 239, 0.42);
  box-shadow: 0 20px 46px rgba(5, 34, 83, 0.2);
}

@media (min-width: 1024px) {
  .service-detail-page {
    padding-top: 96px;
    padding-bottom: 78px;
  }

  .detail-hero {
    align-items: center;
    gap: clamp(30px, 4vw, 56px);
    grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.94fr);
  }

  .detail-back-link {
    margin-bottom: 18px;
    padding: 8px 13px;
  }

  .detail-copy > p {
    margin-bottom: 10px;
  }

  .detail-copy h1 {
    font-size: clamp(40px, 4.2vw, 56px);
    line-height: 1.04;
  }

  .detail-copy > span {
    max-width: 540px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
  }

  .detail-badges {
    gap: 8px;
    margin-top: 20px;
  }

  .detail-badges li {
    min-height: 34px;
    padding: 0 13px;
    font-size: 13px;
  }

  .detail-actions {
    margin-top: 20px;
    gap: 10px;
  }

  .detail-actions .button-hero {
    width: 172px;
    min-height: 44px;
  }

  .detail-facts {
    max-width: 540px;
    margin-top: 20px;
    gap: 10px;
  }

  .detail-facts div {
    padding: 13px 16px;
    border-radius: 14px;
  }

  .detail-facts dt {
    font-size: 22px;
  }

  .detail-facts dd {
    margin-top: 4px;
    font-size: 12.5px;
  }

  .detail-image-wrap {
    min-height: 0;
    aspect-ratio: 1.28 / 0.82;
    border-radius: 22px;
  }

  .detail-image-card {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: min(330px, calc(100% - 32px));
    padding: 14px 16px;
    border-radius: 16px;
  }

  .detail-image-card p {
    margin-bottom: 8px;
    font-size: 10.5px;
  }

  .detail-image-card strong {
    font-size: 15.5px;
    line-height: 1.32;
  }

  .detail-image-card span {
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.4;
  }

  .detail-content-grid {
    margin-top: 28px;
  }

  .detail-panel {
    padding: 24px;
  }

  .detail-panel h2 {
    margin-bottom: 16px;
    font-size: 23px;
  }

  .detail-panel ul,
  .detail-panel ol {
    gap: 10px;
  }

  .detail-panel li {
    font-size: 14.5px;
    line-height: 1.5;
  }
}

@media (max-width: 760px) {
  .service-detail-page {
    width: 100%;
    padding: 58px 0 calc(92px + env(safe-area-inset-bottom));
  }

  .detail-hero {
    width: min(100% - 24px, 366px);
    margin-right: auto;
    margin-left: auto;
    align-items: center;
    gap: 16px;
  }

  .detail-copy > p {
    order: 2;
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .detail-copy h1 {
    order: 3;
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.08;
  }

  .detail-copy > span {
    order: 4;
    max-width: 342px;
    margin-top: 8px;
    font-size: 14.5px;
    line-height: 1.5;
  }

  .detail-back-link {
    order: 1;
    margin-bottom: 10px;
  }

  .detail-image-wrap {
    order: 5;
    width: 100%;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    border-radius: 14px;
  }

  .detail-image-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.86;
    border-radius: inherit;
    object-fit: cover;
  }

  .detail-image-card {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    margin: 0;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .detail-image-card p {
    margin-bottom: 7px;
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .detail-image-card strong {
    font-size: 13.5px;
    line-height: 1.34;
  }

  .detail-image-card span {
    display: none;
  }

  .detail-badges {
    order: 6;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .detail-badges li {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12.5px;
  }

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

  .detail-actions {
    display: none;
  }

  .detail-facts {
    order: 7;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .detail-facts > div:first-child {
    grid-column: auto;
  }

  .detail-facts div {
    padding: 11px 8px;
    border-radius: 12px;
    text-align: center;
  }

  .detail-facts dt {
    font-size: 18px;
  }

  .detail-facts dd {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.25;
  }

  .detail-content-grid {
    width: min(100% - 24px, 366px);
    margin-right: auto;
    margin-left: auto;
    gap: 12px;
    margin-top: 24px;
  }

  .detail-panel {
    padding: 18px;
    border-radius: 14px;
  }

  .detail-panel h2 {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .detail-panel ul,
  .detail-panel ol {
    gap: 10px;
  }

  .detail-panel li {
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.5;
  }

  .detail-panel li::before {
    top: 0.65em;
    width: 7px;
    height: 7px;
  }
}

/* Service detail two-column composition */
.detail-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.94fr);
  gap: clamp(28px, 4vw, 54px);
}

.detail-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 28px;
}

.detail-layout .detail-panel,
.detail-layout .detail-image-wrap {
  width: 100%;
}

.detail-layout .detail-panel {
  margin: 0;
}

.detail-layout .detail-image-wrap {
  aspect-ratio: 1.28 / 0.82;
  margin: 0;
}

@media (min-width: 1024px) {
  .detail-layout .detail-copy > span {
    max-width: 560px;
  }

  .detail-copy-column {
    padding-top: 0;
  }
}

@media (max-width: 1180px) {
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .detail-column {
    gap: 18px;
  }

  .detail-media-column {
    max-width: 640px;
  }
}

@media (max-width: 760px) {
  .service-detail-body .homepage {
    padding-bottom: 70px;
  }

  .service-detail-body .mobile-cta-bar {
    right: 10px;
    bottom: calc(6px + env(safe-area-inset-bottom));
    left: 10px;
    gap: 6px;
    padding: 3px;
    border-radius: 12px;
  }

  .service-detail-body .mobile-cta {
    min-height: 42px;
    border-radius: 9px;
  }

  .service-detail-page {
    padding-top: 54px;
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .detail-layout {
    width: min(100% - 24px, 366px);
    margin-right: auto;
    margin-left: auto;
    gap: 14px;
  }

  .detail-column {
    width: 100%;
    gap: 14px;
  }

  .detail-copy-column {
    display: contents;
  }

  .detail-copy {
    display: contents;
  }

  .detail-copy-column > .detail-panel {
    order: 8;
  }

  .detail-media-column {
    display: contents;
  }

  .detail-media-column > .detail-panel {
    order: 9;
  }

  .detail-back-link {
    order: 1;
    margin-bottom: 6px;
  }

  .detail-copy > p {
    order: 2;
  }

  .detail-copy h1 {
    order: 3;
  }

  .detail-copy > span {
    order: 4;
  }

  .detail-image-wrap {
    order: 5;
    margin-top: 4px;
  }

  .detail-badges {
    order: 6;
    margin-top: 8px;
  }

  .detail-facts {
    order: 7;
    margin-top: 0;
  }

  .detail-layout .detail-image-wrap,
  .detail-layout .detail-panel {
    width: 100%;
  }

  .detail-layout .detail-image-wrap {
    aspect-ratio: auto;
  }
}

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

/* Mobile-only map coverage panel */
.served-areas-panel {
  overflow: hidden;
}

.coverage-map-card {
  display: grid;
  width: 100%;
  place-items: center;
}

.coverage-map-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 760px) {
  .served-areas-panel {
    padding: 12px;
  }

  .served-areas-top {
    justify-content: center;
    margin-bottom: clamp(18px, 2.4vw, 30px);
  }

  .served-areas-top h3 {
    text-align: center;
  }

  .area-view-button,
  .coverage-area-copy {
    display: none;
  }

  .coverage-map-layout {
    grid-template-columns: 1fr;
    place-items: center;
    gap: 0;
    min-height: calc(100vh - 180px);
    min-height: calc(100svh - 180px);
  }

  .coverage-map-card img {
    width: 100%;
    height: calc(100vh - 190px);
    height: calc(100svh - 190px);
  }
}

/* Cohesive 3D depth system */
:root {
  --depth-navy-edge: #031633;
  --depth-blue-edge: #9ed8fb;
  --depth-surface-edge: rgba(5, 34, 83, 0.12);
  --depth-shadow-low: 0 8px 18px rgba(5, 34, 83, 0.1);
  --depth-shadow-medium: 0 16px 32px rgba(5, 34, 83, 0.13);
  --depth-shadow-high: 0 24px 48px rgba(5, 34, 83, 0.17);
}

/* Buttons have a visible lower edge, top highlight, and pressed state. */
.button,
.mobile-cta,
.services-tabs button {
  position: relative;
  transform: translateY(0);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease,
    background 150ms ease,
    color 150ms ease;
  will-change: transform;
}

.button-primary,
.mobile-cta-primary {
  border-color: rgba(3, 22, 51, 0.72);
  background: linear-gradient(180deg, #0b367b 0%, #06295f 56%, #052253 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18),
    0 4px 0 var(--depth-navy-edge),
    0 11px 20px rgba(5, 34, 83, 0.23);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible,
.mobile-cta-primary:hover,
.mobile-cta-primary:focus-visible {
  background: linear-gradient(180deg, #0e438f 0%, #083373 58%, #06295f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.16),
    0 6px 0 var(--depth-navy-edge),
    0 15px 26px rgba(5, 34, 83, 0.28);
  transform: translateY(-2px);
}

.button-primary:active,
.mobile-cta-primary:active {
  box-shadow:
    inset 0 2px 5px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 1px 0 var(--depth-navy-edge),
    0 5px 10px rgba(5, 34, 83, 0.18);
  transform: translateY(3px);
}

.button-outline,
.mobile-cta-secondary {
  border-color: rgba(17, 153, 239, 0.62);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 1px 0 rgba(17, 153, 239, 0.22),
    0 5px 12px rgba(17, 153, 239, 0.1);
}

.button-outline:hover,
.button-outline:focus-visible,
.mobile-cta-secondary:hover,
.mobile-cta-secondary:focus-visible {
  border-color: var(--accent);
  background: linear-gradient(180deg, #ffffff 0%, #eef9ff 100%);
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 2px 0 rgba(17, 153, 239, 0.22),
    0 8px 16px rgba(17, 153, 239, 0.14);
  transform: translateY(-1px);
}

.button-outline:active,
.mobile-cta-secondary:active {
  box-shadow:
    inset 0 2px 5px rgba(17, 153, 239, 0.12),
    0 3px 7px rgba(17, 153, 239, 0.1);
  transform: translateY(1px);
}

.process-button {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(180deg, #ffffff 0%, #f2f7fd 68%, #dce9f6 100%);
  box-shadow:
    inset 0 1px 0 #ffffff,
    inset 0 -2px 0 rgba(5, 34, 83, 0.09),
    0 4px 0 #a9bfd5,
    0 12px 22px rgba(0, 0, 0, 0.22);
}

.process-button:hover,
.process-button:focus-visible {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 60%, #e6f2fc 100%);
  box-shadow:
    inset 0 1px 0 #ffffff,
    inset 0 -2px 0 rgba(5, 34, 83, 0.08),
    0 6px 0 #a9bfd5,
    0 17px 28px rgba(0, 0, 0, 0.26);
  transform: translateY(-2px);
}

.process-button:active {
  box-shadow:
    inset 0 2px 5px rgba(5, 34, 83, 0.12),
    0 1px 0 #a9bfd5,
    0 5px 10px rgba(0, 0, 0, 0.18);
  transform: translateY(3px);
}

/* Tabs and pills use a shallower depth than primary actions. */
.services-tabs {
  border-color: rgba(5, 34, 83, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #edf4fa 100%);
  box-shadow:
    inset 0 1px 0 #ffffff,
    inset 0 -2px 4px rgba(5, 34, 83, 0.08),
    0 4px 0 rgba(5, 34, 83, 0.08),
    0 12px 24px rgba(5, 34, 83, 0.1);
}

.services-tabs button {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.services-tabs button:hover,
.services-tabs button:focus-visible {
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 2px 0 rgba(17, 153, 239, 0.24),
    0 6px 12px rgba(17, 153, 239, 0.1);
  transform: translateY(-1px);
}

.services-tabs button.is-active,
.services-tabs button.is-active:hover,
.services-tabs button.is-active:focus-visible {
  border-color: rgba(3, 22, 51, 0.72);
  background: linear-gradient(180deg, #0c3a83 0%, #06295f 58%, #052253 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18),
    0 3px 0 var(--depth-navy-edge),
    0 9px 16px rgba(5, 34, 83, 0.22);
}

.services-tabs button.is-active:active {
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.18),
    0 1px 0 var(--depth-navy-edge),
    0 4px 8px rgba(5, 34, 83, 0.17);
  transform: translateY(2px);
}

.hero-badges li,
.detail-badges li,
.service-areas li,
.area-chip-list li {
  border-color: rgba(5, 34, 83, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 1px 0 rgba(5, 34, 83, 0.06),
    0 4px 9px rgba(5, 34, 83, 0.055);
}

.hero-badges li:hover,
.detail-badges li:hover,
.service-areas li:hover,
.area-chip-list li:hover {
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 1px 0 rgba(17, 153, 239, 0.16),
    0 6px 12px rgba(17, 153, 239, 0.09);
  transform: translateY(-1px);
}

/* Raised content surfaces share the same light direction and edge treatment. */
.hero-metrics div,
.detail-facts div,
.service-areas,
.served-areas-panel,
.trust-card,
.city-card,
.process-steps li,
.faq-list details,
.detail-panel,
.not-found-card {
  border-color: var(--depth-surface-edge);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 2px 0 rgba(5, 34, 83, 0.07),
    var(--depth-shadow-medium);
}

.hero-metrics div,
.detail-facts div,
.trust-stats div {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(238, 247, 253, 0.94));
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.95),
    inset -1px -1px 0 rgba(5, 34, 83, 0.06),
    0 3px 0 rgba(5, 34, 83, 0.07),
    var(--depth-shadow-low);
}

.hero-metrics div:hover,
.detail-facts div:hover {
  box-shadow:
    inset 1px 1px 0 #ffffff,
    inset -1px -1px 0 rgba(17, 153, 239, 0.09),
    0 5px 0 rgba(17, 153, 239, 0.16),
    var(--depth-shadow-medium);
  transform: translateY(-3px);
}

.trust-card-featured,
.detail-panel-dark {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -2px 0 rgba(0, 0, 0, 0.14),
    0 3px 0 rgba(3, 22, 51, 0.78),
    0 22px 44px rgba(5, 34, 83, 0.24);
}

.trust-card-featured .trust-stats div {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.18),
    inset -1px -1px 0 rgba(0, 0, 0, 0.1),
    0 4px 10px rgba(0, 0, 0, 0.12);
}

.services-tile-row a {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 3px 0 rgba(5, 34, 83, 0.1),
    0 18px 36px rgba(5, 34, 83, 0.17);
}

.services-tile-row a:hover,
.services-tile-row a:focus-visible {
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 6px 0 rgba(5, 34, 83, 0.1),
    var(--depth-shadow-high);
  transform: translateY(-7px);
}

.city-card:hover,
.city-card:focus-within,
.trust-card:not(.trust-card-featured):hover,
.trust-card:not(.trust-card-featured):focus-within,
.process-steps li:hover,
.faq-list details:hover,
.detail-panel:not(.detail-panel-dark):hover {
  border-color: rgba(17, 153, 239, 0.38);
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 5px 0 rgba(17, 153, 239, 0.12),
    var(--depth-shadow-high);
  transform: translateY(-4px);
}

.faq-list details[open] {
  border-color: rgba(17, 153, 239, 0.32);
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 4px 0 rgba(17, 153, 239, 0.12),
    0 18px 34px rgba(5, 34, 83, 0.14);
}

/* Image frames sit above the page with an inset glass highlight. */
.photo-tile,
.services-figma-panel,
.detail-image-wrap,
.city-visual {
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -2px 0 rgba(5, 34, 83, 0.08),
    0 4px 0 rgba(5, 34, 83, 0.08),
    0 18px 38px rgba(5, 34, 83, 0.16);
}

.hero-spotlight,
.detail-image-card {
  border-color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(237, 247, 253, 0.94));
  box-shadow:
    inset 1px 1px 0 #ffffff,
    inset -1px -1px 0 rgba(5, 34, 83, 0.08),
    0 4px 0 rgba(5, 34, 83, 0.09),
    0 20px 38px rgba(5, 34, 83, 0.2);
}

.site-header {
  border-bottom-color: rgba(5, 34, 83, 0.08);
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.82),
    0 3px 0 rgba(5, 34, 83, 0.04),
    0 12px 26px rgba(5, 34, 83, 0.1);
}

.mobile-cta-bar {
  border-color: rgba(255, 255, 255, 0.75);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(229, 239, 247, 0.9));
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 3px 0 rgba(5, 34, 83, 0.08),
    0 16px 36px rgba(5, 34, 83, 0.22);
}

@media (max-width: 760px) {
  .service-areas {
    padding: 16px;
  }

  .service-areas h2 {
    margin-bottom: 12px;
    font-size: 11px;
    line-height: 1.35;
  }

  .service-areas ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .service-areas li {
    width: 100%;
    min-height: 36px;
    padding: 6px 8px;
    border-radius: 10px;
    font-size: 13px;
    white-space: normal;
    box-shadow:
      inset 0 1px 0 #ffffff,
      0 1px 0 rgba(5, 34, 83, 0.05),
      0 3px 7px rgba(5, 34, 83, 0.05);
  }

  .services-view-button,
  .mobile-cta-secondary {
    box-shadow:
      inset 0 1px 0 #ffffff,
      0 1px 0 rgba(17, 153, 239, 0.16),
      0 4px 10px rgba(17, 153, 239, 0.1);
  }

  .mobile-cta-primary {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      inset 0 -1px 0 rgba(0, 0, 0, 0.14),
      0 2px 0 var(--depth-navy-edge),
      0 7px 14px rgba(5, 34, 83, 0.2);
  }

  .button-nav {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      inset 0 -1px 0 rgba(0, 0, 0, 0.14),
      0 2px 0 var(--depth-navy-edge),
      0 7px 14px rgba(5, 34, 83, 0.18);
  }

  .services-tabs button.is-active,
  .services-tabs button.is-active:hover,
  .services-tabs button.is-active:focus-visible {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      inset 0 -1px 0 rgba(0, 0, 0, 0.14),
      0 1px 0 var(--depth-navy-edge),
      0 5px 11px rgba(5, 34, 83, 0.18);
  }

  .mobile-cta-bar,
  .service-detail-body .mobile-cta-bar {
    padding: 4px;
    border-color: rgba(5, 34, 83, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 22px rgba(5, 34, 83, 0.15);
  }

  .services-tile-row a,
  .hero-metrics div,
  .detail-facts div,
  .trust-card,
  .city-card,
  .process-steps li,
  .faq-list details,
  .detail-panel {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 2px 0 rgba(5, 34, 83, 0.07),
      0 10px 22px rgba(5, 34, 83, 0.11);
  }

  .trust-card-featured,
  .detail-panel-dark {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 3px 0 rgba(3, 22, 51, 0.72),
      0 14px 28px rgba(5, 34, 83, 0.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button:hover,
  .button:focus-visible,
  .mobile-cta:hover,
  .mobile-cta:focus-visible,
  .services-tabs button:hover,
  .services-tabs button:focus-visible,
  .services-tile-row a:hover,
  .services-tile-row a:focus-visible,
  .city-card:hover,
  .trust-card:hover,
  .process-steps li:hover,
  .faq-list details:hover,
  .detail-panel:hover {
    transform: none;
  }
}

/* Reference-inspired full-width homepage hero */
.home-body .figma-frame::after {
  display: none;
}

.home-utility-bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 21;
  width: 100%;
  height: 32px;
  background: #020b19;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.utility-shell {
  display: flex;
  width: var(--shell-width);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.utility-shell p,
.utility-shell div {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 12px;
}

.utility-shell p span {
  color: #ffc928;
  font-size: 14px;
}

.utility-shell div > span {
  color: rgba(255, 255, 255, 0.68);
}

.utility-shell a {
  color: #ffffff;
  font-weight: 700;
}

.utility-shell a:hover,
.utility-shell a:focus-visible {
  color: #6ed0ff;
}

.home-body .site-header {
  top: 32px;
  transition:
    top 180ms ease,
    transform 220ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.home-body .site-header.is-scrolled {
  top: 0;
}

.reference-hero {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: stretch;
  padding: 96px 0 0;
  overflow: hidden;
  background: #031225;
  isolation: isolate;
}

.reference-hero::before,
.reference-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.reference-hero::before {
  background:
    linear-gradient(90deg, rgba(1, 12, 29, 0.96) 0%, rgba(2, 17, 39, 0.88) 35%, rgba(2, 17, 39, 0.42) 65%, rgba(2, 17, 39, 0.24) 100%),
    linear-gradient(180deg, rgba(1, 10, 24, 0.12) 42%, rgba(1, 10, 24, 0.84) 100%);
}

.reference-hero::after {
  background:
    radial-gradient(circle at 78% 32%, rgba(17, 153, 239, 0.12), transparent 28%),
    linear-gradient(180deg, transparent 80%, rgba(1, 10, 24, 0.38) 100%);
}

.reference-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #031225;
}

.reference-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.86) contrast(1.03);
  transform: scale(1.025);
  transition:
    opacity 900ms ease-in-out,
    transform 6s ease-out;
  will-change: opacity, transform;
}

.reference-hero-media.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero-slide-cleaning {
  object-position: center 46%;
}

.hero-slide-floor {
  object-position: center 56%;
}

.reference-hero .hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--shell-width);
  min-height: auto;
  align-items: end;
  padding: clamp(76px, 10vh, 118px) 0 clamp(62px, 8vh, 88px);
  grid-template-columns: minmax(0, 720px) minmax(270px, 330px);
  grid-template-rows: auto;
  justify-content: space-between;
  gap: clamp(48px, 7vw, 110px);
}

.reference-hero .hero-copy {
  width: 100%;
  max-width: 720px;
  grid-column: auto;
  grid-row: auto;
}

.reference-hero .hero-eyebrow {
  display: inline-flex;
  width: auto;
  min-height: 38px;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 24px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.reference-hero .hero-eyebrow span {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: #4fca79;
  box-shadow: 0 0 0 5px rgba(79, 202, 121, 0.14);
}

.reference-hero .copy-stack {
  gap: 22px;
}

.reference-hero .copy-stack h1 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(52px, 5.3vw, 76px);
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.28);
}

.reference-hero .copy-stack h1 span {
  display: block;
  margin-top: 10px;
  color: #55c6ff;
}

.reference-hero .copy-stack p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.65;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.reference-hero .hero-badges {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  flex-wrap: wrap;
}

.reference-hero .hero-badges li {
  display: inline-flex;
  width: auto;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-size: 12px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.reference-hero .hero-badges li::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 8px 0 0;
  content: "";
  border-radius: 999px;
  background: #55c6ff;
}

.reference-hero .hero-badges li + li::before {
  margin: 0 8px 0 0;
}

.reference-hero .hero-badges li:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: none;
}

.reference-hero .hero-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 30px;
}

.reference-hero .button-hero {
  width: auto;
  min-width: 186px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 10px;
}

.reference-hero .button-primary {
  border-color: #0b8edc;
  background: linear-gradient(180deg, #24afff 0%, #1199ef 64%, #0b84cf 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 2px 0 #076ca9,
    0 12px 26px rgba(17, 153, 239, 0.28);
}

.reference-hero .button-primary:hover,
.reference-hero .button-primary:focus-visible {
  background: linear-gradient(180deg, #43bcff 0%, #1aa4f7 64%, #0b8edc 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 3px 0 #076ca9,
    0 16px 30px rgba(17, 153, 239, 0.34);
  transform: translateY(-1px);
}

.reference-hero .button-outline {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.reference-hero .button-outline:hover,
.reference-hero .button-outline:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.reference-hero .hero-metrics {
  display: grid;
  width: min(100%, 670px);
  max-width: none;
  margin: 32px 0 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(1, 12, 29, 0.48);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.reference-hero .hero-metrics div {
  min-width: 0;
  padding: 11px 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.reference-hero .hero-metrics div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.reference-hero .hero-metrics div:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  transform: none;
}

.reference-hero .hero-metrics dt {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.reference-hero .hero-metrics dd {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  line-height: 1.25;
}

.hero-assurance {
  width: 100%;
  align-self: end;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(1, 12, 29, 0.58);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 20px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-assurance > p {
  margin: 0 0 10px;
  color: #55c6ff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-assurance h2 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.22;
}

.hero-assurance ul {
  display: grid;
  margin: 22px 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.hero-assurance li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

.hero-assurance li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border: 2px solid #55c6ff;
  border-radius: 50%;
}

.hero-assurance > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.hero-assurance > a span {
  color: #55c6ff;
  transition: transform 150ms ease;
}

.hero-assurance > a:hover span,
.hero-assurance > a:focus-visible span {
  transform: translateX(3px);
}

@media (max-width: 980px) {
  .reference-hero .hero-shell {
    grid-template-columns: minmax(0, 720px);
  }

  .hero-assurance {
    display: none;
  }
}

@media (max-width: 760px) {
  .home-utility-bar {
    display: none;
  }

  .home-body .site-header,
  .home-body .site-header.is-scrolled {
    top: 0;
  }

  .reference-hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 60px 0 0;
  }

  .reference-hero::before {
    background:
      linear-gradient(180deg, rgba(1, 12, 29, 0.72) 0%, rgba(1, 12, 29, 0.78) 42%, rgba(1, 12, 29, 0.96) 100%),
      linear-gradient(90deg, rgba(1, 12, 29, 0.5), rgba(1, 12, 29, 0.18));
  }

  .hero-slide-pest {
    object-position: 62% center;
  }

  .hero-slide-cleaning {
    object-position: 58% center;
  }

  .hero-slide-floor {
    object-position: 54% center;
    filter: saturate(0.94) contrast(1.02) brightness(1.08);
  }

  .reference-hero .hero-shell {
    display: block;
    width: min(calc(100% - 32px), 520px);
    min-height: auto;
    padding: 54px 0 58px;
  }

  .reference-hero .hero-copy {
    max-width: 100%;
    text-align: left;
  }

  .reference-hero .hero-eyebrow {
    min-height: 34px;
    justify-content: flex-start;
    margin: 0 0 20px;
    padding: 0 13px;
    font-size: 10px;
  }

  .reference-hero .copy-stack {
    gap: 18px;
  }

  .reference-hero .copy-stack h1 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(38px, 10.7vw, 50px);
    line-height: 1.01;
    text-align: left;
  }

  .reference-hero .copy-stack h1 span {
    margin-top: 8px;
  }

  .reference-hero .copy-stack p {
    max-width: 100%;
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    text-align: left;
  }

  .reference-hero .hero-badges {
    justify-content: flex-start;
    margin-top: 22px;
    gap: 7px;
  }

  .reference-hero .hero-badges li {
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
  }

  .reference-hero .hero-actions {
    display: grid;
    margin-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .reference-hero .button-hero {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 0 12px;
    font-size: 12px;
  }

  .reference-hero .hero-metrics {
    width: 100%;
    margin-top: 26px;
    padding: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .reference-hero .hero-metrics div,
  .reference-hero .hero-metrics > div:first-child,
  .reference-hero .hero-metrics > div:last-child {
    padding: 11px 12px;
    grid-column: auto;
  }

  .reference-hero .hero-metrics div:nth-child(3) {
    border-left: 0;
  }

  .reference-hero .hero-metrics div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .reference-hero .hero-metrics dt {
    font-size: 21px;
  }

  .reference-hero .hero-metrics dd {
    font-size: 10px;
  }
}

@media (min-width: 761px) and (max-height: 820px) {
  .reference-hero .hero-shell {
    padding-top: 44px;
    padding-bottom: 38px;
  }

  .reference-hero .hero-eyebrow {
    min-height: 34px;
    margin-bottom: 16px;
  }

  .reference-hero .copy-stack {
    gap: 14px;
  }

  .reference-hero .copy-stack h1 {
    font-size: clamp(46px, 4.7vw, 62px);
  }

  .reference-hero .copy-stack p {
    font-size: 14px;
    line-height: 1.5;
  }

  .reference-hero .hero-badges {
    margin-top: 18px;
  }

  .reference-hero .hero-actions {
    margin-top: 20px;
  }

  .reference-hero .button-hero {
    min-height: 44px;
  }

  .reference-hero .hero-metrics {
    margin-top: 22px;
  }

  .hero-assurance {
    padding: 22px;
  }
}

@media (max-width: 760px) and (max-height: 760px) {
  .reference-hero .hero-shell {
    padding-top: 26px;
    padding-bottom: 76px;
  }

  .reference-hero .hero-eyebrow {
    min-height: 30px;
    margin-bottom: 14px;
    font-size: 9px;
  }

  .reference-hero .copy-stack {
    gap: 12px;
  }

  .reference-hero .copy-stack h1 {
    font-size: clamp(32px, 9.5vw, 39px);
  }

  .reference-hero .copy-stack p {
    font-size: 12px;
    line-height: 1.42;
  }

  .reference-hero .hero-badges {
    display: none;
  }

  .reference-hero .hero-actions {
    margin-top: 16px;
  }

  .reference-hero .button-hero {
    min-height: 40px;
    font-size: 11px;
  }

  .reference-hero .hero-metrics {
    margin-top: 16px;
  }

  .reference-hero .hero-metrics div,
  .reference-hero .hero-metrics > div:first-child,
  .reference-hero .hero-metrics > div:last-child {
    padding: 8px 10px;
  }

  .reference-hero .hero-metrics dt {
    font-size: 18px;
  }

  .reference-hero .hero-metrics dd {
    margin-top: 4px;
    font-size: 9px;
  }
}

@media (max-width: 380px) and (min-height: 761px) {
  .reference-hero .hero-shell {
    padding-top: 42px;
  }

  .reference-hero .copy-stack h1 {
    font-size: clamp(35px, 10.4vw, 42px);
  }

  .reference-hero .hero-badges li:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reference-hero-media {
    transform: none;
    transition: none;
  }

  .reference-hero-media:not(:first-child) {
    display: none;
  }
}

/* Premium Qatar coverage panel */
.served-areas-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(14px, 1.4vw, 18px);
  border: 1px solid rgba(96, 211, 255, 0.2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 12%, rgba(17, 153, 239, 0.2), transparent 34%),
    radial-gradient(circle at 10% 86%, rgba(43, 104, 173, 0.18), transparent 38%),
    linear-gradient(145deg, #071a35 0%, #041127 52%, #020b1a 100%);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 2px 0 rgba(3, 22, 51, 0.52),
    0 22px 52px rgba(3, 22, 51, 0.2);
}

.served-areas-panel::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(rgba(104, 213, 255, 0.22) 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 38%);
}

.served-areas-top {
  position: relative;
  z-index: 1;
  align-items: flex-end;
  margin-bottom: clamp(8px, 1vw, 12px);
}

.served-areas-heading > p {
  margin: 0 0 4px;
  color: #67d5ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.served-areas-top h3 {
  color: #f4fbff;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.served-areas-top h3 span {
  color: #64d3ff;
}

.coverage-status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 9px;
  padding: 5px 10px;
  border: 1px solid rgba(94, 223, 183, 0.24);
  border-radius: 999px;
  background: rgba(18, 79, 74, 0.28);
  color: #b9efdd;
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.coverage-status > span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #55e6b5;
  box-shadow: 0 0 0 4px rgba(85, 230, 181, 0.11), 0 0 12px rgba(85, 230, 181, 0.7);
}

.coverage-map-layout {
  position: relative;
  z-index: 1;
  align-items: center;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(16px, 2vw, 26px);
}

.coverage-map-card {
  width: max-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.coverage-map-card img {
  display: block;
  width: clamp(260px, 26vw, 300px);
  max-width: 100%;
  height: auto;
  max-height: none;
  border-radius: 15px;
  filter: drop-shadow(0 16px 34px rgba(0, 7, 18, 0.38));
}

.coverage-area-copy p {
  max-width: 610px;
  margin-bottom: 12px;
  color: #aac2d8;
  font-size: 13.5px;
  line-height: 1.55;
}

.served-areas-panel .area-chip-list {
  gap: 7px;
}

.served-areas-panel .area-chip-list li,
.served-areas-panel .area-chip-list li:hover {
  min-height: 28px;
  padding: 5px 9px;
  border-color: rgba(101, 207, 255, 0.15);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(16, 53, 91, 0.72), rgba(7, 31, 60, 0.74));
  color: #d9eef9;
  font-size: 11px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 3px 8px rgba(0, 7, 18, 0.2);
  transform: none;
}

@media (min-width: 761px) {
  .coverage-map-card {
    width: max-content;
    max-width: 100%;
    justify-self: center;
  }

  .coverage-map-card img {
    width: clamp(260px, 26vw, 300px);
    max-width: 100%;
    height: auto;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .coverage-map-layout {
    grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
    gap: 16px;
  }

  .coverage-map-card {
    max-width: 100%;
  }

  .coverage-area-copy p {
    color: #aac2d8;
  }
}

@media (max-width: 760px) {
  .served-areas-panel {
    padding: 12px;
    border-radius: 20px;
  }

  .served-areas-top {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
  }

  .served-areas-heading > p {
    margin-bottom: 3px;
    font-size: 9px;
  }

  .served-areas-top h3 {
    font-size: clamp(19px, 5.5vw, 23px);
    text-align: center;
  }

  .coverage-status {
    min-height: 26px;
    gap: 7px;
    padding: 4px 8px;
    font-size: 9px;
  }

  .coverage-status > span {
    width: 6px;
    height: 6px;
  }

  .coverage-map-layout {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    place-items: center;
  }

  .coverage-map-card {
    width: max-content;
    max-width: 100%;
    padding: 0;
    border-radius: 0;
  }

  .coverage-map-card img {
    width: min(78vw, 320px);
    max-width: 100%;
    height: auto;
    max-height: none;
    border-radius: 14px;
  }
}

@media (max-width: 410px) {
  .coverage-status {
    max-width: 93px;
    white-space: normal;
  }
}

/* Split service showcase: category story + four focused service cards */
.service-showcase .services-figma-panel {
  display: grid;
  height: auto;
  min-height: 0;
  align-items: stretch;
  overflow: visible;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  gap: 18px;
}

.services-category-visual {
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(151, 211, 247, 0.42);
  border-radius: 24px;
  background: #052253;
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 3px 0 rgba(5, 34, 83, 0.16),
    0 22px 48px rgba(5, 34, 83, 0.16);
}

.services-category-visual > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.015);
}

.services-category-visual .services-panel-overlay {
  display: block;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3, 18, 43, 0.12) 0%, rgba(3, 18, 43, 0.5) 46%, rgba(3, 18, 43, 0.96) 100%),
    linear-gradient(90deg, rgba(3, 18, 43, 0.62), rgba(3, 18, 43, 0.08));
}

.services-category-summary {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 2.4vw, 32px);
}

.services-category-mark {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #72d7ff;
  font-size: 20px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

#services-category-eyebrow {
  margin: 0 0 8px;
  color: #72d7ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

#services-category-title {
  max-width: 420px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

#services-category-description {
  max-width: 460px;
  margin: 14px 0 0;
  color: rgba(235, 247, 255, 0.78);
  font-size: 14px;
  line-height: 1.58;
}

.services-category-facts {
  display: grid;
  margin: 24px 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.services-category-facts > div {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.services-category-facts dt {
  color: #ffffff;
  font-size: 20px;
  font-weight: 780;
  letter-spacing: -0.025em;
  line-height: 1;
}

.services-category-facts dd {
  margin: 7px 0 0;
  color: rgba(229, 243, 255, 0.72);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.25;
}

.service-showcase .services-tile-row {
  z-index: auto;
  width: 100%;
  align-items: stretch;
  padding: 0;
}

.service-showcase .services-tile-row .service-card {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 34, 83, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 3px 0 rgba(5, 34, 83, 0.08),
    0 16px 34px rgba(5, 34, 83, 0.1);
}

.service-showcase .service-card-media {
  position: relative;
  overflow: hidden;
  background: #e9f4fb;
}

.service-showcase .service-card-media img {
  transition: transform 240ms ease;
}

.service-showcase .service-card:hover .service-card-media img,
.service-showcase .service-card:focus-visible .service-card-media img {
  transform: scale(1.045);
}

.service-card-number {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  background: rgba(235, 248, 255, 0.9);
  color: #052253;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(5, 34, 83, 0.14);
  backdrop-filter: blur(10px);
}

@media (min-width: 981px) {
  .service-showcase .services-figma-panel {
    grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.58fr);
  }

  .services-category-visual {
    min-height: 570px;
  }

  .service-showcase .services-tile-row {
    display: grid;
    overflow: visible;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .service-showcase .services-tile-row .service-card {
    display: flex;
    height: auto;
    min-height: 0;
    flex: none;
  }

  .service-showcase .service-card-media {
    height: 112px;
    min-height: 112px;
  }

  .service-showcase .service-card-body {
    padding: 14px 16px 16px;
  }

  .service-showcase .services-tile-row h3 {
    font-size: 17px;
  }

  .service-showcase .service-card-copy {
    -webkit-line-clamp: 2;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .service-showcase .services-figma-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-category-visual {
    min-height: 430px;
  }

  .services-category-summary {
    max-width: 650px;
  }

  .service-showcase .services-tile-row {
    display: grid;
    overflow: visible;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .service-showcase .services-tile-row .service-card {
    display: flex;
    height: 252px;
    flex: none;
  }

  .service-showcase .service-card-media {
    height: 108px;
    min-height: 108px;
  }
}

@media (max-width: 760px) {
  .service-showcase .services-figma-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .services-category-visual {
    min-height: 420px;
    border-radius: 20px;
  }

  .services-category-visual .services-panel-overlay {
    background:
      linear-gradient(180deg, rgba(3, 18, 43, 0.64) 0%, rgba(3, 18, 43, 0.82) 48%, rgba(3, 18, 43, 0.98) 100%),
      linear-gradient(90deg, rgba(3, 18, 43, 0.58), rgba(3, 18, 43, 0.32));
  }

  .services-category-summary {
    padding: 20px;
  }

  .services-category-mark {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 12px;
    font-size: 17px;
  }

  #services-category-title {
    max-width: 280px;
    font-size: clamp(26px, 7.5vw, 31px);
    overflow-wrap: anywhere;
  }

  #services-category-description {
    margin-top: 10px;
    font-size: 12.5px;
    line-height: 1.5;
  }

  .services-category-facts {
    margin-top: 18px;
    gap: 8px;
  }

  .services-category-facts > div {
    padding: 11px 12px;
    border-radius: 11px;
    background: rgba(3, 27, 58, 0.68);
  }

  .services-category-facts dt {
    font-size: 18px;
  }

  .service-showcase .services-tile-row {
    display: grid;
    overflow: visible;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
  }

  .service-showcase .services-tile-row .service-card {
    display: flex;
    height: auto;
    min-height: 0;
    flex: none;
    flex-direction: column;
    border-radius: 16px;
  }

  .service-showcase .service-card-media {
    height: clamp(118px, 34vw, 150px);
    min-height: clamp(118px, 34vw, 150px);
  }

  .service-showcase .service-card-number {
    top: 10px;
    left: 10px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 12px;
  }

  .service-showcase .service-card-body {
    min-height: 145px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 11px 9px 12px;
    text-align: left;
  }

  .service-showcase .service-card-kicker {
    display: none;
  }

  .service-showcase .services-tile-row h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--brand);
    font-size: clamp(13px, 3.8vw, 16px);
    line-height: 1.28;
    text-align: left;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .service-showcase .service-card-copy {
    display: -webkit-box;
    width: 100%;
    min-height: 2.7em;
    overflow: hidden;
    margin: 7px 0 0;
    font-size: 10.5px;
    line-height: 1.35;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .service-showcase .service-card-link {
    display: inline-flex;
    width: 100%;
    min-height: 31px;
    align-items: center;
    align-self: stretch;
    justify-content: center;
    margin-top: auto;
    margin-left: 0;
    padding: 0 7px;
    border: 1px solid rgba(17, 153, 239, 0.28);
    border-radius: 8px;
    background: rgba(232, 247, 255, 0.82);
    color: var(--brand);
    font-size: 9px;
    letter-spacing: 0.09em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
}

@media (max-width: 380px) {
  .services-category-visual {
    min-height: 405px;
  }

  .services-category-summary {
    padding: 17px;
  }

  .service-showcase .services-tile-row .service-card {
    border-radius: 14px;
  }
}
