/* Site-specific styles */
html,
body {
  overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy-900);
  color: var(--slate-300);
  font-size: 12.5px;
  letter-spacing: .02em;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
}
.topbar a { color: var(--slate-300); }
.topbar a:hover { color: var(--cyan-400); }
.topbar-meta { display: flex; gap: 24px; }
.topbar-meta span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-meta svg { width: 13px; height: 13px; opacity: .7; }
.topbar-right { display: flex; align-items: center; gap: 20px; }

.lang-toggle {
  display: inline-flex;
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 3px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .05em;
}
.lang-toggle button {
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--slate-300);
  transition: all .2s;
}
.lang-toggle button.active {
  background: var(--cyan-500);
  color: var(--white);
}

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 82px;
  gap: 32px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand-logo {
  height: 60px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,127,184,.14));
  transition: transform .25s var(--ease-out), filter .25s var(--ease-out);
}
.brand:hover .brand-logo {
  transform: translateY(-1px);
  filter: drop-shadow(0 12px 24px rgba(0,127,184,.2));
}
.brand-text {
  display: flex; flex-direction: column;
  line-height: 1;
}
.brand-text strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--navy-800);
  letter-spacing: -.01em;
}
.brand-text small {
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-top: 3px;
}
.nav {
  display: flex; align-items: center; gap: 4px;
}
.nav a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--slate-700);
  transition: all .2s;
  position: relative;
}
.nav a:hover { color: var(--navy-800); background: var(--slate-100); }
.nav a.active {
  color: var(--navy-800);
}
.nav a.nav-external {
  color: var(--cyan-700, #0E7BAA);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  border-left: 1px solid var(--slate-200, #E5EAF0);
  padding-left: 16px;
  border-radius: 0 8px 8px 0;
}
.nav a.nav-external:hover {
  color: var(--cyan-600);
  background: var(--slate-100);
}
.nav a.nav-external .ext-icon {
  opacity: .7;
  transition: transform .2s;
}
.nav a.nav-external:hover .ext-icon {
  transform: translate(1px, -1px);
  opacity: 1;
}
/* RTL adjustments */
[dir="rtl"] .nav a.nav-external {
  border-left: none;
  border-right: 1px solid var(--slate-200, #E5EAF0);
  margin-left: 0;
  margin-right: 4px;
  padding-left: 14px;
  padding-right: 16px;
}
[dir="rtl"] .nav a.nav-external .ext-icon { transform: scaleX(-1); }
[dir="rtl"] .nav a.nav-external:hover .ext-icon { transform: scaleX(-1) translate(1px, -1px); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--cyan-500);
  border-radius: 2px;
}
.header-cta {
  display: flex; align-items: center; gap: 8px;
}
.mobile-menu-btn { display: none; }
@media (max-width: 1080px) {
  .nav { display: none; }
  .mobile-menu-btn { display: inline-flex; }
  .header-cta .btn { display: none; }
}
@media (max-width: 720px) {
  .topbar-inner {
    align-items: flex-start;
    gap: 12px;
  }
  .topbar-meta {
    min-width: 0;
    flex: 1;
    flex-wrap: wrap;
    gap: 6px 12px;
    line-height: 1.35;
  }
  .topbar-meta span {
    min-width: 0;
    white-space: normal;
  }
  .topbar-right { flex-shrink: 0; }
  .header-inner {
    height: 72px;
    gap: 16px;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
}
.hero > .container.hero-content {
  margin-top: auto; /* push content toward vertical center */
}
.hero > .hero-meta {
  margin-top: auto; /* meta sits at the bottom, no overlap */
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0,169,222,.28), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(18,79,140,.4), transparent 60%),
    linear-gradient(180deg, #061E3A 0%, #0A2B4F 100%);
}
.hero-waves {
  position: absolute; inset: 0;
  overflow: hidden;
  opacity: .5;
  pointer-events: none;
}
.hero-waves svg {
  position: absolute;
  width: 200%;
  height: 100%;
  left: 0; top: 0;
  animation: waveFlow 24s linear infinite;
}
.hero-brand-mark {
  position: absolute;
  z-index: 1;
  right: max(26px, calc((100vw - var(--container)) / 2 - 8px));
  top: 112px;
  width: min(48vw, 690px);
  pointer-events: none;
  opacity: .18;
  mix-blend-mode: screen;
}
.hero-brand-mark img {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 28px 80px rgba(0,169,222,.35))
    brightness(1.28)
    saturate(1.16);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 60px 0;
}
.hero h1 {
  max-width: 17ch;
  margin: 24px 0 0;
  text-wrap: pretty;
}
.hero h1 em {
  font-style: italic;
  color: var(--cyan-400);
  font-family: var(--font-display);
}
.hero-lead {
  max-width: 52ch;
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--slate-300);
}
.hero-actions {
  margin-top: 44px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero-meta {
  position: relative;
  padding-bottom: 40px;
  z-index: 2;
}
.hero-meta-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 28px;
}
.hero-stat {
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--cyan-400);
  line-height: 1;
  letter-spacing: -.02em;
}
.hero-stat .num sup { font-size: 22px; margin-left: 2px; }
.hero-stat .lbl {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate-300);
}
@media (max-width: 900px) {
  .brand-logo { height: 48px; max-width: 178px; }
  .hero-brand-mark {
    width: 92vw;
    right: -46vw;
    top: 136px;
    opacity: .1;
  }
  .hero-meta-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-stat { border-right: none; padding: 12px 0; }
}
@media (max-width: 520px) {
  .brand-logo { height: 44px; max-width: 160px; }
  .hero-brand-mark { display: none; }
  .hero {
    min-height: 780px;
  }
  .hero-content {
    width: 100%;
    min-width: 0;
    padding: 48px 0 36px;
  }
  .hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .hero-lead {
    max-width: 100%;
    font-size: 16px;
  }
  .hero-actions .btn {
    min-width: 0;
    max-width: 100%;
  }
}

