/* =============================================================
   AL SUMO SCIENTIFIC BUREAU — EMERALD INTELLIGENCE DESIGN SYSTEM
   Version 1.0 · Passion for Better Medicine · Est. 1997
   ============================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
  --alsumo-midnight-forest: #071F2A;
  --alsumo-deep-forest: #123B3A;
  --alsumo-heritage-teal: #176B61;
  --alsumo-emerald: #2FA98C;
  --alsumo-fresh-mint: #75D6B5;
  --alsumo-mint-mist: #EAF7F2;
  --alsumo-porcelain: #F8FAF9;
  --alsumo-white: #FFFFFF;

  --alsumo-carbon: #202827;
  --alsumo-graphite: #596360;
  --alsumo-silver-sage: #D9E4E0;

  --alsumo-electric-coral: #FF6B5E;
  --alsumo-coral-hover: #E95549;
  --alsumo-soft-coral: #FFF0ED;

  --alsumo-bright-aqua: #00D7C0;
  --alsumo-champagne: #C8A96B;

  /* Status system (never coral) */
  --status-error: #B3261E;
  --status-error-bg: #FCEEED;
  --status-success: #1B6E53;
  --status-success-bg: #E7F5EF;
  --status-warn: #8A6100;
  --status-warn-bg: #FFF6E0;

  /* Typography */
  --font-head: "Manrope", "IBM Plex Sans Arabic", system-ui, sans-serif;
  --font-body: "Inter", "Noto Sans Arabic", system-ui, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;

  --fs-hero: clamp(2.45rem, 1.2rem + 3.9vw, 4.2rem);
  --fs-h1: clamp(2.15rem, 1.2rem + 3vw, 3.45rem);
  --fs-h2: clamp(1.85rem, 1.25rem + 1.9vw, 2.7rem);
  --fs-h3: clamp(1.45rem, 1.15rem + 1vw, 1.95rem);
  --fs-h4: clamp(1.15rem, 1.05rem + 0.4vw, 1.3rem);
  --fs-lead: clamp(1.1rem, 1rem + 0.35vw, 1.235rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;
  --fs-tiny: 0.8125rem;

  /* Layout */
  --container: 1240px;
  --container-pad: clamp(1.125rem, 4vw, 2rem);
  --section-pad: clamp(4.5rem, 4rem + 4vw, 7.5rem);
  --header-h: 84px;

  /* Radii */
  --r-card: 16px;
  --r-btn: 11px;
  --r-field: 11px;
  --r-panel: 22px;

  /* Shadows */
  --shadow-card: 0 12px 40px rgba(18, 59, 58, 0.08);
  --shadow-lift: 0 18px 55px rgba(18, 59, 58, 0.12);
  --shadow-header: 0 6px 24px rgba(18, 59, 58, 0.07);

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #071F2A 0%, #123B3A 48%, #176B61 100%);
  --grad-emerald: linear-gradient(135deg, #176B61 0%, #2FA98C 55%, #75D6B5 100%);
  --grad-light: linear-gradient(135deg, #FFFFFF 0%, #F8FAF9 45%, #EAF7F2 100%);
  --grad-coral: linear-gradient(135deg, #FF6B5E 0%, #FF8173 100%);
  --grad-digital: linear-gradient(135deg, #176B61 0%, #2FA98C 55%, #00D7C0 100%);
  --grad-dark-cta:
    radial-gradient(circle at 82% 18%, rgba(255, 107, 94, 0.14), transparent 32%),
    linear-gradient(135deg, #071F2A 0%, #123B3A 100%);

  --ease: cubic-bezier(0.33, 1, 0.68, 1);
  --t-fast: 200ms;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--alsumo-carbon);
  background: var(--alsumo-porcelain);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--alsumo-heritage-teal); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--alsumo-emerald); }
p { margin: 0 0 1.1em; }
ul, ol { padding-inline-start: 1.35em; margin: 0 0 1.1em; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.16;
  color: var(--alsumo-deep-forest);
  margin: 0 0 0.55em;
  letter-spacing: -0.015em;
}
h1 { font-size: var(--fs-h1); font-weight: 800; }
h2 { font-size: var(--fs-h2); font-weight: 800; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
[dir="rtl"] body, [dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 { letter-spacing: 0; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5 {
  font-family: "IBM Plex Sans Arabic", var(--font-head); line-height: 1.35;
}
[dir="rtl"] body { font-family: "Noto Sans Arabic", var(--font-body); }

::selection { background: var(--alsumo-emerald); color: #fff; }

.skip-link {
  position: absolute; inset-inline-start: 12px; top: -60px; z-index: 200;
  background: var(--alsumo-deep-forest); color: #fff; padding: 10px 18px;
  border-radius: 8px; transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

:focus-visible {
  outline: 3px solid var(--alsumo-emerald);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. Layout helpers ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--container-pad); }
.container-wide { max-width: 1380px; margin-inline: auto; padding-inline: var(--container-pad); }
.section { padding-block: var(--section-pad); }
.section-tight { padding-block: calc(var(--section-pad) * 0.62); }
.bg-white { background: var(--alsumo-white); }
.bg-porcelain { background: var(--alsumo-porcelain); }
.bg-mint { background: var(--alsumo-mint-mist); }
.bg-light-grad { background: var(--grad-light); }
.bg-forest { background: var(--alsumo-deep-forest); color: #E9F2EF; }
.bg-midnight { background: var(--alsumo-midnight-forest); color: #E9F2EF; }
.bg-dark-cta { background: var(--grad-dark-cta); color: #E9F2EF; }
.bg-forest h2, .bg-forest h3, .bg-midnight h2, .bg-midnight h3,
.bg-dark-cta h2, .bg-dark-cta h3 { color: #fff; }

.grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.75rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* Eyebrow + section headers */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--font-head); font-size: var(--fs-tiny); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--alsumo-heritage-teal); margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 34px; height: 2px; border-radius: 2px;
  background: var(--grad-emerald); flex: none;
}
[dir="rtl"] .eyebrow { letter-spacing: 0.04em; }
.bg-forest .eyebrow, .bg-midnight .eyebrow, .bg-dark-cta .eyebrow, .on-dark .eyebrow { color: var(--alsumo-fresh-mint); }
.eyebrow--champagne { color: var(--alsumo-champagne); }
.eyebrow--champagne::before { background: var(--alsumo-champagne); }

.section-head { max-width: 780px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { color: var(--alsumo-graphite); font-size: var(--fs-lead); }
.bg-forest .section-head p, .bg-midnight .section-head p, .bg-dark-cta .section-head p { color: #BFD9D0; }

.lead { font-size: var(--fs-lead); color: var(--alsumo-graphite); }
.muted { color: var(--alsumo-graphite); }
.small { font-size: var(--fs-small); }
.tiny { font-size: var(--fs-tiny); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 0.86em 1.75em; border-radius: var(--r-btn);
  border: 1px solid transparent; cursor: pointer; text-align: center;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
[dir="rtl"] .btn svg.arrow { transform: scaleX(-1); }

.btn-coral { background: var(--alsumo-electric-coral); color: #fff; border-color: var(--alsumo-electric-coral); }
.btn-coral:hover { background: var(--alsumo-coral-hover); border-color: var(--alsumo-coral-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(233, 85, 73, 0.28); }
.btn-coral:focus-visible { outline: 4px solid rgba(255, 107, 94, 0.28); outline-offset: 3px; }

.btn-emerald { background: var(--alsumo-emerald); color: #fff; border-color: var(--alsumo-emerald); }
.btn-emerald:hover { background: var(--alsumo-heritage-teal); border-color: var(--alsumo-heritage-teal); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(23, 107, 97, 0.24); }

.btn-outline { background: transparent; color: var(--alsumo-deep-forest); border-color: var(--alsumo-heritage-teal); }
.btn-outline:hover { background: var(--alsumo-mint-mist); color: var(--alsumo-deep-forest); transform: translateY(-2px); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); color: #fff; border-color: #fff; transform: translateY(-2px); }

.btn-white { background: #fff; color: var(--alsumo-deep-forest); border-color: #fff; }
.btn-white:hover { background: var(--alsumo-mint-mist); transform: translateY(-2px); }

.btn-lg { font-size: 1.08rem; padding: 1em 2.1em; }
.btn-sm { font-size: 0.92rem; padding: 0.62em 1.3em; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-family: var(--font-head); font-weight: 700; color: var(--alsumo-heritage-teal);
}
.text-link:hover { color: var(--alsumo-emerald); }
.text-link svg { width: 1em; height: 1em; transition: transform var(--t-fast) var(--ease); }
.text-link:hover svg { transform: translateX(4px); }
[dir="rtl"] .text-link svg { transform: scaleX(-1); }
[dir="rtl"] .text-link:hover svg { transform: scaleX(-1) translateX(4px); }

.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* ---------- 5. Header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: background 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
}
.header-inner {
  max-width: 1400px; margin-inline: auto; padding-inline: clamp(1rem, 2vw, 1.6rem);
  display: flex; align-items: center; gap: 0.9rem;
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 46px; width: auto; }
.brand .logo-color { display: none; }

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--alsumo-silver-sage);
  box-shadow: var(--shadow-header);
}
.site-header.is-scrolled .brand .logo-white { display: none; }
.site-header.is-scrolled .brand .logo-color { display: block; }

.main-nav { display: flex; align-items: center; gap: 0.15rem; margin-inline-start: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 0.15rem; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-item > a {
  display: inline-flex; align-items: center; gap: 0.3em;
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92); padding: 0.55em 0.6em; border-radius: 9px;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  white-space: nowrap;
}
.nav-item > a:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.nav-item > a[aria-current="page"] { color: var(--alsumo-fresh-mint); }
.site-header.is-scrolled .nav-item > a { color: var(--alsumo-deep-forest); }
.site-header.is-scrolled .nav-item > a:hover { background: var(--alsumo-mint-mist); }
.site-header.is-scrolled .nav-item > a[aria-current="page"] { color: var(--alsumo-heritage-teal); box-shadow: inset 0 -2px 0 var(--alsumo-heritage-teal); border-radius: 9px 9px 0 0; }
.nav-item > a .chev { width: 0.72em; height: 0.72em; opacity: 0.7; transition: transform var(--t-fast) var(--ease); }
.nav-item.open > a .chev, .nav-item:hover > a .chev { transform: rotate(180deg); }

.sub-menu {
  position: absolute; top: calc(100% + 10px); inset-inline-start: 0;
  min-width: 264px; background: #fff; border: 1px solid var(--alsumo-silver-sage);
  border-radius: 14px; box-shadow: var(--shadow-lift); padding: 0.55rem;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms;
  z-index: 60; max-height: min(70vh, 560px); overflow: auto;
}
.nav-item:hover > .sub-menu, .nav-item:focus-within > .sub-menu, .nav-item.open > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.sub-menu a {
  display: block; padding: 0.56em 0.85em; border-radius: 9px;
  font-size: 0.92rem; font-weight: 500; color: var(--alsumo-carbon);
}
.sub-menu a:hover { background: var(--alsumo-mint-mist); color: var(--alsumo-heritage-teal); }

.header-tools { display: flex; align-items: center; gap: 0.55rem; margin-inline-start: 0.3rem; flex: none; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-family: var(--font-head); font-weight: 700; font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92); border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.44em 0.9em; border-radius: 999px;
  transition: all var(--t-fast) var(--ease);
}
.lang-switch:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.lang-switch svg { width: 1.05em; height: 1.05em; flex: none; }
.site-header.is-scrolled .lang-switch { color: var(--alsumo-deep-forest); border-color: var(--alsumo-silver-sage); }
.site-header.is-scrolled .lang-switch:hover { background: var(--alsumo-mint-mist); }
.header-cta { white-space: nowrap; }
.header-cta.btn { font-size: 0.88rem; padding: 0.6em 1.15em; }

.nav-toggle {
  display: none; background: transparent; border: 1px solid rgba(255,255,255,0.4);
  border-radius: 10px; padding: 9px 11px; cursor: pointer; color: #fff;
}
.site-header.is-scrolled .nav-toggle { color: var(--alsumo-deep-forest); border-color: var(--alsumo-silver-sage); }
.nav-toggle svg { width: 22px; height: 22px; display: block; }

@media (max-width: 1219.98px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; margin-inline-start: auto; }
  .header-tools { margin-inline-start: 0; }
  .header-cta { display: none; }
  .brand img { height: 40px; }
  :root { --header-h: 70px; }
}
@media (min-width: 1220px) and (max-width: 1359.98px) {
  .nav-item > a { font-size: 0.86rem; padding-inline: 0.45em; }
  .brand img { height: 40px; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 150; visibility: hidden;
}
.drawer.open { visibility: visible; }
.drawer-backdrop {
  position: absolute; inset: 0; background: rgba(7, 31, 42, 0.55);
  opacity: 0; transition: opacity 240ms var(--ease);
}
.drawer.open .drawer-backdrop { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; bottom: 0; inset-inline-end: 0;
  width: min(400px, 92vw); background: #fff; overflow-y: auto;
  transform: translateX(100%); transition: transform 300ms var(--ease);
  display: flex; flex-direction: column;
}
[dir="rtl"] .drawer-panel { transform: translateX(-100%); }
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--alsumo-silver-sage);
}
.drawer-head img { height: 38px; width: auto; }
.drawer-close { background: none; border: none; cursor: pointer; padding: 8px; color: var(--alsumo-deep-forest); }
.drawer-close svg { width: 24px; height: 24px; display: block; }
.drawer-nav { padding: 0.75rem 1rem 2rem; flex: 1; }
.drawer-nav svg, .drawer-cta svg { width: 1em; height: 1em; flex: none; }
.drawer-nav ul { list-style: none; margin: 0; padding: 0; }
.drawer-nav > ul > li { border-bottom: 1px solid var(--alsumo-porcelain); }
.drawer-nav > ul > li > a, .drawer-sub-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; text-align: start;
  color: var(--alsumo-deep-forest); padding: 0.9em 0.5em;
  background: none; border: none; cursor: pointer;
}
.drawer-sub-toggle svg { width: 1em; height: 1em; transition: transform var(--t-fast) var(--ease); }
.drawer-sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer-sub { display: none; padding: 0 0.5em 0.9em; }
.drawer-sub.open { display: block; }
.drawer-sub a {
  display: block; padding: 0.5em 0.9em; font-size: 0.95rem;
  color: var(--alsumo-graphite); border-radius: 8px;
}
.drawer-sub a:hover { background: var(--alsumo-mint-mist); color: var(--alsumo-heritage-teal); }
.drawer-cta { padding: 1rem 1.25rem 1.5rem; border-top: 1px solid var(--alsumo-silver-sage); display: grid; gap: 0.7rem; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: var(--grad-hero);
  padding-top: calc(var(--header-h) + clamp(3rem, 8vh, 6rem));
  padding-bottom: clamp(3rem, 6vh, 5rem);
  min-height: min(92vh, 900px);
  display: flex; flex-direction: column; justify-content: center;
}
.hero::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(7, 31, 42, 0.35));
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 4vw, 4rem); align-items: center;
}
.hero-copy .eyebrow { color: var(--alsumo-fresh-mint); }
.hero-title { font-size: var(--fs-hero); font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 0.5em; max-width: 15ch; }
[dir="rtl"] .hero-title { letter-spacing: 0; max-width: 20ch; }
.hero-title .accent { color: var(--alsumo-fresh-mint); }
.hero-sub { font-size: var(--fs-lead); color: var(--alsumo-mint-mist); max-width: 52ch; margin-bottom: 2rem; }
.hero-map { position: relative; }
.hero-map svg { width: 100%; height: auto; }

.hero-cred {
  position: relative; z-index: 3;
  margin-top: clamp(2.5rem, 5vh, 4rem);
}
.cred-bar {
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-radius: var(--r-panel); overflow: hidden;
}
.cred-item {
  padding: 1.15rem 1.3rem; text-align: center;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
}
.cred-item:first-child { border-inline-start: none; }
.cred-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.3rem, 2vw, 1.7rem); color: #fff; display: block; line-height: 1.2; }
.cred-num.champagne { color: var(--alsumo-champagne); }
.cred-label { font-size: var(--fs-tiny); color: var(--alsumo-mint-mist); letter-spacing: 0.05em; }
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-map { max-width: 460px; margin-inline: auto; opacity: 0.9; }
  .cred-bar { grid-template-columns: repeat(3, 1fr); }
  .cred-item:nth-child(4), .cred-item:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.12); }
  .cred-item:nth-child(4) { border-inline-start: none; }
}
@media (max-width: 620px) {
  .hero { min-height: 0; }
  .hero-map { display: none; }
  .cred-bar { grid-template-columns: repeat(2, 1fr); }
  .cred-item { border-top: 1px solid rgba(255,255,255,0.12); }
  .cred-item:nth-child(-n+2) { border-top: none; }
  .cred-item:nth-child(odd) { border-inline-start: none; }
}

