@font-face {
  font-family: "MalayalamMNLocal";
  src: url("https://www.leczcore.com/static/fonts/MalayalamMN-01.269ac5d9.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "SourceHanSansLocal";
  src: url("https://www.leczcore.com/static/fonts/SourceHanSansSC-Normal.c85ba00f.ttf") format("truetype");
  font-display: swap;
}

:root {
  --brand: #32adc6;
  --brand-deep: #009abe;
  --brand-dark: #057891;
  --ink: #111719;
  --ink-soft: #334044;
  --muted: #5f6d71;
  --line: #d8e5e8;
  --surface: #ffffff;
  --mist: #f2fbff;
  --warm: #b48d56;
  --footer: #009abe;
  --shadow: 0 8px 16px rgba(0, 38, 48, .08);
  --wrap: min(1180px, calc(100vw - 48px));
  --radius: 8px;
  --font-en: MalayalamMNLocal, "Malayalam MN", Arial, "Microsoft YaHei", sans-serif;
  --font-zh: SourceHanSansLocal, "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-ar: Arial, "Noto Kufi Arabic", "Noto Naskh Arabic", Tahoma, sans-serif;
  --font-article-default: Arial, "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-en);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  background: #fff;
  opacity: 1;
  transition: opacity 900ms cubic-bezier(.22, 1, .36, 1);
}

body.is-loaded::before {
  opacity: 0;
}

body.lang-en {
  font-family: var(--font-en);
}

body.lang-zh {
  font-family: var(--font-zh);
}

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

body.lang-ar input,
body.lang-ar textarea,
body.lang-ar select {
  direction: rtl;
  text-align: right;
}

body.lang-ar input[type="email"],
body.lang-ar input[type="tel"] {
  direction: ltr;
  text-align: right;
}

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

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

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

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 82px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(216, 229, 232, .78);
  backdrop-filter: blur(12px);
  transition: min-height .36s ease, box-shadow .36s ease, background .36s ease;
}

body.is-scrolled .site-header {
  min-height: 72px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 8px 18px rgba(0, 45, 55, .06);
}

.nav-shell {
  width: var(--wrap);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: min-height .36s ease;
}

body.is-scrolled .nav-shell {
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  min-width: 270px;
}

.logo img {
  width: min(270px, 24vw);
  max-height: 58px;
  height: auto;
  transition: width .36s ease, max-height .36s ease;
}

body.is-scrolled .logo img {
  width: min(250px, 22vw);
  max-height: 52px;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 34px);
  color: #131a1d;
  font-size: 15px;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 30px 0 28px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .24s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
}

.language-switch button {
  min-width: 38px;
  height: 32px;
  border: 0;
  color: var(--ink-soft);
  background: transparent;
  border-radius: 6px;
  font-size: 13px;
}

.language-switch button.active {
  color: #fff;
  background: var(--brand);
}

.language-switch {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  color: #fff;
  background: var(--brand);
  font-weight: 700;
  line-height: 1.1;
  transition: background .2s ease, transform .2s ease;
}

.btn:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn.ghost {
  color: var(--brand-dark);
  background: #fff;
  border-color: var(--brand);
}

.btn.ghost:hover {
  color: #fff;
  background: var(--brand);
}

.mobile-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  color: var(--ink);
  font-size: 22px;
}

.page-hero {
  min-height: 470px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #071114;
}

.page-hero > img,
.page-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transform: scale(1.04);
  transition: transform 1400ms cubic-bezier(.22, 1, .36, 1), opacity 1400ms cubic-bezier(.22, 1, .36, 1);
}

body.is-loaded .page-hero > img,
body.is-loaded .page-hero-media img {
  transform: scale(1);
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-hero-media [data-hero-image] {
  opacity: .72;
}

.page-hero-media [data-hero-image].is-changing {
  opacity: .12;
}

.hero-carousel-controls {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-carousel-dots button,
.hero-carousel-arrows button {
  appearance: none;
  cursor: pointer;
}

.hero-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: transparent;
  transition: width .25s ease, border-color .25s ease, background .25s ease;
}

.hero-carousel-dots button.active {
  width: 26px;
  border-color: #fff;
  border-radius: 999px;
  background: #fff;
}

.hero-carousel-arrows {
  display: flex;
  gap: 6px;
}

.hero-carousel-arrows button {
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 38, 48, .34);
  font-size: 0;
  line-height: 0;
  transition: border-color .25s ease, background .25s ease;
}

.hero-carousel-arrows button::before,
.partner-carousel-arrows button::before,
.hero-carousel-arrows button::after,
.partner-carousel-arrows button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
}

.hero-carousel-arrows button::before,
.partner-carousel-arrows button::before {
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.hero-carousel-arrows button::after,
.partner-carousel-arrows button::after {
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.hero-carousel-arrows button:first-child::after,
.partner-carousel-arrows button:first-child::after {
  transform: translate(-72%, -50%) rotate(225deg);
}

.hero-carousel-arrows button:last-child::after,
.partner-carousel-arrows button:last-child::after {
  transform: translate(-28%, -50%) rotate(45deg);
}

.hero-carousel-dots button:hover,
.hero-carousel-dots button:focus-visible,
.hero-carousel-arrows button:hover,
.hero-carousel-arrows button:focus-visible {
  border-color: #fff;
  background: rgba(0, 154, 190, .72);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 38, 48, .82) 0%, rgba(0, 58, 72, .48) 52%, rgba(0, 0, 0, .18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .72) 0%, transparent 54%);
}

body.lang-ar .page-hero::after {
  background:
    linear-gradient(270deg, rgba(0, 38, 48, .82) 0%, rgba(0, 58, 72, .48) 52%, rgba(0, 0, 0, .18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .72) 0%, transparent 54%);
}

body.lang-ar .hero-carousel-controls {
  right: auto;
  left: max(24px, calc((100vw - 1180px) / 2));
}

body[data-page="privacy"] .page-hero > img {
  opacity: .9;
  object-position: center center;
}

body[data-page="privacy"] .page-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 38, 48, .84) 0%, rgba(0, 58, 72, .5) 44%, rgba(0, 0, 0, .08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .44) 0%, transparent 62%);
}

body.lang-ar[data-page="privacy"] .page-hero::after {
  background:
    linear-gradient(270deg, rgba(0, 38, 48, .84) 0%, rgba(0, 58, 72, .5) 44%, rgba(0, 0, 0, .08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .44) 0%, transparent 62%);
}

.page-hero-inner {
  width: var(--wrap);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 72px 0;
}

.page-hero .breadcrumb,
.page-hero h1,
.page-hero .page-lede,
.page-hero .hero-actions {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 900ms cubic-bezier(.22, 1, .36, 1), transform 900ms cubic-bezier(.22, 1, .36, 1);
}

body.is-loaded .page-hero .breadcrumb {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 120ms;
}

body.is-loaded .page-hero h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 230ms;
}

body.is-loaded .page-hero .page-lede {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 340ms;
}

body.is-loaded .page-hero .hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 450ms;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.breadcrumb::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--brand);
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.04;
  font-weight: 400;
  text-wrap: balance;
}

.page-lede {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.76;
  text-wrap: pretty;
}

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

section {
  scroll-margin-top: 96px;
}

.section {
  padding: clamp(74px, 8vw, 118px) 0;
}

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

.section-head {
  width: var(--wrap);
  margin: 0 auto 44px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.18;
  font-weight: 400;
  text-wrap: balance;
}

.section-head p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.content-wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.about-menu-band {
  position: sticky;
  top: 82px;
  z-index: 18;
  border-bottom: 1px solid rgba(216, 229, 232, .82);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
}

body.is-scrolled .about-menu-band {
  top: 72px;
}

.about-anchor-menu {
  width: var(--wrap);
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 46px);
  overflow-x: auto;
  scrollbar-width: none;
}

.about-anchor-menu::-webkit-scrollbar {
  display: none;
}

.about-anchor-menu a {
  position: relative;
  flex: 0 0 auto;
  padding: 18px 0 16px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .24s ease;
}

.about-anchor-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 11px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform .24s ease;
}

.about-anchor-menu a:hover,
.about-anchor-menu a:focus-visible {
  color: var(--brand-dark);
}

.about-anchor-menu a:hover::after,
.about-anchor-menu a:focus-visible::after {
  transform: scaleX(1);
}

.intro-grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(340px, 1.04fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
}

.intro-image {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d8eef3;
}

.intro-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.intro-copy h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 400;
  text-wrap: balance;
}

.intro-copy p {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.84;
  text-wrap: pretty;
}

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

.metric-row {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-row:where(.five) {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.metric-row div {
  min-height: 120px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.metric-row:where(.five) div {
  padding-inline: 22px;
}

body.lang-ar .metric-row div {
  border-right: 0;
  border-left: 1px solid var(--line);
}

.metric-row div:last-child,
body.lang-ar .metric-row div:last-child {
  border-right: 0;
  border-left: 0;
}

.metric-row strong {
  display: block;
  color: var(--brand-dark);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.metric-row:where(.five) strong {
  font-size: clamp(26px, 2.6vw, 40px);
}

.metric-row span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.card-grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.resource-service-grid {
  max-width: 920px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), border-color .45s ease, box-shadow .45s ease;
}

.info-card img {
  width: 100%;
  height: 248px;
  object-fit: cover;
  background: #d8eef3;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(50, 173, 198, .55);
  box-shadow: 0 10px 16px rgba(0, 47, 59, .08);
}

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

.info-card-content {
  padding: 28px;
}

.info-card h3 {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.28;
}

.info-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.resource-summary {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.resource-summary div {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--mist);
}

.resource-summary strong {
  color: var(--brand-dark);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
}

.resource-summary span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--brand);
}

body.lang-ar .section-kicker::before {
  order: 2;
}

.international-network {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(238, 248, 252, .98) 0%, rgba(255, 255, 255, .9) 48%, rgba(242, 251, 255, .96) 100%),
    linear-gradient(135deg, rgba(242, 251, 255, .96), rgba(255, 255, 255, .82));
  isolation: isolate;
}

.international-network::before {
  content: "";
  position: absolute;
  inset: -84px 0 -54px;
  z-index: 0;
  pointer-events: none;
  background-image: url("world-map-dots.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: min(1680px, 132vw) auto;
  opacity: .44;
  mix-blend-mode: multiply;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.international-head {
  position: relative;
  z-index: 1;
}

.partner-rail-shell {
  position: relative;
  z-index: 1;
  width: var(--wrap);
  margin: 0 auto;
}

.partner-rail-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.partner-rail-meta span:first-child {
  color: var(--brand-dark);
  font-weight: 700;
}

.partner-rail-actions {
  margin-inline-start: auto;
  display: flex;
  gap: 8px;
}

.partner-rail-actions button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(5, 120, 145, .26);
  border-radius: 50%;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, .82);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}

.partner-rail-actions button:hover,
.partner-rail-actions button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--brand);
  color: #fff;
  background: var(--brand-dark);
}

.partner-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 360px);
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 2px;
  padding: 10px 2px;
  scrollbar-width: none;
}

.partner-rail::-webkit-scrollbar {
  display: none;
}

.partner-rail:focus-visible {
  outline: 2px solid rgba(50, 173, 198, .8);
  outline-offset: 6px;
}

.partner-card {
  min-height: 496px;
  display: grid;
  grid-template-rows: 228px 1fr;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(5, 120, 145, .18);
  border-radius: var(--radius);
  color: inherit;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 24px rgba(0, 54, 68, .07);
  transition: transform .48s cubic-bezier(.22, 1, .36, 1), border-color .35s ease, box-shadow .35s ease;
}

.partner-card:hover,
.partner-card:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(50, 173, 198, .62);
  box-shadow: 0 18px 34px rgba(0, 54, 68, .12);
}

.partner-image {
  position: relative;
  overflow: hidden;
  background: #e5f5f8;
}

.partner-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.22, 1, .36, 1), filter 900ms cubic-bezier(.22, 1, .36, 1);
}

.partner-card:hover .partner-image > img,
.partner-card:focus-visible .partner-image > img {
  transform: scale(1.07);
  filter: saturate(1.08);
}

.partner-logo {
  position: absolute;
  left: 22px;
  bottom: 18px;
  width: 116px;
  height: 70px;
  display: grid;
  place-items: center;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 38, 48, .08);
}