/* ===== BRAND STRIP ===== */
.brand-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.brand-strip-title {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--slate-500);
  text-align: center;
}
.brand-strip-logos {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
  align-items: center;
}
.brand-logo-cell {
  height: 92px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  transition: all .3s;
  padding: 12px 16px;
  position: relative;
  overflow: hidden;
}
.brand-logo-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all .3s;
}
.brand-logo-cell:hover { border-color: var(--cyan-500); box-shadow: 0 4px 14px rgba(0,169,222,.12); }
.brand-logo-cell:hover img { transform: scale(1.03); }
@media (max-width: 900px) {
  .brand-strip-logos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .brand-strip-logos { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .brand-logo-cell { height: 78px; padding: 10px 12px; }
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 40px;
  display: flex; flex-direction: column;
  min-height: 320px;
  position: relative;
  transition: background .3s;
  cursor: pointer;
}
.service-card:hover { background: var(--cyan-50); }
.service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate-500);
  letter-spacing: .1em;
}
.service-icon {
  width: 52px; height: 52px;
  margin-top: 20px;
  color: var(--cyan-600);
}
.service-card h3 {
  margin: 24px 0 12px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  color: var(--navy-800);
  letter-spacing: -.01em;
}
.service-card p {
  color: var(--slate-700);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.service-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13.5px;
  color: var(--slate-700);
}
.service-card ul li {
  padding: 6px 0;
  border-top: 1px solid var(--slate-100);
  display: flex; align-items: center; gap: 8px;
}
.service-card ul li::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--cyan-500);
  border-radius: 50%;
}
.service-arrow {
  margin-top: auto;
  padding-top: 24px;
  color: var(--cyan-600);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
@media (max-width: 780px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== FEATURED PROJECT ===== */
.featured-projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.project-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  overflow: hidden;
  transition: all .3s;
  cursor: pointer;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-card .ph { border-radius: 0; border: none; border-bottom: 1px solid var(--border); aspect-ratio: 16/9; }
.project-card .ph,
.news-card .ph {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--slate-100);
}
.project-card .ph img,
.news-card .ph img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}
.project-card:hover .ph img,
.news-card:hover .ph img { transform: scale(1.035); }
.project-card .ph.photo-pos-bottom img,
.news-card .ph.photo-pos-bottom img { object-position: center bottom; }
.project-card-body { padding: 24px 28px 28px; }
.project-card .meta {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.project-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--navy-800);
  letter-spacing: -.01em;
}
.project-card p {
  color: var(--slate-700);
  font-size: 14.5px;
  margin: 0;
}
.project-card .kv {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--slate-100);
  font-size: 13px;
}
.project-card .kv dt { color: var(--slate-500); font-weight: 500; }
.project-card .kv dd { margin: 0; color: var(--ink); }
@media (max-width: 780px) { .featured-projects { grid-template-columns: 1fr; } }