/* Page hero (interior pages) */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background: var(--grad-hero);
  padding-top: calc(var(--header-h) + clamp(2.6rem, 6vh, 4.5rem));
  padding-bottom: clamp(2.6rem, 5vh, 4rem);
}
.page-hero h1 { color: #fff; max-width: 22ch; margin-bottom: 0.35em; }
.page-hero .lead { color: var(--alsumo-mint-mist); max-width: 62ch; }
.page-hero .eyebrow { color: var(--alsumo-fresh-mint); }
.breadcrumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5em;
  list-style: none; padding: 0; margin: 0 0 1.4rem;
  font-size: var(--fs-tiny); color: rgba(255, 255, 255, 0.75);
}
.breadcrumbs a { color: rgba(255, 255, 255, 0.75); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs li:not(:last-child)::after { content: "›"; margin-inline-start: 0.5em; opacity: 0.55; }
[dir="rtl"] .breadcrumbs li:not(:last-child)::after { content: "‹"; }
.breadcrumbs [aria-current="page"] { color: var(--alsumo-fresh-mint); }

/* Decorative grid dots on dark heroes */
.hero-deco {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(117, 214, 181, 0.16) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse 75% 90% at 78% 10%, black, transparent 70%);
  mask-image: radial-gradient(ellipse 75% 90% at 78% 10%, black, transparent 70%);
}

