:root {
  --navy: #0D1B2A;
  --navy-light: #1A2D42;
  --accent: #1B4F72;
  --blue: #2874A6;
  --gold: #006B5E;
  --gold-light: #00897B;
  --gold-bg: rgba(0,107,94,0.06);
  --gold-border: rgba(0,107,94,0.18);
  --gold-accent: #006B5E;
  --teal-dark: #004D40;
  --sand: #F5EDE0;

  --bg: #FAFBFD;
  --bg-warm: #F5EDE0;
  --bg-card: #FFFFFF;
  --border: #E2E8F0;
  --border-light: #EDF1F7;

  --text: #1A2332;
  --text-secondary: #4A5568;
  --text-muted: #5A6A7E;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --ease: cubic-bezier(0.22,1,0.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: #fff; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ========== LOCALE STRIP ========== */
.locale-strip {
  background: var(--navy); padding: 6px 0;
  font-size: 11px; color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.locale-geo { letter-spacing: 0.06em; }
.locale-date { direction: ltr; }
.locale-date .hijri { font-family: 'Noto Naskh Arabic', serif; direction: rtl; }

/* ========== NAV ========== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 1px 8px rgba(0,0,0,0.06); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; max-width: 1200px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px; font-weight: 600; color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-text .dot { color: var(--gold-accent); }
.logo-tag {
  font-size: 10px; color: var(--text-muted);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-top: 1px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 13px; color: var(--text-secondary); font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius);
  transition: color 0.2s, background 0.2s; cursor: pointer;
}
.nav-link:hover { color: var(--navy); background: var(--bg-warm); }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 13px; border-radius: var(--radius);
  transition: all 0.25s var(--ease); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--navy); color: #fff;
  padding: 10px 22px;
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  background: transparent; color: var(--navy);
  border: 1px solid var(--border); padding: 10px 22px;
}
.btn-ghost:hover {
  border-color: var(--gold); color: var(--gold);
  background: var(--gold-bg);
}
.btn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.2); padding: 10px 22px;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.5); color: #fff;
  background: rgba(255,255,255,0.05);
}
.btn-gold {
  background: var(--gold); color: #fff;
  padding: 10px 22px; font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,107,94,0.25);
}

/* Hamburger */
.hamburger {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius);
  background: transparent; border: 1px solid var(--border);
  cursor: pointer; flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--text-secondary); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
  z-index: 100; background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px); border-left: 1px solid var(--border);
  padding: 80px 28px 28px; transition: right 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer-overlay {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(0,0,0,0.3); opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-drawer-overlay.open { opacity: 1; visibility: visible; }
.mobile-drawer a {
  display: block; padding: 12px 0; font-size: 15px;
  color: var(--text-secondary); font-weight: 500;
  border-bottom: 1px solid var(--border-light);
}
.mobile-drawer a:hover { color: var(--gold); }

/* ========== KINETIC HERO BANNER ========== */
.hero-kinetic {
  background: var(--navy);
  padding: 28px 0 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-kinetic::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,107,94,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hk-eyebrow {
  font-size: 11px; color: rgba(245,237,224,0.45); font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 12px;
}
.hk-stage {
  position: relative;
  height: 80px;
  margin-bottom: 20px;
  overflow: hidden;
}
.hk-word {
  position: absolute; left: 0; right: 0; top: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 80px;
  color: #F5EDE0;
  opacity: 0;
  transform: translateY(20px);
  animation: hkCycle 9s ease-in-out infinite;
}
.hk-word:nth-child(1) { animation-delay: 0s; }
.hk-word:nth-child(2) { animation-delay: 3s; }
.hk-word:nth-child(3) { animation-delay: 6s; }
@keyframes hkCycle {
  0%   { opacity: 0; transform: translateY(20px); }
  5%   { opacity: 1; transform: translateY(0); }
  28%  { opacity: 1; transform: translateY(0); }
  33%  { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 0; transform: translateY(-20px); }
}
.hk-underline {
  width: 64px; height: 3px; margin: 0 auto 16px;
  background: var(--gold);
  border-radius: 2px;
  animation: hkPulse 9s ease-in-out infinite;
}
@keyframes hkPulse {
  0%, 33%, 66% { width: 0; opacity: 0; }
  5%, 28%, 38%, 61%, 71%, 94% { width: 64px; opacity: 1; }
  100% { width: 0; opacity: 0; }
}
.hk-sub {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(245,237,224,0.55);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.hk-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
}
.hk-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hk-cta svg { width: 16px; height: 16px; }
.hk-scroll-hint {
  margin-top: 14px;
  font-size: 10px;
  color: rgba(245,237,224,0.25);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hk-scroll-hint span {
  display: inline-block;
  animation: hkBounce 2s ease-in-out infinite;
}
@keyframes hkBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ========== STOREFRONT ========== */
.storefront {
  background: var(--bg);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  scroll-margin-top: 80px;
}
/* Subtle dot-grid texture overlay */
.storefront::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,107,94,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.sf-header {
  text-align: center;
  margin-bottom: 32px;
}
.sf-header .section-tag { margin-bottom: 12px; }
.sf-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
/* Teal-to-gold gradient accent bar */
.sf-header h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #006B5E, #C9A227);
}
.sf-header p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
/* Storefront rows — full-width horizontal strips */
.sf-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sf-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  border-left: 3px solid transparent;
}
/* Pillar-coded left accent */
.sf-row[data-pillar="scale"]  { border-left-color: #006B5E; }
.sf-row[data-pillar="govern"] { border-left-color: #C9A227; }
.sf-row[data-pillar="unlock"] { border-left-color: #1B4F72; }
.sf-row:hover {
  border-color: rgba(0,107,94,0.15);
  border-left-color: #006B5E;
  box-shadow: 0 8px 28px rgba(0,107,94,0.07), 0 2px 6px rgba(0,0,0,0.03);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #fff 0%, #f8faf9 100%);
}
.sf-row[data-pillar="govern"]:hover { border-left-color: #C9A227; }
.sf-row[data-pillar="unlock"]:hover { border-left-color: #1B4F72; }

/* Icon in row */
.sf-card-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: box-shadow 0.35s var(--ease);
}
.sf-row:hover .sf-card-icon { box-shadow: 0 0 16px rgba(0,107,94,0.12); }
.sf-card-icon svg {
  width: 20px; height: 20px;
  fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.sf-card-icon.sf-strategy { background: rgba(0,107,94,0.08); border: 1px solid rgba(0,107,94,0.15); }
.sf-card-icon.sf-strategy svg { color: #006B5E; stroke: #006B5E; }
.sf-card-icon.sf-govern   { background: rgba(201,162,39,0.08); border: 1px solid rgba(201,162,39,0.18); }
.sf-card-icon.sf-govern svg   { color: #C9A227; stroke: #C9A227; }
.sf-card-icon.sf-data     { background: rgba(13,27,42,0.06); border: 1px solid rgba(13,27,42,0.12); }
.sf-card-icon.sf-data svg     { color: var(--navy); stroke: var(--navy); }
.sf-card-icon.sf-execute  { background: rgba(0,107,94,0.08); border: 1px solid rgba(0,107,94,0.15); }
.sf-card-icon.sf-execute svg  { color: #006B5E; stroke: #006B5E; }
.sf-card-icon.sf-rollout  { background: rgba(27,79,114,0.08); border: 1px solid rgba(27,79,114,0.15); }
.sf-card-icon.sf-rollout svg  { color: #1B4F72; stroke: #1B4F72; }

/* Row body — title + problem quote */
.sf-row-body {
  flex: 1;
  min-width: 0;
}
.sf-problem {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 13px;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 4px;
  line-height: 1.4;
}
.sf-row h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

/* Outcome text */
.sf-row-outcome {
  flex-shrink: 0;
  max-width: 300px;
  font-size: 12.5px;
  font-weight: 500;
  color: #006B5E;
  line-height: 1.45;
  text-align: right;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease);
}
.sf-row:hover .sf-row-outcome { opacity: 1; }

/* Arrow chevron */
.sf-row-arrow {
  flex-shrink: 0;
  width: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  opacity: 0.4;
  transition: all 0.3s var(--ease);
}
.sf-row:hover .sf-row-arrow {
  opacity: 1;
  color: #006B5E;
  transform: translateX(3px);
}

/* Storefront rows responsive */
@media (max-width: 768px) {
  .sf-row {
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 18px;
  }
  .sf-row-body { flex-basis: calc(100% - 64px); }
  .sf-row-outcome {
    flex-basis: 100%;
    max-width: none;
    text-align: left;
    padding-left: 64px;
    font-size: 12px;
  }
  .sf-row-arrow { display: none; }
}

/* Data Foundation strip */
.data-foundation {
  background: linear-gradient(180deg, #0D1B2A 0%, #122435 100%);
  border-top: 1px solid rgba(0,107,94,0.2);
  padding: 28px 0;
  position: relative;
}
.df-inner {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap; justify-content: center;
}
.df-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.df-label::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); display: inline-block;
}
.df-pills {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.df-pill {
  font-size: 11px; font-weight: 500;
  color: rgba(245,237,224,0.65);
  background: rgba(245,237,224,0.06);
  border: 1px solid rgba(245,237,224,0.1);
  padding: 6px 16px;
  border-radius: 20px;
  transition: all 0.3s;
  white-space: nowrap;
}
.df-pill:hover {
  color: #F5EDE0;
  background: rgba(0,107,94,0.15);
  border-color: rgba(0,107,94,0.35);
}
.df-note {
  font-size: 12px; color: rgba(245,237,224,0.35);
  font-style: italic;
  text-align: center; width: 100%;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .df-inner { flex-direction: column; gap: 16px; }
  .df-pills { gap: 6px; }
  .df-pill { font-size: 10px; padding: 5px 12px; }
}

/* ========== HERO ========== */
.hero {
  padding: 0 0 0;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  position: relative; overflow: hidden;
}
.hero-top { padding-top: 56px; }
.hero::before {
  content: ""; position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,107,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: -200px; left: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27,79,114,0.04) 0%, transparent 70%);
  pointer-events: none;
}
/* Gulf map watermark — positioned in hero background */
.hero-map {
  position: absolute; top: 50%; right: -5%; transform: translateY(-50%);
  width: 55%; max-width: 600px; opacity: 0.05; pointer-events: none; z-index: 0;
}
/* Islamic geometric pattern for section accents */
.geo-pattern {
  position: absolute; pointer-events: none; opacity: 0.04;
}
.geo-pattern svg { width: 100%; height: 100%; }
.hero-top {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 48px; align-items: center; padding-bottom: 56px;
  position: relative; z-index: 1;
}
.hero-tag {
  font-size: 11px; color: var(--gold); font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-tag::before {
  content: ""; width: 24px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500; line-height: 1.1;
  color: var(--navy); margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic; color: var(--accent);
}
.hero-sub {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.65; margin-bottom: 28px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero right panel — stat block */
.hero-panel {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 40px 34px; color: #fff; position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,107,94,0.15);
  box-shadow: 0 20px 60px rgba(13,27,42,0.4);
}
.hero-panel::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,107,94,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-panel::after {
  content: ""; position: absolute; bottom: -40px; left: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27,79,114,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-panel-tag {
  font-size: 9px; color: var(--gold); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 20px; position: relative;
  display: flex; align-items: center; gap: 8px;
}
.hero-panel-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-panel-stat {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(44px, 4.5vw, 56px); font-weight: 600; color: var(--gold);
  line-height: 1; margin-bottom: 6px; position: relative;
}
.hero-panel-label {
  font-size: 13px; color: rgba(255,255,255,0.55);
  margin-bottom: 28px; position: relative;
}
.hero-panel-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, rgba(0,107,94,0.4) 0%, rgba(0,107,94,0) 100%);
  margin-bottom: 24px;
}
.hero-panel-bars {
  display: flex; align-items: flex-end; gap: 6px;
  height: 48px; margin-bottom: 20px; position: relative;
}
.hero-panel-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  position: relative; transition: all 0.3s var(--ease);
}
.hero-panel-bar:nth-child(1) { height: 90%; background: linear-gradient(180deg, var(--gold) 0%, rgba(0,107,94,0.5) 100%); }
.hero-panel-bar:nth-child(2) { height: 35%; background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.2) 100%); }
.hero-panel-bar:nth-child(3) { height: 30%; background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.2) 100%); }
.hero-panel-bar:nth-child(4) { height: 50%; background: linear-gradient(180deg, rgba(40,116,166,0.8) 0%, rgba(40,116,166,0.3) 100%); }
.hero-panel-bar-labels {
  display: flex; gap: 6px; margin-bottom: 24px;
}
.hero-panel-bar-labels span {
  flex: 1; font-size: 8px; color: rgba(255,255,255,0.4);
  text-align: center; letter-spacing: 0.04em;
}
.hero-panel-items {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  position: relative;
}
.hero-panel-item {
  padding: 14px 16px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); transition: all 0.25s;
}
.hero-panel-item:hover {
  border-color: rgba(0,107,94,0.2);
  background: rgba(0,107,94,0.04);
}
.hero-panel-item .hpi-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px; font-weight: 500; color: #fff;
}
.hero-panel-item .hpi-label {
  font-size: 9px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 2px;
}

/* Hero Timeline — Speed to Value */
.hero-timeline {
  margin: 48px 0 40px;
  padding: 32px 36px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative; z-index: 1;
}
.timeline-label {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px; font-weight: 500; color: var(--navy);
  text-align: center; margin-bottom: 28px;
}
.timeline-track {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 0 16px;
}
.timeline-step {
  display: flex; flex-direction: column; align-items: center;
  position: relative; flex-shrink: 0;
}
.timeline-tick {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  margin-bottom: 10px; transition: all 0.3s;
}
.timeline-step.done .timeline-tick {
  background: var(--navy); color: #fff;
  box-shadow: 0 2px 8px rgba(13,27,42,0.2);
}
.timeline-step.active .timeline-tick {
  background: var(--gold); color: #fff;
  box-shadow: 0 2px 12px rgba(0,107,94,0.35);
  transform: scale(1.1);
}
.timeline-step.final .timeline-tick {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-size: 16px;
  box-shadow: 0 4px 16px rgba(0,107,94,0.3);
  transform: scale(1.15);
}
.timeline-step-label {
  font-size: 11px; color: var(--text-secondary); text-align: center;
  line-height: 1.35; font-weight: 500;
}
.timeline-dur {
  font-size: 9px; color: var(--gold); font-weight: 700;
  letter-spacing: 0.06em;
}
.timeline-connector {
  flex: 1; max-width: 60px; min-width: 24px;
  height: 2px; background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 100%);
  margin: 0 4px; margin-bottom: 28px; border-radius: 1px;
  opacity: 0.4;
}
.timeline-caption {
  text-align: center; margin-top: 20px;
  font-size: 12px; color: var(--gold); font-weight: 600;
  letter-spacing: 0.06em;
}