/* ===== CLIENTS MARQUEE ===== */
.clients-marquee {
  padding: 60px 0;
  background: var(--navy-800);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-800), transparent);
}
.clients-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy-800), transparent);
}
.marquee-track {
  display: flex; gap: 18px;
  animation: waveFlow 40s linear infinite;
  width: max-content;
}
.marquee-logo {
  flex: 0 0 auto;
  width: 224px;
  height: 86px;
  padding: 18px 24px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.24);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
}
.marquee-logo img {
  display: block;
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
}
.marquee-logo.logo-symbol img {
  max-width: 72px;
  max-height: 58px;
}
.marquee-logo.logo-dark {
  background: var(--navy-900);
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 32px;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
  letter-spacing: -.01em;
  display: flex; align-items: center; gap: 48px;
}
.marquee-item::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan-500);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-900);
  color: var(--slate-300);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-block {
  padding-right: 24px;
}
.footer-brand-block .brand { margin-bottom: 18px; }
.footer-logo {
  height: 76px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 34px rgba(0,169,222,.24))
    brightness(1.18)
    saturate(1.1);
}
.footer-brand-block .brand-text strong { color: var(--white); }
.footer-brand-block .brand-text small { color: var(--slate-400); }
.footer-brand-block p {
  margin-top: 20px;
  color: var(--slate-400);
  font-size: 14px;
  line-height: 1.6;
  max-width: 40ch;
}
.footer h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 500;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { padding: 5px 0; }
.footer ul a {
  color: var(--slate-300);
  font-size: 14px;
  transition: color .2s;
}
.footer ul a:hover { color: var(--cyan-400); }
.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px;
  color: var(--slate-400);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-block { grid-column: span 2; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-block { grid-column: span 1; }
}

/* ===== SUB-PAGE HERO ===== */
.page-hero {
  background: var(--navy-900);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0,169,222,.2), transparent 60%),
    linear-gradient(180deg, #061E3A 0%, #0A2B4F 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan-400);
  letter-spacing: .1em;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--cyan-300); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -.02em;
  margin: 0;
  max-width: 18ch;
}
.page-hero p {
  margin-top: 28px;
  max-width: 60ch;
  font-size: 17px;
  color: var(--slate-300);
  line-height: 1.55;
}