/* ---------- 7. Stats band ---------- */
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--alsumo-silver-sage); border-radius: var(--r-panel);
  overflow: hidden; background: #fff;
}
.stat-cell {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-inline-start: 1px solid var(--alsumo-silver-sage);
  border-top: 1px solid var(--alsumo-silver-sage);
  position: relative;
}
.stat-cell:nth-child(3n+1) { border-inline-start: none; }
.stat-cell:nth-child(-n+3) { border-top: none; }
.stat-value {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.1;
  color: var(--alsumo-deep-forest); display: block; margin-bottom: 0.35rem;
  font-variant-numeric: tabular-nums;
}
.stat-cell.highlight .stat-value { color: var(--alsumo-electric-coral); }
.stat-cell.champagne .stat-value { color: var(--alsumo-champagne); }
.stat-label { font-family: var(--font-head); font-weight: 700; color: var(--alsumo-carbon); font-size: 0.98rem; display: block; }
.stat-note { font-size: var(--fs-tiny); color: var(--alsumo-graphite); margin-top: 0.3rem; display: block; }
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(3n+1) { border-inline-start: 1px solid var(--alsumo-silver-sage); }
  .stat-cell:nth-child(odd) { border-inline-start: none; }
  .stat-cell:nth-child(-n+2) { border-top: none; }
  .stat-cell:nth-child(3) { border-top: 1px solid var(--alsumo-silver-sage); }
}
.source-note { font-size: var(--fs-tiny); color: var(--alsumo-graphite); margin-top: 1rem; }
.source-note strong { color: var(--alsumo-carbon); }

