/* ============================================================
   PROFESSIONAL OPINION — Premium Design System v2
   Style: Editorial Grid + Enterprise Gateway
   Colors: Trust Navy #0F172A + Premium Gold #CA8A04
   Type: Tajawal (unified across all languages)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --c-navy-900: #0F172A;
  --c-navy-800: #1E293B;
  --c-navy-700: #334155;
  --c-navy-600: #475569;
  --c-slate-500: #64748B;
  --c-slate-400: #94A3B8;
  --c-slate-300: #CBD5E1;
  --c-slate-200: #E2E8F0;
  --c-slate-100: #F1F5F9;
  --c-slate-50:  #F8FAFC;
  --c-white:     #FFFFFF;
  --c-ink:       #020617;

  --c-gold:      #CA8A04;
  --c-gold-600:  #A16207;
  --c-gold-400:  #EAB308;
  --c-gold-300:  #FACC15;
  --c-gold-100:  #FEF3C7;
  --c-gold-50:   #FFFBEB;

  /* Semantic */
  --c-bg:        var(--c-white);
  --c-bg-alt:    var(--c-slate-50);
  --c-bg-dark:   var(--c-navy-900);
  --c-bg-dark-2: #0A1224;
  --c-text:      var(--c-ink);
  --c-text-2:    var(--c-navy-800);
  --c-muted:     var(--c-slate-500);
  --c-muted-2:   var(--c-slate-400);
  --c-border:    var(--c-slate-200);
  --c-border-2:  var(--c-slate-300);

  /* Gradients */
  --grad-dark: linear-gradient(135deg, #0F172A 0%, #0A1224 100%);
  --grad-dark-blue: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
  --grad-gold: linear-gradient(135deg, #CA8A04 0%, #EAB308 100%);
  --grad-gold-soft: linear-gradient(135deg, #FEF3C7 0%, #FFFBEB 100%);
  --grad-radial-gold: radial-gradient(circle at 30% 50%, rgba(202,138,4,0.18), transparent 60%);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 32px 80px rgba(15, 23, 42, 0.18);
  --shadow-gold: 0 12px 36px rgba(202, 138, 4, 0.28);

  /* Radii */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 9999px;

  /* Layout */
  --container: 1280px;
  --container-narrow: 960px;
  --container-wide: 1440px;
  --header-h: 84px;
  --utility-h: 40px;
  --gutter: 32px;

  /* Typography — Tajawal everywhere (incl. Arabic, Latin headings/body) */
  --f-sans: 'Tajawal', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --f-serif: 'Tajawal', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --f-ar: 'Tajawal', system-ui, -apple-system, sans-serif;
  --f-zh: 'Tajawal', 'Noto Sans SC', system-ui, sans-serif;
  --f-mono: ui-monospace, 'Consolas', monospace;

  /* Type scale (fluid) */
  --fs-xs: clamp(0.75rem, 0.7rem + 0.15vw, 0.8125rem);
  --fs-sm: clamp(0.8125rem, 0.78rem + 0.2vw, 0.875rem);
  --fs-base: clamp(0.9375rem, 0.9rem + 0.25vw, 1rem);
  --fs-md: clamp(1rem, 0.95rem + 0.3vw, 1.0625rem);
  --fs-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.25rem);
  --fs-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --fs-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --fs-3xl: clamp(1.875rem, 1.5rem + 1.6vw, 2.5rem);
  --fs-4xl: clamp(2.25rem, 1.7rem + 2.5vw, 3.25rem);
  --fs-5xl: clamp(2.75rem, 2rem + 3.5vw, 4.5rem);
  --fs-6xl: clamp(3.5rem, 2.5rem + 5vw, 6rem);

  /* Motion */
  --t-fast: 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-base: 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-slow: 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-spring: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index scale */
  --z-base: 1;
  --z-content: 10;
  --z-sticky: 20;
  --z-nav: 30;
  --z-overlay: 40;
  --z-modal: 50;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }

html, body { font-family: 'Tajawal', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif !important; }

body {
  color: var(--c-text);
  background: var(--c-bg);
  font-size: var(--fs-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Force Tajawal on EVERY element across the entire site */
*, *::before, *::after,
h1, h2, h3, h4, h5, h6,
p, span, a, button, input, select, textarea,
.section-title, .hero-title, .logo-primary,
.case-card h3, .service-card h3, .team-card h4,
[class*="serif"] {
  font-family: 'Tajawal', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif !important;
}

html[lang="ar"] body,
html[lang="zh"] body { font-family: 'Tajawal', system-ui, sans-serif !important; }

img, svg, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; font-size: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--c-text);
}
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--c-gold); color: var(--c-navy-900); }

/* Focus */
:focus-visible {
  outline: 2.5px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout utilities ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }

.hidden-mobile { display: block; }
.hidden-desktop { display: none; }

.divider { height: 1px; background: var(--c-border); margin: 32px 0; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--c-gold);
  color: var(--c-navy-900);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  z-index: 100;
  font-weight: 600;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 8px; }

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.utility-bar {
  background: var(--c-navy-900);
  color: var(--c-slate-300);
  font-size: var(--fs-xs);
  height: var(--utility-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: var(--z-nav);
}
.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.utility-contact { display: flex; align-items: center; gap: 16px; }
.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t-fast);
}
.utility-link svg { opacity: 0.7; }
.utility-link:hover { color: var(--c-gold-300); }
.utility-link:hover svg { opacity: 1; }
.utility-divider { color: rgba(255,255,255,0.15); }

.utility-actions { display: flex; align-items: center; gap: 16px; }
.utility-network {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-gold-300);
  font-weight: 500;
}

.lang-switcher {
  display: inline-flex;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-full);
  padding: 3px;
}
.lang-btn {
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-slate-300);
  border-radius: var(--r-full);
  transition: all var(--t-fast);
  cursor: pointer;
}
.lang-btn.active { background: var(--c-gold); color: var(--c-navy-900); }
.lang-btn:hover:not(.active) { color: var(--c-white); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--t-fast), background var(--t-fast);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,0.98);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* ===== Full horizontal logo (real PNG with built-in EN+AR text) ===== */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  height: 100%;
}
.logo-full-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 100%;
  transition: transform var(--t-base), opacity var(--t-base);
  object-fit: contain;
}
.logo:hover .logo-full-img { transform: scale(1.03); }

/* Header logo size */
.site-header .logo-full-img { height: 54px; }

/* Footer logo (white version) */
.site-footer .logo-full-img { height: 50px; margin-bottom: 16px; }

/* Responsive sizes */
@media (max-width: 900px) {
  .site-header .logo-full-img { height: 44px; }
}
@media (max-width: 600px) {
  .site-header .logo-full-img { height: 38px; }
  .site-footer .logo-full-img { height: 42px; }
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
}
.main-nav > ul { display: flex; gap: 2px; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-navy-800);
  border-radius: var(--r-sm);
  transition: color var(--t-fast);
  position: relative;
}
.main-nav a:hover { color: var(--c-gold-600); }
.main-nav a.active { color: var(--c-gold-600); }
.main-nav a.has-mega::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 4px;
  opacity: 0.6;
  transition: transform var(--t-fast);
}
.main-nav li:hover > a.has-mega::after { transform: rotate(45deg) translateY(0px) translateX(2px); }

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 720px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
}
.main-nav li:hover > .mega-menu,
.main-nav li:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.mega-item {
  display: block;
  padding: 14px 16px;
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}
.mega-item:hover { background: var(--c-slate-50); }
.mega-item strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--c-navy-900);
  margin-bottom: 4px;
}
.mega-item span { font-size: 13px; color: var(--c-muted); line-height: 1.5; }

.mega-cta {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mega-cta a { color: var(--c-gold-600); font-weight: 600; font-size: 14px; }

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  border-radius: var(--r-sm);
}
.hamburger:hover { background: var(--c-slate-50); }
.hamburger span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--c-navy-900);
  border-radius: 2px;
  transition: all var(--t-base);
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--r-full);
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.btn:focus-visible { outline: 2.5px solid var(--c-gold); outline-offset: 3px; }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }

.btn-primary {
  background: var(--c-navy-900);
  color: var(--c-white);
  box-shadow: 0 4px 14px rgba(15,23,42,0.25);
}
.btn-primary:hover {
  background: var(--c-gold);
  color: var(--c-navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-gold {
  background: var(--c-gold);
  color: var(--c-navy-900);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--c-gold-400);
  transform: translateY(-2px);
  color: var(--c-navy-900);
}

.btn-ghost {
  background: transparent;
  color: var(--c-navy-900);
  border-color: var(--c-border-2);
}
.btn-ghost:hover {
  background: var(--c-navy-900);
  color: var(--c-white);
  border-color: var(--c-navy-900);
}
.btn-ghost-light {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost-light:hover {
  background: var(--c-white);
  color: var(--c-navy-900);
  border-color: var(--c-white);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-gold-600);
  font-weight: 600;
  font-size: 14.5px;
  transition: gap var(--t-fast), color var(--t-fast);
}
.btn-link:hover { gap: 10px; color: var(--c-gold); }
.btn-link svg { transition: transform var(--t-fast); }
.btn-link:hover svg { transform: translateX(2px); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 120px 0; position: relative; }
.section-sm { padding: 80px 0; }
.section-dark { background: var(--c-navy-900); color: var(--c-white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--c-white); }
.section-alt { background: var(--c-slate-50); }

.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head.left { margin: 0 0 56px; text-align: left; max-width: 880px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold-600);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--c-gold);
}
.eyebrow.light { color: var(--c-gold-300); }
.eyebrow.light::before { background: var(--c-gold-300); }
.eyebrow.center { justify-content: center; }

.section-title {
  font-family: var(--f-serif);
  font-size: var(--fs-4xl);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--c-navy-900);
}
.section-dark .section-title { color: var(--c-white); }
.section-sub {
  color: var(--c-muted);
  font-size: var(--fs-lg);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.section-head.left .section-sub { margin: 0; }
.section-dark .section-sub { color: var(--c-slate-300); }

/* ============================================================
   HERO (editorial)
   ============================================================ */
.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  color: var(--c-white);
  overflow: hidden;
  padding: 140px 0 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    var(--grad-radial-gold),
    radial-gradient(ellipse at 80% 90%, rgba(30,58,138,0.45), transparent 60%),
    linear-gradient(135deg, #0F172A 0%, #0A1224 50%, #0F172A 100%);
  z-index: 0;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero-image {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background: url('https://images.unsplash.com/photo-1578895101408-1a36b834405b?auto=format&fit=crop&w=2400&q=80') center/cover;
  opacity: 0;
  z-index: 1;
  mix-blend-mode: luminosity;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.6s ease-out;
  will-change: transform;
}
.hero.no-video .hero-image { opacity: 0.18; }

/* ===== McKinsey-style Services Page sections ===== */
.work-hero {
  background: var(--c-navy-900);
  color: var(--c-white);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.work-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(202,138,4,0.22), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.work-hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,58,138,0.6), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.work-hero .container { position: relative; z-index: 1; }
.work-hero h1 {
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 1100px;
  color: var(--c-white);
  margin-bottom: 28px;
}
.work-hero h1 .accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 700;
}
.work-hero .lead {
  font-size: var(--fs-xl);
  color: var(--c-slate-300);
  max-width: 760px;
}

/* In-page tabs */
.work-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 56px;
  overflow-x: auto;
  scrollbar-width: none;
}
.work-tabs::-webkit-scrollbar { display: none; }
.work-tab {
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-muted);
  border: 0;
  background: transparent;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.work-tab:hover { color: var(--c-navy-900); }
.work-tab.active {
  color: var(--c-navy-900);
  border-bottom-color: var(--c-gold);
}

/* Capabilities grid (McKinsey-style) */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cap-card {
  background: var(--c-white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all var(--t-base);
  position: relative;
  min-height: 240px;
}
.cap-card:hover {
  background: var(--c-navy-900);
  color: var(--c-white);
}
.cap-card .num {
  font-family: 'Tajawal', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--c-gold-600);
  margin-bottom: 18px;
}
.cap-card:hover .num { color: var(--c-gold-300); }
.cap-card h3 {
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--c-navy-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.cap-card:hover h3 { color: var(--c-white); }
.cap-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0 0 20px;
  flex-grow: 1;
}
.cap-card:hover p { color: var(--c-slate-300); }
.cap-card .arrow {
  font-size: 24px;
  color: var(--c-gold-600);
  font-weight: 400;
  transition: transform var(--t-base);
}
.cap-card:hover .arrow { color: var(--c-gold-300); transform: translateX(8px); }
html[dir="rtl"] .cap-card:hover .arrow { transform: translateX(-8px); }

/* Industries grid — image-based McKinsey style */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ind-tile {
  position: relative;
  aspect-ratio: 1 / 1.15;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--t-base);
  background: var(--c-navy-800);
}
.ind-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ind-tile-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.ind-tile:hover .ind-tile-img { transform: scale(1.08); }
.ind-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.1) 30%, rgba(15,23,42,0.85) 100%);
  z-index: 1;
}
.ind-tile-body {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 2;
  padding: 20px 22px;
  color: var(--c-white);
}
.ind-tile-body h4 {
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--c-white);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.ind-tile-body span {
  font-size: 12.5px;
  color: var(--c-slate-300);
  letter-spacing: 0.04em;
}

/* Featured themes (Vision 2030, etc.) */
.themes-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 20px;
}
.theme-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  color: var(--c-white);
  text-decoration: none;
  background-size: cover;
  background-position: center;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  min-height: 220px;
}
.theme-card.big { grid-row: span 2; min-height: 460px; }
.theme-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.1) 20%, rgba(15,23,42,0.85) 100%);
  z-index: 1;
}
.theme-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.theme-card > * { position: relative; z-index: 2; }
.theme-card .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold-300);
  margin-bottom: 8px;
}
.theme-card h3 {
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.2;
  color: var(--c-white);
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.theme-card.big h3 { font-size: 36px; }
.theme-card p {
  font-size: 14px;
  color: var(--c-slate-200);
  margin: 0;
  line-height: 1.5;
  max-width: 480px;
}

/* Our work in numbers (McKinsey-style) */
.workimpact {
  background: var(--c-slate-50);
  padding: 100px 0;
}
.workimpact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.workimpact-grid h2 {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--c-navy-900);
}
.workimpact-grid h2 strong { color: var(--c-gold-600); font-weight: 800; }
.workimpact-stat strong {
  display: block;
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 56px);
  color: var(--c-navy-900);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.workimpact-stat span {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.5;
}

/* Responsive for new sections */
@media (max-width: 1100px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
  .themes-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .theme-card.big { grid-row: auto; grid-column: span 2; min-height: 280px; }
  .workimpact-grid { grid-template-columns: 1fr 1fr; }
  .workimpact-grid h2 { grid-column: span 2; margin-bottom: 16px; }
}
@media (max-width: 700px) {
  .cap-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .themes-grid { grid-template-columns: 1fr; }
  .theme-card.big { grid-column: auto; }
  .workimpact-grid { grid-template-columns: 1fr; gap: 24px; }
  .workimpact-grid h2 { grid-column: auto; }
}