/* Three Questions */
.hero-questions {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
.hero-q {
  background: var(--bg); padding: 32px 28px;
  transition: all 0.3s var(--ease);
  border-right: 1px solid var(--border-light);
  position: relative;
}
.hero-q:last-child { border-right: none; }
.hero-q::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s var(--ease);
  transform-origin: left;
}
.hero-q:hover::before { transform: scaleX(1); }
.hero-q:hover { background: #fff; }
.hero-q-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; font-size: 18px;
}
.hero-q-icon.q1 { background: rgba(0,107,94,0.08); color: var(--gold); border: 1px solid var(--gold-border); }
.hero-q-icon.q2 { background: rgba(27,79,114,0.06); color: var(--accent); border: 1px solid rgba(27,79,114,0.15); }
.hero-q-icon.q3 { background: rgba(40,116,166,0.06); color: var(--blue); border: 1px solid rgba(40,116,166,0.12); }
.hero-q-num {
  font-size: 9px; color: var(--gold); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-q h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px; font-weight: 500; color: var(--navy);
  line-height: 1.25; margin-bottom: 8px;
}
.hero-q p {
  font-size: 13px; color: var(--text-muted); line-height: 1.55;
}
.hero-q .hero-q-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--gold); font-weight: 600;
  margin-top: 14px; transition: gap 0.2s;
}
.hero-q:hover .hero-q-link { gap: 8px; }