/* ---------- 8. Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--alsumo-silver-sage);
  border-radius: var(--r-card); box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  position: relative;
  display: flex; flex-direction: column;
}
a.card { color: inherit; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: rgba(47, 169, 140, 0.45); }
.card .icon-tile {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1.15rem;
  background: var(--alsumo-mint-mist); color: var(--alsumo-heritage-teal); flex: none;
}
.card .icon-tile svg { width: 27px; height: 27px; }
.card.icon-grad .icon-tile { background: var(--grad-emerald); color: #fff; }
.card h3 { font-size: 1.22rem; margin-bottom: 0.5rem; }
.card p { color: var(--alsumo-graphite); font-size: 0.97rem; margin-bottom: 0; }
.card .text-link { margin-top: auto; padding-top: 1.1rem; font-size: 0.95rem; }
.card-dark { background: var(--alsumo-deep-forest); border-color: rgba(255,255,255,0.12); }
.card-dark h3 { color: #fff; }
.card-dark p { color: #BFD9D0; }

/* Therapeutic area tiles */
.ta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
@media (max-width: 1020px) { .ta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .ta-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ta-grid { grid-template-columns: 1fr; } }
.ta-tile {
  background: #fff; border: 1px solid var(--alsumo-silver-sage); border-radius: var(--r-card);
  padding: 1.4rem 1.3rem; color: inherit; display: flex; flex-direction: column; gap: 0.55rem;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.ta-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--alsumo-emerald); color: inherit; }
.ta-tile .icon-tile {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--alsumo-mint-mist); color: var(--alsumo-heritage-teal);
}
.ta-tile .icon-tile svg { width: 24px; height: 24px; }
.ta-tile h3 { font-size: 1.03rem; margin: 0; }
.ta-tile p { font-size: 0.86rem; color: var(--alsumo-graphite); margin: 0; }
.ta-tile .text-link { font-size: 0.85rem; margin-top: auto; padding-top: 0.4rem; }