/* ===== Hero video (YouTube) background ===== */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  background: var(--c-navy-900);
}
.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;          /* 16:9 (100vw * 9/16) */
  min-height: 100%;
  min-width: 177.78vh;      /* 16:9 inverse */
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  opacity: 0.85;
}
.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,23,42,0.45) 0%, rgba(15,23,42,0.35) 30%, rgba(15,23,42,0.5) 70%, rgba(10,18,36,0.88) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(202,138,4,0.18), transparent 55%);
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video iframe { display: none; }
  .hero.has-video .hero-image { opacity: 0.18; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-image { transition: none; transform: none !important; }
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 980px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(202,138,4,0.4);
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  color: var(--c-slate-100);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-gold-300);
  box-shadow: 0 0 0 4px rgba(234,179,8,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234,179,8,0.45); }
  50% { box-shadow: 0 0 0 8px rgba(234,179,8,0); }
}

.hero-title {
  font-family: var(--f-serif);
  font-size: var(--fs-6xl);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--c-white);
}
.hero-title .accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
}
.hero-subtitle {
  font-size: var(--fs-xl);
  line-height: 1.6;
  color: #C5D2E2;
  max-width: 700px;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 80px; }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 820px;
}
.trust-item strong {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(36px, 4vw, 44px);
  font-weight: 600;
  color: var(--c-gold-300);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.trust-item span {
  font-size: 13px;
  color: #B6C4D8;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 16px;
  z-index: 3;
  transition: border-color var(--t-fast);
}
.hero-scroll:hover { border-color: var(--c-gold-300); }
.hero-scroll span {
  display: block;
  width: 3px; height: 8px;
  background: var(--c-gold-300);
  border-radius: 2px;
  margin: 8px auto 0;
  animation: scroll 1.8s ease-in-out infinite;
}
@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--grad-dark);
  color: var(--c-white);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: var(--grad-radial-gold);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--f-serif);
  font-size: var(--fs-5xl);
  color: var(--c-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  max-width: 880px;
}
.page-hero .lead {
  color: var(--c-slate-300);
  font-size: var(--fs-xl);
  max-width: 760px;
  line-height: 1.55;
}

/* Breadcrumbs */
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--c-slate-400);
  flex-wrap: wrap;
}
.crumbs a { color: var(--c-slate-300); transition: color var(--t-fast); }
.crumbs a:hover { color: var(--c-gold-300); }
.crumbs span.sep { opacity: 0.5; }
.crumbs .current { color: var(--c-gold-300); }

/* ============================================================
   TRUST STRIP / NETWORK
   ============================================================ */
.trust-strip {
  background: var(--c-white);
  padding: 56px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.trust-strip-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted-2);
  margin-bottom: 32px;
}
.trust-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 20px;
  background: var(--c-slate-50);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: all var(--t-base);
  min-height: 120px;
  justify-content: center;
}
.trust-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-gold);
  background: var(--c-white);
}
.trust-pill-badge {
  height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 6px rgba(15,23,42,0.08));
}
.trust-pill strong {
  font-family: 'Tajawal', sans-serif;
  font-size: 15px;
  color: var(--c-navy-900);
  margin-bottom: 4px;
  font-weight: 700;
}
.trust-pill span {
  font-size: 11.5px;
  color: var(--c-muted);
  line-height: 1.45;
}

/* HLB roundel display (used in hlb-band + hlb-network page) */
.hlb-roundel-img {
  display: block;
  width: 240px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 12px 32px rgba(20,108,118,0.25));
  transition: transform var(--t-base);
}
.hlb-roundel-img:hover { transform: scale(1.04) rotate(2deg); }

/* HLB Logo (blue brand mark, used as inline accent) */
.hlb-brand-mark {
  display: inline-block;
  height: 64px;
  width: auto;
  vertical-align: middle;
  margin-right: 14px;
}
html[dir="rtl"] .hlb-brand-mark { margin-right: 0; margin-left: 14px; }
.hlb-brand-mark.lg { height: 96px; }
.hlb-brand-mark.sm { height: 36px; }
.section-dark .hlb-brand-mark { filter: brightness(0) invert(1); }

/* ============================================================
   INDUSTRIES STRIP
   ============================================================ */
.industries-strip {
  background: var(--c-navy-900);
  color: var(--c-white);
  padding: 56px 0;
  overflow: hidden;
}
.industries-strip-head {
  text-align: center;
  margin-bottom: 32px;
}
.industries-strip-head p {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-300);
  margin: 0;
}
.industries-track {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.industry-tag {
  font-family: var(--f-serif);
  font-size: 22px;
  color: var(--c-slate-300);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  position: relative;
}
.industry-tag::after {
  content: '·';
  position: absolute;
  right: -32px;
  color: var(--c-gold-300);
  font-size: 24px;
}
.industry-tag:last-child::after { display: none; }

/* ============================================================
   ABOUT / SPLIT LAYOUTS
   ============================================================ */
.split-2 {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.split-2.equal { grid-template-columns: 1fr 1fr; }
.split-2.flip { grid-template-columns: 1fr 1.3fr; }

.lead {
  font-size: var(--fs-xl);
  line-height: 1.55;
  color: var(--c-navy-800);
  font-weight: 500;
  margin-bottom: 24px;
}
.section-dark .lead { color: var(--c-slate-100); }

.prose p {
  font-size: var(--fs-md);
  color: var(--c-navy-700);
  line-height: 1.75;
  margin-bottom: 18px;
}
.prose strong { color: var(--c-navy-900); font-weight: 600; }
.prose ul { margin: 16px 0; }
.prose ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--c-navy-700);
  font-size: var(--fs-md);
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 12px; height: 1px;
  background: var(--c-gold);
}

/* Pillar / value cards */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.pillar {
  padding: 28px;
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--c-gold);
  transform: scaleY(0.4);
  transform-origin: top;
  transition: transform var(--t-base);
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.pillar:hover::before { transform: scaleY(1); }
.pillar-icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-gold-50);
  color: var(--c-gold-600);
  border-radius: var(--r-md);
  margin-bottom: 16px;
}
.pillar h4 {
  font-size: var(--fs-lg);
  margin-bottom: 8px;
  color: var(--c-navy-900);
  font-weight: 600;
}
.pillar p {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  margin: 0;
  line-height: 1.6;
}

/* Sidebar card */
.feature-card {
  background: var(--grad-dark);
  color: var(--c-white);
  padding: 44px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 120px;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 400px; height: 400px;
  background: var(--grad-radial-gold);
  border-radius: 50%;
  pointer-events: none;
}
.feature-card > * { position: relative; z-index: 1; }
.feature-card h3 {
  color: var(--c-gold-300);
  font-family: var(--f-serif);
  font-size: var(--fs-2xl);
  margin-bottom: 16px;
}
.feature-card p {
  color: var(--c-slate-300);
  font-size: var(--fs-md);
  line-height: 1.65;
}
.feature-card hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 28px 0;
}
.card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.card-stats > div {
  background: rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.08);
}
.card-stats strong {
  display: block;
  font-family: var(--f-serif);
  font-size: 28px;
  color: var(--c-gold-300);
  line-height: 1;
  margin-bottom: 4px;
  font-weight: 600;
}
.card-stats span {
  font-size: 12.5px;
  color: var(--c-slate-300);
  letter-spacing: 0.02em;
}

/* ============================================================
   STATS BANNER
   ============================================================ */