body.lang-ar .partner-logo {
  right: 22px;
  left: auto;
}

.partner-logo img {
  display: block;
  width: 86%;
  height: 86%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.partner-card-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
}

.partner-index {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
}

.partner-card strong {
  min-height: 62px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.25;
  font-weight: 400;
}

.partner-card span:not(.partner-image):not(.partner-logo):not(.partner-card-body):not(.partner-index):not(.testimonial-initial) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.partner-card em {
  margin-top: auto;
  color: var(--brand-dark);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--brand-dark);
  font-weight: 700;
  transition: color .24s ease, gap .24s ease;
}

.text-link:hover {
  gap: 12px;
  color: var(--brand);
}

.placeholder-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border: 1px solid rgba(50, 173, 198, .42);
  border-radius: 999px;
  color: var(--brand-dark);
  background: #f6fdff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.timeline {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

body.lang-ar .timeline-item {
  grid-template-columns: 1fr 160px;
}

.timeline-item strong {
  color: var(--brand-dark);
  font-size: 30px;
  line-height: 1;
}

.timeline-item h3 {
  font-size: 24px;
  line-height: 1.28;
}

.timeline-item p {
  margin-top: 8px;
  color: var(--muted);
}

.about-timeline .timeline-item {
  grid-template-columns: minmax(210px, .22fr) minmax(0, 1fr);
  gap: 0;
  min-height: 156px;
  align-items: stretch;
  padding: 0;
}

body.lang-ar .about-timeline .timeline-item {
  grid-template-columns: minmax(0, 1fr) minmax(210px, .22fr);
}

.about-timeline .timeline-item:last-child {
  border-bottom: 1px solid var(--line);
}

.about-timeline .timeline-item strong {
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: clamp(30px, 3.4vw, 46px) clamp(24px, 3vw, 38px);
  border-right: 1px solid rgba(50, 173, 198, .18);
  color: #057891;
  background:
    linear-gradient(135deg, rgba(50, 173, 198, .16), rgba(255, 255, 255, .72) 58%),
    #f2fbff;
  font-size: clamp(34px, 3.3vw, 52px);
  font-weight: 700;
  letter-spacing: 0;
}

body.lang-ar .about-timeline .timeline-item strong {
  border-right: 0;
  border-left: 1px solid rgba(50, 173, 198, .18);
}

.about-timeline .timeline-item > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 3.4vw, 46px) clamp(28px, 5vw, 76px);
}

.about-timeline .timeline-item h3 {
  color: var(--ink);
  font-size: clamp(28px, 2.45vw, 40px);
  line-height: 1.18;
  font-weight: 700;
}

.about-timeline .timeline-item p {
  margin-top: 14px;
  color: #718186;
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.62;
}

.about-timeline .timeline-item[data-reveal] {
  transform: translateY(42px);
}

.about-timeline .timeline-item[data-reveal].is-visible {
  transform: translateY(0);
}

.about-tcm-bridge {
  position: relative;
  width: min(1360px, calc(100vw - 44px));
  margin: clamp(68px, 7vw, 96px) auto 0;
  display: grid;
  grid-template-columns: minmax(330px, .9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: stretch;
  padding: clamp(46px, 5.6vw, 76px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(232, 249, 252, .98), rgba(255, 255, 255, .98) 39%, rgba(255, 255, 255, .96)),
    #fff;
  box-shadow: 0 24px 52px rgba(0, 47, 59, .12);
  overflow: hidden;
}

.about-tcm-bridge::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(46px, 5.6vw, 76px);
  right: clamp(46px, 5.6vw, 76px);
  height: 5px;
  background: linear-gradient(90deg, var(--brand), rgba(50, 173, 198, .2));
}

.about-tcm-bridge::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: min(42vw, 520px);
  height: 56%;
  background: radial-gradient(circle at 80% 80%, rgba(50, 173, 198, .14), transparent 68%);
  pointer-events: none;
}

body.lang-ar .about-tcm-bridge::before {
  background: linear-gradient(270deg, var(--brand), rgba(50, 173, 198, .12));
}

.about-tcm-bridge-intro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3.2vw, 42px);
  border-radius: var(--radius);
  background: rgba(232, 249, 252, .72);
}

.about-tcm-bridge-intro h2 {
  color: var(--ink);
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.2;
  font-weight: 400;
  text-wrap: balance;
}

.about-tcm-bridge-intro p {
  max-width: 560px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.76;
  text-wrap: pretty;
}

.about-tcm-bridge-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(8px, 2vw, 22px);
}

.about-tcm-bridge-media {
  margin: 0 0 clamp(24px, 2.8vw, 36px);
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 14px 30px rgba(0, 47, 59, .10);
}

.about-tcm-bridge-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .85s cubic-bezier(.22, 1, .36, 1);
}

.about-tcm-bridge:hover .about-tcm-bridge-media img {
  transform: scale(1.03);
}

.about-tcm-bridge-copy p {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.78;
  text-wrap: pretty;
}

.about-tcm-bridge-copy p + p {
  margin-top: clamp(26px, 3vw, 42px);
}

.about-tcm-bridge[data-reveal] {
  transform: translateY(36px);
}

.about-tcm-bridge[data-reveal].is-visible {
  transform: translateY(0);
}

.zone-list {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.zone-row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), box-shadow .45s ease, border-color .45s ease;
}

.zone-row:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}

.zone-row:nth-child(even) .zone-media {
  order: 2;
}

body.lang-ar .zone-row:nth-child(even) .zone-media {
  order: 0;
}

.zone-media {
  min-height: 330px;
  overflow: hidden;
  border-radius: 6px;
  background: #d8eef3;
}

.zone-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.22, 1, .36, 1);
}

.zone-row:hover {
  transform: translateY(-4px);
  border-color: rgba(50, 173, 198, .5);
  box-shadow: 0 10px 16px rgba(0, 47, 59, .08);
}

.zone-row:hover .zone-media img {
  transform: scale(1.04);
}

.zone-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 10px;
}

.zone-number {
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 700;
}

.zone-body h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.16;
  font-weight: 400;
}

.zone-body p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.78;
}

.plain-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.plain-list li {
  display: flex;
  gap: 12px;
  color: var(--ink-soft);
}

.plain-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand);
}

.about-service-list .zone-row {
  min-height: 430px;
}

.about-service-list .zone-body {
  justify-content: center;
}

.about-service-list .plain-list {
  max-width: 720px;
}

.about-advantage-grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-advantage-card {
  min-height: 300px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(242, 251, 255, .72), rgba(255, 255, 255, 0) 44%),
    #fff;
  transition: background .32s ease, transform .32s ease;
}

body.lang-ar .about-advantage-card {
  border-right: 0;
  border-left: 1px solid var(--line);
}

.about-advantage-card:last-child,
body.lang-ar .about-advantage-card:last-child {
  border-right: 0;
  border-left: 0;
}

.about-advantage-card:hover {
  background: #f7fdff;
  transform: translateY(-4px);
}

.about-advantage-card strong {
  display: block;
  color: var(--brand-dark);
  font-size: 16px;
  line-height: 1;
}

.about-advantage-card h2 {
  margin-top: 38px;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.22;
  font-weight: 400;
}

.about-advantage-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.split-band {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.image-panel {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: #123035;
  padding: 36px;
}

.image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: transform .95s cubic-bezier(.22, 1, .36, 1), opacity .45s ease;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 35, 43, .88) 0%, rgba(0, 35, 43, .16) 64%);
  transition: background .45s ease, opacity .45s ease;
}

.image-panel:hover img {
  transform: scale(1.045);
  opacity: .88;
}

.image-panel-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  transform: translate3d(0, 0, 0);
  transition: transform .46s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.image-panel h2 {
  margin: 0;
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.12;
  font-weight: 400;
}

.image-panel p {
  margin-top: 18px;
  color: rgba(255, 255, 255, .84);
  font-size: 16px;
  line-height: 1.72;
  white-space: pre-line;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    max-height .58s cubic-bezier(.22, 1, .36, 1),
    opacity .34s ease,
    transform .46s cubic-bezier(.22, 1, .36, 1);
  will-change: transform, opacity;
}

.service-direction-grid .image-panel-content {
  max-width: 680px;
}

.service-direction-grid .image-panel p {
  max-width: 640px;
}

.service-direction-grid .image-panel h2,
.service-direction-grid .image-panel p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, .38);
}

.service-direction-grid .image-panel:hover::after,
.service-direction-grid .image-panel:focus-within::after {
  background: linear-gradient(0deg, rgba(0, 24, 31, .96) 0%, rgba(0, 24, 31, .58) 62%, rgba(0, 24, 31, .22) 100%);
}

.service-direction-grid .image-panel:hover img,
.service-direction-grid .image-panel:focus-within img {
  opacity: .74;
}

.service-direction-grid .image-panel:hover p,
.service-direction-grid .image-panel:focus-within p {
  color: rgba(255, 255, 255, .96);
}

.service-direction-grid .image-panel[data-reveal] {
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 620ms cubic-bezier(.22, 1, .36, 1),
    transform 620ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: 0ms !important;
  will-change: transform, opacity;
}

.service-direction-grid .image-panel[data-reveal].is-visible {
  transform: translate3d(0, 0, 0);
}

.image-panel:hover p,
.image-panel:focus-within p {
  max-height: 42rem;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.image-panel:hover .image-panel-content,
.image-panel:focus-within .image-panel-content {
  transform: translate3d(0, -34px, 0);
}

.image-panel:focus-visible {
  outline: 2px solid rgba(50, 173, 198, .36);
  outline-offset: 4px;
}

.service-direction-grid .image-panel .image-panel-content {
  min-height: 0;
  justify-content: flex-end;
  padding-bottom: 2px;
}

.service-direction-grid .image-panel .image-panel-content h2 {
  min-height: 0;
}

.service-direction-grid .image-panel .btn {
  display: none;
}

.service-direction-grid .image-panel:last-child {
  grid-column: 1 / -1;
  min-height: 380px;
}

.story-list {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.science-tabs {
  width: var(--wrap);
  margin: 0 auto 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.science-tab {
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 8px 18px rgba(0, 47, 59, .05);
  font-size: 14px;
  font-weight: 700;
  transition: transform .24s ease, background .24s ease, color .24s ease, box-shadow .24s ease;
}

.science-tab:hover,
.science-tab:focus-visible {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 47, 59, .08);
}

.science-tab.active,
.science-tab[aria-selected="true"] {
  color: #fff;
  background: var(--brand-dark);
}

.story-item {
  display: grid;
  grid-template-columns: 300px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  background: #fff;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), border-color .45s ease, box-shadow .45s ease;
}

.story-item img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  border-radius: 6px;
  background: #d8eef3;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.story-item:hover {
  transform: translateY(-4px);
  border-color: rgba(50, 173, 198, .5);
  box-shadow: 0 10px 16px rgba(0, 47, 59, .08);
}

.story-item:hover img {
  transform: scale(1.035);
}

.story-date {
  display: block;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 700;
}

.story-item h2 {
  margin-top: 8px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.18;
  font-weight: 400;
}

.story-item p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.story-item .text-link {
  white-space: nowrap;
}

.news-detail-article {
  width: min(100% - 48px, 1080px);
  margin: 0 auto;
  padding: clamp(28px, 4.5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.news-detail-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 700;
}

.news-detail-meta a {
  color: var(--brand-dark);
}

.news-detail-summary {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.52;
  text-wrap: pretty;
}

.news-detail-body {
  margin-top: 36px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.84;
}

body.lang-en .news-detail-body,
body.lang-en .science-detail-copy {
  font-family: var(--font-article-default);
}

.news-detail-body p {
  margin: 0;
}

.news-detail-body p + p {
  margin-top: 18px;
}

.news-detail-body b,
.news-detail-body strong {
  color: var(--brand-dark);
  font-weight: 700;
}

.news-detail-body img {
  display: block;
  width: min(100%, 860px);
  height: auto;
  max-height: 560px;
  object-fit: cover;
  margin: 34px auto;
  border-radius: 8px;
  background: #d8eef3;
  box-shadow: 0 18px 34px rgba(0, 47, 59, .1);
}

.news-detail-media-block:nth-of-type(odd) img {
  margin-left: 0;
}

.news-detail-media-block:nth-of-type(even) img {
  margin-right: 0;
}

.contact-layout {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr);
  gap: 28px;
  align-items: start;
}

.contact-directory-section {
  background: #fff;
}

.contact-directory {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(216, 229, 232, .9);
  border-bottom: 1px solid rgba(216, 229, 232, .9);
}

.contact-directory-card {
  display: flex;
  min-height: 360px;
  border: 0;
  border-right: 1px solid rgba(216, 229, 232, .9);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: none;
}

body.lang-ar .contact-directory-card {
  border-right: 0;
  border-left: 1px solid rgba(216, 229, 232, .9);
}

.contact-directory-card:last-child {
  border-right: 0;
}

body.lang-ar .contact-directory-card:last-child {
  border-left: 0;
}

.contact-directory-card:hover {
  transform: none;
  border-color: rgba(216, 229, 232, .9);
  box-shadow: none;
}

.contact-directory-media {
  min-height: 300px;
  background: #d8eef3;
  overflow: hidden;
}

.contact-directory-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.contact-directory-card:hover .contact-directory-media img {
  transform: scale(1.035);
}

.contact-directory-content {
  width: 100%;
  min-height: 100%;
  padding: clamp(30px, 4vw, 50px) clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-content: stretch;
}

.contact-directory-content h2 {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.16;
  font-weight: 600;
  text-wrap: balance;
}

.contact-directory-content p {
  max-width: 820px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.78;
  text-wrap: pretty;
}

.contact-directory-list {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 22px;
}

.contact-directory-list li,
.contact-directory-meta span {
  position: relative;
  display: block;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.65;
}

body.lang-ar .contact-directory-list li,
body.lang-ar .contact-directory-meta span {
  padding-left: 0;
  padding-right: 18px;
}

.contact-directory-list li::before,
.contact-directory-meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-deep);
}