/* Partner cards */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 1020px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .partner-grid { grid-template-columns: 1fr; } }
.partner-card {
  background: #fff; border: 1px solid var(--alsumo-silver-sage); border-radius: var(--r-card);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.partner-logo {
  height: 118px; display: grid; place-items: center; padding: 1.2rem;
  border-bottom: 1px solid var(--alsumo-porcelain); background: #fff;
}
.partner-logo img { max-height: 74px; width: auto; max-width: 82%; object-fit: contain; }
.partner-body { padding: 1.25rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.partner-body h3 { font-size: 1.08rem; margin: 0; }
.partner-country {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-size: var(--fs-tiny); font-weight: 600; color: var(--alsumo-heritage-teal);
}
.partner-country svg { width: 1em; height: 1em; flex: none; }
.partner-country .country-map {
  width: 40px; height: 30px; flex: none;
  background: var(--alsumo-mint-mist); border-radius: 7px;
  padding: 3px; color: var(--alsumo-heritage-teal);
}
.partner-body p { font-size: 0.9rem; color: var(--alsumo-graphite); margin: 0; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; padding-top: 0.6rem; }
.chip {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em;
  background: var(--alsumo-mint-mist); color: var(--alsumo-heritage-teal);
  border-radius: 999px; padding: 0.28em 0.85em;
}
.chip--outline { background: transparent; border: 1px solid var(--alsumo-silver-sage); color: var(--alsumo-graphite); }

/* Logo marquee strip */
.logo-strip { overflow: hidden; position: relative; }
.logo-track { display: flex; align-items: center; gap: clamp(2.4rem, 5vw, 4.5rem); width: max-content; animation: marquee 42s linear infinite; }
.logo-track img { height: 44px; width: auto; filter: grayscale(1); opacity: 0.65; transition: filter var(--t-fast), opacity var(--t-fast); }
.logo-track img:hover { filter: none; opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }
[dir="rtl"] .logo-track { animation-direction: reverse; }

/* News cards */
.news-card {
  background: #fff; border: 1px solid var(--alsumo-silver-sage); border-radius: var(--r-card);
  overflow: hidden; display: flex; flex-direction: column; color: inherit;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); color: inherit; }
.news-media { aspect-ratio: 16/9; overflow: hidden; background: var(--grad-emerald); position: relative; }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.news-card:hover .news-media img { transform: scale(1.04); }
.news-media .placeholder-art { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,0.85); }
.news-media .placeholder-art svg { width: 54px; height: 54px; }
.news-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.news-meta { display: flex; align-items: center; gap: 0.8em; font-size: var(--fs-tiny); color: var(--alsumo-graphite); }
.news-cat { color: var(--alsumo-heritage-teal); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; }
.news-body h3 { font-size: 1.1rem; margin: 0; line-height: 1.35; }
.news-body p { font-size: 0.92rem; color: var(--alsumo-graphite); margin: 0; }

/* ---------- 9. Process timeline (market entry) ---------- */
.process {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  counter-reset: step;
}
@media (max-width: 1020px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }
.process-step {
  background: #fff; border: 1px solid var(--alsumo-silver-sage); border-radius: var(--r-card);
  padding: 1.35rem 1.25rem; position: relative; counter-increment: step;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.process-step:hover { transform: translateY(-3px); border-color: var(--alsumo-emerald); box-shadow: var(--shadow-card); }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head); font-weight: 800; font-size: 0.8rem;
  color: #fff; background: var(--grad-emerald);
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center; margin-bottom: 0.85rem;
}
.process-step h3 { font-size: 0.99rem; margin-bottom: 0.3rem; }
.process-step p { font-size: 0.84rem; color: var(--alsumo-graphite); margin: 0; }

/* Journey timeline */
.timeline { position: relative; padding-inline-start: 2rem; }
.timeline::before {
  content: ""; position: absolute; inset-block: 6px; inset-inline-start: 7px;
  width: 2px; background: linear-gradient(to bottom, var(--alsumo-champagne), var(--alsumo-emerald));
  border-radius: 2px;
}
.tl-item { position: relative; padding-bottom: 2rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; inset-inline-start: -2rem; top: 7px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--alsumo-fresh-mint); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--alsumo-emerald); margin-inline-start: 0;
}
.tl-item .tl-year {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  color: var(--alsumo-champagne); font-size: 1.35rem; display: block; line-height: 1.2;
}
[dir="rtl"] .tl-item .tl-year { font-family: var(--font-head); font-style: normal; font-weight: 700; }
.tl-item h3 { font-size: 1.12rem; margin: 0.25rem 0 0.3rem; }
.tl-item p { color: var(--alsumo-graphite); font-size: 0.95rem; margin: 0; max-width: 60ch; }

/* Roadmap phases (Market Access page) */
.phase {
  display: grid; grid-template-columns: 200px 1fr; gap: clamp(1.2rem, 3vw, 2.5rem);
  padding: clamp(1.6rem, 3vw, 2.4rem) 0; border-top: 1px solid var(--alsumo-silver-sage);
}
.phase:last-of-type { border-bottom: 1px solid var(--alsumo-silver-sage); }
@media (max-width: 760px) { .phase { grid-template-columns: 1fr; gap: 0.8rem; } }
.phase-num {
  font-family: var(--font-head); font-weight: 800; color: var(--alsumo-emerald);
  font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.phase-num strong { display: block; font-size: 2.2rem; color: var(--alsumo-deep-forest); letter-spacing: 0; line-height: 1.1; margin-top: 0.2rem; }
.phase h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.phase ul { columns: 2; gap: 2.4rem; font-size: 0.95rem; color: var(--alsumo-graphite); margin: 0; }
.phase ul li { margin-bottom: 0.45em; break-inside: avoid; }
@media (max-width: 560px) { .phase ul { columns: 1; } }

/* ---------- 10. Feature lists & checkmarks ---------- */
.check-list { list-style: none; padding: 0; margin: 0 0 1.2rem; display: grid; gap: 0.65rem; }
.check-list li { display: flex; gap: 0.7em; align-items: flex-start; font-size: 0.98rem; }
.check-list li svg { width: 20px; height: 20px; flex: none; color: var(--alsumo-emerald); margin-top: 3px; }
.check-list.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .check-list.cols-2 { grid-template-columns: 1fr; } }
.bg-forest .check-list li svg, .bg-midnight .check-list li svg { color: var(--alsumo-fresh-mint); }