/* ========== BOARD & C-SUITE TRAINING ========== */
.training {
  padding: 80px 0;
  background: var(--navy); color: #fff;
  position: relative;
}
.training::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,107,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.training-inner {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 56px; align-items: start;
}
.training-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 500; line-height: 1.2;
  margin-bottom: 14px; color: #fff;
}
.training-desc {
  font-size: 15px; color: rgba(255,255,255,0.6);
  line-height: 1.65; margin-bottom: 28px;
}
.training-formats {
  display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap;
}
.training-format {
  flex: 1; min-width: 140px;
  padding: 20px 16px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.training-format:hover {
  border-color: rgba(201,162,39,0.3);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.training-format-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.2);
  margin-bottom: 12px;
}
.training-format-icon svg {
  width: 18px; height: 18px; fill: none; stroke: var(--gold);
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.training-format-label {
  font-size: 13px; font-weight: 700; color: var(--gold);
  margin-bottom: 6px;
}
.training-format-desc {
  font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5;
}
.training-topics {
  padding: 32px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
}
.training-topic-tag {
  font-size: 10px; color: var(--gold); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 20px;
}
.training-topic {
  font-size: 13px; color: rgba(255,255,255,0.7);
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 10px;
}
.training-topic:last-child { border-bottom: none; }
.training-topic::before {
  content: ""; display: inline-block; width: 16px; height: 16px; min-width: 16px;
  border-radius: 50%; background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A227' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}

/* ========== ONTOLOGY SECTION ========== */
.ontology {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, #fff 100%);
  border-bottom: 1px solid var(--border-light);
}
.ontology-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.ontology-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px; border-radius: 999px;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  font-size: 11px; color: var(--gold); font-weight: 700;
  letter-spacing: 0.1em; margin-bottom: 20px;
}
.ontology-badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.ontology h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 500; color: var(--navy);
  line-height: 1.2; margin-bottom: 16px;
}
.ontology-desc {
  font-size: 15px; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 24px;
}
.ontology-points {
  list-style: none; padding: 0; margin-bottom: 24px;
}
.ontology-points li {
  font-size: 14px; color: var(--text-secondary); line-height: 1.5;
  padding: 10px 0 10px 28px; position: relative;
  border-bottom: 1px solid var(--border-light);
}
.ontology-points li:last-child { border-bottom: none; }
.ontology-points li::before {
  content: "◆"; position: absolute; left: 0; color: var(--gold);
  font-size: 8px; top: 14px;
}
/* Ontology visual — SVG diagram */
.ontology-visual {
  max-width: 420px; margin: 0 auto;
}
.ontology-visual svg { width: 100%; height: auto; }