body.lang-ar .contact-directory-list li::before,
body.lang-ar .contact-directory-meta span::before {
  left: auto;
  right: 0;
}

.contact-directory-meta {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-directory-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  padding-top: 42px;
  color: var(--brand-deep);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.35;
}

.contact-directory-link::after {
  content: "→";
  font-size: 1.12em;
  line-height: 1;
  transition: transform .2s ease;
}

body.lang-ar .contact-directory-link::after {
  content: "←";
}

.contact-directory-link:hover::after,
.contact-directory-link:focus-visible::after {
  transform: translateX(4px);
}

body.lang-ar .contact-directory-link:hover::after,
body.lang-ar .contact-directory-link:focus-visible::after {
  transform: translateX(-4px);
}

.contact-location-section {
  padding-top: clamp(42px, 6vw, 84px);
  background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
}

.contact-location-band {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: stretch;
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(5, 120, 145, .18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(242, 251, 255, .95), rgba(255, 255, 255, .92));
  box-shadow: 0 18px 42px rgba(0, 47, 59, .08);
}

.contact-location-kicker {
  position: absolute;
  top: clamp(18px, 3vw, 28px);
  left: clamp(20px, 3vw, 30px);
}

body.lang-ar .contact-location-kicker {
  right: clamp(20px, 3vw, 30px);
  left: auto;
}

.contact-location-copy {
  display: grid;
  align-content: center;
  padding-top: 42px;
}

.contact-location-copy h2 {
  margin-top: 14px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.14;
  font-weight: 400;
  text-wrap: balance;
}

.contact-location-copy > p {
  margin-top: 14px;
  color: var(--brand-dark);
  font-size: 18px;
  line-height: 1.62;
}

.contact-location-details {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.contact-location-details div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.contact-location-details b {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.contact-location-details span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.62;
}

.contact-map-card {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d8eef3;
}

.contact-map-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.complaint-entry-section {
  padding-top: clamp(42px, 6vw, 84px);
  background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
}

.complaint-entry {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .52fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: center;
  position: relative;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 47, 59, .10);
}

.complaint-entry-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(24px, 3.5vw, 34px) clamp(24px, 4vw, 40px);
  background: transparent;
}

.complaint-entry-copy h2 {
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.18;
  font-weight: 500;
}

.complaint-entry-copy p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.72;
  max-width: 52ch;
}

.complaint-entry-action {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding: clamp(24px, 3.5vw, 34px) clamp(24px, 4vw, 40px);
  background: transparent;
}

.complaint-entry-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.complaint-entry-link::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
  transition: transform .2s ease;
}

body.lang-ar .complaint-entry-link::after {
  content: "←";
}

.complaint-entry-link:hover::after,
.complaint-entry-link:focus-visible::after {
  transform: translateX(4px);
}

body.lang-ar .complaint-entry-link:hover::after,
body.lang-ar .complaint-entry-link:focus-visible::after {
  transform: translateX(-4px);
}

.complaint-entry-email {
  color: var(--brand-deep);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.complaint-entry-email:hover,
.complaint-entry-email:focus-visible {
  text-decoration: underline;
}

.form-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 34px;
}

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

.field {
  display: grid;
  gap: 8px;
}

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

label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbdde1;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(50, 173, 198, .18);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  flex: 0 0 18px;
}

.consent a {
  color: var(--brand-dark);
  font-weight: 700;
}

.path-grid,
.faq-list,
.policy-list {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.path-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.path-card,
.faq-item,
.policy-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.path-card {
  min-height: 230px;
  padding: 26px;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), border-color .45s ease, box-shadow .45s ease;
}

.path-card:hover {
  transform: translateY(-4px);
  border-color: rgba(50, 173, 198, .5);
  box-shadow: 0 10px 16px rgba(0, 47, 59, .08);
}

.path-card strong {
  display: block;
  color: var(--brand-dark);
  font-size: 24px;
  line-height: 1;
}

.path-card h2 {
  margin-top: 22px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
}

.path-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.path-card .text-link {
  margin-top: 18px;
}

.pillar-grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pillar-card {
  min-height: 270px;
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), border-color .45s ease, box-shadow .45s ease;
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--warm));
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

body.lang-ar .pillar-card::before {
  transform-origin: right;
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(50, 173, 198, .5);
  box-shadow: 0 10px 16px rgba(0, 47, 59, .08);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-card strong {
  color: var(--brand-dark);
  font-size: 15px;
}

.pillar-card h2 {
  margin-top: 28px;
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.2;
  font-weight: 400;
}

.pillar-card p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.78;
}

.principle-list {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.principle-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

body.lang-ar .principle-item {
  grid-template-columns: 1fr 120px;
}

.principle-item strong {
  color: var(--brand-dark);
  font-size: 28px;
  line-height: 1;
}

.principle-item h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.18;
  font-weight: 400;
}

.principle-item p {
  max-width: 820px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}

.faq-list,
.policy-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item,
.policy-item {
  padding: 28px;
}

.faq-item h2,
.policy-item h2 {
  color: var(--brand-dark);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
}

.faq-item p,
.policy-item p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.76;
}

body[data-page="privacy"] .policy-list.privacy-accordion {
  grid-template-columns: 1fr;
  gap: 18px;
}

body[data-page="privacy"] .privacy-accordion .policy-item {
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 47, 59, .07);
  border: 0;
}

body[data-page="privacy"] .privacy-accordion .policy-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  list-style: none;
  cursor: pointer;
}

body[data-page="privacy"] .privacy-accordion .policy-summary:focus-visible {
  outline: 2px solid rgba(50, 173, 198, .45);
  outline-offset: 6px;
}

body[data-page="privacy"] .privacy-accordion .policy-summary::-webkit-details-marker {
  display: none;
}

body[data-page="privacy"] .privacy-accordion .policy-summary-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding-right: 12px;
}

body[data-page="privacy"] .privacy-accordion .policy-kicker {
  color: var(--brand-dark);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

body[data-page="privacy"] .privacy-accordion .policy-summary-title {
  color: var(--ink);
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.16;
  font-weight: 500;
  text-wrap: balance;
}

body[data-page="privacy"] .privacy-accordion .policy-summary-lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

body[data-page="privacy"] .privacy-accordion .policy-toggle {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(242, 251, 255, .92);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  font-size: 0;
  line-height: 0;
  transition: transform .28s ease, background .28s ease;
}

body[data-page="privacy"] .privacy-accordion .policy-toggle::before {
  content: "⌄";
  display: block;
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}

body[data-page="privacy"] .privacy-accordion .policy-body {
  padding: 0 28px 24px;
}

body[data-page="privacy"] .privacy-accordion .policy-body > :first-child {
  margin-top: 0;
}

body[data-page="privacy"] .privacy-accordion .policy-body h3 {
  margin-top: 24px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

body[data-page="privacy"] .privacy-accordion .policy-body p,
body[data-page="privacy"] .privacy-accordion .policy-body ul {
  max-width: 900px;
}

body[data-page="privacy"] .privacy-accordion .policy-body ul {
  margin-top: 14px;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.76;
}

body[data-page="privacy"] .privacy-accordion .policy-body li + li {
  margin-top: 10px;
}

body[data-page="privacy"] .privacy-accordion .policy-item[open] .policy-toggle {
  transform: rotate(180deg);
  background: rgba(50, 173, 198, .12);
}

body[data-page="privacy"] .privacy-accordion .policy-item[open] .policy-summary {
  padding-bottom: 16px;
}

body[data-page="privacy"] .privacy-accordion .policy-item[open] .policy-body {
  animation: softRise .38s cubic-bezier(.22, 1, .36, 1);
}

.form-result {
  display: none;
  margin-top: 18px;
  padding: 14px;
  color: #095c34;
  background: #e6f7ef;
  border: 1px solid #a9dfc3;
  border-radius: 6px;
}

.form-result.show {
  display: block;
  animation: softRise .5s cubic-bezier(.22, 1, .36, 1);
}

.contact-panel h2 {
  color: var(--brand-dark);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 400;
}

.contact-list {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.contact-item {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-item b {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.contact-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.cta-band {
  min-height: 310px;
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  background: #0a2e36;
  overflow: hidden;
}

.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 50, 62, .46);
}

.cta-content {
  width: var(--wrap);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}

.cta-content h2 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.12;
  font-weight: 400;
}

.cta-content p {
  max-width: 650px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
}

.news-carousel {
  min-height: 690px;
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(50, 173, 198, .22), transparent 34%),
    linear-gradient(145deg, #082c35 0%, #0b4050 52%, #061f28 100%);
  overflow: hidden;
  padding: 82px 0 52px;
  cursor: default;
}

.news-carousel::before {
  content: "";
  position: absolute;
  inset: auto -12% -35% 28%;
  height: 470px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  transform: rotate(-18deg);
}

.news-carousel-heading {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin: 0 auto 52px;
  text-align: center;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.15;
  font-weight: 400;
}

body.lang-ar .news-carousel-heading {
  text-align: center;
}

.news-carousel-track {
  position: relative;
  z-index: 2;
  height: 430px;
  width: min(100%, 1680px);
  margin: 0 auto;
  overflow: visible;
  cursor: default;
}

.news-carousel-slide {
  width: min(43vw, 660px);
  height: 430px;
  position: absolute;
  top: 0;
  left: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: #0b4050;
  box-shadow: 0 18px 42px rgba(0, 10, 18, .28);
  opacity: .34;
  transform: translateX(-50%) scale(.84);
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), opacity .55s ease, box-shadow .55s ease;
  cursor: default;
}

.news-carousel-slide.active {
  z-index: 4;
  opacity: 1;
  transform: translateX(-50%) scale(1);
  box-shadow: 0 20px 54px rgba(0, 10, 18, .38);
}

.news-carousel-slide.is-prev {
  z-index: 2;
  opacity: .56;
  transform: translateX(calc(-50% - min(44vw, 690px))) scale(.88);
}

.news-carousel-slide.is-next {
  z-index: 2;
  opacity: .56;
  transform: translateX(calc(-50% + min(44vw, 690px))) scale(.88);
}

.news-carousel-slide.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) scale(.78);
}

.news-carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 22, 28, .18) 0%, rgba(2, 22, 28, .3) 46%, rgba(2, 22, 28, .9) 100%);
}

.news-carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s ease, filter .45s ease;
}

.news-carousel-slide:not(.active) img {
  filter: saturate(.86) brightness(.72);
}

.news-carousel-slide.active img {
  transform: scale(1.035);
}

.news-carousel-content {
  position: absolute;
  inset: auto 42px 28px;
  z-index: 2;
  cursor: default;
}

body.lang-ar .news-carousel-content {
  text-align: right;
}