/* ===== ABOUT ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.pillar-card .num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--cyan-500);
  line-height: 1;
  letter-spacing: -.02em;
}
.pillar-card h3 {
  margin: 20px 0 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  color: var(--navy-800);
}
.pillar-card p {
  color: var(--slate-700);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 780px) { .pillars-grid { grid-template-columns: 1fr; } }

.timeline {
  border-left: 2px solid var(--cyan-500);
  padding-left: 32px;
  margin-left: 20px;
}
html[dir="rtl"] .timeline {
  border-left: none;
  border-right: 2px solid var(--cyan-500);
  padding-left: 0;
  padding-right: 32px;
  margin-left: 0;
  margin-right: 20px;
}
.timeline-item {
  padding: 20px 0;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 28px;
  width: 14px; height: 14px;
  background: var(--white);
  border: 3px solid var(--cyan-500);
  border-radius: 50%;
}
html[dir="rtl"] .timeline-item::before { left: auto; right: -40px; }
.timeline-item .year {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan-600);
  letter-spacing: .1em;
}
.timeline-item h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  margin: 6px 0 6px;
  color: var(--navy-800);
}
.timeline-item p { margin: 0; color: var(--slate-700); font-size: 14.5px; }

/* ===== BRAND DETAIL CARDS ===== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.brand-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all .3s;
  display: flex; flex-direction: column;
}
.brand-detail-card:hover { border-color: var(--cyan-500); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.brand-detail-card .logo-slot {
  height: 132px;
  display: flex; align-items: center; justify-content: flex-start;
  border-bottom: 1px solid var(--slate-100);
  padding: 0 0 24px;
  margin-bottom: 24px;
}
.brand-detail-card .logo-slot .brand-img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}
.brand-detail-card .brand-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  color: var(--navy-800);
  letter-spacing: -.01em;
  line-height: 1;
}
.brand-detail-card .brand-country {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan-600);
  letter-spacing: .12em;
  margin-top: 8px;
  text-transform: uppercase;
}
.brand-detail-card p {
  color: var(--slate-700);
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 0;
}
.brand-detail-card .tags {
  margin-top: auto;
  padding-top: 20px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.brand-detail-card .tags span {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cyan-50);
  color: var(--cyan-600);
  font-weight: 500;
}
@media (max-width: 900px) { .brand-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .brand-grid { grid-template-columns: 1fr; } }

/* ===== CLIENTS PAGE ===== */
.client-category {
  margin-bottom: 64px;
}
.client-category-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.client-category-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  color: var(--navy-800);
  margin: 0;
  letter-spacing: -.015em;
}
.client-category-head .count {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--slate-500);
  letter-spacing: .1em;
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.client-cell {
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all .2s;
  display: flex; flex-direction: column;
  gap: 8px;
  min-height: 110px;
}
.client-cell:hover { border-color: var(--cyan-500); background: var(--cyan-50); }
.client-cell.client-logo-card {
  min-height: 132px;
  padding: 24px;
  align-items: center;
  justify-content: center;
}
.client-cell.client-logo-card img {
  display: block;
  width: 100%;
  max-width: 210px;
  height: 78px;
  object-fit: contain;
}
.client-cell.client-logo-card.logo-symbol img {
  max-width: 94px;
  height: 94px;
}
.client-cell.client-logo-card.logo-dark {
  background: var(--navy-900);
  border-color: rgba(8,50,84,.8);
}
.client-cell.client-logo-card.logo-dark:hover {
  background: var(--navy-800);
  border-color: var(--cyan-500);
}
.client-cell .name {
  font-weight: 500;
  color: var(--navy-800);
  font-size: 15px;
  line-height: 1.3;
}
.client-cell .badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--slate-500);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: auto;
}
@media (max-width: 900px) { .client-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .client-grid { grid-template-columns: 1fr; } }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--cyan-300); }
.team-photo {
  aspect-ratio: 4/5;
  background:
    linear-gradient(180deg, var(--cyan-100) 0%, var(--cyan-50) 60%, var(--white) 100%);
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.team-photo.has-photo {
  background:
    radial-gradient(ellipse at 50% 90%, rgba(0,169,222,.12), transparent 65%),
    linear-gradient(180deg, #F6F9FC 0%, #EDF7FC 55%, #D9F0FA 100%);
}
.team-photo.has-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(14,61,110,.08), transparent 55%);
  pointer-events: none;
}
.team-photo.has-photo img {
  position: relative;
  z-index: 1;
  width: 96%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 10px 20px rgba(11,31,51,.12));
}
.team-photo .initials {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--navy-700);
  opacity: .3;
  letter-spacing: -.02em;
}
.team-photo .ph-tag {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate-500);
  text-align: center;
  border: 1px dashed rgba(14,61,110,.28);
  padding: 5px;
  border-radius: 4px;
  background: rgba(255,255,255,.6);
}
.team-info { padding: 20px 22px 22px; }
.team-info .name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--navy-800);
  letter-spacing: -.005em;
  line-height: 1.15;
}
.team-info .role {
  margin-top: 6px;
  font-size: 13px;
  color: var(--cyan-600);
  font-weight: 500;
  letter-spacing: -.005em;
}
.team-info .dept {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--slate-500);
  letter-spacing: .08em;
  text-transform: uppercase;
}
@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .team-grid { grid-template-columns: 1fr; } }

/* ===== TEAM TABS ===== */
.team-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 56px;
}
.team-tab {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-700);
  letter-spacing: -.005em;
  transition: all .25s var(--ease-out);
  display: inline-flex; align-items: center; gap: 8px;
}
.team-tab .cnt {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-500);
  letter-spacing: .04em;
}
.team-tab:hover { color: var(--navy-800); }
.team-tab.active {
  background: var(--navy-800);
  color: var(--white);
}
.team-tab.active .cnt {
  background: rgba(255,255,255,.14);
  color: var(--cyan-300);
}
.team-panel { display: none; animation: fadeIn .4s var(--ease-out); }
.team-panel.active { display: block; }