.stats-banner {
  position: relative;
  color: var(--c-white);
  padding: 100px 0;
  overflow: hidden;
}
.stats-bg {
  position: absolute; inset: 0;
  background: var(--grad-dark);
  z-index: 0;
}
.stats-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(202,138,4,0.12), transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(30,58,138,0.45), transparent 50%);
}
.stats-banner .container { position: relative; z-index: 1; }
.stats-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.stats-head h2 {
  color: var(--c-white);
  font-family: var(--f-serif);
  font-size: var(--fs-3xl);
  font-weight: 600;
  margin-bottom: 12px;
}
.stats-head p { color: var(--c-slate-300); font-size: var(--fs-lg); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.stat {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  transition: all var(--t-base);
}
.stat:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 12px 30px rgba(202,138,4,0.18);
}
.stat-num {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}
.stat strong {
  font-family: var(--f-serif);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 600;
  color: var(--c-gold-300);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .stat-suffix {
  color: var(--c-gold-300);
  font-family: var(--f-serif);
  font-size: 28px;
  font-weight: 500;
}
.stat label {
  display: block;
  font-size: 13px;
  color: var(--c-slate-300);
  letter-spacing: 0.02em;
  line-height: 1.45;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--c-white);
  padding: 40px 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--f-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-gold-600);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.service-icon {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-gold-50);
  color: var(--c-gold-600);
  border-radius: var(--r-md);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--f-serif);
  font-size: var(--fs-xl);
  margin-bottom: 12px;
  color: var(--c-navy-900);
  letter-spacing: -0.01em;
}
.service-card > p {
  color: var(--c-muted);
  font-size: var(--fs-sm);
  margin-bottom: 20px;
  line-height: 1.65;
  flex-grow: 1;
}
.service-card ul {
  margin-bottom: 20px;
}
.service-card ul li {
  padding: 8px 0;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--c-navy-700);
  border-top: 1px solid var(--c-border);
  position: relative;
}
.service-card ul li:first-child { border-top: none; }
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 1px;
  background: var(--c-gold);
}
.service-card .btn-link {
  margin-top: auto;
}

/* Service detail page */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.service-feature {
  padding: 22px;
  background: var(--c-slate-50);
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
}
.service-feature h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-navy-900);
  margin-bottom: 6px;
}
.service-feature p {
  font-size: 13.5px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.55;
}

.service-process {
  margin: 48px 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.process-step {
  padding: 24px;
  border-left: 3px solid var(--c-gold);
  background: var(--c-slate-50);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.process-step-num {
  font-family: var(--f-serif);
  font-size: 14px;
  color: var(--c-gold-600);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.process-step h5 {
  font-size: 16px;
  color: var(--c-navy-900);
  margin-bottom: 6px;
}
.process-step p {
  font-size: 13.5px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   CASES / INSIGHTS
   ============================================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.case-tall { grid-row: span 2; }
.case-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform var(--t-slow);
}
.case-card:hover .case-img { transform: scale(1.04); }
.case-tall .case-img { height: 360px; }
.case-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.05) 0%, rgba(15,23,42,0.55) 100%);
}

.case-img-1 { background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=900&q=80'); }
.case-img-2 { background-image: url('https://images.unsplash.com/photo-1565043666747-69f6646db940?auto=format&fit=crop&w=900&q=80'); }
.case-img-3 { background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=900&q=80'); }
.case-img-4 { background-image: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?auto=format&fit=crop&w=900&q=80'); }
.case-img-5 { background-image: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=900&q=80'); }

.case-body { padding: 24px 28px 28px; flex-grow: 1; display: flex; flex-direction: column; }
.case-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold-600);
  background: var(--c-gold-50);
  padding: 5px 12px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
.case-card h3 {
  font-family: var(--f-serif);
  font-size: var(--fs-lg);
  color: var(--c-navy-900);
  line-height: 1.3;
  margin-bottom: 10px;
}
.case-card p {
  color: var(--c-muted);
  font-size: 14px;
  margin-bottom: 16px;
  flex-grow: 1;
  line-height: 1.6;
}
.case-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
  font-size: 12.5px;
  color: var(--c-muted-2);
}

/* Case detail */
.case-detail-hero {
  background: var(--grad-dark);
  color: var(--c-white);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.case-detail-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 700px; height: 700px;
  background: var(--grad-radial-gold);
  border-radius: 50%;
}
.case-detail-hero .container { position: relative; z-index: 1; max-width: 960px; }
.case-detail-hero h1 {
  font-family: var(--f-serif);
  font-size: var(--fs-5xl);
  color: var(--c-white);
  margin: 16px 0 20px;
}
.case-detail-hero .lead {
  color: var(--c-slate-300);
  font-size: var(--fs-xl);
  line-height: 1.55;
}
.case-meta-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 40px;
}
.case-meta-bar > div span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold-300);
  margin-bottom: 6px;
}
.case-meta-bar > div strong {
  display: block;
  font-family: var(--f-serif);
  font-size: 20px;
  color: var(--c-white);
}