/* ========== AGENT BAR (Scrolling Ticker) ========== */
.agent-bar {
  background: var(--navy);
  padding: 40px 0 36px;
  overflow: hidden;
  position: relative;
}
.ab-header {
  max-width: 1100px; margin: 0 auto 20px;
  padding: 0 32px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.ab-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,162,39,0.12);
  padding: 4px 10px; border-radius: 4px;
}
.ab-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px; font-weight: 500; color: #fff; margin: 0;
}
.ab-see-all {
  margin-left: auto; font-size: 13px; font-weight: 600;
  color: var(--gold); text-decoration: none;
  transition: opacity 0.2s;
}
.ab-see-all:hover { opacity: 0.8; }

.ab-track-wrap {
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.ab-track {
  display: flex; gap: 16px;
  animation: agentScroll 40s linear infinite;
  width: max-content;
  padding: 0 16px;
}
.ab-track:hover { animation-play-state: paused; }

@keyframes agentScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ab-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 300px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.ab-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.ab-icon { font-size: 24px; flex-shrink: 0; }
.ab-body { flex: 1; min-width: 0; }
.ab-name {
  font-weight: 600; font-size: 14px; color: #fff;
  margin-bottom: 3px; white-space: nowrap;
}
.ab-hook {
  font-size: 12px; color: rgba(255,255,255,0.5);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ab-try {
  font-size: 12px; font-weight: 600; color: var(--gold);
  white-space: nowrap; flex-shrink: 0;
}

@media (max-width: 760px) {
  .ab-header { padding: 0 20px; }
  .ab-title { font-size: 16px; }
  .ab-see-all { margin-left: 0; }
  .ab-card { min-width: 260px; padding: 14px 16px; }
}

/* ========== CREDENTIAL STRIP ========== */
.cred-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-warm);
}
.cred-item {
  padding: 28px 24px; text-align: center;
  border-right: 1px solid var(--border-light);
}
.cred-item:last-child { border-right: none; }
.cred-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px; font-weight: 500; color: var(--navy);
  line-height: 1;
}
.cred-label {
  font-size: 10px; color: var(--text-muted);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 6px;
}

/* ========== ANIMATED DATA STORY ========== */
.data-story {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.data-story::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}
.ds-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}
.ds-scene {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.ds-scene.ds-visible {
  opacity: 1;
  transform: translateY(0);
}
.ds-scene-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.ds-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  margin-bottom: 12px;
}
.ds-big-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(56px, 10vw, 96px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.ds-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.6;
}
.ds-source {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 24px;
  letter-spacing: 0.02em;
}

/* Levers */
.ds-levers {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: center;
  margin-top: 32px;
  height: 260px;
}
.ds-lever {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ds-lever-bar {
  width: 56px;
  background: linear-gradient(180deg, var(--gold), var(--teal-dark));
  border-radius: 4px 4px 0 0;
  height: 0;
  transition: height 1.2s var(--ease);
}
.ds-visible .ds-lever-bar { /* height set by JS */ }
.ds-lever-val {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}
.ds-lever-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* Gap rings */
.ds-gap-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
}
.ds-gap-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ds-gap-ring {
  position: relative;
  width: 140px;
  height: 140px;
}
.ds-gap-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ds-ring-fill {
  transition: stroke-dashoffset 1.5s var(--ease);
}
.ds-ring-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}
.ds-gap-arrow {
  width: 60px;
  height: 24px;
  flex-shrink: 0;
}
.ds-gap-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.ds-gap-line {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-top: 40px;
  max-width: 520px;
}

/* Solution flow */
.ds-solution-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.ds-sol-step {
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  min-width: 180px;
  transition: all 0.6s var(--ease);
  opacity: 0;
  transform: translateX(-20px);
}
.ds-visible .ds-sol-step {
  opacity: 1;
  transform: translateX(0);
}
.ds-visible .ds-sol-step:nth-child(3) { transition-delay: 0.2s; }
.ds-visible .ds-sol-step:nth-child(5) { transition-delay: 0.4s; }
.ds-sol-step:hover, .ds-sol-active {
  border-color: var(--gold);
  background: rgba(0,107,94,0.08);
}
.ds-sol-word {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.ds-sol-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.ds-sol-arrow {
  font-size: 24px;
  color: rgba(255,255,255,0.2);
}
.ds-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.ds-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  transition: all 0.3s;
  letter-spacing: 0.02em;
}
.ds-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.ds-cta-link {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.ds-cta-link:hover { opacity: 1; }

@media (max-width: 640px) {
  .ds-levers { gap: 20px; }
  .ds-lever-bar { width: 40px; }
  .ds-gap-grid { flex-direction: column; }
  .ds-gap-arrow { transform: rotate(90deg); }
  .ds-solution-flow { flex-direction: column; }
  .ds-sol-arrow { transform: rotate(90deg); }
}

/* ========== SERVICES ========== */
.services {
  padding: 80px 0;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  position: relative; overflow: hidden;
}
/* Islamic geometric pattern — subtle 8-pointed star tessellation */
.services::after {
  content: ""; position: absolute; top: 0; right: 0;
  width: 300px; height: 300px; opacity: 0.045; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 0L48 16L64 8L56 24L72 24L60 36L72 40L60 44L72 56L56 56L64 72L48 64L40 80L32 64L16 72L24 56L8 56L20 44L8 40L20 36L8 24L24 24L16 8L32 16Z' fill='none' stroke='%230D1B2A' stroke-width='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.services::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
  background: linear-gradient(90deg, transparent, rgba(245,247,250,0.5));
  pointer-events: none;
}
.services-header {
  text-align: center; margin-bottom: 56px;
}
.section-tag {
  font-size: 11px; color: var(--gold); font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500; line-height: 1.15;
  color: var(--navy); letter-spacing: -0.015em;
}
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border-light); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
}
.service-card {
  background: #fff; padding: 40px 32px;
}
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg {
  width: 24px; height: 24px;
}
.service-icon.si-strategy { background: rgba(27,79,114,0.06); color: var(--accent); border: 1px solid rgba(27,79,114,0.12); }
.service-icon.si-govern { background: rgba(0,107,94,0.06); color: var(--gold); border: 1px solid var(--gold-border); }
.service-icon.si-oversight { background: rgba(40,116,166,0.06); color: var(--blue); border: 1px solid rgba(40,116,166,0.1); }
.service-icon.si-data { background: rgba(245,237,224,0.08); color: #8B6914; border: 1px solid rgba(201,162,39,0.2); }
.service-highlight {
  display: inline-block; font-size: 11px; font-weight: 600; color: var(--navy);
  background: linear-gradient(135deg, var(--gold-bg), rgba(0,107,94,0.14));
  border: 1px solid var(--gold-border); border-radius: 20px;
  padding: 5px 14px; margin-bottom: 12px; letter-spacing: 0.02em;
}
.service-num {
  font-size: 10px; color: var(--gold); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 12px;
}
/* Arabic bilingual section titles */
.section-title-ar {
  font-family: 'Amiri', 'Noto Naskh Arabic', serif;
  font-size: 16px; font-weight: 400; color: var(--gold);
  direction: rtl; text-align: center; opacity: 0.6;
  margin-top: 6px; letter-spacing: 0.02em;
}
/* Mashrabiya-inspired geometric divider */
.geo-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 16px 0; opacity: 0.2;
}
.geo-divider::before, .geo-divider::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.geo-divider-icon {
  width: 24px; height: 24px; position: relative;
}
.geo-divider-icon::before {
  content: "✦"; font-size: 14px; color: var(--gold);
}
/* ========== SERVICE CARDS (services.html) ========== */
.svc-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  scroll-margin-top: 100px;
  margin-bottom: 24px;
  transition: border-color 0.3s;
}
.svc-card:hover { border-color: var(--gold-border); }
.svc-card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 8px; gap: 16px; flex-wrap: wrap;
}
.svc-challenge {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px; font-style: italic; color: var(--text-muted);
  line-height: 1.5; flex: 1; min-width: 240px;
}
.svc-meta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.svc-timeline {
  font-size: 11px; font-weight: 700; color: var(--gold);
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  padding: 4px 12px; border-radius: 20px; letter-spacing: 0.02em;
}
.svc-pillar {
  font-size: 10px; font-weight: 700; color: var(--navy);
  letter-spacing: 0.15em; text-transform: uppercase;
  background: rgba(13,27,42,0.04); border: 1px solid rgba(13,27,42,0.08);
  padding: 4px 10px; border-radius: 4px;
}
.svc-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px; font-weight: 600; color: var(--navy);
  margin-bottom: 20px;
}
.svc-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.svc-label {
  font-size: 10px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 10px;
}
.svc-approach ul {
  list-style: none; padding: 0;
}
.svc-approach li {
  font-size: 14px; color: var(--text-secondary); line-height: 1.6;
  padding: 6px 0 6px 20px; position: relative;
  border-bottom: 1px solid var(--border-light);
}
.svc-approach li:last-child { border-bottom: none; }
.svc-approach li::before {
  content: "→"; position: absolute; left: 0; color: var(--gold);
  font-weight: 600;
}
.svc-deliverables p {
  font-size: 14px; color: var(--text-secondary); line-height: 1.6;
}
.svc-accels {
  margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--border-light);
}
.svc-accels a {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--gold); background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  padding: 4px 12px; border-radius: 4px;
  margin: 3px 4px 3px 0; transition: all 0.2s;
}
.svc-accels a:hover {
  background: var(--gold); color: #fff; border-color: var(--gold);
}
@media (max-width: 768px) {
  .svc-body { grid-template-columns: 1fr; gap: 20px; }
  .svc-card { padding: 24px 20px; }
}

