/* CILA site.css — VERSION 8 (coverflow testimonials, lime active) */
/* ============================================================
   CILA Consulting & Training — brand stylesheet
   Palette derived from the 2026 company profile deck.
   ============================================================ */
:root {
  --ink:        #2a2a2a;   /* near-black brand base */
  --ink-soft:   #262726;   /* dark card surface */
  --ink-line:   #2a322c;   /* dark hairline */
  --paper:      #f2f3f0;   /* light section bg */
  --paper-card: #ffffff;   /* light card surface */
  --paper-line: #e2e4df;   /* light hairline */
  --lime:       #8dc63f;   /* signature accent */
  --lime-bright:#a4d65e;
  --text-light: #ffffff;
  --text-dim:   #b9c2ba;   /* muted on dark */
  --text-body:  #47504a;   /* body on light */
  --text-head:  #1b211d;   /* headings on light */
  --maxw: 1180px;
  --gap: clamp(1rem, 2.5vw, 2rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-body);
  background: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 {
  font-family: 'Archivo', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }

/* Section rhythm + alternating themes */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; }
.section--dark  { background: var(--ink);  color: var(--text-dim); }
.section--paper { background: var(--paper); color: var(--text-body); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--text-light); }
.section--paper h1, .section--paper h2, .section--paper h3, .section--paper h4 { color: var(--text-head); }
/* Signature lime baseline under every band */
.section::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: var(--lime);
}