/* ===== BOARD CARDS ===== */
.founder-spotlight {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 34px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F6FBFE 58%, #EAF7FC 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.founder-portrait,
.founder-message {
  min-width: 0;
}
.founder-portrait {
  overflow: hidden;
}
.founder-portrait .board-photo {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 0;
}
.founder-portrait .board-photo.board-photo-scale img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center top;
}
.founder-message {
  padding: clamp(28px, 4vw, 52px) clamp(26px, 5vw, 60px) clamp(30px, 4vw, 54px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
html[dir="rtl"] .founder-message {
  padding-left: clamp(26px, 5vw, 60px);
  padding-right: 0;
}
.founder-message h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: .96;
  font-weight: 400;
  color: var(--navy-800);
  margin: 10px 0 0;
}
.founder-message .name-ar {
  margin-top: 10px;
  font-family: var(--font-arabic);
  font-size: 20px;
  color: var(--slate-600);
  direction: rtl;
  text-align: left;
}
html[dir="rtl"] .founder-message .name-ar { text-align: right; }
.founder-message .role {
  margin-top: 14px;
  color: var(--cyan-700);
  font-size: 14px;
  font-weight: 600;
}
.founder-message blockquote {
  margin: 28px 0 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--cyan-400);
}
html[dir="rtl"] .founder-message blockquote {
  padding-left: 0;
  padding-right: 24px;
  border-left: 0;
  border-right: 3px solid var(--cyan-400);
}
.founder-message blockquote p {
  margin: 0 0 14px;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.72;
  color: var(--slate-700);
}
.founder-message blockquote p:last-child { margin-bottom: 0; }
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.board-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .3s var(--ease-out);
  display: flex; flex-direction: column;
}
.board-card:hover {
  border-color: var(--cyan-400);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.board-photo {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 90%, rgba(0,169,222,.12), transparent 65%),
    linear-gradient(180deg, #F6F9FC 0%, #EDF7FC 55%, #D9F0FA 100%);
  display: flex; align-items: flex-end; justify-content: center;
}
.board-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(14,61,110,.08), transparent 55%);
  pointer-events: none;
}
.board-photo img {
  position: relative;
  z-index: 1;
  width: 92%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 12px 24px rgba(11,31,51,.14));
}
.board-photo.board-photo-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}
.board-photo.board-photo-elshafei img {
  object-position: center top;
}
.board-photo.board-photo-scale img {
  width: auto;
  height: 108%;
  max-width: none;
  object-position: bottom center;
}
.board-photo.board-photo-ahmed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.board-photo.board-photo-hisham img {
  object-position: center center;
}
.board-photo.board-photo-alnafisah img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% bottom;
}
.board-photo.photo-cover { background: var(--navy-900); }
.board-photo.photo-cover::before { display: none; }
.board-photo.photo-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: none;
}
.board-photo .rank {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy-800);
  background: rgba(255,255,255,.86);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
html[dir="rtl"] .board-photo .rank { left: auto; right: 20px; }
.board-info {
  padding: 20px 22px 22px;
  border-top: 1px solid var(--slate-100);
}
.board-info .name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--navy-800);
  letter-spacing: -.005em;
  line-height: 1.15;
}
.board-info .name-ar {
  font-family: var(--font-arabic);
  font-size: 16px;
  color: var(--slate-500);
  margin-top: 6px;
  direction: rtl;
  text-align: left;
  font-weight: 500;
}
html[dir="rtl"] .board-info .name-ar { text-align: right; }
.board-info .role {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--slate-100);
  font-size: 13px;
  color: var(--cyan-600);
  font-weight: 500;
  line-height: 1.4;
}
.board-info .role-ar {
  margin-top: 6px;
  font-family: var(--font-arabic);
  font-size: 12.5px;
  color: var(--slate-500);
  direction: rtl;
  text-align: left;
  line-height: 1.5;
}
html[dir="rtl"] .board-info .role-ar { text-align: right; }
@media (max-width: 980px) {
  .founder-spotlight {
    grid-template-columns: 1fr;
  }
  .founder-portrait .board-photo {
    min-height: 520px;
  }
  .founder-message {
    padding: 0 clamp(24px, 5vw, 42px) clamp(28px, 5vw, 42px);
  }
  html[dir="rtl"] .founder-message {
    padding: 0 clamp(24px, 5vw, 42px) clamp(28px, 5vw, 42px);
  }
}
@media (max-width: 560px) {
  .founder-portrait .board-photo {
    min-height: 420px;
  }
  .founder-message blockquote {
    padding-left: 18px;
  }
  html[dir="rtl"] .founder-message blockquote {
    padding-left: 0;
    padding-right: 18px;
  }
}
@media (max-width: 1000px) { .board-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .board-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .board-grid { grid-template-columns: 1fr; } }