/* Arabic pull-quote styling */
.ar-pullquote {
  font-family: 'Amiri', 'Noto Naskh Arabic', serif;
  direction: rtl; text-align: center;
  font-size: 15px; color: var(--gold); opacity: 0.5;
  padding: 8px 0; line-height: 1.8;
}
/* Mashrabiya screen pattern overlay */
.mashrabiya-overlay {
  position: absolute; pointer-events: none; opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='%230D1B2A' stroke-width='0.4'/%3E%3Ccircle cx='30' cy='30' r='12' fill='none' stroke='%230D1B2A' stroke-width='0.4'/%3E%3Cline x1='30' y1='0' x2='30' y2='60' stroke='%230D1B2A' stroke-width='0.3'/%3E%3Cline x1='0' y1='30' x2='60' y2='30' stroke='%230D1B2A' stroke-width='0.3'/%3E%3Cline x1='0' y1='0' x2='60' y2='60' stroke='%230D1B2A' stroke-width='0.2'/%3E%3Cline x1='60' y1='0' x2='0' y2='60' stroke='%230D1B2A' stroke-width='0.2'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
/* Gold border accent for ME sections */
.gold-border-top { border-top: 2px solid var(--gold); }
.gold-border-accent {
  position: relative;
}
.gold-border-accent::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px; background: var(--gold); border-radius: 2px;
}
.arabic-hint {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: 12px; letter-spacing: 0; text-transform: none;
  direction: rtl; color: var(--gold); opacity: 0.7;
}
.service-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px; font-weight: 500; color: var(--navy);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px; color: var(--text-secondary); line-height: 1.65;
  margin-bottom: 20px;
}
.service-points {
  list-style: none; padding: 0;
}
.service-points li {
  font-size: 13px; color: var(--text-secondary); line-height: 1.5;
  padding: 6px 0 6px 20px; position: relative;
  border-top: 1px solid var(--border-light);
}
.service-points li:first-child { border-top: none; }
.service-points li::before {
  content: "→"; position: absolute; left: 0; color: var(--gold);
  font-weight: 600;
}