/* Definition rows (capabilities page) */
.cap-section { padding-block: clamp(2.6rem, 5vw, 4rem); border-top: 1px solid var(--alsumo-silver-sage); }
.cap-section:first-of-type { border-top: none; }
.cap-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.cap-head .icon-tile {
  width: 56px; height: 56px; border-radius: 15px; background: var(--grad-emerald);
  color: #fff; display: grid; place-items: center; flex: none;
}
.cap-head .icon-tile svg { width: 28px; height: 28px; }
.cap-head h2 { margin: 0; font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
.cap-cols { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3.5rem); }
@media (max-width: 860px) { .cap-cols { grid-template-columns: 1fr; } }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; align-content: flex-start; align-items: flex-start; }
.tag-cloud .chip { line-height: 1.5; }
.tag-cloud .chip { font-size: 0.8rem; padding: 0.4em 1em; }

/* ---------- 11. Quote / CEO ---------- */
.quote-panel {
  background: #fff; border: 1px solid var(--alsumo-silver-sage);
  border-radius: var(--r-panel); box-shadow: var(--shadow-card);
  padding: clamp(1.8rem, 4vw, 3.2rem);
  position: relative; overflow: hidden;
}
.quote-panel::before {
  content: ""; position: absolute; top: 0; inset-inline-start: 0;
  width: 4px; height: 100%; background: linear-gradient(var(--alsumo-champagne), var(--alsumo-emerald));
}
.quote-text {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.6; color: var(--alsumo-deep-forest);
}
[dir="rtl"] .quote-text { font-family: "IBM Plex Sans Arabic", var(--font-head); font-style: normal; }
.quote-attrib { display: flex; align-items: center; gap: 1rem; margin-top: 1.6rem; }
.quote-attrib img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; object-position: top; }
.quote-attrib .name { font-family: var(--font-head); font-weight: 800; color: var(--alsumo-deep-forest); display: block; }
.quote-attrib .role { font-size: var(--fs-tiny); color: var(--alsumo-champagne); font-weight: 600; letter-spacing: 0.06em; }

/* ---------- 12. Media panels ---------- */
.media-panel { border-radius: var(--r-panel); overflow: hidden; position: relative; box-shadow: var(--shadow-lift); }
.media-panel img { width: 100%; height: 100%; object-fit: cover; }
.media-panel .media-tag {
  position: absolute; bottom: 14px; inset-inline-start: 14px;
  background: rgba(255, 255, 255, 0.86); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-radius: 10px; padding: 0.5em 0.95em;
  font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; color: var(--alsumo-deep-forest);
  display: inline-flex; align-items: center; gap: 0.5em;
}
.media-panel .media-tag svg { width: 16px; height: 16px; color: var(--alsumo-emerald); }
.media-tall { aspect-ratio: 4/4.6; }
.media-wide { aspect-ratio: 16/10; }
@media (max-width: 900px) {
  /* When split layouts stack, cap panel height so photos stay in proportion */
  .media-tall { aspect-ratio: 4/3.2; }
}

.badge-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; }
.badge-row img { height: 66px; width: auto; border-radius: 10px; border: 1px solid var(--alsumo-silver-sage); background: #fff; padding: 6px; }

/* ---------- 13. Forms ---------- */
.form-panel {
  background: #fff; border: 1px solid var(--alsumo-silver-sage);
  border-radius: var(--r-panel); box-shadow: var(--shadow-card);
  padding: clamp(1.6rem, 3.5vw, 2.8rem);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 1.3rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--alsumo-deep-forest); }
.field label .req { color: var(--status-error); }
.field .hint { font-size: var(--fs-tiny); color: var(--alsumo-graphite); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="url"], .field input[type="number"], .field select, .field textarea {
  font: inherit; font-size: 0.98rem; color: var(--alsumo-carbon);
  border: 1px solid var(--alsumo-silver-sage); border-radius: var(--r-field);
  padding: 0.75em 1em; background: var(--alsumo-porcelain);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--alsumo-emerald); background: #fff;
  box-shadow: 0 0 0 4px rgba(47, 169, 140, 0.16);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--status-error); }
.field .error-msg {
  display: none; align-items: center; gap: 0.4em;
  font-size: var(--fs-tiny); color: var(--status-error); font-weight: 600;
}
.field.invalid .error-msg { display: inline-flex; }
.field .error-msg svg { width: 14px; height: 14px; flex: none; }

.file-drop {
  border: 1.5px dashed var(--alsumo-silver-sage); border-radius: var(--r-field);
  padding: 1.4rem; text-align: center; background: var(--alsumo-porcelain);
  transition: border-color var(--t-fast), background var(--t-fast); cursor: pointer;
}
.file-drop:hover, .file-drop:focus-within { border-color: var(--alsumo-emerald); background: var(--alsumo-mint-mist); }
.file-drop svg { width: 30px; height: 30px; color: var(--alsumo-emerald); margin-inline: auto; margin-bottom: 0.4rem; }
.file-drop .file-note { font-size: var(--fs-tiny); color: var(--alsumo-graphite); }
.file-drop input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; }