.case-content { padding: 80px 0; max-width: 760px; margin: 0 auto; }
.case-content h2 {
  font-family: var(--f-serif);
  font-size: var(--fs-2xl);
  margin: 40px 0 16px;
  color: var(--c-navy-900);
}
.case-content p, .case-content li {
  font-size: var(--fs-md);
  line-height: 1.75;
  color: var(--c-navy-700);
}
.case-content ul { margin: 16px 0; }
.case-content ul li {
  padding: 6px 0 6px 24px;
  position: relative;
}
.case-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 12px; height: 1px;
  background: var(--c-gold);
}
.case-content blockquote {
  border-left: 4px solid var(--c-gold);
  padding: 16px 28px;
  margin: 32px 0;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: var(--fs-xl);
  color: var(--c-navy-900);
  background: var(--c-gold-50);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

/* ============================================================
   LEADERSHIP / TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--c-white);
  padding: 36px 28px;
  border-radius: var(--r-lg);
  text-align: center;
  border: 1px solid var(--c-border);
  transition: all var(--t-base);
  position: relative;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-gold);
}
.team-lead {
  background: var(--grad-dark);
  color: var(--c-white);
  border-color: transparent;
  grid-column: span 2;
  text-align: left;
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 40px;
}
.team-lead h4 { color: var(--c-white); font-size: var(--fs-xl); }
.team-lead .team-title { color: var(--c-gold-300); }
.team-lead .team-bio { color: var(--c-slate-300); font-size: var(--fs-sm); margin-top: 8px; }

.team-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--grad-gold);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--c-navy-900);
  position: relative;
  box-shadow: 0 8px 24px rgba(202,138,4,0.3);
  flex-shrink: 0;
}
.team-avatar::before { content: attr(data-initials); }
.team-lead .team-avatar {
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.08);
  color: var(--c-gold-300);
  box-shadow: inset 0 0 0 2px var(--c-gold-300);
  margin: 0;
  font-size: 38px;
}
.team-card h4 {
  font-size: var(--fs-md);
  margin-bottom: 4px;
  color: var(--c-navy-900);
}
.team-title {
  font-size: 13px;
  color: var(--c-muted);
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--grad-dark);
  color: var(--c-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: var(--grad-radial-gold);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.cta-inner > div { flex: 1; min-width: 320px; }
.cta-band h2 {
  font-family: var(--f-serif);
  font-size: var(--fs-3xl);
  color: var(--c-white);
  margin-bottom: 12px;
  max-width: 760px;
  line-height: 1.2;
}
.cta-band p {
  color: var(--c-slate-300);
  font-size: var(--fs-lg);
  margin: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form {
  background: var(--c-white);
  padding: 48px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; margin-bottom: 22px; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-navy-900);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-field label .required { color: var(--c-gold-600); }
.form-field input,
.form-field select,
.form-field textarea {
  font-size: var(--fs-base);
  padding: 14px 16px;
  background: var(--c-white);
  border: 1.5px solid var(--c-border-2);
  border-radius: var(--r-sm);
  color: var(--c-navy-900);
  transition: all var(--t-fast);
  width: 100%;
  font-family: inherit;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--c-muted-2); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 4px rgba(202,138,4,0.12);
}
/* (textarea resize merged into the main .form-field textarea rule above) */
.form-consent {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.55;
}
.form-consent a { color: var(--c-gold-600); }
.form-status {
  font-size: 14px;
  margin-top: 12px;
  min-height: 22px;
  padding: 8px 14px;
  border-radius: var(--r-sm);
}
.form-status.success { color: #15803D; background: #DCFCE7; }
.form-status.error { color: #B91C1C; background: #FEE2E2; }

.contact-info {
  background: var(--grad-dark);
  color: var(--c-white);
  padding: 48px;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  top: -30%; right: -30%;
  width: 400px; height: 400px;
  background: var(--grad-radial-gold);
  border-radius: 50%;
}
.contact-info > * { position: relative; z-index: 1; }
.contact-info h3 {
  color: var(--c-gold-300);
  font-family: var(--f-serif);
  font-size: var(--fs-2xl);
  margin-bottom: 28px;
}
.info-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14.5px;
  align-items: start;
}
.info-row:last-of-type { border-bottom: none; }
.info-label {
  color: var(--c-gold-300);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 2px;
}
.info-val {
  color: var(--c-slate-100);
  line-height: 1.55;
}
.info-val a {
  color: var(--c-slate-100);
  transition: color var(--t-fast);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.info-val a:hover { color: var(--c-gold-300); border-color: var(--c-gold-300); }

.info-map {
  margin-top: 24px;
  border-radius: var(--r-md);
  overflow: hidden;
  height: 220px;
  border: 1px solid rgba(255,255,255,0.1);
}
.info-map iframe {
  width: 100%; height: 100%; border: none;
  filter: grayscale(0.4) brightness(0.95);
}

/* Office hours / channels block */
.contact-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.contact-channel {
  text-align: center;
  padding: 28px 20px;
  background: var(--c-slate-50);
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  transition: all var(--t-base);
}
.contact-channel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-gold);
}
.contact-channel-icon {
  width: 48px; height: 48px;
  background: var(--c-gold-50);
  color: var(--c-gold-600);
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.contact-channel h5 {
  font-size: 16px;
  color: var(--c-navy-900);
  margin-bottom: 4px;
}
.contact-channel p {
  font-size: 13.5px;
  color: var(--c-muted);
  margin: 0;
}

/* ============================================================
   HLB NETWORK BAND
   ============================================================ */
.hlb-band {
  background: var(--c-slate-50);
  padding: 80px 0;
}
.hlb-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.hlb-rank {
  font-family: var(--f-serif);
  text-align: center;
  padding: 48px 32px;
  background: var(--c-white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}
.hlb-rank .num {
  display: block;
  font-size: clamp(80px, 10vw, 120px);
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 0.9;
  margin-bottom: 8px;
}
.hlb-rank .ord {
  display: block;
  font-size: 18px;
  color: var(--c-navy-900);
  font-weight: 600;
  margin-bottom: 6px;
}
.hlb-rank .ord small {
  font-size: 13px;
  color: var(--c-muted);
  display: block;
  font-weight: 400;
  margin-top: 6px;
  font-family: var(--f-sans);
  font-style: normal;
}

.hlb-content h2 {
  font-family: var(--f-serif);
  font-size: var(--fs-3xl);
  margin-bottom: 16px;
}
.hlb-content p {
  font-size: var(--fs-md);
  color: var(--c-navy-700);
  line-height: 1.75;
  margin-bottom: 16px;
}
.hlb-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--c-border);
}
.hlb-stat strong {
  display: block;
  font-family: var(--f-serif);
  font-size: 28px;
  color: var(--c-navy-900);
  line-height: 1;
  margin-bottom: 6px;
}
.hlb-stat span {
  font-size: 13px;
  color: var(--c-muted);
  letter-spacing: 0.02em;
}

/* ============================================================
   INDUSTRIES PAGE GRID
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.industry-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.industry-card-img {
  height: 180px;
  margin: -32px -32px 24px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.industry-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0) 30%, rgba(15,23,42,0.55) 100%);
}
.industry-card h3 {
  font-family: var(--f-serif);
  font-size: var(--fs-xl);
  margin-bottom: 10px;
  color: var(--c-navy-900);
}
.industry-card p {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-bg-dark-2);
  color: var(--c-slate-300);
  padding: 80px 0 32px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-primary { color: var(--c-white); }
.footer-brand .logo-sub { color: var(--c-gold-300); }
.footer-brand p {
  max-width: 340px;
  line-height: 1.7;
  font-size: 14px;
}
/* ============================================================
   PREMIUM ANIMATIONS v5 — GSAP + Lenis + Splitting support
   ============================================================ */

/* Lenis smooth-scroll setup */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* Splitting.js — word reveal base */
.splitting .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.splitting .char {
  display: inline-block;
}

/* When GSAP controls reveal, pre-disable old [data-aos] effects */
.hero [data-aos], .page-hero [data-aos], .work-hero [data-aos],
.case-detail-hero [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

/* Link underline draw (animated on hover) */
.link-draw {
  position: relative;
}
.link-draw::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.link-draw:hover::after {
  transform: scaleX(1);
}
html[dir="rtl"] .link-draw::after {
  transform-origin: right center;
}

/* GPU hints */
.btn-gold, .btn-magnetic, .nav-cta { will-change: transform; }
.tilt, .service-card, .cap-card, .award-card, .testimonial {
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-video { will-change: transform; }

/* GSAP-driven hero — start invisible to avoid flash before timeline */
.hero-title, .hero-badge, .hero-subtitle, .hero-ctas, .hero-trust {
  opacity: 0;
}

/* prefers-reduced-motion — make everything visible immediately */
@media (prefers-reduced-motion: reduce) {
  .hero-title, .hero-badge, .hero-subtitle, .hero-ctas, .hero-trust { opacity: 1 !important; }
  .splitting .word { overflow: visible; }
  .link-draw::after { display: none; }
}

/* Fallback: if JS doesn't load within 4s, force visible (handled by JS body class) */
.hero-loaded .hero-title, .hero-loaded .hero-badge, .hero-loaded .hero-subtitle,
.hero-loaded .hero-ctas, .hero-loaded .hero-trust { opacity: 1; }

/* ===== Utility classes (added during design review v4) ===== */

/* Block-level button (replaces inline style="width:100%") */
.btn-block { width: 100%; }

/* Smaller section title modifier */
.section-title--sm { font-size: var(--fs-2xl) !important; }
.section-title--md { font-size: var(--fs-3xl) !important; }

/* Service detail inline H3 normalization (single canonical style) */
.svc-h3 {
  margin-top: 48px;
  font-family: 'Tajawal', sans-serif;
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--c-navy-900);
  letter-spacing: -0.01em;
}
.svc-h3.first { margin-top: 40px; }

/* Affiliation card (HLB roundel + label) — reusable */
.aff-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.aff-card img { height: 80px; width: auto; flex-shrink: 0; }
.aff-card strong {
  display: block;
  color: var(--c-gold-300);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 700;
}
.aff-card span {
  color: var(--c-white);
  font-size: 14px;
  line-height: 1.5;
}

/* RTL: cap-card arrow glyph flip */
html[dir="rtl"] .cap-card .arrow { transform: scaleX(-1); }
html[dir="rtl"] .cap-card:hover .arrow { transform: scaleX(-1) translateX(8px); }

/* RTL: skip-link */
html[dir="rtl"] .skip-link { left: auto; right: 8px; }

/* RTL: mega-menu caret */
html[dir="rtl"] .main-nav a.has-mega::after {
  margin-left: 0;
  margin-right: 4px;
}

/* RTL: team-lead and mobile cta-inner text alignment */
html[dir="rtl"] .team-lead { text-align: right; }
@media (max-width: 900px) {
  html[dir="rtl"] .cta-inner { text-align: right; align-items: flex-end; }
}

/* Touch target uplift (a11y — min 44x44) */
.footer-social { width: 44px !important; height: 44px !important; }
.hero-scroll { width: 44px; }
.blog-share a { width: 44px; height: 44px; }
.lang-btn { min-height: 32px; }            /* Header utility bar — secondary, kept compact */
.footer-langs button { min-height: 40px; padding: 10px 18px; }

/* Logo size — keep header > footer in visual hierarchy */
@media (max-width: 900px) {
  .site-header .logo-full-img { height: 44px; }
  .site-footer .logo-full-img { height: 38px; }   /* was 50px — now smaller than header */
}
@media (max-width: 600px) {
  .site-header .logo-full-img { height: 38px; }
  .site-footer .logo-full-img { height: 34px; }
}

/* Mega-menu — narrower min-width to fit tablet viewports */
@media (max-width: 1100px) {
  .mega-menu { min-width: 600px; }
}

/* ===== Phone numbers — always LTR even in RTL pages ===== */
.phone-num {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
}
html[dir="rtl"] .phone-num { text-align: right; }
html[dir="rtl"] .footer-contact .phone-num { text-align: right; display: inline-block; }
html[dir="rtl"] .info-val.phone-num { text-align: right; display: inline-block; }
/* Force lookup of LTR for any link with tel: href */
a[href^="tel:"],
a[href^="mailto:"] {
  direction: ltr;
  unicode-bidi: embed;
}

.footer-affiliation {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  max-width: 360px;
}
.footer-hlb-logo {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}
/* RTL — the box itself is fine but the inner text alignment needs explicit RTL */
html[dir="rtl"] .footer-affiliation > div { text-align: right; }
.footer-socials {
  margin-top: 24px;
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.06);
  color: var(--c-slate-300);
  transition: all var(--t-fast);
}
.footer-social:hover {
  background: var(--c-gold);
  color: var(--c-navy-900);
  transform: translateY(-2px);
}

.footer-col h5 {
  color: var(--c-white);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul li { padding: 6px 0; }
.footer-col ul li a { transition: color var(--t-fast); font-size: 14px; }
.footer-col ul li a:hover { color: var(--c-gold-300); }
.footer-contact li {
  line-height: 1.6;
  padding: 8px 0;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--c-slate-400);
  flex-wrap: wrap;
}
.footer-langs { display: flex; gap: 10px; flex-shrink: 0; }
.footer-langs button {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-slate-300);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  transition: all var(--t-fast);
  cursor: pointer;
  background: transparent;
  font-family: inherit;
}
.footer-langs button:hover {
  color: var(--c-gold-300);
  border-color: var(--c-gold-300);
}
.footer-bottom p { margin: 0; flex: 1; }