.news-carousel-date {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  letter-spacing: 0;
}

.news-carousel-content h2 {
  max-width: 560px;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.18;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .28);
}

.news-carousel-title-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.news-carousel-title-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .9);
  outline-offset: 6px;
  border-radius: 4px;
}

.news-carousel-arrow {
  display: none;
}

body.lang-ar .news-carousel-title-link {
  flex-direction: row-reverse;
}

.news-carousel-slide:not(.active) .news-carousel-date {
  display: none;
}

.news-carousel-slide:not(.active) .news-carousel-content {
  inset: 50% 34px auto;
  transform: translateY(-50%);
}

.news-carousel-slide:not(.active) .news-carousel-content h2 {
  max-width: 360px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(23px, 2.2vw, 32px);
}

.news-carousel-controls {
  width: min(100% - 48px, 1120px);
  margin: 42px auto 0;
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: default;
}

.news-carousel-dots {
  display: flex;
  gap: 9px;
}

.news-carousel-dots button {
  width: 28px;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, .38);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.news-carousel-dots button.active {
  width: 52px;
  background: var(--brand);
}

.news-carousel-arrows {
  display: flex;
  gap: 8px;
}

.news-carousel-arrows button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  color: #fff;
  background-color: rgba(3, 36, 44, .36);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: border-color .25s ease, background-color .25s ease;
}

.news-carousel-arrows button:hover,
.news-carousel-arrows button:focus-visible {
  border-color: var(--brand);
  background-color: var(--brand-dark);
}

.news-carousel-arrows button::before,
.news-carousel-arrows button::after {
  content: none;
  display: none;
}

.news-carousel-arrows svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.lang-ar [data-news-prev] svg,
body.lang-ar [data-news-next] svg {
  transform: scaleX(-1);
}

.site-footer {
  color: #fff;
  background: var(--footer);
  padding: 70px 0 38px;
}

.footer-inner {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px minmax(280px, 1fr) minmax(300px, auto);
  grid-template-areas:
    "logo brand links"
    "rule rule rule"
    "bottom bottom bottom";
  column-gap: 36px;
  row-gap: 18px;
  align-items: start;
}

.footer-top {
  display: contents;
}

.footer-logo {
  grid-area: logo;
  width: 176px;
  height: auto;
  max-width: 100%;
  display: block;
  align-self: start;
  justify-self: start;
}

.footer-col h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-top > .footer-col:first-of-type {
  grid-area: brand;
}

.footer-top > .footer-col:nth-of-type(2) {
  grid-area: links;
  justify-self: start;
}

.footer-col p,
.footer-col .social-item {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  line-height: 1.58;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 12px;
  row-gap: 6px;
  max-width: 100%;
}

.footer-social {
  min-width: 0;
  justify-self: start;
  align-self: start;
  margin-top: 18px;
}

.social-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 10px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: 0;
}

.social-links::-webkit-scrollbar {
  display: none;
}

.social-links .social-item {
  width: 58px;
  height: 78px;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex: 0 0 58px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  appearance: none;
  font-weight: 700;
  text-align: center;
  transition: transform .24s ease;
}

.social-links .social-item:hover {
  transform: translateY(-2px);
}

.social-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 0;
}

.social-icon img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  object-position: center;
}

.social-name {
  display: block;
  min-height: 12px;
  max-width: 58px;
  color: rgba(255, 255, 255, .9);
  font-size: 10px;
  line-height: 1.15;
  overflow-wrap: normal;
}

.footer-rule {
  grid-area: rule;
  height: 1px;
  margin: 16px 0 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .8), rgba(255, 255, 255, .08));
}

.footer-bottom {
  grid-area: bottom;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
}

.float-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 35;
  display: grid;
  gap: 10px;
  justify-items: end;
}

body.lang-ar .float-contact {
  right: auto;
  left: 24px;
  justify-items: start;
}

.float-contact-item {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

body.lang-ar .float-contact-item {
  justify-content: flex-start;
}

.float-contact-button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  box-shadow: var(--shadow);
  font-weight: 700;
  transition: transform .24s ease, background .24s ease;
}

.float-contact-button img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.to-top img {
  filter: brightness(0) invert(1);
}

.float-contact-button:hover,
.float-contact-button:focus-visible {
  transform: translateY(-3px);
  background: var(--brand-dark);
}

.float-contact-panel {
  position: absolute;
  right: 54px;
  bottom: 0;
  min-width: 330px;
  padding: 14px 16px;
  display: grid;
  gap: 12px;
  border-radius: var(--radius);
  background: var(--brand-dark);
  box-shadow: 0 14px 32px rgba(0, 42, 54, .16);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity .24s ease, transform .24s ease;
}

body.lang-ar .float-contact-panel {
  right: auto;
  left: 54px;
  transform: translateX(-10px);
}

.float-contact-item:hover .float-contact-panel,
.float-contact-item:focus-within .float-contact-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.float-contact-group {
  display: grid;
  gap: 7px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.float-contact-group:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.float-contact-group > span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.float-contact-panel a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
}

body.lang-ar .float-contact-panel a {
  flex-direction: row-reverse;
}

.float-contact-panel a::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: currentColor;
  -webkit-mask: var(--float-contact-icon) center / contain no-repeat;
  mask: var(--float-contact-icon) center / contain no-repeat;
}

.float-contact-panel a[href^="tel:"]::before {
  --float-contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.float-contact-panel a[href^="mailto:"]::before {
  --float-contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
}

.float-contact-panel a[href^="https://wa.me/"]::before,
.float-contact-panel a[href^="http://wa.me/"]::before {
  --float-contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21a9 9 0 1 0-7.78-4.48L3 21l4.66-1.16A8.96 8.96 0 0 0 12 21Z'/%3E%3Cpath d='M8.58 7.74c.22-.48.44-.5.64-.5h.54c.18 0 .43.04.66.5.25.5.83 1.9.9 2.04.07.15.1.32.02.5-.08.18-.13.28-.27.43-.13.15-.28.33-.4.44-.13.13-.27.27-.12.52.15.25.66 1.1 1.43 1.78.98.88 1.82 1.15 2.08 1.28.26.13.42.11.58-.07.16-.19.67-.78.85-1.05.18-.27.36-.23.61-.14.25.09 1.58.74 1.85.88.27.13.45.2.52.31.07.12.07.68-.16 1.33-.23.65-1.35 1.24-1.9 1.32-.48.07-1.1.1-1.78-.11-.41-.13-.94-.3-1.62-.6-2.85-1.23-4.72-4.1-4.86-4.29-.14-.19-1.16-1.54-1.16-2.94s.74-2.09 1-2.37c.26-.28.57-.35.77-.35'/%3E%3C/svg%3E");
}

.float-contact-panel a:hover,
.float-contact-panel a:focus-visible {
  color: rgba(255, 255, 255, .78);
}

.info-card,
.story-item,
.news-detail-article,
.detail-main,
.detail-aside,
.contact-directory-card,
.contact-location-band,
.form-panel,
.contact-panel,
.path-card,
.faq-item,
.policy-item,
.pillar-card,
.partner-card,
.resource-core,
.partner-detail-copy {
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .78)),
    var(--mist);
  box-shadow: 0 14px 30px rgba(0, 47, 59, .07);
}

.info-card:hover,
.story-item:hover,
.contact-directory-card:hover,
.path-card:hover,
.pillar-card:hover,
.partner-card:hover,
.partner-card:focus-visible {
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(0, 47, 59, .12);
}

.timeline-item,
.about-timeline .timeline-item,
.resource-core-highlights,
.resource-core-flow,
.contact-directory-meta,
.contact-location-details div {
  border-top: 0;
  padding-top: 0;
}

.about-timeline .timeline-item:last-child,
.about-advantage-grid {
  border-top: 0;
  border-bottom: 0;
}

.about-timeline .timeline-item,
.resource-core-highlights,
.resource-core-flow,
.contact-directory-meta,
.contact-location-details div {
  background: rgba(242, 251, 255, .72);
  border-radius: var(--radius);
}

.timeline-item {
  padding: 24px;
  background: rgba(242, 251, 255, .72);
  border-radius: var(--radius);
}

.about-timeline .timeline-item {
  overflow: hidden;
}

.about-timeline .timeline-item strong,
body.lang-ar .about-timeline .timeline-item strong {
  border-right: 0;
  border-left: 0;
}

.about-advantage-grid {
  gap: 14px;
}

.about-advantage-card,
body.lang-ar .about-advantage-card,
.about-advantage-card:last-child,
body.lang-ar .about-advantage-card:last-child {
  border-right: 0;
  border-left: 0;
  border-radius: var(--radius);
}

.detail-list li {
  border: 0;
  background: #eaf8fb;
}

.detail-fact {
  border-top: 0;
  background: #eef9fc;
}

.resource-core-highlights,
.resource-core-flow,
.contact-directory-meta {
  padding: 18px;
}

.contact-location-details div {
  padding: 16px 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 780ms cubic-bezier(.22, 1, .36, 1), transform 780ms cubic-bezier(.22, 1, .36, 1);
}

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

body[data-page="resource-detail"] .resource-core-copy,
body[data-page="resource-detail"] .partner-detail-copy {
  opacity: 1;
  transform: none;
}

@media (min-width: 881px) {
  body[data-page="resource-detail"] .resource-core-copy,
  body[data-page="resource-detail"] .partner-detail-copy {
    position: sticky;
    top: 104px;
    align-self: start;
  }
}

.is-language-changing main,
.is-language-changing footer {
  opacity: .35;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease;
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-hero {
  min-height: 560px;
}

.detail-layout {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .42fr);
  gap: 34px;
  align-items: start;
}

.detail-main {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.detail-main h2 {
  color: var(--brand-dark);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.16;
  font-weight: 400;
  text-wrap: balance;
}

.detail-main h2 + p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.82;
  text-wrap: pretty;
}

.detail-main h2:not(:first-child) {
  margin-top: 46px;
}

.detail-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.detail-list li {
  position: relative;
  padding: 18px 18px 18px 44px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

body.lang-ar .detail-list li {
  padding: 18px 44px 18px 18px;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 26px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

body.lang-ar .detail-list li::before {
  left: auto;
  right: 20px;
}

.detail-steps {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: detail-step;
  display: grid;
  gap: 16px;
}

.detail-steps li {
  counter-increment: detail-step;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 16px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

body.lang-ar .detail-steps li {
  grid-template-columns: 1fr 58px;
}

.detail-steps li::before {
  content: counter(detail-step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 50%;
  font-weight: 700;
}

body.lang-ar .detail-steps li::before {
  order: 2;
}

.detail-aside {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.detail-aside img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #d8eef3;
}

.detail-fact {
  padding: 22px 24px;
  border-top: 1px solid var(--line);
}

.detail-fact b {
  display: block;
  color: var(--brand-dark);
  font-size: 14px;
}

.detail-fact span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.66;
}

.science-detail {
  width: min(920px, var(--wrap));
  margin: 0 auto;
  display: grid;
  gap: clamp(30px, 5vw, 52px);
}

.science-detail-row {
  display: block;
}

.science-detail-row:nth-child(even) {
  display: block;
}

.science-detail-copy {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.science-detail-copy h2 {
  margin-top: 14px;
  color: var(--brand-dark);
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1.2;
  font-weight: 400;
  text-wrap: balance;
}

.science-detail-copy p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.82;
  text-wrap: pretty;
}

.science-detail .science-detail-copy {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.science-notice {
  width: var(--wrap);
  margin: clamp(42px, 6vw, 72px) auto 0;
  padding: clamp(24px, 3.4vw, 38px);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .78)),
    #eaf8fb;
  box-shadow: 0 14px 30px rgba(0, 47, 59, .07);
}

.science-notice h2 {
  color: var(--brand-dark);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
  font-weight: 400;
}

.science-notice p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.76;
}

.partner-detail {
  width: var(--wrap);
  margin: 0 auto;
  animation: softRise 620ms cubic-bezier(.22, 1, .36, 1) both;
}

.resource-core {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, .72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: stretch;
  animation: softRise 620ms cubic-bezier(.22, 1, .36, 1) both;
}

.resource-core-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e5f5f8;
}

.resource-core-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.resource-core:hover .resource-core-media img {
  transform: scale(1.025);
}