/* ========== PARTNER ECOSYSTEM ========== */
.partners {
  padding: 72px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.partners-inner {
  text-align: center; max-width: 820px; margin: 0 auto;
}
.partners-desc {
  font-size: 15px; color: var(--text-secondary); line-height: 1.65;
  margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto;
}
.partners-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 32px;
}
.partner-card {
  padding: 22px 16px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  text-align: center; transition: all 0.3s var(--ease);
}
.partner-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.partner-name {
  font-size: 14px; font-weight: 700; color: var(--navy);
  margin-bottom: 4px;
}
.partner-type {
  font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.partners-note {
  font-size: 13px; color: var(--text-muted); font-style: italic;
}

/* ========== SCOREBOARD (Featured Research) ========== */
.featured-research {
  padding: 80px 0;
  background: var(--navy);
  color: #fff;
  position: relative; overflow: hidden;
}
.featured-research::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,107,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.fr-inner {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 56px; align-items: start;
}
.fr-tag {
  font-size: 11px; color: var(--gold); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 16px;
}
.fr-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 500; line-height: 1.12;
  margin-bottom: 16px;
}
.fr-desc {
  font-size: 15px; color: rgba(255,255,255,0.65);
  line-height: 1.65; margin-bottom: 28px;
}
.fr-hero-stat {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(42px, 5vw, 58px); font-weight: 600;
  color: var(--gold); line-height: 1;
  margin-bottom: 6px;
}
.fr-hero-label {
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}
.fr-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: #fff;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 13px;
  transition: all 0.25s;
}
.fr-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.fr-parts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fr-part {
  padding: 20px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); transition: all 0.3s var(--ease);
}
.fr-part:hover {
  border-color: rgba(0,107,94,0.35);
  background: rgba(0,107,94,0.06);
  transform: translateY(-2px);
}
.fr-part-num {
  font-size: 9px; color: var(--gold); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 6px;
}
.fr-part-title {
  font-size: 14px; color: rgba(255,255,255,0.9);
  font-weight: 600; line-height: 1.3;
  margin-bottom: 6px;
}
.fr-part-val {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px; color: var(--gold); font-weight: 500;
  margin-top: 2px;
}
.fr-scoreboard-card {
  grid-column: span 2;
  padding: 24px; margin-top: 4px;
  background: linear-gradient(135deg, rgba(0,107,94,0.12), rgba(0,107,94,0.04));
  border: 1.5px solid rgba(0,107,94,0.35);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between;
}
.fr-scoreboard-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px; font-weight: 500; color: #fff;
}
.fr-scoreboard-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px; font-weight: 600; color: var(--gold);
}
.fr-scoreboard-sub {
  font-size: 11px; color: rgba(255,255,255,0.5);
  text-align: right;
}
.fr-upcoming {
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.fr-upcoming-tag {
  font-size: 10px; color: var(--gold); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 20px;
}
.fr-upcoming-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.fr-upcoming-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px; background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
}
.fr-upcoming-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.fr-upcoming-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px; font-weight: 500; color: #fff;
  margin-bottom: 4px;
}
.fr-upcoming-sub {
  font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5;
}

/* ========== INSIGHTS ========== */
.insights {
  padding: 80px 0;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
}
.insights-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px;
}
.insights-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.insight-card {
  padding: 28px 24px; background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all 0.25s var(--ease);
}
.insight-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.insight-tag {
  font-size: 10px; color: var(--gold); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 10px;
}
.insight-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px; font-weight: 500; color: var(--navy);
  line-height: 1.35; margin-bottom: 8px;
}
.insight-card p {
  font-size: 13px; color: var(--text-muted); line-height: 1.55;
  margin-bottom: 14px;
}
.insight-link {
  font-size: 12px; color: var(--gold); font-weight: 600;
  transition: color 0.2s;
}
.insight-link:hover { color: var(--gold-light); }

/* ========== ACCELERATORS ========== */
.accelerators {
  padding: 80px 0;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border-light);
}
.acc-header {
  text-align: center; margin-bottom: 48px;
}
.acc-desc {
  font-size: 15px; color: var(--text-secondary);
  max-width: 560px; margin: 12px auto 0; line-height: 1.6;
}
.acc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.acc-card {
  display: block; padding: 24px 22px; background: #fff;
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  transition: all 0.25s var(--ease);
  position: relative;
}
.acc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.acc-icon svg { width: 20px; height: 20px; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.acc-icon.ai-data { background: rgba(0,107,94,0.08); border: 1px solid rgba(0,107,94,0.18); }
.acc-icon.ai-data svg { stroke: var(--gold); }
.acc-icon.ai-govern { background: rgba(27,79,114,0.06); border: 1px solid rgba(27,79,114,0.14); }
.acc-icon.ai-govern svg { stroke: var(--accent); }
.acc-icon.ai-strategy { background: rgba(40,116,166,0.06); border: 1px solid rgba(40,116,166,0.12); }
.acc-icon.ai-strategy svg { stroke: var(--blue); }
.acc-icon.ai-risk { background: rgba(180,83,9,0.06); border: 1px solid rgba(180,83,9,0.14); }
.acc-icon.ai-risk svg { stroke: #B45309; }
.acc-icon.ai-training { background: rgba(124,58,237,0.06); border: 1px solid rgba(124,58,237,0.14); }
.acc-icon.ai-training svg { stroke: #7C3AED; }
.acc-icon.ai-capital { background: rgba(5,150,105,0.06); border: 1px solid rgba(5,150,105,0.14); }
.acc-icon.ai-capital svg { stroke: #059669; }
.acc-cat {
  font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 6px;
}
.acc-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.acc-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px; font-weight: 500; color: var(--navy);
  margin-bottom: 6px; line-height: 1.3;
}
.acc-card p {
  font-size: 12px; color: var(--text-muted); line-height: 1.5;
  margin-bottom: 10px;
}
.acc-link {
  font-size: 11px; color: var(--gold); font-weight: 600;
}

/* ========== RESOURCES ========== */
.resources {
  padding: 80px 0;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
}
.resources-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.resource-card {
  display: block; padding: 24px 20px; background: var(--bg);
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  transition: all 0.25s var(--ease);
}
.resource-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow);
}
.res-type {
  font-size: 9px; color: var(--gold); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 8px;
}
.resource-card h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px; font-weight: 500; color: var(--navy);
  line-height: 1.35; margin-bottom: 6px;
}
.resource-card p {
  font-size: 11.5px; color: var(--text-muted); line-height: 1.5;
  margin-bottom: 12px;
}
.res-dl {
  font-size: 11px; color: var(--gold); font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.res-dl svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ========== ABOUT ========== */
.about {
  padding: 80px 0;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border-light);
  position: relative; overflow: hidden;
}
.about::after {
  content: ""; position: absolute; top: 0; right: 0;
  width: 350px; height: 350px; opacity: 0.02; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='%230D1B2A' stroke-width='0.4'/%3E%3Ccircle cx='30' cy='30' r='12' fill='none' stroke='%230D1B2A' stroke-width='0.4'/%3E%3Cline x1='30' y1='0' x2='30' y2='60' stroke='%230D1B2A' stroke-width='0.3'/%3E%3Cline x1='0' y1='30' x2='60' y2='30' stroke='%230D1B2A' stroke-width='0.3'/%3E%3Cline x1='0' y1='0' x2='60' y2='60' stroke='%230D1B2A' stroke-width='0.2'/%3E%3Cline x1='60' y1='0' x2='0' y2='60' stroke='%230D1B2A' stroke-width='0.2'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 48px; align-items: start;
}
.about-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy); padding: 40px 32px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.about-photo::before {
  content: ''; position: absolute; top: -20%; right: -20%;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,107,94,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.about-cred-tag {
  font-size: 10px; color: var(--gold); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 24px;
}
.about-cred-stat {
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.about-cred-stat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.about-cred-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px; font-weight: 600; color: var(--gold);
  line-height: 1; margin-bottom: 6px;
}
.about-cred-label {
  font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.4;
}
.about-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px; font-weight: 500; color: var(--navy);
  margin-bottom: 4px;
}
.about-role {
  font-size: 12px; color: var(--gold); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.about-bio {
  font-size: 15px; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 24px;
}
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 24px;
}
.about-highlight {
  padding: 18px 18px; background: #fff;
  border: 1px solid var(--border-light); border-radius: var(--radius);
  display: flex; gap: 14px; align-items: flex-start;
  transition: all 0.3s var(--ease);
}
.about-highlight:hover {
  border-color: var(--gold-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transform: translateY(-2px);
}
.about-highlight-icon {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  background: rgba(0,107,94,0.06); border: 1px solid rgba(0,107,94,0.12);
}
.about-highlight-icon svg {
  width: 18px; height: 18px; fill: none; stroke: var(--gold);
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.about-highlight h4 {
  font-size: 12px; color: var(--gold); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 4px;
}
.about-highlight p {
  font-size: 13px; color: var(--text-secondary); line-height: 1.45;
}
.about-cred-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.2);
  margin-bottom: 10px;
}
.about-cred-icon svg {
  width: 16px; height: 16px; fill: none; stroke: var(--gold);
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}

