/* ============================================================
   CILA Consulting & Training — brand stylesheet
   Palette derived from the 2026 company profile deck.
   ============================================================ */
:root {
  --ink:        #0f1411;   /* near-black brand base */
  --ink-soft:   #171d19;   /* 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; font-size: 1.6rem; cursor: pointer; }
@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; }
  .nav-dropdown { position: static; }
  .nav-dropdown__menu { position: static; transform: none !important; opacity: 1; visibility: visible;
    box-shadow: none; background: var(--ink-soft); margin-top: .3rem; min-width: 0; width: 100%; inset-inline-start: auto; }
  .nav-dropdown__menu a { color: #d7ddd6; }
  .nav-dropdown__menu a:hover { background: var(--ink-line); }
  /* RTL mobile: menu spans full width, text right-aligned, full-width tap targets */
  html[dir="rtl"] .nav-links { align-items: stretch; }
  html[dir="rtl"] .nav-links > a, html[dir="rtl"] .nav-dropdown__label { text-align: right; justify-content: flex-start; display: block; width: 100%; }
  html[dir="rtl"] .nav-dropdown__menu { transform: none !important; text-align: right; }
  html[dir="rtl"] .nav-dropdown__menu a { text-align: right; display: block; width: 100%; }
}

/* ============================================================
   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%; object-fit: contain; aspect-ratio: auto; background: transparent; }
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; } }