.consent { display: flex; gap: 0.7em; align-items: flex-start; font-size: var(--fs-small); color: var(--alsumo-graphite); }
.consent input[type="checkbox"] { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--alsumo-heritage-teal); flex: none; }

.form-status { display: none; border-radius: var(--r-field); padding: 1rem 1.2rem; font-size: 0.95rem; margin-top: 1.2rem; }
.form-status.success { display: flex; gap: 0.6em; background: var(--status-success-bg); color: var(--status-success); border: 1px solid rgba(27, 110, 83, 0.25); }
.form-status.error { display: flex; gap: 0.6em; background: var(--status-error-bg); color: var(--status-error); border: 1px solid rgba(179, 38, 30, 0.25); }
.form-status svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }

/* Inquiry pathway selector */
.pathways { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
@media (max-width: 1020px) { .pathways { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pathways { grid-template-columns: 1fr; } }
.pathway {
  display: flex; flex-direction: column; gap: 0.5rem; text-align: start;
  background: #fff; border: 1px solid var(--alsumo-silver-sage); border-radius: var(--r-card);
  padding: 1.15rem 1.2rem; cursor: pointer; font: inherit;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.pathway:hover { border-color: var(--alsumo-emerald); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.pathway[aria-pressed="true"] { border-color: var(--alsumo-heritage-teal); box-shadow: inset 0 0 0 1.5px var(--alsumo-heritage-teal); background: var(--alsumo-mint-mist); }
.pathway svg { width: 25px; height: 25px; color: var(--alsumo-heritage-teal); }
.pathway .pw-title { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--alsumo-deep-forest); }
.pathway .pw-desc { font-size: 0.8rem; color: var(--alsumo-graphite); }

/* ---------- 14. Filters ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1.8rem; align-items: center; }
.filter-label { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--alsumo-graphite); margin-inline-end: 0.4rem; }
.filter-btn {
  font-family: var(--font-head); font-weight: 600; font-size: 0.87rem;
  border: 1px solid var(--alsumo-silver-sage); background: #fff; color: var(--alsumo-carbon);
  border-radius: 999px; padding: 0.45em 1.15em; cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.filter-btn:hover { border-color: var(--alsumo-emerald); color: var(--alsumo-heritage-teal); }
.filter-btn[aria-pressed="true"] { background: var(--alsumo-heritage-teal); border-color: var(--alsumo-heritage-teal); color: #fff; }

/* ---------- 15. Group companies / map ---------- */
.group-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
@media (max-width: 680px) { .group-grid { grid-template-columns: 1fr; } }
.group-card {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-card); padding: 1.5rem 1.6rem;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.group-card:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(117, 214, 181, 0.5); transform: translateY(-3px); }
.group-card .g-city {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-size: var(--fs-tiny); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--alsumo-fresh-mint); margin-bottom: 0.5rem;
}
.group-card .g-city svg { width: 14px; height: 14px; }
.group-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 0.35rem; }
.group-card p { color: #BFD9D0; font-size: 0.92rem; margin: 0; }
.group-card .chip { background: rgba(200, 169, 107, 0.16); color: var(--alsumo-champagne); margin-top: 0.8rem; display: inline-block; }

/* ---------- 16. Accordion ---------- */
.accordion { border: 1px solid var(--alsumo-silver-sage); border-radius: var(--r-card); overflow: hidden; background: #fff; }
.acc-item + .acc-item { border-top: 1px solid var(--alsumo-silver-sage); }
.acc-trigger {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; width: 100%;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; text-align: start;
  color: var(--alsumo-deep-forest); background: #fff; border: none; cursor: pointer;
  padding: 1.15rem 1.4rem; transition: background var(--t-fast);
}
.acc-trigger:hover { background: var(--alsumo-porcelain); }
.acc-trigger svg { width: 20px; height: 20px; flex: none; color: var(--alsumo-emerald); transition: transform var(--t-fast) var(--ease); }
.acc-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.acc-panel { display: none; padding: 0 1.4rem 1.3rem; color: var(--alsumo-graphite); font-size: 0.96rem; }
.acc-panel.open { display: block; }

/* Vacancy row */
.vacancy {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center;
  background: #fff; border: 1px solid var(--alsumo-silver-sage); border-radius: var(--r-card);
  padding: 1.25rem 1.5rem; transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.vacancy:hover { border-color: var(--alsumo-emerald); box-shadow: var(--shadow-card); }
.vacancy h3 { font-size: 1.08rem; margin: 0 0 0.25rem; }
.vacancy .v-meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem; font-size: var(--fs-tiny); color: var(--alsumo-graphite); }
.vacancy .v-meta span { display: inline-flex; align-items: center; gap: 0.35em; }
.vacancy .v-meta svg { width: 14px; height: 14px; color: var(--alsumo-emerald); }
@media (max-width: 560px) { .vacancy { grid-template-columns: 1fr; } }

/* ---------- 17. Footer ---------- */
.site-footer { background: var(--alsumo-deep-forest); color: #BFD9D0; position: relative; }
.footer-top {
  background: var(--alsumo-midnight-forest);
  padding-block: 2rem;
}
.footer-main { padding-block: clamp(2.8rem, 5vw, 4.2rem) 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.8rem);
}
@media (max-width: 1020px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 54px; width: auto; margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 {
  color: #fff; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1rem;
}
[dir="rtl"] .footer-col h4 { letter-spacing: 0.02em; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a { color: #BFD9D0; font-size: 0.92rem; }
.footer-col a:hover { color: var(--alsumo-fresh-mint); }
.footer-contact li { display: flex; gap: 0.6em; align-items: flex-start; font-size: 0.9rem; }
.footer-contact svg { width: 17px; height: 17px; flex: none; color: var(--alsumo-emerald); margin-top: 3px; }
.footer-contact a { direction: ltr; unicode-bidi: embed; }
.social-row { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.social-row a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.08); color: #cfe5dd;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.social-row a:hover { background: var(--alsumo-emerald); color: #fff; transform: translateY(-2px); }
.social-row svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.3rem; font-size: var(--fs-tiny);
  display: flex; flex-wrap: wrap; gap: 0.7rem 1.6rem; align-items: center; justify-content: space-between;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; list-style: none; margin: 0; padding: 0; }
.footer-legal a { color: #9FBDB3; }
.footer-legal a:hover { color: var(--alsumo-fresh-mint); }
.footer-est { color: var(--alsumo-champagne); font-family: var(--font-serif); font-style: italic; }
[dir="rtl"] .footer-est { font-family: inherit; font-style: normal; }

/* ---------- 18. CTA banner ---------- */
.cta-banner { position: relative; overflow: hidden; }
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { max-width: 22ch; }
.cta-banner p { max-width: 62ch; }

/* ---------- 19. Utility & motion ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 640ms var(--ease), transform 640ms var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 90ms; }
.reveal-d2 { transition-delay: 180ms; }
.reveal-d3 { transition-delay: 270ms; }

.divider-champagne { border: none; height: 1px; background: linear-gradient(to right, transparent, var(--alsumo-champagne), transparent); margin-block: 2.2rem; }

.note-pending {
  display: inline-flex; align-items: center; gap: 0.5em;
  background: var(--status-warn-bg); color: var(--status-warn);
  border: 1px dashed rgba(138, 97, 0, 0.35); border-radius: 9px;
  font-size: var(--fs-tiny); font-weight: 600; padding: 0.4em 0.9em;
}
.note-pending svg { width: 14px; height: 14px; flex: none; }

.anchor-offset { scroll-margin-top: calc(var(--header-h) + 24px); }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 18px; inset-inline: 18px; z-index: 180;
  max-width: 520px; margin-inline-start: auto;
  background: #fff; border: 1px solid var(--alsumo-silver-sage); border-radius: var(--r-card);
  box-shadow: var(--shadow-lift); padding: 1.2rem 1.4rem;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 0.88rem; color: var(--alsumo-graphite); margin-bottom: 0.9rem; }
.cookie-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* Back to top */
.to-top {
  position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--alsumo-silver-sage);
  background: rgba(255, 255, 255, 0.92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: var(--alsumo-deep-forest); cursor: pointer; display: grid; place-items: center;
  opacity: 0; visibility: hidden; transition: all var(--t-fast) var(--ease);
  box-shadow: var(--shadow-card);
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--alsumo-mint-mist); transform: translateY(-2px); }
.to-top svg { width: 20px; height: 20px; }

/* HCP gateway notice */
.hcp-gate {
  background: var(--alsumo-mint-mist); border: 1px solid rgba(23, 107, 97, 0.25);
  border-radius: var(--r-card); padding: 1.5rem 1.7rem;
}
.hcp-gate h3 { font-size: 1.05rem; display: flex; align-items: center; gap: 0.5em; }
.hcp-gate h3 svg { width: 20px; height: 20px; color: var(--alsumo-heritage-teal); }

/* Iraq dot map animations */
.map-route { stroke-dasharray: 6 7; animation: routeDash 2.6s linear infinite; }
@keyframes routeDash { to { stroke-dashoffset: -52; } }
.map-node { animation: nodePulse 3s var(--ease) infinite; transform-origin: center; transform-box: fill-box; }
@keyframes nodePulse { 0%, 100% { opacity: 0.75; } 50% { opacity: 1; } }
.map-ring { animation: ringPulse 3s var(--ease) infinite; transform-origin: center; transform-box: fill-box; }
@keyframes ringPulse { 0% { transform: scale(0.6); opacity: 0.9; } 100% { transform: scale(1.9); opacity: 0; } }

/* Stat count-up number */
.count { font-variant-numeric: tabular-nums; }

/* Tables (for documentation-like content) */
.table-wrap { overflow-x: auto; border: 1px solid var(--alsumo-silver-sage); border-radius: var(--r-card); background: #fff; }
table.data { width: 100%; border-collapse: collapse; font-size: 0.93rem; min-width: 560px; }
table.data th {
  text-align: start; font-family: var(--font-head); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--alsumo-heritage-teal);
  background: var(--alsumo-mint-mist); padding: 0.85em 1.2em;
}
table.data td { padding: 0.85em 1.2em; border-top: 1px solid var(--alsumo-porcelain); color: var(--alsumo-carbon); vertical-align: top; }

/* Legal prose */
.prose { max-width: 800px; }
.prose h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6rem; }
.prose p, .prose li { color: var(--alsumo-graphite); font-size: 0.98rem; }

/* Article */
.article-body { max-width: 760px; }
.article-body p { font-size: 1.05rem; color: #333d3b; }
.article-body h2 { font-size: 1.6rem; margin-top: 2rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; align-items: center; color: var(--alsumo-graphite); font-size: var(--fs-small); margin-bottom: 1.5rem; }

/* Print basics */
@media print {
  .site-header, .site-footer, .to-top, .cookie-banner, .drawer { display: none !important; }
  body { background: #fff; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .logo-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}