/* RTL footer adjustments */
html[dir="rtl"] .footer-grid { direction: rtl; }
html[dir="rtl"] .footer-col,
html[dir="rtl"] .footer-brand,
html[dir="rtl"] .footer-bottom { text-align: right; }
html[dir="rtl"] .footer-bottom { direction: rtl; }
html[dir="rtl"] .footer-langs { direction: ltr; }   /* lang button order stays EN, AR, ZH */
html[dir="rtl"] .footer-affiliation { flex-direction: row-reverse; }
html[dir="rtl"] .footer-affiliation > div { text-align: right; }
html[dir="rtl"] .footer-contact li { direction: rtl; text-align: right; }
html[dir="rtl"] .footer-contact a { direction: ltr; display: inline-block; }
html[dir="rtl"] .footer-socials { justify-content: flex-start; }
html[dir="rtl"] .footer-bottom p { text-align: right; }

@media (max-width: 900px) {
  html[dir="rtl"] .footer-affiliation { flex-direction: row-reverse; max-width: 100%; }
}

/* ============================================================
   ANIMATIONS / AOS-lite
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
[data-aos="fade-left"] { transform: translateX(28px); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="zoom-in"] { transform: scale(0.96); }
[data-aos].in-view { opacity: 1; transform: none; }

/* ============================================================
   RTL
   ============================================================ */
html[dir="rtl"] .eyebrow::before { margin-left: 10px; }
html[dir="rtl"] .pillar::before { left: auto; right: 0; }
html[dir="rtl"] .service-card ul li,
html[dir="rtl"] .case-content ul li,
html[dir="rtl"] .prose ul li { padding-left: 0; padding-right: 24px; }
html[dir="rtl"] .service-card ul li::before,
html[dir="rtl"] .case-content ul li::before,
html[dir="rtl"] .prose ul li::before { left: auto; right: 0; }
html[dir="rtl"] .case-content blockquote { border-left: none; border-right: 4px solid var(--c-gold); border-radius: var(--r-md) 0 0 var(--r-md); }
html[dir="rtl"] .industry-tag::after { right: auto; left: -32px; }
html[dir="rtl"] .btn-link svg { transform: scaleX(-1); }
html[dir="rtl"] .btn-link:hover svg { transform: scaleX(-1) translateX(2px); }
html[dir="rtl"] .process-step { border-left: none; border-right: 3px solid var(--c-gold); border-radius: var(--r-md) 0 0 var(--r-md); }
html[dir="rtl"] .case-content blockquote,
html[dir="rtl"] .pillar { text-align: right; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .case-tall { grid-row: auto; }
  .case-tall .case-img { height: 220px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .team-lead { grid-column: span 3; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col:nth-child(4) { grid-column: span 3; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-2 { grid-template-columns: 1fr; gap: 40px; }
  .feature-card { position: static; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--c-white);
    box-shadow: var(--shadow-lg);
    padding: 16px 24px 24px;
    border-top: 1px solid var(--c-border);
    max-height: calc(100vh - var(--header-h) - var(--utility-h));
    overflow-y: auto;
  }
  .main-nav.open ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav.open ul li a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--c-border);
    font-size: 16px;
  }
  .main-nav.open .mega-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    padding: 8px 0 16px;
    min-width: 0;
  }
  .main-nav.open .mega-grid { grid-template-columns: 1fr; gap: 0; }
  .main-nav.open .mega-item { padding: 10px 16px; }
  .main-nav.open .mega-cta { display: none; }

  .pillars { grid-template-columns: 1fr; }
  .card-stats { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .footer-col:nth-child(4) { grid-column: span 2; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 80px 0; }
  .section-sm { padding: 56px 0; }
  .hero { min-height: 640px; padding: 100px 0 80px; }
  .page-hero { padding: 100px 0 60px; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .service-features { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .hlb-grid { grid-template-columns: 1fr; gap: 32px; }
  .hlb-stats { grid-template-columns: repeat(2, 1fr); }
  .team-lead { flex-direction: column; align-items: flex-start; text-align: center; padding: 32px; }
  .team-lead .team-avatar { margin: 0 auto; }

  .contact-form, .contact-info { padding: 32px 24px; }
  .contact-extra { grid-template-columns: 1fr; }
  .case-meta-bar { grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 600px) {
  .utility-contact { font-size: 11.5px; gap: 10px; }
  .utility-contact .utility-link:nth-child(3),
  .utility-contact .utility-divider:nth-of-type(2) { display: none; }
  .logo-sub { display: none; }
  .logo-primary { font-size: 17px; }
  .services-grid,
  .cases-grid,
  .team-grid,
  .industries-grid { grid-template-columns: 1fr; }
  .team-lead { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-col:nth-child(4) { grid-column: span 1; }
  .case-meta-bar { grid-template-columns: 1fr; gap: 16px; padding: 24px 0; }
  .process-steps { grid-template-columns: 1fr; }
  .trust-logos { grid-template-columns: 1fr 1fr; gap: 12px; }
  .industries-track { gap: 24px; }
  .industry-tag { font-size: 18px; }
  .industry-tag::after { right: -16px; }
  html[dir="rtl"] .industry-tag::after { left: -16px; right: auto; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .utility-bar, .hero-scroll, .cta-band, .site-footer, .nav-cta, .hamburger { display: none !important; }
  body { font-size: 11pt; }
  .section { padding: 24px 0; }
  a { color: inherit; text-decoration: underline; }
}

/* ============================================================
   ENHANCED ANIMATIONS & "LIVE" COMPONENTS v3
   ============================================================ */

/* ---------- Scroll progress bar (top of viewport) ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--c-gold-300) 0%, var(--c-gold) 50%, var(--c-gold-600) 100%);
  z-index: 200;
  transition: width 0.1s linear;
  box-shadow: 0 0 14px rgba(202, 138, 4, 0.6);
}

/* ---------- Hero canvas / animated dot grid background ---------- */
.hero-canvas {
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.45;
  pointer-events: none;
}

/* ---------- Animated gradient backdrop ---------- */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  animation: orbFloat 18s ease-in-out infinite;
}
.gradient-orb.gold {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #CA8A04 0%, transparent 70%);
  top: -120px; right: -100px;
}
.gradient-orb.blue {
  width: 560px; height: 560px;
  background: radial-gradient(circle, #1E3A8A 0%, transparent 70%);
  bottom: -140px; left: -120px;
  animation-delay: -8s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.1); }
  66% { transform: translate(-40px, 60px) scale(0.95); }
}

/* ---------- Marquee logos ---------- */
.marquee {
  overflow: hidden;
  position: relative;
  padding: 16px 0;
  --marquee-gap: 80px;
  --marquee-duration: 35s;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: var(--marquee-gap);
  width: max-content;
  animation: marqueeScroll var(--marquee-duration) linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - var(--marquee-gap) / 2)); }
}
html[dir="rtl"] .marquee-track { animation-direction: reverse; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--c-navy-700);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color var(--t-fast);
}
.marquee-item:hover { color: var(--c-gold-600); }
.marquee-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
}
.section-dark .marquee-item { color: var(--c-slate-300); }
.section-dark .marquee-item:hover { color: var(--c-gold-300); }