.resource-core-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.resource-core-copy h2 {
  margin-top: 12px;
  color: var(--brand-dark);
  font-size: clamp(32px, 3.8vw, 58px);
  line-height: 1.08;
  font-weight: 400;
  text-wrap: balance;
}

.resource-core-copy > p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.82;
  text-wrap: pretty;
}

.resource-core-intro {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.resource-core-intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.82;
  text-wrap: pretty;
}

.resource-hospital-stack {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hospital-stack-block {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--mist);
}

.hospital-stack-block h3 {
  color: var(--brand-dark);
  font-size: 18px;
  line-height: 1.28;
  font-weight: 700;
}

.hospital-stack-block p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.78;
}

.resource-core-copy > .resource-core-lead {
  color: var(--brand-dark);
  font-size: 20px;
  line-height: 1.65;
}

.resource-core-highlights h3,
.resource-core-flow h3 {
  color: var(--brand-dark);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}

.resource-core-highlights,
.resource-core-flow {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.resource-core-highlights .detail-list,
.resource-core-flow .detail-steps {
  margin-top: 16px;
}

.resource-core-highlights .detail-list {
  gap: 8px;
}

.resource-core-highlights .detail-list li {
  padding: 12px 14px 12px 30px;
  background: var(--mist);
  font-size: 15px;
  line-height: 1.55;
}

body.lang-ar .resource-core-highlights .detail-list li {
  padding: 12px 30px 12px 14px;
}

.resource-core-highlights .detail-list li::before {
  left: 14px;
  top: 21px;
  width: 6px;
  height: 6px;
}

body.lang-ar .resource-core-highlights .detail-list li::before {
  right: 14px;
  left: auto;
}

.resource-core-flow .detail-steps {
  gap: 10px;
}

.resource-core-flow .detail-steps li {
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  font-size: 15px;
  line-height: 1.55;
}

body.lang-ar .resource-core-flow .detail-steps li {
  grid-template-columns: 1fr 38px;
}

.resource-core-flow .detail-steps li::before {
  width: 38px;
  height: 38px;
  font-size: 12px;
}

.partner-detail-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.partner-detail-heading h2 {
  color: var(--brand-dark);
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.08;
  font-weight: 400;
  text-wrap: balance;
}

.partner-detail-heading p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.78;
  text-wrap: pretty;
}

.partner-detail-core {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, .72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: stretch;
}

.partner-detail-image {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e5f5f8;
}

.partner-detail-image > img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.partner-detail-logo {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: 152px;
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
}

body.lang-ar .partner-detail-logo {
  right: 28px;
  left: auto;
}

.partner-detail-logo img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.partner-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.partner-detail-copy h3 {
  color: var(--brand-dark);
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.2;
  font-weight: 400;
}

.partner-detail-copy p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.82;
  text-wrap: pretty;
}

.partner-website {
  display: grid;
  gap: 6px;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(50, 173, 198, .28);
  border-radius: var(--radius);
  color: inherit;
  background: var(--mist);
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.partner-website:hover,
.partner-website:focus-visible {
  transform: translateY(-2px);
  border-color: var(--brand);
  background: #fff;
}

.partner-website span {
  color: var(--muted);
  font-size: 13px;
}

.partner-website b {
  color: var(--brand-dark);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.partner-related {
  margin-top: clamp(42px, 6vw, 76px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.partner-related-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.partner-related-head h3 {
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.2;
  font-weight: 400;
}

.partner-related-head span {
  color: var(--muted);
  font-size: 14px;
}

.partner-related-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 340px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
  padding-bottom: 14px;
  scrollbar-color: rgba(5, 120, 145, .45) rgba(242, 251, 255, .9);
}

.partner-related-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 132px;
  padding: 18px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  background: #fff;
  transition: transform .32s cubic-bezier(.22, 1, .36, 1), border-color .32s ease, box-shadow .32s ease;
}

body.lang-ar .partner-related-card {
  grid-template-columns: 1fr 76px;
}

.partner-related-card:hover,
.partner-related-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(50, 173, 198, .58);
  box-shadow: 0 10px 18px rgba(0, 47, 59, .08);
}

.partner-related-logo {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 50%;
  background: var(--mist);
}

body.lang-ar .partner-related-logo {
  order: 2;
}

.partner-related-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-related-card strong,
.partner-related-card span span {
  display: block;
}

.partner-related-card strong {
  color: var(--brand-dark);
  font-size: 18px;
  line-height: 1.28;
}

.partner-related-card span span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.to-top {
  background: var(--brand-deep) !important;
}

@media (max-width: 1060px) {
  .main-nav {
    display: none;
  }

  .mobile-menu {
    display: grid;
    place-items: center;
  }

  .main-nav.open {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 86px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    z-index: 40;
    max-height: calc(100svh - 104px);
    overflow-y: auto;
  }

  .main-nav.open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open a::after {
    display: none;
  }

  .main-nav.open a:last-child {
    border-bottom: 0;
  }

  .nav-shell {
    position: relative;
  }
}

@media (max-width: 880px) {
  :root {
    --wrap: min(100vw - 32px, 720px);
  }

  .nav-shell {
    gap: 14px;
  }

  .logo small,
  .nav-actions .btn {
    display: none;
  }

  .page-hero {
    min-height: 420px;
  }

  .page-hero-inner {
    padding: 64px 0 clamp(124px, 18vw, 160px);
  }

  .intro-grid,
  .about-tcm-bridge,
  .metric-row,
  .card-grid,
  .card-grid.two,
  .about-advantage-grid,
  .split-band,
  .path-grid,
  .pillar-grid,
  .principle-item,
  .faq-list,
  .policy-list,
  .zone-row,
  .zone-row:nth-child(even),
  .story-item,
  .contact-layout,
  .contact-directory-card,
  .contact-location-band,
  .detail-layout,
  .resource-core,
  .science-detail-row,
  .science-detail-row:nth-child(even),
  .partner-detail-core,
  .cta-content,
  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .footer-social {
    justify-self: start;
  }

  .footer-inner {
    grid-template-areas:
      "logo"
      "brand"
      "links"
      "rule"
      "bottom";
  }

  .science-detail-row:nth-child(even) .science-detail-media {
    order: 0;
  }

  .metric-row div,
  body.lang-ar .metric-row div,
  .about-advantage-card,
  body.lang-ar .about-advantage-card {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-menu-band,
  body.is-scrolled .about-menu-band {
    top: 70px;
  }

  .about-anchor-menu {
    justify-content: flex-start;
    padding: 0 2px;
  }

  .about-timeline .timeline-item,
  body.lang-ar .about-timeline .timeline-item {
    grid-template-columns: minmax(150px, .26fr) minmax(0, 1fr);
    gap: 0;
    min-height: 132px;
  }

  body.lang-ar .about-timeline .timeline-item {
    grid-template-columns: minmax(0, 1fr) minmax(150px, .26fr);
  }

  .about-service-list .zone-row {
    min-height: auto;
  }

  .about-advantage-card {
    min-height: auto;
    padding: 24px 0;
  }

  .intro-image,
  .intro-image img {
    min-height: 320px;
  }

  .about-tcm-bridge {
    width: var(--wrap);
    margin-top: 50px;
    gap: 26px;
    padding: 24px;
  }

  .about-tcm-bridge::before {
    left: 24px;
    right: 24px;
  }

  .about-tcm-bridge-intro {
    padding: 24px;
  }

  .about-tcm-bridge-intro h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .about-tcm-bridge-intro p,
  .about-tcm-bridge-copy p {
    font-size: 15px;
    line-height: 1.76;
  }

  .about-tcm-bridge-media {
    margin-bottom: 20px;
  }

  .zone-row:nth-child(even) .zone-media {
    order: 0;
  }

  .zone-media,
  .zone-media img {
    min-height: 300px;
  }

  .image-panel {
    min-height: 420px;
  }

  .service-direction-grid .image-panel:last-child {
    grid-column: auto;
  }

  .story-item {
    align-items: stretch;
  }

  .partner-rail-actions {
    display: none;
  }

  .partner-detail-image,
  .partner-detail-image > img {
    min-height: 360px;
  }

  body[data-page="resource-detail"] .resource-core-copy,
  body[data-page="resource-detail"] .partner-detail-copy {
    position: static;
    top: auto;
  }

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

  .detail-aside {
    position: static;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --wrap: calc(100vw - 28px);
  }

  html,
  body {
    overflow-x: clip;
  }

  body {
    font-size: 16px;
  }

  .site-header,
  body.is-scrolled .site-header {
    min-height: 70px;
  }

  .nav-shell,
  body.is-scrolled .nav-shell {
    min-height: 70px;
    gap: 8px;
  }

  .logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .logo img,
  body.is-scrolled .logo img {
    width: min(212px, 50vw);
    max-height: 46px;
  }

  .nav-actions {
    flex: 0 0 auto;
    gap: 8px;
  }

  .language-switch {
    padding: 3px;
    gap: 2px;
  }

  .language-switch button {
    min-width: 31px;
    height: 32px;
    font-size: 12px;
  }

  .mobile-menu {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .main-nav.open {
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    padding: 6px 14px;
    max-height: calc(100svh - 86px);
  }

  .page-hero-inner {
    padding: 58px 0 clamp(124px, 18vw, 160px);
  }

  .breadcrumb {
    gap: 8px;
    margin-bottom: 18px;
    font-size: 13px;
  }

  .breadcrumb::before {
    width: 28px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .page-lede {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .btn,
  .cta-content .btn {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 30px;
    text-align: left;
  }

  body.lang-ar .section-head {
    text-align: right;
  }

  .section-head h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.16;
  }

  .section-head p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.7;
  }

  .intro-image,
  .intro-image img {
    min-height: 260px;
  }

  .science-detail {
    gap: 28px;
  }

  .science-detail-copy {
    padding: 0;
  }

  .science-detail-copy h2 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .intro-copy h2,
  .intro-panel h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .intro-copy p,
  .intro-panel p,
  .zone-body p,
  .pillar-card p,
  .detail-main h2 + p {
    font-size: 16px;
    line-height: 1.72;
  }

  .metric-row div {
    min-height: auto;
    padding: 20px 0;
  }

  .about-menu-band,
  body.is-scrolled .about-menu-band {
    top: 64px;
  }

  .about-anchor-menu {
    min-height: 54px;
    gap: 22px;
  }

  .about-anchor-menu a {
    padding: 16px 0 14px;
    font-size: 13px;
  }

  .metric-row strong,
  .metric-row:where(.five) strong {
    font-size: 30px;
  }

  .card-grid,
  .card-grid.two,
  .path-grid,
  .pillar-grid,
  .faq-list,
  .policy-list {
    gap: 16px;
  }

  .info-card img {
    height: 210px;
  }

  .partner-rail-meta,
  .partner-related-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .partner-rail {
    grid-auto-columns: minmax(260px, 82vw);
    gap: 16px;
    padding-bottom: 12px;
  }

  .partner-card {
    min-height: 452px;
    grid-template-rows: 190px 1fr;
  }

  .partner-card strong {
    min-height: auto;
    font-size: 21px;
  }

  .partner-card-body {
    padding: 22px;
  }

  .partner-logo {
    left: 18px;
    bottom: 16px;
    width: 104px;
    height: 62px;
    padding: 10px 12px;
  }

  body.lang-ar .partner-logo {
    right: 18px;
    left: auto;
  }

  .info-card-content,
  .contact-directory-content,
  .contact-location-band,
  .path-card,
  .pillar-card,
  .faq-item,
  .policy-item,
  .form-panel,
  .contact-panel,
  .detail-main {
    padding: 22px;
  }

  .path-card,
  .pillar-card {
    min-height: auto;
  }

  .contact-directory-section {
    background: #fff;
  }

  .contact-directory {
    gap: 16px;
  }

  .contact-directory-card,
  .contact-directory-media,
  .contact-directory-media img {
    min-height: auto;
  }

  .contact-directory-media img {
    height: 250px;
  }

  body[data-page="contact"] .contact-directory {
    gap: 14px;
  }

  body[data-page="contact"] .contact-directory-card {
    min-height: auto;
  }

  body[data-page="contact"] .contact-directory-content {
    padding: 24px;
  }

  body[data-page="contact"] .contact-directory-content h2 {
    font-size: clamp(24px, 6vw, 30px);
  }

  body[data-page="contact"] .contact-directory-list {
    margin-top: 28px;
    gap: 16px;
  }

  .contact-location-section {
    padding-top: 48px;
  }

  .contact-map-card,
  .contact-map-card img {
    min-height: 280px;
  }

  .form-panel,
  .contact-panel,
  .contact-directory-content,
  .contact-location-band,
  .info-card-content,
  .path-card,
  .pillar-card,
  .faq-item,
  .policy-item,
  .detail-main {
    padding: 18px;
  }

  .contact-directory-media img {
    height: 218px;
  }

  .contact-directory-content h2,
  .contact-location-copy h2 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .contact-directory-content p,
  .contact-directory-list li,
  .contact-directory-meta span,
  .contact-location-details span {
    font-size: 15px;
  }

  .contact-map-card,
  .contact-map-card img {
    min-height: 230px;
  }

  .intro-image,
  .intro-image img,
  .zone-media,
  .zone-media img,
  .zone-visual,
  .zone-visual img {
    min-height: 220px;
  }

  .info-card img,
  .story-item img {
    height: 188px;
  }

  .image-panel {
    min-height: 300px;
    padding: 20px;
  }

  .image-panel p {
    max-height: none;
    opacity: 1;
    transform: none;
    font-size: 15px;
    line-height: 1.68;
  }

  .image-panel h2 {
    transform: none;
  }

  .zone-row {
    padding: 12px;
  }

  body[data-page="contact"] .contact-directory {
    grid-template-columns: 1fr;
  }

  body[data-page="contact"] .contact-directory-card {
    min-height: 0;
  }

  body[data-page="contact"] .contact-directory-content {
    padding: 22px;
  }

  .detail-steps li,
  body.lang-ar .detail-steps li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  body.lang-ar .detail-steps li {
    grid-template-columns: 1fr 42px;
  }

  .detail-steps li::before {
    width: 42px;
    height: 42px;
    font-size: 13px;
  }

  .detail-aside img {
    height: 190px;
  }

  .cta-band {
    min-height: 300px;
  }

  .news-carousel {
    min-height: 560px;
    padding: 48px 0 34px;
  }

  .news-carousel::before {
    inset: auto -45% -35% 0;
  }

  .news-carousel-heading {
    margin-bottom: 26px;
    text-align: left;
  }

  body.lang-ar .news-carousel-heading {
    text-align: right;
  }

  .news-carousel-track {
    width: var(--wrap);
    height: 390px;
    overflow: hidden;
  }

  .news-carousel-slide,
  .news-carousel-slide.active,
  .news-carousel-slide.is-prev,
  .news-carousel-slide.is-next,
  .news-carousel-slide.is-hidden {
    width: 100%;
    height: 390px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) scale(.98);
  }

  .news-carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
  }

  .news-carousel-slide::after {
    background: linear-gradient(180deg, rgba(2, 22, 28, .2) 0%, rgba(2, 22, 28, .36) 44%, rgba(2, 22, 28, .94) 100%);
  }

  .news-carousel-content {
    inset: auto 22px 18px;
    transform: none;
  }

  .news-carousel-content h2 {
    max-width: 100%;
    font-size: 26px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .32);
  }

  .news-carousel-slide:not(.active) .news-carousel-content {
    inset: auto 22px 18px;
    transform: none;
  }

  .news-carousel-slide:not(.active) .news-carousel-content h2 {
    font-size: 26px;
  }

  .news-carousel-title-link {
    gap: 10px;
  }

  .news-carousel-arrow {
    display: none;
  }

  .news-carousel-controls {
    width: var(--wrap);
    margin-top: 26px;
  }

  .news-carousel-dots button {
    width: 20px;
  }

  .news-carousel-dots button.active {
    width: 36px;
  }

  .news-carousel-arrows button {
    width: 40px;
    height: 40px;
  }

  .social-links {
    gap: 10px 8px;
  }

  .social-links .social-item {
    width: 58px;
    height: 78px;
    min-height: 78px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
  }

  .social-icon img {
    width: 44px;
    height: 44px;
  }

  .social-name {
    max-width: 52px;
    font-size: 9.5px;
  }

  .float-contact-button {
    width: 42px;
    height: 42px;
  }

  .float-contact-panel {
    min-width: min(272px, calc(100vw - 86px));
    padding: 12px 13px;
  }

  .float-contact-panel a {
    font-size: 13.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  body::before {
    display: none;
  }

  [data-reveal],
  .page-hero .breadcrumb,
  .page-hero h1,
  .page-hero .page-lede,
  .page-hero .hero-actions {
    opacity: 1 !important;
    transform: none !important;
  }
}

.info-card,
.story-item,
.news-detail-article,
.detail-main,
.detail-aside,
.contact-directory-card,
.contact-location-band,
.form-panel,
.contact-panel,
.path-card,
.faq-item,
.policy-item,
.pillar-card,
.partner-card,
.principle-item,
.resource-core-copy,
.partner-detail-copy,
.partner-website,
.partner-related,
.partner-related-card {
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .78)),
    var(--mist);
  box-shadow: 0 14px 30px rgba(0, 47, 59, .07);
}