/* ========== CREDENTIALS ========== */
.credentials {
  padding: 80px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
  position: relative; overflow: hidden;
}
.credentials::before {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 250px; height: 250px; opacity: 0.03; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 0L36 12L48 6L42 18L54 18L45 27L54 30L45 33L54 42L42 42L48 54L36 48L30 60L24 48L12 54L18 42L6 42L15 33L6 30L15 27L6 18L18 18L12 6L24 12Z' fill='none' stroke='%23C9A227' stroke-width='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.cred-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-bottom: 40px;
}
.cred-case {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.3s var(--ease);
}
.cred-case:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow);
}
.cred-case-tag {
  font-size: 10px; color: var(--gold); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 10px;
}
.cred-case-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px; font-weight: 500; color: var(--navy);
  margin-bottom: 8px; line-height: 1.3;
}
.cred-case-desc {
  font-size: 13px; color: var(--text-secondary); line-height: 1.6;
  margin-bottom: 16px;
}
.cred-case-outcomes {
  display: flex; gap: 20px; margin-bottom: 14px;
}
.cred-metric-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px; font-weight: 600; color: var(--navy);
  line-height: 1;
}
.cred-metric-label {
  font-size: 11px; color: var(--text-muted); margin-top: 3px; line-height: 1.4;
}
.cred-case-scope {
  font-size: 11px; color: var(--text-muted); padding-top: 12px;
  border-top: 1px solid var(--border-light); line-height: 1.5;
}
.cred-quote {
  text-align: center; max-width: 700px; margin: 0 auto;
  padding: 40px 0 0;
}
.cred-quote blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px; font-style: italic; color: var(--navy);
  line-height: 1.6; margin-bottom: 12px;
}
.cred-quote cite {
  font-size: 13px; color: var(--gold); font-style: normal; font-weight: 600;
}

/* ========== VISION 2030 ALIGNMENT ========== */
.vision-strip {
  padding: 56px 0; background: var(--navy); color: #fff;
  position: relative; overflow: hidden;
}
.vision-strip::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 0L48 16L64 8L56 24L72 24L60 36L72 40L60 44L72 56L56 56L64 72L48 64L40 80L32 64L16 72L24 56L8 56L20 44L8 40L20 36L8 24L24 24L16 8L32 16Z' fill='none' stroke='%23ffffff' stroke-width='0.3'/%3E%3C/svg%3E");
  opacity: 0.03; pointer-events: none;
}
.vision-strip .container { position: relative; z-index: 1; }
.vision-header {
  text-align: center; margin-bottom: 40px;
}
.vision-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px; font-weight: 500; margin-top: 8px;
}
.vision-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.vision-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 28px 24px;
}
.vision-card-pillar {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--gold); margin-bottom: 8px;
}
.vision-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px; font-weight: 500; margin-bottom: 12px;
}
.vision-card-targets {
  list-style: none; font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.7;
}
.vision-card-targets li::before {
  content: "→ "; color: var(--gold);
}
.vision-card-kpi {
  margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.vision-card-kpi strong { color: var(--gold); font-weight: 600; }
/* KAFD skyline silhouette */
.skyline-watermark {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  opacity: 0.04; pointer-events: none; overflow: hidden;
}
@media(max-width:768px) {
  .vision-grid { grid-template-columns: 1fr; }
  .enablement-grid { grid-template-columns: 1fr; }
}

/* ========== ENTERPRISE AI ENABLEMENT ========== */
.enablement {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
  border-bottom: 1px solid var(--border-light);
}
.enablement-header { text-align: center; margin-bottom: 48px; }
.enablement-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--gold);
  border: 1px solid var(--gold-border); background: var(--gold-bg);
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
}
.enablement-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px; font-weight: 500; color: var(--navy); margin-bottom: 12px;
}
.enablement-sub {
  font-size: 15px; color: var(--text-secondary); max-width: 640px; margin: 0 auto;
}
.enablement-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px;
}
.enablement-left { }
.enablement-programme {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; position: relative; overflow: hidden;
}
.enablement-programme::before {
  content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--accent));
}
.enablement-programme h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 8px;
}
.enablement-programme .ep-duration {
  font-size: 12px; font-weight: 600; color: var(--gold); margin-bottom: 16px;
}
.enablement-programme p {
  font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px;
}
.enablement-phases {
  list-style: none; counter-reset: phase;
}
.enablement-phases li {
  counter-increment: phase; position: relative;
  padding: 12px 0 12px 40px; border-bottom: 1px solid var(--border-light);
  font-size: 13px; color: var(--text);
}
.enablement-phases li:last-child { border-bottom: none; }
.enablement-phases li::before {
  content: counter(phase); position: absolute; left: 0; top: 12px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--navy); color: #fff; font-size: 11px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.enablement-outcomes {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}
.enablement-outcomes h4 {
  font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 16px;
}
.enablement-outcome-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border-light);
  font-size: 13px; color: var(--text-secondary); line-height: 1.5;
}
.enablement-outcome-item:last-child { border-bottom: none; }
.enablement-outcome-icon {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,107,94,0.1); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
}
.enablement-context {
  text-align: center; font-size: 13px; color: var(--text-muted);
  padding: 20px 0 0; border-top: 1px solid var(--border-light);
}
.enablement-context a { color: var(--accent); font-weight: 500; }