/* ---------- Tilt cards ---------- */
.tilt {
  transform-style: preserve-3d;
  transition: transform var(--t-base);
  will-change: transform;
}
.tilt-inner { transform: translateZ(20px); }

/* ---------- Magnetic button glow ---------- */
.btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
  z-index: 0;
}
.btn:hover::after { width: 300px; height: 300px; }
.btn > * { position: relative; z-index: 1; }

/* ---------- Floating accent shapes ---------- */
.float-shape {
  position: absolute;
  animation: floatSlow 8s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.6;
}
.float-shape.fs-2 { animation-delay: -3s; animation-duration: 10s; }
.float-shape.fs-3 { animation-delay: -6s; animation-duration: 12s; }
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* ---------- Live ticker ---------- */
.live-ticker {
  background: linear-gradient(90deg, #0F172A 0%, #1E293B 100%);
  border-top: 1px solid rgba(202,138,4,0.18);
  border-bottom: 1px solid rgba(202,138,4,0.18);
  color: var(--c-slate-100);
  padding: 14px 0;
  font-size: 13.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.live-ticker-label {
  background: var(--c-gold);
  color: var(--c-navy-900);
  padding: 4px 14px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.live-ticker-label::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--c-navy-900);
  border-radius: 50%;
  animation: livePulse 1.2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.live-ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marqueeScroll 50s linear infinite;
}
.live-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.live-ticker-item strong { color: var(--c-gold-300); }
.live-ticker-item .up { color: #4ADE80; }
.live-ticker-item .down { color: #F87171; }

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--c-slate-50); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  transition: all var(--t-base);
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.testimonial-quote {
  font-size: 32px;
  font-weight: 900;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-navy-800);
  font-weight: 400;
  margin-bottom: 24px;
  min-height: 110px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--c-navy-900);
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-author-info strong {
  display: block;
  font-size: 14.5px;
  color: var(--c-navy-900);
}
.testimonial-author-info span {
  display: block;
  font-size: 12.5px;
  color: var(--c-muted);
  margin-top: 2px;
}

/* ---------- Process Timeline ---------- */
.timeline {
  position: relative;
  padding: 40px 0;
  max-width: 960px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--c-gold-300), var(--c-gold), var(--c-gold-300));
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: center;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-white);
  border: 3px solid var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  color: var(--c-gold-600);
  font-size: 14px;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--c-white), 0 6px 18px rgba(202,138,4,0.3);
  justify-self: center;
}
.section-alt .timeline-marker { background: var(--c-slate-50); box-shadow: 0 0 0 6px var(--c-slate-50), 0 6px 18px rgba(202,138,4,0.3); }
.timeline-content {
  background: var(--c-white);
  padding: 24px 28px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  transition: all var(--t-base);
}
.timeline-content:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-gold);
}
.timeline-content h4 {
  font-size: 17px;
  color: var(--c-navy-900);
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 14px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.6;
}
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-marker { grid-column: 2; }
.timeline-item:nth-child(odd) > div:not(.timeline-content):not(.timeline-marker) { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; text-align: left; }
.timeline-item:nth-child(even) .timeline-marker { grid-column: 2; }
.timeline-item:nth-child(even) > div:not(.timeline-content):not(.timeline-marker) { grid-column: 1; }
html[dir="rtl"] .timeline-item:nth-child(odd) .timeline-content { text-align: left; }
html[dir="rtl"] .timeline-item:nth-child(even) .timeline-content { text-align: right; }

/* ---------- Awards / Recognition strip ---------- */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.award-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.award-card::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(202,138,4,0.15), transparent 70%);
  transform: translate(-50%, 0);
  transition: top var(--t-slow);
}
.award-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-gold);
}
.award-card:hover::before { top: -20%; }

/* Real award badge image */
.award-badge {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  transition: transform var(--t-base);
  filter: drop-shadow(0 6px 16px rgba(15,23,42,0.12));
}
.award-card:hover .award-badge { transform: scale(1.06); }

.award-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--c-navy-900);
  line-height: 1.35;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.award-card span {
  display: block;
  font-size: 12.5px;
  color: var(--c-gold-600);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ---------- Newsletter ---------- */
.newsletter-band {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 50%, #0F172A 100%);
  color: var(--c-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-band::before {
  content: '';
  position: absolute;
  top: -50%; right: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(202,138,4,0.2), transparent 70%);
  border-radius: 50%;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.newsletter-inner h2 {
  font-family: 'Tajawal', sans-serif;
  font-size: var(--fs-3xl);
  color: var(--c-white);
  margin-bottom: 12px;
  font-weight: 700;
}
.newsletter-inner p { color: var(--c-slate-300); font-size: var(--fs-lg); margin: 0; }
.newsletter-form {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px;
  border-radius: var(--r-full);
  backdrop-filter: blur(20px);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 14px 20px;
  color: var(--c-white);
  font-size: 15px;
  outline: none;
  border-radius: var(--r-full);
}
.newsletter-form input::placeholder { color: var(--c-slate-400); }
.newsletter-form button {
  background: var(--c-gold);
  color: var(--c-navy-900);
  padding: 12px 26px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--c-white);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(255,255,255,0.2);
}

/* ---------- Blog cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card.featured { grid-column: span 2; grid-row: span 2; }
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.blog-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform var(--t-slow);
}
.blog-card.featured .blog-card-img { height: 380px; }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0) 40%, rgba(15,23,42,0.5) 100%);
}
.blog-card-body { padding: 24px 28px 28px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--c-muted-2);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.blog-card-meta .cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold-600);
  background: var(--c-gold-50);
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.blog-card-meta .read {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-card h3 {
  font-family: 'Tajawal', sans-serif;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-navy-900);
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-card.featured h3 { font-size: var(--fs-2xl); line-height: 1.2; }
.blog-card p {
  color: var(--c-muted);
  font-size: 14.5px;
  margin: 0 0 16px;
  flex-grow: 1;
  line-height: 1.6;
}
.blog-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
  font-size: 13px;
  color: var(--c-navy-800);
}
.blog-card-author .avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--c-navy-900);
  flex-shrink: 0;
}
.blog-card-author strong { color: var(--c-navy-900); font-weight: 600; }

/* Blog filters */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.blog-filter {
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-navy-800);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--t-fast);
}
.blog-filter:hover { border-color: var(--c-gold); color: var(--c-gold-600); }
.blog-filter.active {
  background: var(--c-navy-900);
  color: var(--c-white);
  border-color: var(--c-navy-900);
}