/* ===== PROJECTS PAGE ===== */
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.filter-chip {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  transition: all .2s;
  cursor: pointer;
}
.filter-chip:hover { border-color: var(--navy-700); }
.filter-chip.active { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }

.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 780px) { .projects-full-grid { grid-template-columns: 1fr; } }

/* ===== MEDIA ===== */
.media-feature-home {
  background: linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
}
.media-feature-head {
  align-items: flex-end;
}
.media-feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.media-video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy-900);
  overflow: hidden;
}
.media-video-shell-large {
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.media-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--navy-900);
}
.media-feature-copy {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.media-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan-600);
  font-weight: 500;
}
.media-feature-copy h3,
.media-side-panel h3,
.media-caption h3 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--navy-800);
  line-height: 1.05;
}
.media-feature-copy h3 { font-size: 40px; }
.media-feature-copy p,
.media-side-panel p,
.media-caption p {
  color: var(--slate-700);
  line-height: 1.65;
}
.media-feature-copy .btn { margin-top: 18px; }
.media-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: 28px;
  align-items: stretch;
}
.media-main-video,
.media-side-panel {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.media-caption {
  padding: 26px 30px 30px;
}
.media-caption span {
  font-family: var(--font-mono);
  color: var(--cyan-600);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.media-caption h3 { font-size: 34px; }
.media-caption p { margin-bottom: 0; }
.media-side-panel {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.media-side-panel h3 { font-size: 34px; }
.media-side-panel .btn { margin-top: 18px; }
.media-gallery-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.media-photo {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--slate-100);
  box-shadow: var(--shadow-sm);
}
.media-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.media-photo:hover img { transform: scale(1.04); }
.media-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  background: rgba(6, 24, 44, .78);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
@media (max-width: 900px) {
  .media-feature-panel,
  .media-page-grid { grid-template-columns: 1fr; }
  .media-feature-copy { padding: 30px; }
  .media-feature-copy h3,
  .media-side-panel h3 { font-size: 32px; }
  .media-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .media-gallery-grid { grid-template-columns: 1fr; }
  .media-feature-copy,
  .media-side-panel,
  .media-caption { padding: 24px; }
}

/* ===== ARABIC / RTL POLISH ===== */
html[dir="rtl"] body {
  text-align: right;
}
html[dir="rtl"] .display-1,
html[dir="rtl"] .h2,
html[dir="rtl"] .section-head h2,
html[dir="rtl"] .page-hero h1,
html[dir="rtl"] .service-card h3,
html[dir="rtl"] .project-card h3,
html[dir="rtl"] .brand-detail-card .brand-name,
html[dir="rtl"] .media-feature-copy h3,
html[dir="rtl"] .media-side-panel h3,
html[dir="rtl"] .media-caption h3,
html[dir="rtl"] .news-card h3,
html[dir="rtl"] .contact-info h2,
html[dir="rtl"] .contact-form h2,
html[dir="rtl"] .cta-strip h2 {
  font-family: var(--font-arabic);
  font-weight: 600;
  letter-spacing: 0;
}
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .media-kicker,
html[dir="rtl"] .brand-detail-card .brand-country,
html[dir="rtl"] .client-category-head .count,
html[dir="rtl"] .news-card .tag,
html[dir="rtl"] .news-card .date,
html[dir="rtl"] .media-caption span,
html[dir="rtl"] .project-card .kv dt,
html[dir="rtl"] .contact-info dt {
  font-family: var(--font-arabic);
  letter-spacing: 0;
}
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .cta-strip .actions,
html[dir="rtl"] .header-cta,
html[dir="rtl"] .topbar-meta {
  direction: rtl;
}
html[dir="rtl"] .service-card .service-arrow,
html[dir="rtl"] .btn .arrow {
  display: inline-block;
}
html[dir="rtl"] .media-feature-copy,
html[dir="rtl"] .media-side-panel {
  align-items: flex-start;
}
html[dir="rtl"] .media-photo figcaption {
  left: 14px;
  right: 14px;
}
@media (max-width: 520px) {
  html[dir="rtl"] .display-1 {
    font-size: clamp(38px, 12vw, 50px);
    line-height: 1.18;
  }
  html[dir="rtl"] .hero h1 {
    max-width: 10ch;
    overflow-wrap: normal;
  }
  html[dir="rtl"] .hero-lead {
    line-height: 1.75;
  }
  html[dir="rtl"] .topbar {
    font-size: 11px;
  }
}

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .3s;
  cursor: pointer;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card .ph { border-radius: 0; border: none; aspect-ratio: 16/10; border-bottom: 1px solid var(--border); }
.news-card-body { padding: 24px; }
.news-card .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan-600);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.news-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--navy-800);
  margin: 12px 0 12px;
  line-height: 1.2;
  letter-spacing: -.005em;
}
.news-card p {
  font-size: 14px;
  color: var(--slate-700);
  margin: 0;
  line-height: 1.55;
}
.news-card .date {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate-500);
  letter-spacing: .08em;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}