.info-card:hover,
.story-item:hover,
.zone-row:hover,
.contact-directory-card:hover,
.path-card:hover,
.pillar-card:hover,
.partner-card:hover,
.partner-card:focus-visible,
.partner-website:hover,
.partner-website:focus-visible,
.partner-related-card:hover,
.partner-related-card:focus-visible {
  border-color: transparent;
}

.detail-list li,
.resource-core-highlights .detail-list li {
  border: 0;
  background: #eaf8fb;
}

.detail-steps li {
  border-bottom: 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: #eaf8fb;
}

.detail-fact,
.resource-core-highlights,
.resource-core-flow,
.contact-directory-meta,
.contact-location-details div,
.partner-detail-body,
.contact-item {
  border-top: 0;
  background: rgba(242, 251, 255, .78);
  border-radius: var(--radius);
}

.resource-core-highlights,
.resource-core-flow,
.contact-directory-meta,
.contact-location-details div,
.partner-detail-body,
.contact-item {
  padding: 18px;
}

.timeline-item,
.about-timeline .timeline-item,
.about-timeline .timeline-item:last-child,
.about-advantage-grid,
.principle-item,
.partner-related {
  border-top: 0;
  border-bottom: 0;
}

.timeline-item,
.about-timeline .timeline-item,
.principle-item {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(242, 251, 255, .78);
}

.about-timeline .timeline-item {
  overflow: hidden;
  padding: 0;
}

.about-timeline .timeline-item strong,
body.lang-ar .about-timeline .timeline-item strong,
.about-advantage-card,
body.lang-ar .about-advantage-card,
.about-advantage-card:last-child,
body.lang-ar .about-advantage-card:last-child {
  border-right: 0;
  border-left: 0;
}

.about-advantage-grid {
  gap: 14px;
}

.about-advantage-card {
  border-radius: var(--radius);
}

.metric-row {
  border-top: 0;
  border-bottom: 0;
  gap: 14px;
}

.metric-row div,
body.lang-ar .metric-row div {
  border-right: 0;
  border-left: 0;
  border-radius: var(--radius);
  background: rgba(242, 251, 255, .78);
}

.split-band,
.zone-row,
.contact-directory-card,
.contact-location-band {
  border: 0;
}

.zone-row {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .78)),
    var(--mist);
  box-shadow: 0 14px 30px rgba(0, 47, 59, .07);
}

body[data-page="resource-detail"] .partner-detail-core {
  align-items: start;
}

body[data-page="resource-detail"] .partner-detail-copy,
body[data-page="resource-detail"] .partner-website,
body[data-page="resource-detail"] .partner-related,
body[data-page="resource-detail"] .partner-related-card {
  background: transparent;
  box-shadow: none;
}

body[data-page="resource-detail"] .partner-detail-copy {
  align-self: start;
  justify-content: flex-start;
  position: static;
  top: auto;
  padding: 0;
  border: 0;
}

body[data-page="resource-detail"] .partner-website {
  padding: 24px 0 0;
  border: 0;
  border-radius: 0;
}

body[data-page="resource-detail"] .partner-website:hover,
body[data-page="resource-detail"] .partner-website:focus-visible,
body[data-page="resource-detail"] .partner-related-card:hover,
body[data-page="resource-detail"] .partner-related-card:focus-visible {
  background: transparent;
  box-shadow: none;
}

body[data-page="resource-detail"] #resourceCoreSection .resource-core {
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="resource-detail"] #resourceCoreSection .resource-core-media {
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  justify-self: start;
  margin: 0;
  background: transparent;
}

body[data-page="resource-detail"] #resourceCoreSection .resource-core-copy {
  align-self: start;
  justify-content: flex-start;
  position: static;
  top: auto;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body[data-page="resource-detail"] #resourceCoreSection .resource-core-lead {
  margin-top: 8px;
}

body[data-page="resource-detail"] #resourceCoreSection .resource-hospital-stack {
  border-top: 0;
  padding-top: 0;
}

body[data-page="resource-detail"] #resourceCoreSection .resource-core-intro {
  margin-top: 0;
}

body[data-page="resource-detail"] #resourceCoreSection .resource-core-highlights,
body[data-page="resource-detail"] #resourceCoreSection .resource-core-flow {
  padding: 0;
  border-top: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="resource-detail"] #resourceCoreSection .resource-core-highlights .detail-list li,
body[data-page="resource-detail"] #resourceCoreSection .resource-core-flow .detail-steps li {
  background: transparent;
  box-shadow: none;
}

body[data-page="resource-detail"] #resourceCoreSection .resource-core.is-hospital-detail {
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.8vw, 34px);
  max-width: 100%;
}

body[data-page="resource-detail"] #resourceCoreSection .resource-core.is-hospital-detail .resource-core-media {
  display: none;
}

body[data-page="resource-detail"] #resourceCoreSection .resource-core.is-hospital-detail .resource-core-copy {
  display: block;
  position: static;
  top: auto;
  align-self: stretch;
}

.hospital-detail-sections {
  display: grid;
  gap: clamp(24px, 3vw, 34px);
  margin-top: 14px;
}

.hospital-detail-panel {
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .84)),
    #edf9fc;
  box-shadow: 0 14px 28px rgba(0, 47, 59, .08);
}

.hospital-overview-panel {
  padding: clamp(24px, 3.4vw, 38px);
}

.hospital-overview-panel h3,
.hospital-section-head h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.18;
  font-weight: 400;
  text-wrap: balance;
}

.hospital-overview-body {
  display: grid;
  gap: 14px;
  margin-top: clamp(18px, 2.2vw, 24px);
}

.hospital-overview-body p,
.hospital-section-head p,
.hospital-carousel-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.78;
  text-wrap: pretty;
}

.hospital-carousel-panel {
  padding: clamp(20px, 3vw, 32px);
}

.hospital-section-head {
  display: grid;
  gap: 12px;
  max-width: 780px;
}

.hospital-carousel-shell {
  min-width: 0;
}

.hospital-carousel-layout {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.hospital-carousel-visual {
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.hospital-department-visual {
  align-content: start;
}

.hospital-department-hero {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 32px rgba(0, 47, 59, .1);
}

.hospital-department-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hospital-carousel-visual-stack {
  min-height: clamp(360px, 34vw, 460px);
}

.hospital-stack {
  position: relative;
  min-height: inherit;
}

.hospital-stack-image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 32px rgba(0, 47, 59, .1);
}

.hospital-stack-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hospital-stack-image-1 {
  top: 0;
  left: 0;
  z-index: 1;
  width: 56%;
  aspect-ratio: 4 / 3;
}

.hospital-stack-image-2 {
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 72%;
  aspect-ratio: 4 / 3;
}

.hospital-carousel-text {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  align-content: start;
  min-width: 0;
  padding-top: clamp(2px, .5vw, 8px);
}

.hospital-carousel-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.hospital-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.hospital-carousel-track {
  display: flex;
  min-width: 0;
}

.hospital-equipment-panel .hospital-carousel-track {
  gap: 18px;
}

.hospital-carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
}

.hospital-equipment-panel .hospital-carousel-slide {
  flex: 0 0 clamp(220px, 20vw, 320px);
  min-width: clamp(220px, 20vw, 320px);
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0;
  scroll-snap-align: start;
  cursor: pointer;
}

.hospital-carousel-slide.is-image-only {
  display: block;
}

.hospital-equipment-panel .hospital-carousel-slide.is-image-only {
  display: grid;
}