/* Blog detail content */
.blog-content {
  padding: 80px 0;
  max-width: 760px;
  margin: 0 auto;
}
.blog-content h2 {
  font-family: 'Tajawal', sans-serif;
  font-size: var(--fs-2xl);
  margin: 40px 0 16px;
  color: var(--c-navy-900);
  font-weight: 700;
}
.blog-content h3 {
  font-family: 'Tajawal', sans-serif;
  font-size: var(--fs-xl);
  margin: 32px 0 12px;
  color: var(--c-navy-900);
  font-weight: 700;
}
.blog-content p, .blog-content li {
  font-size: var(--fs-md);
  line-height: 1.85;
  color: var(--c-navy-700);
}
.blog-content p { margin-bottom: 18px; }
.blog-content ul { margin: 16px 0; }
.blog-content ul li {
  padding: 6px 0 6px 24px;
  position: relative;
}
.blog-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 12px; height: 1px;
  background: var(--c-gold);
}
html[dir="rtl"] .blog-content ul li { padding-left: 0; padding-right: 24px; }
html[dir="rtl"] .blog-content ul li::before { left: auto; right: 0; }
.blog-content blockquote {
  border-left: 4px solid var(--c-gold);
  padding: 16px 28px;
  margin: 32px 0;
  font-family: 'Tajawal', sans-serif;
  font-weight: 500;
  font-size: var(--fs-xl);
  color: var(--c-navy-900);
  background: var(--c-gold-50);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  line-height: 1.5;
}
html[dir="rtl"] .blog-content blockquote { border-left: 0; border-right: 4px solid var(--c-gold); border-radius: var(--r-md) 0 0 var(--r-md); }

.blog-meta-bar {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 32px;
  flex-wrap: wrap;
}
.blog-meta-bar > div span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold-300);
  margin-bottom: 4px;
}
.blog-meta-bar > div strong {
  display: block;
  font-size: 15px;
  color: var(--c-white);
  font-weight: 600;
}

.blog-share {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 40px 0;
}
.blog-share span { font-size: 13px; font-weight: 600; color: var(--c-muted); }
.blog-share a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-slate-100);
  color: var(--c-navy-800);
  transition: all var(--t-fast);
}
.blog-share a:hover {
  background: var(--c-gold);
  color: var(--c-navy-900);
  transform: translateY(-2px);
}

/* ---------- Service detail enhancements ---------- */
.deliverables-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--c-white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
}
.deliverables-table th, .deliverables-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  font-size: 14.5px;
}
html[dir="rtl"] .deliverables-table th,
html[dir="rtl"] .deliverables-table td { text-align: right; }
.deliverables-table thead {
  background: var(--c-navy-900);
}
.deliverables-table th {
  color: var(--c-gold-300);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.deliverables-table tr:last-child td { border-bottom: none; }
.deliverables-table tr:nth-child(even) { background: var(--c-slate-50); }
.deliverables-table td:first-child { font-weight: 600; color: var(--c-navy-900); }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--t-base);
}
.faq-item:hover { border-color: var(--c-gold); }
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--c-navy-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--c-gold-600);
  transition: transform var(--t-base);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--c-gold-600); }
.faq-content {
  padding: 0 24px 20px;
  color: var(--c-navy-700);
  font-size: 14.5px;
  line-height: 1.75;
}

/* Methodology box */
.methodology-box {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1px solid var(--c-gold);
  border-radius: var(--r-lg);
  padding: 32px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.methodology-box::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(202,138,4,0.2), transparent 70%);
  border-radius: 50%;
}
.methodology-box h4 {
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--c-navy-900);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.methodology-box h4 svg { color: var(--c-gold-600); }
.methodology-box p { color: var(--c-navy-800); font-size: 14.5px; margin: 0; line-height: 1.65; }
.methodology-box .meth-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.meth-tag {
  background: var(--c-white);
  border: 1px solid var(--c-gold);
  color: var(--c-gold-600);
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Related insights */
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.related-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: all var(--t-base);
  align-items: center;
}
.related-card:hover {
  border-color: var(--c-gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
html[dir="rtl"] .related-card:hover { transform: translateX(-4px); }
.related-card-img {
  width: 80px; height: 80px;
  border-radius: var(--r-sm);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.related-card-body { flex-grow: 1; }
.related-card-body .cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold-600);
  margin-bottom: 4px;
}
.related-card-body h5 {
  font-size: 14.5px;
  color: var(--c-navy-900);
  margin: 0;
  line-height: 1.35;
}

/* Trust badge floater */
.trust-badge-float {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(202,138,4,0.4);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 4;
  animation: floatSlow 6s ease-in-out infinite;
}
.trust-badge-float strong {
  display: block;
  font-family: 'Tajawal', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--c-gold-300);
  line-height: 1;
}
.trust-badge-float span { font-size: 11px; color: var(--c-slate-300); letter-spacing: 0.06em; text-transform: uppercase; }
html[dir="rtl"] .trust-badge-float { right: auto; left: 30px; }

/* ---------- Section divider ---------- */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 48px;
  max-width: 280px;
  justify-content: center;
}
.section-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.section-divider .ornament {
  width: 32px; height: 32px;
  border: 1.5px solid var(--c-gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  font-weight: 700;
  font-size: 13px;
  flex: none;
}

/* ---------- Latest insights mini card ---------- */
.mini-insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mini-insight {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 24px;
  transition: all var(--t-base);
  text-decoration: none;
  color: inherit;
  display: block;
}
.mini-insight:hover {
  border-color: var(--c-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.mini-insight .date {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold-600);
  margin-bottom: 10px;
}
.mini-insight h5 {
  font-size: 16px;
  color: var(--c-navy-900);
  line-height: 1.4;
  margin-bottom: 8px;
  font-weight: 700;
}
.mini-insight p {
  font-size: 13.5px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.6;
}

/* ---------- Stagger animations ---------- */
[data-stagger] [data-stagger-child] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
[data-stagger].in-view [data-stagger-child] {
  opacity: 1;
  transform: none;
}
[data-stagger].in-view [data-stagger-child]:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].in-view [data-stagger-child]:nth-child(2) { transition-delay: 0.15s; }
[data-stagger].in-view [data-stagger-child]:nth-child(3) { transition-delay: 0.25s; }
[data-stagger].in-view [data-stagger-child]:nth-child(4) { transition-delay: 0.35s; }
[data-stagger].in-view [data-stagger-child]:nth-child(5) { transition-delay: 0.45s; }
[data-stagger].in-view [data-stagger-child]:nth-child(6) { transition-delay: 0.55s; }

/* ---------- Responsive overrides for new components ---------- */
@media (max-width: 1100px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card.featured { grid-column: span 2; grid-row: auto; }
  .blog-card.featured .blog-card-img { height: 220px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .mini-insights { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: auto; }
  .timeline::before { left: 22px; }
  .timeline-item { grid-template-columns: 44px 1fr; gap: 16px; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; text-align: left; }
  .timeline-item:nth-child(odd) .timeline-marker,
  .timeline-item:nth-child(even) .timeline-marker { grid-column: 1; }
  .timeline-item > div:not(.timeline-content):not(.timeline-marker) { display: none; }
  html[dir="rtl"] .timeline-item:nth-child(odd) .timeline-content,
  html[dir="rtl"] .timeline-item:nth-child(even) .timeline-content { text-align: right; }
  .newsletter-form { flex-direction: column; padding: 12px; border-radius: var(--r-md); gap: 10px; }
  .newsletter-form input { text-align: center; }
  .newsletter-form button { width: 100%; }
  .trust-badge-float { display: none; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .scroll-progress, .live-ticker, .marquee, .newsletter-band { display: none !important; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-aos] { opacity: 1; transform: none; }
  [data-stagger] [data-stagger-child] { opacity: 1; transform: none; }
  .gradient-orb, .float-shape, .trust-badge-float, .badge-dot { animation: none; }
  .marquee-track, .live-ticker-track { animation: none; }
}