.contact-info {
  background: var(--navy-900);
  color: var(--white);
  padding: 48px;
  border-radius: var(--r-lg);
  align-self: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  margin: 0 0 12px;
  letter-spacing: -.015em;
}
.contact-info p { color: var(--slate-300); margin: 0 0 40px; font-size: 15px; }
.contact-info dl {
  display: grid;
  gap: 24px;
  margin: 0;
}
.contact-info dt {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan-400);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-info dd {
  margin: 0;
  font-size: 16px;
  color: var(--white);
}
.contact-info dd a:hover { color: var(--cyan-400); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px;
  border-radius: var(--r-lg);
}
.contact-form h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  color: var(--navy-800);
  margin: 0 0 8px;
}
.contact-form .form-lead { color: var(--slate-500); margin: 0 0 32px; font-size: 14.5px; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-bottom: 20px;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: span 2; }
.form-field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-700);
  letter-spacing: .04em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--white);
  font: inherit;
  font-size: 14.5px;
  color: var(--fg);
  transition: all .2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: var(--shadow-glow);
}
.form-field textarea { min-height: 120px; resize: vertical; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
}

/* ===== SERVICES DETAIL PAGE ===== */
.service-detail {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-side .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan-600);
  letter-spacing: .12em;
}
.service-detail-side h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  color: var(--navy-800);
  margin: 12px 0 0;
  letter-spacing: -.02em;
  line-height: 1;
}
.service-detail-side .side-icon {
  margin-top: 32px;
  width: 64px; height: 64px;
  color: var(--cyan-500);
}
.service-detail-body p.lead {
  color: var(--slate-700);
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 32px;
}
.service-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 8px;
}
.service-features .feat {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.service-features .feat h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--navy-800);
  margin: 0 0 6px;
  letter-spacing: -.005em;
}
.service-features .feat p {
  font-size: 13.5px;
  color: var(--slate-700);
  margin: 0;
}
@media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-features { grid-template-columns: 1fr; }
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,169,222,.35), transparent 60%);
  border-radius: 50%;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 12px;
  letter-spacing: -.02em;
  line-height: 1.05;
  position: relative;
}
.cta-strip p {
  color: var(--slate-300);
  margin: 0;
  max-width: 50ch;
  position: relative;
}
.cta-strip .actions { display: flex; gap: 12px; position: relative; }
@media (max-width: 780px) {
  .cta-strip { grid-template-columns: 1fr; padding: 40px; }
  .cta-strip .actions { flex-wrap: wrap; }
}

/* ===== KSA MAP ===== */
.ksa-map-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.ksa-map-wrap svg { width: 100%; height: auto; }
.ksa-coverage h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  color: var(--navy-800);
  margin: 0 0 12px;
  letter-spacing: -.01em;
}
.ksa-coverage p { color: var(--slate-700); margin: 0 0 24px; }
.ksa-cities { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ksa-cities span {
  padding: 10px 14px;
  background: var(--cyan-50);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--navy-700);
  display: flex; align-items: center; gap: 8px;
  font-weight: 500;
}
.ksa-cities span::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--cyan-500);
  border-radius: 50%;
}
@media (max-width: 900px) { .ksa-map-wrap { grid-template-columns: 1fr; } }

/* section heading */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.section-head .heading { max-width: 40ch; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--navy-800);
  margin: 12px 0 0;
  letter-spacing: -.02em;
  line-height: 1.02;
}
.section-head p { color: var(--slate-700); font-size: 16px; max-width: 44ch; margin: 0; }
.dark-section .section-head h2 { color: var(--white); }
.dark-section .section-head p { color: var(--slate-300); }
@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* Page transition */
.page {
  display: none;
  animation: fadeIn .4s var(--ease-out);
}
.page.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