.hospital-carousel-media {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(10px, 1.2vw, 16px);
  box-shadow: 0 12px 28px rgba(0, 47, 59, .08);
}

.hospital-carousel-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 30vw, 400px);
  aspect-ratio: 4 / 3;
  object-fit: contain;
  transition: transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.hospital-equipment-panel .hospital-carousel-media {
  height: 100%;
  position: relative;
  box-shadow: none;
}

.hospital-equipment-panel .hospital-carousel-media img {
  min-height: 240px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
}

.hospital-equipment-caption {
  display: grid;
  gap: 6px;
  padding: 12px 6px 0;
}

.hospital-equipment-caption h4 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
}

.hospital-equipment-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  background:
    linear-gradient(180deg, rgba(2, 28, 34, 0) 18%, rgba(2, 28, 34, .28) 46%, rgba(2, 28, 34, .92) 100%);
  transition: opacity .28s ease;
}

.hospital-equipment-overlay p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .28);
  background: rgba(0, 0, 0, .14);
  border-radius: 10px;
  padding: 10px 12px;
  backdrop-filter: blur(3px);
}

.hospital-equipment-panel .hospital-carousel-track {
  gap: 18px;
}

.hospital-equipment-panel .hospital-carousel-viewport {
  overflow-x: auto;
  padding-bottom: 4px;
}

.hospital-equipment-panel .hospital-carousel-slide {
  flex: 0 0 clamp(240px, 24vw, 340px);
  min-width: clamp(240px, 24vw, 340px);
  display: grid;
  gap: 0;
  align-content: start;
}

.hospital-equipment-panel .hospital-carousel-slide .hospital-carousel-media {
  aspect-ratio: 4 / 3;
}

.hospital-equipment-panel .hospital-carousel-slide .hospital-carousel-media img {
  min-height: 220px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
}

.hospital-equipment-card--fill-image .hospital-carousel-media {
  padding: 0;
}

.hospital-equipment-card--fill-image .hospital-carousel-media img {
  min-height: 340px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.38);
}

.hospital-equipment-card--fill-image.hospital-carousel-slide.is-active .hospital-carousel-media img,
.hospital-equipment-card--fill-image:hover .hospital-carousel-media img,
.hospital-equipment-card--fill-image:focus-visible .hospital-carousel-media img {
  transform: scale(1.42);
}

.hospital-equipment-card--abbott .hospital-carousel-media img {
  min-height: 300px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.2);
}

.hospital-equipment-card--abbott.hospital-carousel-slide.is-active .hospital-carousel-media img,
.hospital-equipment-card--abbott:hover .hospital-carousel-media img,
.hospital-equipment-card--abbott:focus-visible .hospital-carousel-media img {
  transform: scale(1.28);
}

.hospital-equipment-panel .hospital-carousel-slide:hover .hospital-equipment-overlay,
.hospital-equipment-panel .hospital-carousel-slide:focus-visible .hospital-equipment-overlay {
  opacity: 1;
}

.hospital-equipment-panel .hospital-carousel-slide:hover .hospital-carousel-media img,
.hospital-equipment-panel .hospital-carousel-slide:focus-visible .hospital-carousel-media img {
  transform: scale(1.03);
}

.hospital-carousel-slide.is-active .hospital-carousel-media img {
  transform: scale(1.018);
}

.hospital-carousel-copy {
  gap: 14px;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .34s ease, transform .34s ease;
}

.hospital-carousel-copy.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hospital-carousel-copy-list {
  position: relative;
  min-height: clamp(140px, 16vw, 220px);
  overflow: hidden;
}

.hospital-carousel-copy h4 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.22;
  font-weight: 400;
  text-wrap: balance;
}

.hospital-equipment-panel .hospital-section-head p {
  width: 100%;
  max-width: none;
}

.hospital-equipment-panel .hospital-section-head {
  width: 100%;
  max-width: none;
  margin-bottom: clamp(18px, 2.6vw, 30px);
}

.hospital-equipment-panel .hospital-carousel-layout {
  grid-template-columns: 1fr;
  gap: 0;
}

.hospital-equipment-panel {
  overflow: visible;
}

.hospital-equipment-panel .hospital-carousel-visual,
.hospital-equipment-panel .hospital-carousel-shell {
  width: 100%;
}

.hospital-equipment-panel .hospital-carousel-media {
  padding: 0;
  background: #fff;
  box-shadow: none;
}

.hospital-carousel-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 clamp(10px, 1.4vw, 18px);
  pointer-events: none;
}

.hospital-carousel-arrow {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: var(--brand);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 6px 14px rgba(0, 47, 59, .1);
  padding: 0;
  font-size: 0;
  line-height: 0;
  pointer-events: auto;
  transition: transform .22s ease, background .22s ease, opacity .22s ease;
}

.hospital-carousel-arrow svg,
body[data-page="resource-detail"] .resource-experts-arrow svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hospital-carousel-arrow:hover,
.hospital-carousel-arrow:focus-visible {
  background: #fff;
  transform: translateY(-1px);
  outline: none;
}

.hospital-carousel-arrow:disabled {
  cursor: default;
  opacity: .34;
  transform: none;
}

.hospital-carousel-controls[hidden],
.hospital-carousel-arrow[hidden] {
  display: none;
}

.hospital-equipment-panel .hospital-carousel-viewport {
  overflow-x: auto;
  padding-bottom: 2px;
}

.hospital-carousel-dots {
  display: none;
}

.hospital-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(5, 120, 145, .2);
  transition: width .22s ease, background .22s ease;
}

.hospital-carousel-dot.active {
  width: 22px;
  border-radius: 999px;
  background: var(--brand);
}

body.lang-ar .hospital-carousel-controls {
  justify-content: center;
}

body[data-page="resource-detail"] .resource-experts-section {
  padding-top: 0;
}

body[data-page="resource-detail"] .resource-experts-head {
  margin-bottom: 26px;
}

body[data-page="resource-detail"] .resource-experts-carousel {
  width: var(--wrap);
  margin: 0 auto;
  position: relative;
}

body[data-page="resource-detail"] .resource-experts-carousel::before,
body[data-page="resource-detail"] .resource-experts-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: clamp(32px, 6vw, 84px);
  height: 100%;
  pointer-events: none;
}

body[data-page="resource-detail"] .resource-experts-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(255, 255, 255, 0));
}

body[data-page="resource-detail"] .resource-experts-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(255, 255, 255, 0));
}

body[data-page="resource-detail"] .resource-experts-carousel.is-static::before,
body[data-page="resource-detail"] .resource-experts-carousel.is-static::after {
  opacity: 0;
}

body[data-page="resource-detail"] .resource-experts-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: inline mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 4px 24px;
  justify-content: flex-start;
}

body[data-page="resource-detail"] .resource-experts-grid.is-centered {
  justify-content: center;
}

body[data-page="resource-detail"] .resource-experts-grid::-webkit-scrollbar {
  display: none;
}

body[data-page="resource-detail"] .resource-expert-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 0;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  cursor: pointer;
  text-align: center;
  font: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}

body[data-page="resource-detail"] .resource-expert-card:hover,
body[data-page="resource-detail"] .resource-expert-card:focus-visible {
  transform: translateY(-4px);
  outline: none;
}

body[data-page="resource-detail"] .resource-expert-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(20, 128, 149, .18);
}

body[data-page="resource-detail"] .resource-experts-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(20, 128, 149, .18);
  border-radius: 50%;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 24px rgba(0, 47, 59, .12);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease, transform .2s ease;
}

body[data-page="resource-detail"] .resource-experts-arrow:hover,
body[data-page="resource-detail"] .resource-experts-arrow:focus-visible {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
  transform: translateY(-50%) scale(1.04);
}

body[data-page="resource-detail"] .resource-experts-arrow[disabled] {
  opacity: .36;
  cursor: default;
  pointer-events: none;
}

body[data-page="resource-detail"] [data-resource-experts-prev] {
  left: -23px;
}

body[data-page="resource-detail"] [data-resource-experts-next] {
  right: -23px;
}

body[data-page="resource-detail"] .resource-expert-media {
  position: relative;
  margin: 0;
  width: 220px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
}

body[data-page="resource-detail"] .resource-expert-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="resource-detail"] .resource-expert-media > img[src=""] {
  display: none;
}

body[data-page="resource-detail"] .resource-expert-card h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 18px;
  line-height: 1.18;
  font-weight: 500;
  text-wrap: balance;
}

body[data-page="resource-detail"] .resource-expert-role {
  margin-top: 8px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.58;
  font-weight: 600;
}

body[data-page="resource-detail"] .resource-expert-desc {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.72;
  text-wrap: pretty;
}

body.expert-modal-open {
  overflow: hidden;
}

body[data-page="resource-detail"] .resource-expert-modal[hidden] {
  display: none;
}

body[data-page="resource-detail"] .resource-expert-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

body[data-page="resource-detail"] .resource-expert-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 28, 34, .42);
  backdrop-filter: blur(8px);
}

body[data-page="resource-detail"] .resource-expert-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  display: grid;
  grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr);
  gap: 28px;
  overflow: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 47, 59, .22);
  padding: 28px;
}

body[data-page="resource-detail"] .resource-expert-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 128, 149, .1);
  color: var(--brand-dark);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 0;
}

body[data-page="resource-detail"] .resource-expert-modal-close::before,
body[data-page="resource-detail"] .resource-expert-modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

body[data-page="resource-detail"] .resource-expert-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

body[data-page="resource-detail"] .resource-expert-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body[data-page="resource-detail"] .resource-expert-modal-close:hover,
body[data-page="resource-detail"] .resource-expert-modal-close:focus-visible {
  background: var(--brand);
  color: #fff;
  outline: none;
}

body[data-page="resource-detail"] .resource-expert-modal-media {
  position: sticky;
  top: 0;
  align-self: start;
  margin: 0;
  min-height: 360px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(20, 128, 149, .08), rgba(20, 128, 149, .02));
}

body[data-page="resource-detail"] .resource-expert-modal-media > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
}

body[data-page="resource-detail"] .resource-expert-modal-body {
  min-width: 0;
  padding: 18px 18px 8px 0;
}

body[data-page="resource-detail"] .resource-expert-modal-body h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  font-weight: 400;
  text-wrap: balance;
}

body[data-page="resource-detail"] .resource-expert-modal-points {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

body[data-page="resource-detail"] .resource-expert-modal-points li {
  position: relative;
  padding: 12px 14px 12px 30px;
  border-radius: 12px;
  background: rgba(20, 128, 149, .08);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
}

body[data-page="resource-detail"] .resource-expert-modal-points li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

@media (max-width: 980px) {
  body[data-page="resource-detail"] #resourceCoreSection .resource-core.is-hospital-detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body[data-page="resource-detail"] .resource-expert-card {
    flex-basis: 220px;
  }

  body[data-page="resource-detail"] [data-resource-experts-prev] {
    left: 8px;
  }

  body[data-page="resource-detail"] [data-resource-experts-next] {
    right: 8px;
  }
}

@media (max-width: 680px) {
  .hospital-detail-sections {
    gap: 22px;
  }

  .hospital-overview-panel,
  .hospital-carousel-panel {
    padding: 22px;
  }

  .hospital-carousel-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hospital-carousel-slide {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hospital-equipment-panel .hospital-carousel-slide {
    flex-basis: 78vw;
    min-width: 78vw;
  }

  .hospital-carousel-media img {
    min-height: 230px;
  }

  .hospital-carousel-copy {
    min-height: auto;
    padding: 0 2px 4px;
  }

  .hospital-carousel-controls {
    justify-content: space-between;
    padding: 0 10px;
  }

  body[data-page="resource-detail"] .resource-experts-carousel::before,
  body[data-page="resource-detail"] .resource-experts-carousel::after {
    width: 24px;
  }

  body[data-page="resource-detail"] .resource-experts-grid {
    gap: 16px;
  }

  body[data-page="resource-detail"] .resource-expert-card {
    flex-basis: 220px;
    padding: 0;
  }

  body[data-page="resource-detail"] .resource-expert-media {
    width: 220px;
  }

  body[data-page="resource-detail"] .resource-experts-arrow {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }

  body[data-page="resource-detail"] .resource-expert-dialog {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
    max-height: calc(100vh - 32px);
  }

  body[data-page="resource-detail"] .resource-expert-modal-media,
  body[data-page="resource-detail"] .resource-expert-modal-media > img {
    min-height: 300px;
  }

  body[data-page="resource-detail"] .resource-expert-modal-body {
    padding: 0 0 4px;
  }

  body[data-page="resource-detail"] .resource-expert-modal {
    padding: 16px;
  }

  body[data-page="resource-detail"] .resource-experts-grid.is-centered {
    justify-content: flex-start;
  }
}

@media (max-width: 880px) {
  body[data-page="resource-detail"] #resourceCoreSection .resource-core {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body[data-page="resource-detail"] #resourceCoreSection .resource-core-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
  }

  body[data-page="resource-detail"] #resourceCoreSection .resource-core-copy {
    margin-top: 0;
  }
}