/* Eyebrow label with the lime tick */
.eyebrow {
  font-family: 'Barlow Semi Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; background: var(--lime); display: inline-block; }
.section--paper .eyebrow { color: #6f7b5f; }
.section--paper .eyebrow::before { background: var(--lime); }

.section-title { font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 800; max-width: 20ch; }
.section-lead { font-size: clamp(1rem, 1.6vw, 1.15rem); max-width: 62ch; margin-top: 1rem; }

/* Numbered marker */
.num {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  color: var(--lime);
  font-size: 1.9rem;
  line-height: 1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: linear-gradient(180deg, rgba(10,14,11,.35) 0%, rgba(10,14,11,.82) 78%), var(--ink);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::after { content:""; position:absolute; left:0; right:0; bottom:0; height:5px; background:var(--lime); }
.hero__inner { padding-bottom: clamp(3rem, 8vw, 6rem); position: relative; z-index: 2; }
.hero__title {
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  max-width: 16ch;
}
.hero__brand { position:absolute; top:clamp(1.5rem,4vw,2.5rem); left:0; right:0; z-index:2; }
.hero__member { position:absolute; bottom:clamp(1.5rem,4vw,2.5rem); right:clamp(1.5rem,4vw,3rem); text-align:right; z-index:2;
  font-family:'Barlow Semi Condensed',sans-serif; letter-spacing:.12em; text-transform:uppercase; font-size:.72rem; color:#cbd3ca; }

.logo {
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.7rem; letter-spacing: -0.03em;
  color: #fff; display: inline-flex; align-items: center; gap: .55rem;
}
.logo b { color: var(--lime); }
.logo span {
  font-family:'Barlow Semi Condensed',sans-serif; font-weight:600; font-size:.55rem;
  letter-spacing:.14em; line-height:1.1; text-transform:uppercase; color:#c2cbc0; border-left:1px solid #4a544c; padding-left:.5rem;
}

/* ---------- Grids of cards ---------- */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.card {
  border-radius: 12px;
  padding: clamp(1.25rem, 2.4vw, 1.9rem);
  border: 1px solid var(--paper-line);
  background: var(--paper-card);
  height: 100%;
}
.card--dark { background: var(--ink-soft); border-color: var(--ink-line); color: var(--text-dim); }
.card--dark h3, .card--dark h4 { color: #fff; }
.card--outline-dark { background: transparent; border-color: var(--ink-line); color: var(--text-dim); }
.card--outline-dark h3, .card--outline-dark h4 { color:#fff; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin: .65rem 0 .5rem; }
.card h4 { font-size: 1.05rem; font-weight: 700; margin: 0 0 .5rem; }
.card p  { font-size: .92rem; margin: 0; }
.card--limebar { border-left: 3px solid var(--lime); }
.card--lime { background: var(--lime); color: var(--ink); border: none; }
.card--lime * { color: var(--ink) !important; }

/* Feature list with lime rule (Why CILA) */
.pillar { border-left: 3px solid var(--lime); padding-left: 1.1rem; }
.pillar .num { font-size: 1.5rem; }
.pillar h4 { margin: .35rem 0 .4rem; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split__media img { border-radius: 14px; width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.highlight { font-weight: 700; color: var(--text-head); }
.section--dark .highlight { color: #fff; }

/* Established badge */
.est {
  display:inline-flex; align-items:center; justify-content:center;
  width:56px; height:56px; border-radius:50%; border:2px solid var(--lime);
  font-family:'Barlow Semi Condensed',sans-serif; font-weight:700; font-size:.7rem;
  letter-spacing:.08em; color:var(--lime); flex:none;
}
.est-row { display:flex; align-items:center; gap:1rem; margin:1.5rem 0; }
.est-row b { color:var(--lime); font-family:'Archivo'; font-size:1.9rem; font-weight:800; }

/* Region hero split with side image */
.region { position: relative; }

/* ---------- Stats ---------- */
.stat__value { font-family:'Archivo'; font-weight:800; color:var(--lime); font-size:clamp(2.2rem,5vw,3.4rem); line-height:1; }
.stat__label { font-size:.9rem; color:var(--text-dim); margin-top:.4rem; }
.hr-line { border:0; border-top:1px solid var(--ink-line); margin:2.5rem 0; }
.footnote { font-size:.82rem; color:#8b948c; margin-top:2rem; max-width:70ch; }

/* ---------- Quote band ---------- */
.quote {
  background: var(--lime);
  color: var(--ink);
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
}
.quote::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:4px; background:var(--ink); }
.quote__mark { font-family:'Archivo'; font-size:4rem; font-weight:800; line-height:0; color: rgba(15,20,17,.55); }
.quote__text { font-family:'Archivo'; font-weight:800; font-size:clamp(1.4rem,3.6vw,2.4rem); line-height:1.25; max-width:22ch; margin:1.5rem auto; }
.quote__rule { width:56px; height:3px; background:var(--ink); margin:1.5rem auto 0; }

/* ---------- Contact / footer ---------- */
.footer { background: var(--ink); color:#cfd6ce; text-align:center; padding: clamp(3.5rem,8vw,5.5rem) 0 3rem; }
.footer__logo { justify-content:center; margin-bottom:1.5rem; }
.footer__tag { font-family:'Archivo'; font-weight:800; font-size:clamp(1.4rem,3.4vw,2.1rem); color:#fff; max-width:22ch; margin:0 auto; line-height:1.2; }
.footer__rule { width:56px; height:3px; background:var(--lime); margin:1.5rem auto; }
.footer__regions { font-family:'Barlow Semi Condensed'; letter-spacing:.14em; text-transform:uppercase; font-size:.9rem; color:#e6ebe4; }
.footer__cols { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; max-width:900px; margin:2.5rem auto 0; text-align:left; }
.footer__col-label { font-family:'Barlow Semi Condensed'; text-transform:uppercase; letter-spacing:.12em; font-size:.72rem; color:var(--lime); margin-bottom:.4rem; }
.footer__col-val { font-size:.92rem; color:#dfe5dd; }

/* ---------- Contact form ---------- */
.contact-form { display:grid; gap:1rem; grid-template-columns:1fr 1fr; margin-top:2rem; text-align:left; }
.contact-form .full { grid-column:1 / -1; }
.field label { display:block; font-size:.8rem; text-transform:uppercase; letter-spacing:.08em; color:var(--text-dim); margin-bottom:.4rem; }
.field input, .field textarea {
  width:100%; padding:.8rem .9rem; border-radius:8px; border:1px solid var(--ink-line);
  background:#10150f; color:#fff; font-family:inherit; font-size:.95rem;
}
.field textarea { min-height:130px; resize:vertical; }
.field input:focus, .field textarea:focus { outline:2px solid var(--lime); outline-offset:1px; border-color:var(--lime); }
.btn {
  display:inline-block; background:var(--lime); color:var(--ink); font-weight:700;
  padding:.85rem 2rem; border-radius:8px; border:none; cursor:pointer; font-size:1rem;
  font-family:'Archivo'; letter-spacing:.01em; transition:filter .15s ease;
}
.btn:hover { filter:brightness(1.07); }
.alert { padding:1rem 1.25rem; border-radius:8px; margin-bottom:1rem; font-size:.95rem; }
.alert-success { background:rgba(141,198,63,.15); border:1px solid var(--lime); color:#e8f3d8; }
.alert-error { background:rgba(220,80,80,.12); border:1px solid #c0563f; color:#f4d6cf; }
.errors { list-style:none; padding:0; margin:.5rem 0 0; }

/* ---------- Motion / reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity:1; transform:none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-5, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split__media { order:-1; }
  .footer__cols { grid-template-columns:1fr; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns:1fr; }
  .hero__member { position:static; text-align:left; margin-top:1rem; }
}

/* ============================================================
   Site navigation (Phase 1) — dark themed, bilingual
   ============================================================ */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,20,17,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-line);
}
.site-nav__inner { display: flex; align-items: center; justify-content: space-between; padding-top: .9rem; padding-bottom: .9rem; gap: 1.5rem; }
.site-nav .logo { font-size: 1.4rem; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; flex: 1; justify-content: center; }
.nav-links > a, .nav-dropdown__label {
  color: #d7ddd6; font-size: .95rem; font-weight: 500; cursor: pointer;
  white-space: nowrap; transition: color .15s; display: inline-flex; align-items: center; gap: .3rem;
}
.nav-links > a:hover, .nav-dropdown__label:hover { color: var(--lime); }
.nav-dropdown__label i { font-size: .7rem; opacity: .7; font-style: normal; }

.nav-dropdown { position: relative; }
.nav-dropdown__menu {
  position: absolute; top: 100%; inset-inline-start: 50%; transform: translateX(-50%) translateY(8px);
  background: #ffffff; border-radius: 10px; padding: .5rem; min-width: 240px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25); opacity: 0; visibility: hidden; transition: all .18s;
}
html[dir="rtl"] .nav-dropdown__menu { transform: translateX(50%) translateY(8px); }
.nav-dropdown:hover .nav-dropdown__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
html[dir="rtl"] .nav-dropdown:hover .nav-dropdown__menu { transform: translateX(50%) translateY(0); }
.nav-dropdown__menu a {
  display: block; padding: .6rem .85rem; color: var(--text-head); font-size: .9rem; font-weight: 500;
  border-radius: 7px; transition: background .12s, color .12s;
}
.nav-dropdown__menu a:hover { background: var(--paper); color: var(--lime); }

.site-nav__actions { display: flex; align-items: center; gap: 1rem; }
.btn--nav { padding: .55rem 1.3rem; font-size: .9rem; }

.lang-switch__btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--ink-line); color: #d7ddd6; font-weight: 700; font-size: .9rem;
  transition: all .15s;
}
.lang-switch__btn:hover { border-color: var(--lime); color: var(--lime); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: .5rem; line-height: 0; }
.nav-toggle svg { width: 34px; height: 24px; display: block; }
@media (max-width: 940px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; width: 100%; flex-direction: column; align-items: stretch;
    background: var(--ink); padding: 1rem; gap: .4rem; border-bottom: 1px solid var(--ink-line); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  /* Top-level items: centered text, both languages */
  .nav-links > a, .nav-dropdown__label {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: .8rem .5rem; font-size: 1rem;
    border-bottom: 1px solid var(--ink-line); text-align: center; position: relative;
  }

  /* Submenu toggle indicators: hide caret, show +/- on mobile */
  .nav-caret { display: none; }
  .nav-plus { display: inline-block; width: 1em; text-align: center; }
  .nav-plus::before { content: "+"; }
  .nav-dropdown.mopen .nav-plus::before { content: "−"; }

  /* Collapsible submenu: collapsed by default, expand when .mopen */
  .nav-dropdown { position: static; width: 100%; }
  .nav-dropdown__menu {
    position: static; transform: none !important;
    max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
    box-shadow: none; background: var(--ink-soft); margin-top: 0; min-width: 0; width: 100%;
    inset-inline-start: auto; transition: max-height .3s ease, opacity .2s ease, margin .2s ease;
  }
  .nav-dropdown.mopen .nav-dropdown__menu {
    max-height: 600px; opacity: 1; visibility: visible; margin-top: .3rem; padding: .3rem;
  }
  .nav-dropdown__menu a { color: #d7ddd6; width: 100%; display: block; padding: .7rem .85rem; text-align: center; }
  .nav-dropdown__menu a:hover { background: var(--ink-line); }

  /* Full width for BOTH languages; centered text (no right padding in Arabic) */
  html[dir="rtl"] .nav-links { align-items: stretch; }
  html[dir="rtl"] .nav-links > a, html[dir="rtl"] .nav-dropdown__label { text-align: center; }
  html[dir="rtl"] .nav-dropdown__menu, html[dir="rtl"] .nav-dropdown__menu a { text-align: center; }
}

/* end mobile nav */

/* ============================================================
   Video carousel hero (Phase 2) — replaces static hero
   ============================================================ */
.hero-video { position: relative; width: 100%; height: min(88vh, 760px); overflow: hidden; background: var(--ink); }
.hero-swiper, .hero-swiper .swiper-wrapper, .swiper-slide { height: 100%; }
.hero-slide { position: relative; width: 100%; height: 100%; overflow: hidden; }
.hero-slide__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,11,.45) 0%, rgba(10,14,11,.85) 90%);
}
.hero-slide__content {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 2; text-align: center; max-width: 900px; width: 90%;
}
.hero-slide__title {
  font-family: 'Archivo', sans-serif; font-weight: 800; color: #fff;
  font-size: clamp(1.8rem, 4.5vw, 3.6rem); line-height: 1.12; letter-spacing: -0.01em;
  margin: .5rem auto 1rem;
}
.hero-slide__desc {
  color: #dfe5dd; font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 400;
  max-width: 760px; margin: 0 auto;
}
.hero-video::after { content:""; position:absolute; left:0; right:0; bottom:0; height:5px; background:var(--lime); z-index: 3; }

/* Nav arrows */
.hero-swiper__prev, .hero-swiper__next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 2px solid var(--lime);
  backdrop-filter: blur(6px); color: #fff; font-size: 1.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .15s; user-select: none;
}
.hero-swiper__prev:hover, .hero-swiper__next:hover { background: rgba(255,255,255,.22); }
.hero-swiper__prev { left: 1.5rem; }
.hero-swiper__next { right: 1.5rem; }
html[dir="rtl"] .hero-swiper__prev { left: auto; right: 1.5rem; }
html[dir="rtl"] .hero-swiper__next { right: auto; left: 1.5rem; }

/* Pagination dots */
.hero-video .swiper-pagination { bottom: 1.5rem; z-index: 5; }
.hero-video .swiper-pagination-bullet { background: #fff; opacity: .5; width: 10px; height: 10px; }
.hero-video .swiper-pagination-bullet-active { background: var(--lime); opacity: 1; }

@media (max-width: 620px) {
  .hero-swiper__prev, .hero-swiper__next { width: 38px; height: 38px; font-size: 1.3rem; }
}

/* ============================================================
   Home sections (Phase 2) — services, impact, sectors,
   expertise, choice, testimonials, footer
   ============================================================ */

/* Service cards with hover-to-lime */
.card--hover { display: flex; flex-direction: column; transition: background .25s, transform .2s; text-decoration: none; }
.card--hover:hover { background: var(--lime); transform: translateY(-4px); }
.card--hover:hover h4, .card--hover:hover p, .card--hover:hover .card__link { color: var(--ink); }
.card__link { margin-top: auto; padding-top: 1rem; color: var(--lime); font-weight: 600; font-size: .9rem; }
.section--paper .card--hover .card__link { color: #6f9e2e; }

/* Impact items */
.impact-item { text-align: center; padding: 1rem; }
.impact-item__num { font-family: 'Archivo'; font-weight: 800; font-size: 2.4rem; color: var(--lime); line-height: 1; margin-bottom: 1rem; }
.impact-item h3 { color: #fff; font-size: 1.2rem; margin-bottom: .6rem; }
.impact-item p { color: var(--text-dim); font-size: .95rem; }

/* Sector tiles */
.sector-tile { display: block; border-radius: 12px; overflow: hidden; background: var(--ink-soft); border: 1px solid var(--paper-line); text-decoration: none; transition: transform .2s, box-shadow .2s; min-height: 200px; }
.sector-tile:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.12); }
.sector-tile__body { padding: 1.75rem; height: 100%; display: flex; flex-direction: column; }
.sector-tile__body h3 { color: #fff; font-size: 1.25rem; margin-bottom: .5rem; }
.sector-tile__body p { color: var(--text-dim); font-size: .92rem; flex: 1; }
.sector-tile .card__link { color: var(--lime); }

/* Choice list */
.choice-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: .5rem; }
.choice-list li { display: flex; align-items: center; gap: .75rem; padding: .7rem 1rem; border-radius: 8px; transition: background .2s, color .2s; }
.choice-list li:hover { background: var(--lime); color: var(--ink); }
.choice-list__tick { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--lime); color: var(--ink); font-weight: 700; font-size: .8rem; flex: none; }
.choice-list li:hover .choice-list__tick { background: var(--ink); color: var(--lime); }

/* Testimonials */
.testi-card { background: var(--ink-soft); border: 1px solid var(--ink-line); border-radius: 12px; padding: 2rem; height: 100%; position: relative; }
.testi-card__quote { font-family: 'Archivo'; font-size: 3rem; font-weight: 800; color: var(--lime); line-height: 0; height: 1.5rem; }
.testi-card__rating { color: var(--lime); font-weight: 600; font-size: .9rem; margin-bottom: .75rem; }
.testi-card__text { color: var(--text-dim); font-size: .95rem; line-height: 1.6; margin-bottom: 1rem; }
.testi-card__name { color: #fff; font-weight: 600; font-size: .9rem; }
.testi-swiper { padding-bottom: 3rem; }
.testi-pagination { text-align: center; }
.testi-pagination .swiper-pagination-bullet { background: #fff; opacity: .4; }
.testi-pagination .swiper-pagination-bullet-active { background: var(--lime); opacity: 1; }

/* Footer */
.site-footer { background: var(--ink); border-top: 1px solid var(--ink-line); padding: clamp(3rem,6vw,4.5rem) 0 2rem; position: relative; }
.site-footer::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background:var(--lime); }
.site-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; gap: 2rem; }
.site-footer__desc { color: var(--text-dim); font-size: .9rem; margin-top: 1rem; max-width: 40ch; }
.site-footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer__col a, .site-footer__col span { display: block; color: var(--text-dim); font-size: .88rem; margin-bottom: .5rem; text-decoration: none; transition: color .15s; }
.site-footer__col a:hover { color: var(--lime); }
.site-footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--ink-line); color: #8b948c; font-size: .85rem; text-align: center; }
@media (max-width: 900px) { .site-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__top { grid-template-columns: 1fr; } }

/* grid-4 helper if not present */
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

/* ============================================================
   About page (Phase 2b)
   ============================================================ */
.about-hero__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem,5vw,4rem); margin-top: 2rem; }
.about-hero__paras { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.about-hero__paras p { color: var(--text-dim); }

.diff-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.diff-list li { display: flex; gap: .75rem; align-items: flex-start; color: var(--text-dim); font-size: .95rem; }
.diff-list li strong { color: #fff; }
.diff-list__tick { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--lime); color: var(--ink); font-weight: 700; font-size: .8rem; flex: none; margin-top: 2px; }

.ceo-name { display: flex; align-items: center; gap: .6rem; margin-top: 1rem; color: var(--lime); }
.ceo-name__badge { color: var(--lime); font-size: 1.1rem; }
.ceo-name strong { color: var(--text-head); font-size: 1.05rem; }
.section--dark .ceo-name strong { color: #fff; }
.ceo-quote { border-inline-start: 3px solid var(--lime); padding-inline-start: 1.25rem; margin: 1.75rem 0 0; font-family: 'Archivo'; font-weight: 700; font-size: 1.15rem; line-height: 1.4; color: var(--text-head); font-style: normal; }

@media (max-width: 860px) { .about-hero__grid { grid-template-columns: 1fr; } }

/* CEO signature + photo */
.ceo-sign { margin-top: 1.5rem; max-width: 200px; height: auto; }
.ceo-photo img { border-radius: 14px; width: 100%; height: auto; object-fit: contain; display: block; }
html[dir="rtl"] .ceo-sign { margin-inline-start: auto; }

/* ============================================================
   Service detail pages (Phase 3)
   ============================================================ */
.service-hero { min-height: 42vh; display: flex; align-items: center; }

/* Focus areas — categories with nested items */
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.scope-cat { background: var(--ink-soft); border: 1px solid var(--ink-line); border-radius: 12px; padding: 1.75rem; }
.scope-cat__title { color: var(--lime); font-size: 1.2rem; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--ink-line); }
.scope-cat__items { display: flex; flex-direction: column; gap: 1rem; }
.scope-item h4 { color: #fff; font-size: 1rem; margin-bottom: .3rem; }
.scope-item p { color: var(--text-dim); font-size: .9rem; margin: 0; }

/* Methodology steps */
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.step-card { background: var(--paper-card); border: 1px solid var(--paper-line); border-radius: 12px; padding: 1.75rem; position: relative; }
.step-card__num { font-family: 'Archivo'; font-weight: 800; font-size: 2rem; color: var(--lime); line-height: 1; margin-bottom: .75rem; }
.step-card h4 { color: var(--text-head); font-size: 1.1rem; margin-bottom: .5rem; }
.step-card p { color: var(--text-body); font-size: .92rem; margin: 0; }

@media (max-width: 800px) { .scope-grid { grid-template-columns: 1fr; } }

/* ---- Service page readability fixes ---- */
/* Checkmark list on light (paper) sections: use dark body text, not the dim-on-dark grey */
.section--paper .diff-list li { color: var(--text-body); }
.section--paper .diff-list li strong { color: var(--text-head); }

/* Focus Areas category titles: clearly green + bolder so they read as headers */
.section--dark h3.scope-cat__title,
.scope-cat__title { color: var(--lime); font-weight: 800; font-size: 1.3rem; }

/* ============================================================
   Partners page (Phase 5)
   ============================================================ */
.partner-logo {
  background: #fff; border-radius: 12px; height: 130px;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  border: 1px solid var(--paper-line);
}
.partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%); opacity: .75; transition: filter .25s, opacity .25s; }
.partner-logo:hover img { filter: grayscale(0); opacity: 1; }
.partners-swiper { padding: .5rem 0 1rem; }

/* Choice section graphic (transparent PNG — no frame) */
.choice-media { display: flex; align-items: center; justify-content: center; }
.choice-media img { border-radius: 0; background: transparent; width: 100%; max-width: 420px; height: auto; object-fit: contain; aspect-ratio: auto; }

/* Footer social icons — inline on the copyright bar */
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; text-align: start; }
.social-icons { display: flex; gap: .5rem; }
.social-icons a { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--ink-line); color: #8b948c; transition: all .18s; }
.social-icons a:hover { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.social-icons svg { width: 15px; height: 15px; }

/* ---- Logo image (replaces text logo) ---- */
.logo img { height: 46px; width: auto; display: block; }
.site-footer .logo img { height: 52px; }
@media (max-width: 620px) { .logo img { height: 38px; } }

/* ============================================================
   MODIFICATIONS BATCH (Jul 2026)
   ============================================================ */

/* #2 — Centered eyebrow (label + tick centered as a block) */
.eyebrow--center { display: flex; justify-content: center; }

/* #3 — Service card "Learn More" turns white on hover (card goes green) */
.card--hover:hover .card__link { color: #fff !important; }

/* #5 — Wider section description paragraphs (was 62ch) */
.section-lead { max-width: 92ch; }

/* #10 — Submenu toggle indicators: caret on desktop, +/- on mobile */
.nav-caret { font-size: .7rem; opacity: .7; font-style: normal; }
.nav-plus { display: none; font-style: normal; font-weight: 700; font-size: 1.3rem; }

/* Mobile contact link + lang link inside menu — hidden on desktop (specificity beats .nav-links > a) */
.nav-links > a.nav-mobile-contact { display: none; }
.nav-links > a.nav-mobile-lang { display: none; }

/* #6/#7 (notes) — mobile: show + toggle, contact inside menu */
@media (max-width: 940px) {
  /* Show the +/- indicator (override earlier display:none by specificity) */
  .nav-links .nav-dropdown .nav-plus { display: inline-block; width: 1em; text-align: center; position: absolute; right: 1.25rem; left: auto; top: 50%; transform: translateY(-50%); font-size: 1.6rem; font-weight: 700; }
  html[dir="rtl"] .nav-links .nav-dropdown .nav-plus { right: 1.25rem; left: auto; }
  .nav-links .nav-dropdown .nav-caret { display: none; }
  .nav-links .nav-dropdown .nav-plus::before { content: "+"; }
  .nav-links .nav-dropdown.mopen .nav-plus::before { content: "−"; }

  /* Hide the navbar Contact button on mobile; show it inside the menu instead */
  .site-nav__actions .btn--nav { display: none; }
  .nav-links > a.nav-mobile-contact {
    display: block; width: 100%; text-align: center;
    background: var(--lime); color: var(--ink) !important; font-weight: 700;
    padding: .85rem 1rem; border-radius: 8px; margin-top: .75rem;
    border-bottom: none !important;
  }
  html[dir="rtl"] .nav-links > a.nav-mobile-contact { text-align: center; }

  /* Mobile navbar layout: logo and hamburger on opposite ends, hide desktop actions */
  .site-nav__actions { display: none; }
  .site-nav__inner { justify-content: space-between; gap: 1rem; }
  /* English (LTR): logo left, hamburger right */
  .site-nav .logo { order: 1; }
  .nav-toggle { order: 3; margin-inline-start: auto; }
  /* Arabic (RTL) mirrors automatically via dir=rtl, but ensure hamburger sits at the end */
  html[dir="rtl"] .nav-toggle { margin-inline-start: auto; }

  /* Mobile language switch text link */
  .nav-links > a.nav-mobile-lang {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    width: 100%; text-align: center;
    color: #d7ddd6 !important; font-weight: 600; font-size: .95rem;
    padding: .85rem 1rem; margin-top: .5rem; border-bottom: none !important;
  }
  .nav-mobile-lang .flag { font-size: 1.2rem; line-height: 1; }
  .nav-mobile-lang:hover { color: var(--lime) !important; }
}

/* #4 — Card icons (masked glyph, lime normal, white on hover, bigger) */
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 14px; background: rgba(141,198,63,.14); margin-bottom: 1rem; }
.card-icon__glyph {
  display: block; width: 40px; height: 40px;
  background-color: var(--lime);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}
/* Sector cards are dark — keep lime glyph on the tinted badge */
.sector-tile .card-icon { background: rgba(141,198,63,.14); }
/* Service card hover (green bg): badge dark-tinted, glyph white */
.card--hover:hover .card-icon { background: rgba(15,20,17,.18); }
.card--hover:hover .card-icon__glyph { background-color: #fff; }

/* #6 — Testimonial cards, old look (stars + big quote mark), our theme */
.testi-card { background: var(--ink-soft); border: 1px solid var(--ink-line); border-radius: 12px; padding: 2rem; position: relative; overflow: hidden; min-height: 340px; height: 100%; display: flex; flex-direction: column; text-align: start; }
.testi-card__rating { color: var(--lime); font-weight: 600; font-size: .9rem; margin-bottom: .75rem; }
.testi-card__text { color: var(--text-dim); font-size: .95rem; line-height: 1.65; flex: 1; margin-bottom: 1rem; position: relative; z-index: 1; }
.testi-card__footer { margin-top: auto; position: relative; z-index: 1; }
.testi-card__name { color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: .4rem; }
.testi-card__stars { color: var(--lime); font-size: 1rem; letter-spacing: 2px; }
.testi-card__quote { position: absolute; bottom: -1.5rem; inset-inline-end: -.5rem; font-family: 'Archivo', serif; font-size: 8rem; font-weight: 800; color: rgba(141,198,63,.12); line-height: 1; z-index: 0; pointer-events: none; }
html[dir="rtl"] .testi-card__quote { transform: scaleX(-1); }

/* #3(notes) — Service cards wider/more spacious */
#services .grid-4 { gap: 1.5rem; }
#services .card--hover { padding: 1.75rem 1.6rem; }
/* Give the 4-col grid a bit more room by using a slightly wider container on this section */
#services .wrap, #sectors .wrap { max-width: 1240px; }

/* ============================================================
   Team gallery (About page)
   ============================================================ */
.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: var(--gap);
  max-width: 1100px;
  margin: 3rem auto 0;
}
.team-card {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.team-card:hover img { transform: scale(1.05); }
@media (max-width: 620px) {
  .team-section .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* ============================================================
   Team gallery — big stage + thumbnail strip (About page) VERSION 6
   ============================================================ */
.team-gallery { max-width: 900px; margin: 3rem auto 0; }

/* Main stage */
.team-stage { position: relative; border-radius: 14px; overflow: hidden; background: var(--ink-soft); border: 1px solid var(--ink-line); }
.team-stage .swiper-slide { aspect-ratio: 4 / 3; }
.team-stage .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Stage arrows */
.team-stage__prev, .team-stage__next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(15,20,17,.45); border: 2px solid var(--lime);
  backdrop-filter: blur(6px); color: #fff; font-size: 1.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .15s; user-select: none;
}
.team-stage__prev:hover, .team-stage__next:hover { background: rgba(15,20,17,.7); }
.team-stage__prev { left: 1rem; }
.team-stage__next { right: 1rem; }
html[dir="rtl"] .team-stage__prev { left: auto; right: 1rem; }
html[dir="rtl"] .team-stage__next { right: auto; left: 1rem; }

/* Thumbnail strip */
.team-thumbs { margin-top: 12px; }
.team-thumbs .swiper-slide {
  aspect-ratio: 3 / 4;
  border-radius: 8px; overflow: hidden; cursor: pointer;
  opacity: .5; border: 2px solid transparent;
  transition: opacity .2s, border-color .2s;
}
.team-thumbs .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-thumbs .swiper-slide-thumb-active { opacity: 1; border-color: var(--lime); }

@media (max-width: 620px) {
  .team-stage__prev, .team-stage__next { width: 38px; height: 38px; font-size: 1.3rem; }
  .team-stage .swiper-slide { aspect-ratio: 4 / 3; }
}

/* extra breathing room under the Our Team heading */
.team-section .section-title { margin-bottom: 3rem; }

/* force space above team carousel — overrides reveal + section rhythm */
.team-section .team-swiper { margin-top: 4rem !important; }
.team-section .eyebrow--center { margin-bottom: 1.5rem; }

/* team carousel: arrows outside, no dots */
.team-pagination { display: none !important; }
.team-swiper { padding-left: 4.5rem !important; padding-right: 4.5rem !important; }
.team-swiper__prev { left: 0.5rem !important; }
.team-swiper__next { right: 0.5rem !important; }
html[dir="rtl"] .team-swiper__prev { left: auto !important; right: 0.5rem !important; }
html[dir="rtl"] .team-swiper__next { right: auto !important; left: 0.5rem !important; }

/* team arrows: pull in on desktop, hide on mobile (swipe instead) */
.team-carousel { max-width: 1100px; margin-inline: auto; padding: 0 4.5rem; position: relative; }
.team-carousel .team-swiper__prev { left: 0.25rem; }
.team-carousel .team-swiper__next { right: 0.25rem; }

@media (max-width: 900px) {
  .team-carousel { padding: 0 2.5rem; }
}
@media (max-width: 620px) {
  .team-carousel { padding: 0 1rem; }
  .team-carousel .team-swiper__prev,
  .team-carousel .team-swiper__next { display: none; }
}

/* ============================================================
   Work environment gallery — stage + thumbnail strip
   ============================================================ */
.workspace-section .section-title { margin-bottom: 3rem; }
.ws-gallery { max-width: 100%; margin: 0 auto; }
.ws-stage { position: relative; border-radius: 14px; overflow: hidden; background: var(--ink-soft); border: 1px solid var(--ink-line); }
.ws-stage .swiper-slide { aspect-ratio: 16 / 10; }
.ws-stage .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ws-stage__prev, .ws-stage__next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(15,20,17,.5); border: 2px solid var(--lime);
  color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.ws-stage__prev:hover, .ws-stage__next:hover { background: rgba(15,20,17,.75); }
.ws-stage__prev { left: 1rem; right: auto; }
.ws-stage__next { right: 1rem; left: auto; }
html[dir="rtl"] .ws-stage__prev { left: auto; right: 1rem; }
html[dir="rtl"] .ws-stage__next { right: auto; left: 1rem; }

.ws-thumbs { margin-top: 12px; }
.ws-thumbs .swiper-slide {
  aspect-ratio: 16 / 10; border-radius: 8px; overflow: hidden; cursor: pointer;
  opacity: .5; border: 2px solid transparent; transition: opacity .2s, border-color .2s;
}
.ws-thumbs .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ws-thumbs .swiper-slide-thumb-active { opacity: 1; border-color: var(--lime); }

/* work-environment: hide arrows on mobile (swipe instead) */
@media (max-width: 620px) {
  .ws-stage__prev, .ws-stage__next { display: none; }
}

/* more space between work-environment title and gallery */
.workspace-section .ws-gallery { margin-top: 3.5rem; }

/* ============================================================
   Coverflow testimonials (home) — active card = lime accent
   ============================================================ */
.testi-coverflow-wrap { position: relative; margin-top: 2.5rem; }
.testi-swiper { padding: 1.5rem 0 2rem; overflow: hidden; }

.testi-swiper .swiper-slide {
  width: min(460px, 82vw);
  height: auto;
  transition: opacity .35s ease, filter .35s ease;
}

/* base card = faded dark side state */
.testi-swiper .testi-card {
  position: relative;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: 18px;
  padding: 2.5rem 2.25rem;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.testi-swiper .testi-card__rating { display: none; }
.testi-swiper .testi-card__text {
  color: var(--text-dim);
  font-size: 1rem; line-height: 1.7; flex: 1;
  position: relative; z-index: 1;
}
.testi-swiper .testi-card__footer { margin-top: 1.5rem; position: relative; z-index: 1; }
.testi-swiper .testi-card__name { color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: .4rem; }
.testi-swiper .testi-card__stars { color: var(--lime); font-size: 1.05rem; letter-spacing: 3px; }

.testi-swiper .testi-card__quote {
  position: absolute; bottom: -1.5rem; inset-inline-start: -.25rem;
  font-family: 'Archivo', serif; font-size: 9rem; font-weight: 800; line-height: 1;
  color: rgba(255,255,255,.05); z-index: 0; pointer-events: none;
}
html[dir="rtl"] .testi-swiper .testi-card__quote { inset-inline-start: auto; inset-inline-end: -.25rem; transform: scaleX(-1); }

/* side (non-active) slides: dark + faded */
.testi-swiper .swiper-slide:not(.swiper-slide-active) { opacity: .4; }

/* ACTIVE center slide: LIME card, ink text/stars for contrast */
.testi-swiper .swiper-slide-active { opacity: 1; }
.testi-swiper .swiper-slide-active .testi-card {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 24px 60px rgba(141,198,63,.25);
}
.testi-swiper .swiper-slide-active .testi-card__text { color: var(--ink); }
.testi-swiper .swiper-slide-active .testi-card__name { color: var(--ink); }
.testi-swiper .swiper-slide-active .testi-card__stars { color: var(--ink); }
.testi-swiper .swiper-slide-active .testi-card__quote { color: rgba(15,20,17,.14); }

/* nav arrows: lime circles, centered below */
.testi-nav { display: flex; justify-content: center; gap: 1.25rem; margin-top: 1.5rem; }
.testi-prev, .testi-next {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--lime); background: rgba(141,198,63,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; line-height: 1; color: var(--lime);
  cursor: pointer; transition: all .15s; user-select: none;
}
.testi-prev:hover, .testi-next:hover { background: var(--lime); color: var(--ink); }

@media (max-width: 620px) {
  .testi-swiper .swiper-slide { width: 86vw; }
  .testi-swiper .testi-card { padding: 2rem 1.6rem; min-height: 320px; }
}

/* smaller sub-heading for merged work-environment gallery */
.ws-heading { text-align: center; }
.ws-subtitle {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: #fff;
  margin: .35rem auto 0;
  letter-spacing: -0.01em;
}

/* home banner eyebrow: no dash, larger text */
.hero-slide .eyebrow::before { display: none; }
.hero-slide .eyebrow { font-size: 1rem; letter-spacing: 0.2em; }

/* service cards: white text on hover (card turns lime) */
.card--hover:hover h4,
.card--hover:hover p,
.card--hover:hover .card__link { color: #fff !important; }

/* choice image: bigger + nudged down */
.choice-media img { max-width: 520px; margin-top: 3rem; }

/* CEO quote: cleaner, on-theme */
.ceo-quote {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text-head);
  border-inline-start: 3px solid var(--lime);
  padding-inline-start: 1.25rem;
  margin: 1.75rem 0 0;
}

/* video background behind the consulting service hero */
.service-hero--video { position: relative; overflow: hidden; }
.service-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.service-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(15,20,17,.82), rgba(15,20,17,.92));
}

/* lighter overlay on consulting video hero — more video visible */
.service-hero--video .service-hero__overlay {
  background: linear-gradient(rgba(15,20,17,.55), rgba(15,20,17,.68));
}

/* fade the non-active testimonial cards more */
.testi-swiper .swiper-slide:not(.swiper-slide-active) { opacity: .75 !important; }

/* remove double lime line where last section meets footer */
.site-footer::before { display: none; }

/* #2 — CEO photo: crop sides so subject reads bigger */
.ceo-photo img {
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 4 / 5;
  width: 100%;
}

/* #3 — By the Numbers stats section */
.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--ink-line);
}
.stat-item__value {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  color: var(--lime);
  line-height: 1;
}
.stat-item__label {
  color: var(--text-dim);
  font-size: .85rem;
  margin-top: .6rem;
}

.stats-sectors { margin-top: 2.5rem; }
.stats-sectors__title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.stats-sectors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.stats-sector-card {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-inline-start: 3px solid var(--lime);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
}
.stats-sector-card__value {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: #fff;
  line-height: 1;
}
.stats-sector-card__label {
  color: var(--text-dim);
  font-size: .9rem;
  margin-top: .4rem;
}
.stats-footnote {
  color: #8b948c;
  font-size: .85rem;
  margin-top: 2rem;
  max-width: 70ch;
}

@media (max-width: 900px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1.5rem; }
  .stats-sectors__grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* phone numbers always render LTR (so + sits left of the digits, even in RTL/Arabic) */
a[href^="tel:"] { direction: ltr; unicode-bidi: embed; display: inline-block; }

/* header background — distinct from body dark */
.site-nav { background: #242323; }

/* remove lime baseline under the By-the-Numbers section (sits above expertise) */
#numbers::after { display: none; }

/* tighten the gap between numbers and expertise */
#numbers { padding-bottom: 2rem; }
#expertise { padding-top: 2.5rem; }