/* ========== FAQ ========== */
.faq {
  padding: 80px 0;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 40px;
}
.faq-item {
  padding: 24px; background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}
.faq-item h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px; font-weight: 500; color: var(--navy);
  margin-bottom: 8px; line-height: 1.3;
}
.faq-item p {
  font-size: 13px; color: var(--text-secondary); line-height: 1.6;
}
.faq-outcome {
  margin-top: 10px; padding: 10px 14px;
  background: var(--gold-bg); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 12.5px; color: var(--text); line-height: 1.55;
}
.faq-outcome strong { color: var(--navy); font-weight: 600; }

/* ========== LINKEDIN SOCIAL PROOF ========== */
.linkedin-proof {
  padding: 48px 0; background: var(--navy); text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.linkedin-proof .container { position: relative; z-index: 1; }
.linkedin-proof-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.linkedin-proof-stats {
  display: flex; justify-content: center; gap: 48px; margin-bottom: 20px;
  flex-wrap: wrap;
}
.lp-stat { text-align: center; }
.lp-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px; font-weight: 500; color: #fff;
}
.lp-stat-label {
  font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 4px;
}
.linkedin-proof-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px; font-style: italic; color: rgba(255,255,255,0.6);
  max-width: 560px; margin: 20px auto 16px; line-height: 1.6;
}
.linkedin-proof-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--gold);
  padding: 8px 20px; border: 1px solid rgba(0,107,94,0.3);
  border-radius: var(--radius); transition: all 0.2s;
}
.linkedin-proof-cta:hover { background: rgba(0,107,94,0.08); }
.linkedin-proof-cta svg { width: 16px; height: 16px; fill: var(--gold); }

/* ========== ENGAGEMENT TIERS ========== */
.engagement-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 20px;
}
.engagement-tier {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; text-align: center;
  position: relative;
}
.engagement-tier.featured {
  border-color: var(--gold); border-width: 2px;
}
.engagement-tier.featured::before {
  content: "Most common"; position: absolute; top: -10px; left: 50%;
  transform: translateX(-50%); font-size: 10px; font-weight: 700;
  color: #fff; background: var(--gold); padding: 2px 10px;
  border-radius: 10px; letter-spacing: 0.04em;
}
.et-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px; font-weight: 500; color: var(--navy); margin-bottom: 4px;
}
.et-duration {
  font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 8px;
}
.et-price {
  font-size: 13px; color: var(--text-secondary); margin-bottom: 8px;
}
.et-desc {
  font-size: 12px; color: var(--text-muted); line-height: 1.5;
}
@media(max-width:768px) {
  .engagement-tiers { grid-template-columns: 1fr; }
  .linkedin-proof-stats { gap: 24px; }
  .enablement-grid { grid-template-columns: 1fr; }
}

/* ========== CTA BAND ========== */
.cta-band {
  padding: 64px 0;
  background: var(--navy);
  text-align: center;
  position: relative; overflow: hidden;
  border-top: 3px solid var(--gold);
}
.cta-band::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='%23ffffff' stroke-width='0.3'/%3E%3Ccircle cx='30' cy='30' r='12' fill='none' stroke='%23ffffff' stroke-width='0.3'/%3E%3Cline x1='30' y1='0' x2='30' y2='60' stroke='%23ffffff' stroke-width='0.2'/%3E%3Cline x1='0' y1='30' x2='60' y2='30' stroke='%23ffffff' stroke-width='0.2'/%3E%3C/svg%3E");
  opacity: 0.02; pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500; color: #fff;
  margin-bottom: 10px;
}
.cta-band p {
  font-size: 15px; color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}

/* ========== CONTACT ========== */
.contact {
  padding: 80px 0;
  background: #fff;
}
.contact-inner { text-align: center; }
.contact-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500; color: var(--navy);
  margin-bottom: 10px;
}
.contact-sub {
  font-size: 15px; color: var(--text-secondary); line-height: 1.65;
  max-width: 520px; margin: 0 auto 32px;
}
#cal-embed {
  width: 100%; max-width: 700px; margin: 0 auto 36px;
  min-height: 400px; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  background: var(--bg-warm);
}
.contact-cards {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-top: 32px;
}
.contact-card {
  padding: 16px 24px; background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all 0.2s;
}
.contact-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-sm);
}
.contact-card .cl {
  font-size: 10px; color: var(--text-muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-card .cv {
  font-size: 14px; color: var(--navy); font-weight: 500;
}

/* ========== FOOTER ========== */
footer {
  padding: 48px 0 32px;
  background: var(--bg-warm);
  border-top: 2px solid var(--gold);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand {
  display: flex; align-items: center; gap: 8px;
}
.footer-wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px; font-weight: 600; color: var(--navy);
}
.footer-wordmark .dot { color: var(--gold-accent); }
.footer-sgu {
  font-size: 9px; color: var(--text-muted);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.footer-links {
  display: flex; gap: 24px;
}
.footer-links a {
  font-size: 12px; color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 11px; color: var(--text-muted);
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ========== STICKY MOBILE CTA ========== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 12px 20px; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px); border-top: 1px solid var(--border);
  text-align: center; z-index: 40;
  transform: translateY(100%); transition: transform 0.3s;
  display: none;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; justify-content: center; }

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; z-index: 30;
  opacity: 0; visibility: hidden; transition: all 0.3s;
  box-shadow: var(--shadow);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: #fff; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-questions { grid-template-columns: 1fr; }
  .fr-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 320px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .training-inner { grid-template-columns: 1fr; }
  .fr-upcoming-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sticky-cta { display: block; }
  .hero-kinetic { padding: 56px 0 48px; }
  .hk-stage { height: 56px; }
  .hk-word { line-height: 56px; }
  .hero { padding: 0; }
  .hero-top { padding-top: 36px; }
  .hero-title { font-size: 28px; }
  .cred-strip { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .acc-grid { grid-template-columns: 1fr 1fr; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .insights-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  section { padding: 56px 0; }
  .services, .insights, .accelerators, .resources, .about, .faq, .contact { padding: 56px 0; }
  .hero-timeline { padding: 24px 16px; margin: 32px 0 28px; }
  .timeline-track { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
  .timeline-step-label { font-size: 9px; }
  .timeline-tick { width: 30px; height: 30px; font-size: 12px; }
  .timeline-connector { min-width: 16px; max-width: 32px; }
  .hero-map { display: none; }
}
@media (max-width: 480px) {
  .cred-strip { grid-template-columns: 1fr 1fr; }
  .acc-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
}