body[data-page="contact"] .contact-directory {
  grid-template-columns: 1fr;
  border-top: 0;
  border-bottom: 0;
  gap: clamp(22px, 3vw, 34px);
}

body[data-page="contact"] .contact-directory-card {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 47, 59, .07);
  transition: transform .24s ease, box-shadow .24s ease;
}

body[data-page="contact"] .contact-directory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 47, 59, .11);
}

body[data-page="contact"] .contact-directory-media {
  min-height: 100%;
  margin: 0;
  background: #d8eef3;
}

body[data-page="contact"] .contact-directory-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: .92;
}

body[data-page="contact"] .contact-directory-content {
  padding: clamp(28px, 3.6vw, 46px);
}

body[data-page="contact"] .contact-directory-content h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 500;
}

body[data-page="contact"] .contact-directory-list {
  margin-top: 26px;
  gap: 14px;
}

body[data-page="contact"] .contact-directory-list li {
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.7;
}

body[data-page="contact"] .contact-directory-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(24px, 2.8vw, 34px);
}

body[data-page="contact"] .contact-directory-channel {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(242, 251, 255, .86);
}

body[data-page="contact"] .contact-directory-channel h3 {
  margin: 0 0 2px;
  color: var(--brand-dark);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
}

body[data-page="contact"] .contact-directory-contact {
  color: var(--ink-soft);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.48;
  font-weight: 600;
  overflow-wrap: anywhere;
}

body[data-page="contact"] .contact-directory-contact:hover,
body[data-page="contact"] .contact-directory-contact:focus-visible {
  color: var(--brand-deep);
}

body[data-page="contact"] .contact-directory-link {
  padding-top: 28px;
  font-size: clamp(16px, 1.4vw, 18px);
}

body.lang-ar[data-page="contact"] .contact-directory-card {
  border: 0;
}

body.lang-ar[data-page="contact"] .contact-directory-card:last-child {
  border: 0;
}

body[data-page="contact"] .contact-location-section {
  padding-top: clamp(58px, 7vw, 96px);
  background:
    radial-gradient(circle at 88% 8%, rgba(50, 173, 198, .12), rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, #fff 0%, rgba(242, 251, 255, .62) 100%);
}

body[data-page="contact"] .contact-location-band {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="contact"] .contact-location-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding-top: 0;
  align-content: start;
  align-items: start;
  text-align: center;
}

body[data-page="contact"] .contact-location-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  font-weight: 500;
}

body[data-page="contact"] .contact-location-heading p {
  margin: 20px auto 0;
  max-width: 38rem;
  color: var(--brand-dark);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
}

body[data-page="contact"] .contact-location-details {
  width: 100%;
  margin: clamp(34px, 4vw, 52px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, .8fr);
  gap: 0;
  align-items: stretch;
}

body[data-page="contact"] .contact-location-details div {
  min-height: 118px;
  padding: clamp(4px, 1vw, 10px) clamp(24px, 3.8vw, 54px);
  border: 0;
  border-radius: 0;
  background: rgba(242, 251, 255, .82);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

body[data-page="contact"] .contact-location-details div + div {
  border-left: 0;
}

body.lang-ar[data-page="contact"] .contact-location-details div {
  text-align: right;
}

body.lang-ar[data-page="contact"] .contact-location-details div + div {
  border-left: 0;
  border-right: 0;
}

body[data-page="contact"] .contact-location-details b {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

body[data-page="contact"] .contact-location-details span {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.62;
  white-space: nowrap;
}

body[data-page="contact"] .contact-map-card {
  grid-column: 1 / -1;
  width: 100%;
  min-height: clamp(360px, 43vw, 620px);
  margin: clamp(4px, 1.2vw, 16px) 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d8eef3;
  box-shadow: 0 12px 28px rgba(0, 47, 59, .08);
}

body[data-page="contact"] .contact-map-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 43vw, 620px);
  overflow: hidden;
}

body[data-page="contact"] .contact-map-card img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 43vw, 620px);
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .7s cubic-bezier(.22, 1, .36, 1);
}

body[data-page="contact"] .contact-map-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 47, 59, 0), rgba(0, 47, 59, .14));
  opacity: 0;
  transition: opacity .32s ease;
}

body[data-page="contact"] .contact-map-cta {
  position: absolute;
  right: clamp(16px, 2.4vw, 28px);
  bottom: clamp(16px, 2.4vw, 28px);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand-dark);
  box-shadow: 0 8px 16px rgba(0, 47, 59, .12);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .28s ease, transform .28s ease, background .24s ease;
}

body[data-page="contact"] .contact-map-cta::after {
  content: "↗";
  font-size: 1.05em;
}

body.lang-ar[data-page="contact"] .contact-map-cta {
  right: auto;
  left: clamp(16px, 2.4vw, 28px);
}

body[data-page="contact"] .contact-map-link:hover img,
body[data-page="contact"] .contact-map-link:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.02);
}

body[data-page="contact"] .contact-map-link:hover::after,
body[data-page="contact"] .contact-map-link:focus-visible::after,
body[data-page="contact"] .contact-map-link:hover .contact-map-cta,
body[data-page="contact"] .contact-map-link:focus-visible .contact-map-cta {
  opacity: 1;
}

body[data-page="contact"] .contact-map-link:hover .contact-map-cta,
body[data-page="contact"] .contact-map-link:focus-visible .contact-map-cta {
  transform: translateY(0);
}

body[data-page="contact"] .contact-map-cta:hover,
body[data-page="contact"] .contact-map-link:focus-visible .contact-map-cta {
  background: var(--brand-deep);
}

body[data-page="careers"] .career-openings-section {
  background:
    radial-gradient(circle at 86% 10%, rgba(50, 173, 198, .12), rgba(255, 255, 255, 0) 30%),
    var(--mist);
}

.career-openings {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.job-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3.8vw, 46px);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .82)),
    #fff;
  box-shadow: 0 14px 30px rgba(0, 47, 59, .07);
  transition: transform .28s ease, box-shadow .28s ease;
}

.job-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand), var(--warm));
}

body.lang-ar .job-card::before {
  inset: 0 0 0 auto;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 47, 59, .1);
}

.job-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
}

body.lang-ar .job-card-head {
  grid-template-columns: 1fr auto;
}

.job-card-index {
  color: rgba(5, 120, 145, .22);
  font-size: clamp(46px, 6vw, 76px);
  line-height: .92;
  font-weight: 700;
}

.job-card-kicker {
  margin: 2px 0 10px;
  color: var(--brand-dark);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.job-card h2 {
  max-width: 880px;
  color: var(--ink);
  font-size: clamp(26px, 3.1vw, 42px);
  line-height: 1.13;
  font-weight: 500;
  text-wrap: balance;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: clamp(20px, 2.4vw, 28px) 0 0;
  padding-left: calc(clamp(18px, 2.4vw, 30px) + clamp(46px, 6vw, 76px));
}

body.lang-ar .job-meta {
  padding-left: 0;
  padding-right: calc(clamp(18px, 2.4vw, 30px) + clamp(46px, 6vw, 76px));
}

.job-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(242, 251, 255, .95);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.job-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 30px);
  margin-top: clamp(26px, 3.4vw, 42px);
}

.job-detail {
  padding: clamp(18px, 2.2vw, 26px);
  border-radius: var(--radius);
  background: rgba(242, 251, 255, .7);
}

.job-detail h3 {
  color: var(--brand-dark);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.job-detail ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.job-detail li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.68;
}

body.lang-ar .job-detail li {
  padding-left: 0;
  padding-right: 18px;
}

.job-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-deep);
}

body.lang-ar .job-detail li::before {
  left: auto;
  right: 0;
}

.career-apply-panel {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 54px);
  align-items: end;
  padding: clamp(28px, 4vw, 50px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(5, 120, 145, .94), rgba(0, 154, 190, .86)),
    var(--brand-deep);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 47, 59, .12);
}

.career-apply-panel span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.career-apply-panel h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 500;
}

.career-apply-panel p {
  max-width: 760px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.72;
}

.career-apply-email {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

.career-apply-panel .btn {
  color: var(--brand-dark);
  background: #fff;
}

@media (max-width: 880px) {
  body[data-page="contact"] .contact-directory {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-page="contact"] .contact-directory-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body[data-page="contact"] .contact-directory-media img {
    min-height: 240px;
  }

  body[data-page="contact"] .contact-directory-content {
    padding: 24px;
  }

  body[data-page="contact"] .contact-directory-content h2 {
    font-size: clamp(24px, 6vw, 30px);
  }

  body[data-page="contact"] .contact-directory-list {
    margin-top: 28px;
    gap: 16px;
  }

  body[data-page="contact"] .contact-directory-link {
    padding-top: 28px;
  }

  body[data-page="contact"] .contact-location-section {
    padding-top: 58px;
  }

  body[data-page="contact"] .contact-location-band {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  body[data-page="contact"] .contact-location-copy,
  body[data-page="contact"] .contact-location-details {
    grid-template-columns: 1fr;
  }

  body[data-page="contact"] .contact-location-details div {
    min-height: auto;
    padding: 18px 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  body[data-page="contact"] .contact-location-details span {
    white-space: normal;
  }

  body[data-page="contact"] .contact-location-details div + div,
  body.lang-ar[data-page="contact"] .contact-location-details div + div {
    margin-top: 24px;
    border-left: 0;
    border-right: 0;
    border-top: 0;
  }

  body[data-page="contact"] .contact-map-card,
  body[data-page="contact"] .contact-map-link,
  body[data-page="contact"] .contact-map-card img {
    min-height: 320px;
  }

  .job-detail-grid,
  .career-apply-panel {
    grid-template-columns: 1fr;
  }

  .job-meta,
  body.lang-ar .job-meta {
    padding-left: 0;
    padding-right: 0;
  }

  .career-apply-panel {
    align-items: start;
  }
}

@media (max-width: 640px) {
  body[data-page="contact"] .contact-directory {
    gap: 12px;
  }

  body[data-page="contact"] .contact-directory-media img {
    min-height: 210px;
  }

  body[data-page="contact"] .contact-directory-content {
    padding: 22px;
  }

  body[data-page="contact"] .contact-directory-content h2 {
    font-size: clamp(22px, 7vw, 28px);
  }

  body[data-page="contact"] .contact-directory-list {
    margin-top: 24px;
    gap: 14px;
  }

  body[data-page="contact"] .contact-directory-list li {
    font-size: 15px;
    line-height: 1.68;
  }

  body[data-page="contact"] .contact-directory-channels {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  body[data-page="contact"] .contact-directory-link {
    padding-top: 24px;
    font-size: 16px;
  }

  body[data-page="contact"] .contact-location-section {
    padding-top: 46px;
  }

  body[data-page="contact"] .contact-location-copy h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  body[data-page="contact"] .contact-location-heading p {
    margin-top: 18px;
  }

  body[data-page="contact"] .contact-map-card,
  body[data-page="contact"] .contact-map-link,
  body[data-page="contact"] .contact-map-card img {
    min-height: 250px;
  }

  body[data-page="contact"] .contact-map-cta {
    opacity: 1;
    transform: none;
    padding: 11px 14px;
    font-size: 13px;
  }

  .job-card {
    padding: 22px;
  }

  .job-card-head,
  body.lang-ar .job-card-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .job-card-index {
    font-size: 38px;
  }

  .job-card h2 {
    font-size: clamp(24px, 7vw, 31px);
  }

  .job-meta span {
    width: 100%;
    justify-content: flex-start;
  }

  .job-detail {
    padding: 18px;
  }

  .job-detail li {
    font-size: 15px;
  }

  .career-apply-panel {
    padding: 24px;
  }
}
