/* =========================================================
   DAM AFRICA — Système de design institutionnel
   Mobilité urbaine & interurbaine — Afrique de l'Ouest
   ========================================================= */

:root {
  /* Couleurs de marque (extraites de la charte graphique) */
  --navy:        #002B6B; /* bleu profond — confiance */
  --blue:        #005BA9;
  --blue-bright: #0090D0;
  --green:       #1E9E6A; /* vert discret — développement durable */
  --green-deep:  #167A52;
  --accent:      #1E9E6A; /* accent institutionnel = vert durable */
  --accent-2:    #0090D0;

  --ink:    #131823;
  --grey:   #5A6473;
  --grey-2: #8A93A3;
  --line:   #E4EAF1;
  --bg:     #F5F8FC;
  --bg-2:   #EDF3FA;
  --white:  #ffffff;

  --grad: linear-gradient(135deg, #002B6B 0%, #005BA9 45%, #0090D0 100%);
  --grad-soft: linear-gradient(135deg, #0a3a85 0%, #0090D0 100%);

  --shadow-sm: 0 2px 8px rgba(16,42,82,.06);
  --shadow:    0 12px 32px rgba(16,42,82,.10);
  --shadow-lg: 0 24px 60px rgba(16,42,82,.16);

  --r:    14px;
  --r-lg: 22px;
  --maxw: 1200px;
  --gut:  clamp(20px, 5vw, 48px);

  --t: .35s cubic-bezier(.22,.61,.36,1);

  --ff-head: "Poppins", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 700; line-height: 1.1; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
p  { color: var(--grey); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.bg-soft { background: var(--bg); }
.bg-navy { background: var(--navy); color: #dbe6f5; }
.bg-navy h2, .bg-navy h3 { color: #fff; }

/* ---- Eyebrow / titres de section ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--accent); display: inline-block; }
.bg-navy .eyebrow { color: var(--blue-bright); }
.section-head { max-width: 720px; margin-bottom: clamp(2.4rem, 4vw, 3.6rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; font-size: 1.08rem; }

/* ---- Boutons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--ff-head); font-weight: 600; font-size: .98rem;
  padding: .9rem 1.6rem; border-radius: 100px; cursor: pointer;
  border: 1.5px solid transparent; transition: var(--t); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--t); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: var(--navy); color: #fff; box-shadow: 0 8px 20px rgba(0,43,107,.28); }
.btn--primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,43,107,.32); }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--navy); transform: translateY(-2px); }
.btn--green { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(30,158,106,.26); }
.btn--green:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.12); }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: var(--t);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; transition: var(--t);
}
.header__logo img { height: 42px; width: auto; transition: var(--t); }
.header__logo .logo-color { display: none; }
.header__logo .logo-white { display: block; }

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a {
  font-family: var(--ff-head); font-weight: 500; font-size: .96rem;
  color: #fff; position: relative; padding: .3rem 0; transition: color var(--t);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--accent); transition: width var(--t);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header__cta .btn { padding: .65rem 1.3rem; font-size: .9rem; }

/* État scrollé / pages internes : header blanc */
.header.solid {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.header.solid .header__inner { height: 70px; }
.header.solid .nav a { color: var(--ink); }
.header.solid .header__logo .logo-color { display: block; }
.header.solid .header__logo .logo-white { display: none; }
.header.solid .btn--outline-light { border-color: var(--line); color: var(--ink); }
.header.solid .btn--outline-light:hover { border-color: var(--blue); color: var(--blue); background: transparent; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2px; background: #fff; transition: var(--t); border-radius: 2px; }
.header.solid .burger span { background: var(--ink); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--grad); color: #fff; overflow: hidden;
  padding-top: 84px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; opacity: .35; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,43,107,.85) 30%, rgba(0,91,169,.35) 100%); }
.hero__grid {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(0,144,208,.5), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(30,158,106,.20), transparent 40%);
}
.hero .container { position: relative; z-index: 2; }
.hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.hero__tag {
  display: inline-flex; align-items: center; gap: .6rem; font-family: var(--ff-head);
  font-weight: 500; font-size: .85rem; letter-spacing: .04em;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  padding: .5rem 1rem; border-radius: 100px; margin-bottom: 1.6rem;
}
.hero__tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(30,158,106,.25); }
.hero h1 { color: #fff; }
.hero h1 .hl { color: var(--blue-bright); }
.hero__sub { color: #cfe0f4; font-size: 1.18rem; margin-top: 1.5rem; max-width: 30em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero__visual { position: relative; }
.hero__visual img { filter: drop-shadow(0 30px 50px rgba(0,0,0,.4)); }
.hero__ring { position: absolute; inset: -6% -10%; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.18); z-index: -1; }
.hero__ring:nth-child(2) { inset: 6% 6%; border-color: rgba(0,144,208,.4); }

/* Bandeau de stats sous le hero */
.hero__stats {
  position: relative; z-index: 3; margin-top: clamp(2.5rem,5vw,4rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.22); border-radius: var(--r);
  overflow: hidden; border: 1px solid rgba(255,255,255,.28);
}
.hero__stats div { background: rgba(255,255,255,.10); padding: 1.4rem 1.5rem; backdrop-filter: blur(6px); transition: background var(--t); }
.hero__stats div:hover { background: rgba(255,255,255,.16); }
.hero__stats .num { font-family: var(--ff-head); font-weight: 700; font-size: clamp(1.6rem,3vw,2.3rem); color: #fff; }
.hero__stats .lbl { font-size: .85rem; color: #e3edfb; margin-top: .25rem; font-weight: 500; }

/* =========================================================
   GRILLES & CARTES
   ========================================================= */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem; transition: var(--t); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--bg-2); color: var(--blue); margin-bottom: 1.3rem; transition: var(--t);
}
.card__icon svg { width: 28px; height: 28px; }
.card:hover .card__icon { background: var(--grad); color: #fff; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .98rem; }
.card__num { position: absolute; top: 1.2rem; right: 1.5rem; font-family: var(--ff-head); font-weight: 700; font-size: 2.4rem; color: var(--bg-2); }

/* Carte solution (large, image) */
.solution {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem,4vw,4rem);
  align-items: center;
}
.solution:nth-child(even) .solution__media { order: 2; }
.solution__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; background: var(--grad); position: relative; }
.solution__media .badge { position: absolute; top: 1.2rem; left: 1.2rem; background: #fff; color: var(--navy); font-family: var(--ff-head); font-weight: 600; font-size: .8rem; padding: .4rem .9rem; border-radius: 100px; }
.solution__list { margin-top: 1.4rem; display: grid; gap: .8rem; }
.solution__list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--grey); }
.solution__list svg { flex: none; width: 22px; height: 22px; color: var(--blue); margin-top: 1px; }

/* =========================================================
   VALEURS
   ========================================================= */
.value { padding: 1.6rem; border-radius: var(--r); transition: var(--t); }
.value:hover { background: #fff; box-shadow: var(--shadow-sm); }
.value__k { font-family: var(--ff-head); font-weight: 700; color: var(--blue); font-size: 1.1rem; display: flex; align-items: center; gap: .6rem; }
.value__k span { width: 34px; height: 34px; border-radius: 9px; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: .9rem; }
.value p { margin-top: .6rem; font-size: .96rem; }

/* =========================================================
   COUVERTURE / PAYS
   ========================================================= */
.coverage { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.country {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: var(--t);
}
.country:hover { transform: translateX(6px); border-color: var(--blue); box-shadow: var(--shadow-sm); }
.country .rank { font-family: var(--ff-head); font-weight: 700; color: var(--blue-bright); width: 28px; }
.country .flag { font-size: 1.6rem; line-height: 1; }
.country .name { font-family: var(--ff-head); font-weight: 600; }
.country .tag { margin-left: auto; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--grey-2); }
.country.is-base .tag { color: var(--accent); }

/* =========================================================
   STATS BAND
   ========================================================= */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stats-band .num { font-family: var(--ff-head); font-weight: 700; font-size: clamp(2.2rem,4vw,3.2rem); background: var(--grad-soft); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bg-navy .stats-band .num { background: linear-gradient(135deg,#fff,#7ec8ef); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats-band .lbl { color: var(--grey); margin-top: .3rem; font-size: .95rem; }
.bg-navy .stats-band .lbl { color: #9fb6d6; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta {
  background: var(--grad); color: #fff; border-radius: var(--r-lg);
  padding: clamp(2.5rem,5vw,4.5rem); position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.4fr auto; gap: 2rem; align-items: center;
}
.cta::before { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.08); }
.cta h2 { color: #fff; }
.cta p { color: #d4e4f7; margin-top: .8rem; }
.cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =========================================================
   MÉDIAS / VIDÉOS
   ========================================================= */
.video-card { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); background:#fff; transition: var(--t); }
.video-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.video-card video { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--navy); }
.video-card__body { padding: 1.2rem 1.4rem 1.5rem; }
.video-card__body h3 { font-size: 1.1rem; }
.video-card__body p { font-size: .92rem; margin-top: .3rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,4vw,4rem); }
.field { margin-bottom: 1.1rem; }
.field label { font-family: var(--ff-head); font-weight: 500; font-size: .88rem; display: block; margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--ff-body); font-size: 1rem; background: #fff; transition: var(--t); color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,91,169,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; }
.info-item .ic { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--bg-2); color: var(--blue); display: grid; place-items: center; }
.info-item .ic svg { width: 22px; height: 22px; }
.info-item h4 { font-size: 1rem; margin-bottom: .15rem; }
.info-item p { font-size: .95rem; }

/* =========================================================
   PAGE HEADER (pages internes)
   ========================================================= */
.page-hero {
  background: var(--grad); color: #fff; padding: calc(84px + clamp(50px,8vw,90px)) 0 clamp(50px,8vw,90px);
  position: relative; overflow: hidden;
}
.page-hero::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 85% 30%, rgba(0,144,208,.45), transparent 50%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 16ch; }
.page-hero p { color: #cfe0f4; margin-top: 1rem; font-size: 1.15rem; max-width: 52ch; }
.crumb { font-size: .85rem; color: #9fc0e8; margin-bottom: 1.2rem; font-family: var(--ff-head); }
.crumb a:hover { color: #fff; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #061226; color: #93a4bd; padding: clamp(3.5rem,6vw,5rem) 0 2rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__logo img { height: 40px; margin-bottom: 1.2rem; }
.footer__top p { font-size: .95rem; color: #8194af; }
.footer h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer__links li { margin-bottom: .7rem; }
.footer__links a { font-size: .95rem; transition: var(--t); }
.footer__links a:hover { color: var(--blue-bright); padding-left: 4px; }
.footer__social { display: flex; gap: .7rem; margin-top: 1.3rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: var(--t); }
.footer__social a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.6rem; font-size: .85rem; flex-wrap: wrap; gap: 1rem; }

/* =========================================================
   HEADER ACTIONS + SÉLECTEUR DE LANGUE
   ========================================================= */
.header__actions { display: flex; align-items: center; gap: 1.1rem; }
.langtoggle {
  font-family: var(--ff-head); font-weight: 600; font-size: .9rem; cursor: pointer;
  background: transparent; border: 1.5px solid rgba(255,255,255,.4); color: #fff;
  border-radius: 100px; padding: .45rem .85rem; line-height: 1; transition: var(--t);
  display: inline-flex; align-items: center; gap: .25rem;
}
.langtoggle:hover { border-color: #fff; }
.langtoggle .l-sep { opacity: .5; }
.langtoggle .l-fr, .langtoggle .l-en { opacity: .55; transition: var(--t); }
.langtoggle[data-lang="fr"] .l-fr, .langtoggle[data-lang="en"] .l-en { opacity: 1; color: var(--blue-bright); }
.header.solid .langtoggle { border-color: var(--line); color: var(--ink); }
.header.solid .langtoggle:hover { border-color: var(--blue); }
.header.solid .langtoggle[data-lang="fr"] .l-fr, .header.solid .langtoggle[data-lang="en"] .l-en { color: var(--blue); }
.header__cta-btn { padding: .65rem 1.3rem; font-size: .9rem; }

/* =========================================================
   BLOG / ACTUALITÉS
   ========================================================= */
.post-meta { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.post-cat {
  font-family: var(--ff-head); font-weight: 600; font-size: .72rem; letter-spacing: .04em;
  text-transform: uppercase; color: var(--blue); background: var(--bg-2);
  padding: .3rem .7rem; border-radius: 100px;
}
.post-date { font-size: .82rem; color: var(--grey-2); font-family: var(--ff-head); }
.post-link {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem;
  font-family: var(--ff-head); font-weight: 600; font-size: .92rem; color: var(--accent);
}
.post-link svg { width: 18px; height: 18px; transition: transform var(--t); }
a:hover > * .post-link svg, .solution:hover .post-link svg { transform: translateX(4px); }

.post-card { display: flex; flex-direction: column; overflow: hidden; }
.post-card__media { aspect-ratio: 16/10; background: var(--grad); overflow: hidden; }
.post-card__media video { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.post-card__body h3 { font-size: 1.12rem; line-height: 1.25; }
.post-card__body p { font-size: .94rem; }
.post-card__body .post-link { margin-top: auto; padding-top: .6rem; }
.solution .badge { z-index: 2; }

/* Article */
.article-body { max-width: 760px; margin-inline: auto; }
.article-body .lead { font-size: 1.3rem; line-height: 1.5; color: var(--ink); font-family: var(--ff-head); font-weight: 500; margin-bottom: 1.8rem; }
.article-body p { font-size: 1.08rem; line-height: 1.75; margin-bottom: 1.3rem; }
.article-body h2 { font-size: clamp(1.5rem,2.4vw,2rem); margin: 2.4rem 0 1rem; }
.article-body blockquote {
  border-left: 4px solid var(--accent); padding: .6rem 0 .6rem 1.6rem; margin: 2rem 0;
  font-family: var(--ff-head); font-weight: 500; font-size: 1.25rem; color: var(--navy); line-height: 1.5;
}
.article-list { margin: 0 0 1.5rem; display: grid; gap: .9rem; }
.article-list li { position: relative; padding-left: 1.8rem; color: var(--grey); line-height: 1.6; }
.article-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
.article-list strong { color: var(--ink); }
.article-share { display: flex; align-items: center; gap: .7rem; margin-top: 2.5rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.article-share span { font-family: var(--ff-head); font-weight: 600; font-size: .9rem; }
.article-share a { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-2); color: var(--blue); display: grid; place-items: center; transition: var(--t); }
.article-share a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.article-share svg { width: 18px; height: 18px; }

/* =========================================================
   ANIMATIONS AU SCROLL
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .solution, .coverage, .contact-grid { grid-template-columns: 1fr; }
  .solution:nth-child(even) .solution__media { order: 0; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .cta { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* =========================================================
   EXTENSION — Site institutionnel complet (v2)
   ========================================================= */

/* Nav — agencement des onglets (9 entrées) */
.header .container { max-width: 1340px; }      /* plus d'air pour la barre d'onglets */
.nav { gap: clamp(1rem, 1.6vw, 1.7rem); }
.nav a { font-size: .92rem; white-space: nowrap; }
.header__cta-btn { display: none; }            /* Contact figure déjà dans les onglets */
@media (min-width: 1181px) and (max-width: 1280px) { .nav { gap: 1.05rem; } .nav a { font-size: .87rem; } }

/* Bascule menu mobile : onglets repliés en burger dès qu'ils ne tiennent plus en une ligne propre */
@media (max-width: 1180px) {
  .nav { display: none; }
  .nav.open {
    display: flex; position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column;
    background: #fff; padding: 96px 2rem 2.5rem; gap: 1.3rem; box-shadow: var(--shadow-lg);
    max-height: 100vh; overflow-y: auto;
  }
  .nav.open a { color: var(--ink); font-size: 1.1rem; }
  .nav.open a::after { display: none; }
  .burger { display: flex; }
  .header.menu-open .burger span { background: var(--ink); }
  .header__actions { gap: .6rem; }
}

/* Liseré d'accent vert sous le hero/section */
.rule-accent { width: 56px; height: 3px; background: var(--green); border-radius: 3px; margin: 0 0 1.4rem; }
.center .rule-accent { margin-inline: auto; }

/* ---- HISTOIRE / TIMELINE ---- */
.timeline { position: relative; display: grid; gap: 2rem; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--blue), var(--green)); }
.tl-item { position: relative; }
.tl-item::before { content: ""; position: absolute; left: -2rem; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); }
.tl-item .tl-year { font-family: var(--ff-head); font-weight: 700; color: var(--blue); font-size: 1.05rem; }
.tl-item h3 { margin: .2rem 0 .4rem; }
.tl-item p { font-size: .97rem; }

/* ---- GOUVERNANCE ---- */
.gov-card { text-align: center; }
.gov-card .avatar { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 1rem; background: var(--grad); display: grid; place-items: center; color: #fff; font-family: var(--ff-head); font-weight: 700; font-size: 1.8rem; }
.gov-card h3 { font-size: 1.1rem; }
.gov-card .role { color: var(--blue); font-family: var(--ff-head); font-weight: 600; font-size: .9rem; margin-top: .15rem; }
.gov-card p { font-size: .92rem; margin-top: .6rem; }

/* ---- EXPERTISES (liste numérotée riche) ---- */
.exp-row { display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center; padding: 1.8rem 0; border-top: 1px solid var(--line); transition: var(--t); }
.exp-row:hover { padding-left: .6rem; }
.exp-row .exp-n { font-family: var(--ff-head); font-weight: 700; font-size: 1.4rem; color: var(--green); }
.exp-row .exp-ic { width: 56px; height: 56px; border-radius: 14px; background: var(--bg-2); color: var(--blue); display: grid; place-items: center; }
.exp-row .exp-ic svg { width: 28px; height: 28px; }
.exp-row h3 { font-size: 1.25rem; }
.exp-row p { font-size: .97rem; margin-top: .25rem; max-width: 60ch; }
.exp-row .exp-go { color: var(--blue); opacity: 0; transform: translateX(-6px); transition: var(--t); }
.exp-row:hover .exp-go { opacity: 1; transform: none; }
@media (max-width: 760px){ .exp-row{ grid-template-columns: auto 1fr; } .exp-row .exp-go{ display:none; } }

/* ---- CARTE INTERACTIVE PROJETS ---- */
.map-wrap { display: grid; grid-template-columns: 1.3fr .9fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
.map-stage { position: relative; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; }
.map-stage svg { width: 100%; height: auto; display: block; }
.map-ctx { fill: #e7edf4; stroke: #fff; stroke-width: .6; }
.map-country { fill: var(--blue); stroke: #fff; stroke-width: .8; cursor: pointer; transition: fill .25s ease; }
.map-country:hover { fill: var(--blue-bright); }
.map-country.active { fill: var(--navy); }
.map-country.base { fill: var(--green); }
.map-country.base.active { fill: var(--green-deep); }
.map-country:focus-visible { outline: none; fill: var(--navy); }
.map-label { font-family: var(--ff-head); font-weight: 600; font-size: 11px; fill: #0b2a52; paint-order: stroke; stroke: #fff; stroke-width: 2.5px; stroke-linejoin: round; pointer-events: none; }
.map-dot { fill: var(--green); }
.map-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.map-panel .flag { font-size: 2.4rem; }
.map-panel h3 { margin: .6rem 0 .2rem; font-size: 1.5rem; }
.map-panel .status { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--ff-head); font-weight: 600; font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; color: var(--green); margin-bottom: 1rem; }
.map-panel .status .d { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.map-panel ul { display: grid; gap: .7rem; margin-top: 1rem; }
.map-panel li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: var(--grey); }
.map-panel li svg { flex: none; width: 20px; height: 20px; color: var(--blue); margin-top: 1px; }
.map-legend { display: flex; gap: 1.4rem; margin-top: 1.2rem; flex-wrap: wrap; font-size: .82rem; color: var(--grey); }
.map-legend span { display: inline-flex; align-items: center; gap: .45rem; }
.map-legend i { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
@media (max-width: 860px){ .map-wrap{ grid-template-columns: 1fr; } }

/* ---- INNOVATION ---- */
.innov-card { position: relative; overflow: hidden; }
.innov-card .card__icon { background: #e7f6ef; color: var(--green); }
.innov-card:hover .card__icon { background: var(--green); color: #fff; }
.innov-card::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--green); transition: width var(--t); }
.innov-card:hover::after { width: 100%; }

/* ---- PARTENAIRES ---- */
.ptype { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: var(--t); }
.ptype:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.ptype .ic { width: 48px; height: 48px; flex: none; border-radius: 12px; background: var(--bg-2); color: var(--blue); display: grid; place-items: center; }
.ptype .ic svg { width: 24px; height: 24px; }
.ptype h3 { font-size: 1.08rem; }
.ptype p { font-size: .93rem; margin-top: .25rem; }
.logo-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.logo-wall div { background: #fff; aspect-ratio: 3/2; display: grid; place-items: center; color: var(--grey-2); font-family: var(--ff-head); font-weight: 600; font-size: .85rem; transition: var(--t); }
.logo-wall div:hover { background: var(--bg); color: var(--blue); }
@media (max-width: 760px){ .logo-wall{ grid-template-columns: repeat(2,1fr); } }

/* ---- PROCESS / ÉTAPES ---- */
.steps { counter-reset: s; display: grid; gap: 1.2rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: flex-start; }
.step .n { counter-increment: s; width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--grad); color: #fff; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 700; }
.step .n::before { content: counter(s); }
.step h3 { font-size: 1.1rem; }
.step p { font-size: .95rem; margin-top: .2rem; }

/* ---- CARRIÈRES ---- */
.job { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; padding: 1.5rem 1.8rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: var(--t); }
.job:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.job .job-meta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: .5rem; font-size: .82rem; color: var(--grey-2); font-family: var(--ff-head); }
.job .job-meta span { display: inline-flex; align-items: center; gap: .35rem; }
.job h3 { font-size: 1.15rem; }
.job .pill { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--green); background: #e7f6ef; padding: .25rem .7rem; border-radius: 100px; }
@media (max-width: 560px){ .job{ grid-template-columns: 1fr; } }

/* ---- CONTACT MAP ---- */
.map-embed { border: 0; width: 100%; height: 100%; min-height: 320px; border-radius: var(--r-lg); filter: grayscale(.2) contrast(1.05); }
.contact-map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); min-height: 320px; }

/* Bandeau confiance (cibles) */
.trust { display: grid; grid-template-columns: repeat(6,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.trust div { background: #fff; padding: 1.3rem 1rem; text-align: center; }
.trust .ic { color: var(--blue); margin-bottom: .5rem; }
.trust .ic svg { width: 26px; height: 26px; }
.trust .lbl { font-family: var(--ff-head); font-weight: 600; font-size: .82rem; color: var(--ink); line-height: 1.25; }
@media (max-width: 900px){ .trust{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 480px){ .trust{ grid-template-columns: repeat(2,1fr); } }

/* =========================================================
   NAV — sous-onglets (menu déroulant Expertises)
   ========================================================= */
.nav-dd { position: relative; display: inline-flex; align-items: center; }
.nav-dd__toggle { display: inline-flex; align-items: center; gap: .35rem; }
.nav-dd__caret { width: 14px; height: 14px; transition: transform var(--t); flex: none; }
.nav-dd:hover .nav-dd__caret, .nav-dd:focus-within .nav-dd__caret { transform: rotate(180deg); }

.nav-dd__menu {
  position: absolute; top: 100%; left: -14px; margin-top: 12px; min-width: 320px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: .55rem; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--t), transform var(--t), visibility var(--t); z-index: 1001;
}
.nav-dd__menu::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; } /* pont anti-survol */
.nav-dd:hover .nav-dd__menu, .nav-dd:focus-within .nav-dd__menu { opacity: 1; visibility: visible; transform: none; }
.nav-dd__menu a {
  color: var(--ink) !important; font-family: var(--ff-head); font-weight: 500; font-size: .9rem;
  padding: .6rem .85rem; border-radius: 10px; white-space: nowrap; transition: var(--t);
}
.nav-dd__menu a::after { display: none; }
.nav-dd__menu a:hover { background: var(--bg-2); color: var(--blue) !important; padding-left: 1.1rem; }

/* Sur fond clair (header solide) le toggle suit la couleur d'encre — déjà géré par .header.solid .nav a */

/* Mobile : sous-onglets en accordéon (repliés par défaut) */
@media (max-width: 1180px) {
  .nav-dd { flex-direction: column; align-items: stretch; width: 100%; }
  .nav-dd__toggle { justify-content: space-between; width: 100%; }
  .nav-dd__caret { display: inline-block; }
  .nav-dd.open .nav-dd__caret { transform: rotate(180deg); }
  .nav-dd__menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--line);
    border-radius: 0; padding: .2rem 0 .2rem 1rem; margin: .4rem 0 .4rem; min-width: 0;
    display: none;
  }
  .nav-dd.open .nav-dd__menu { display: flex; }
  .nav-dd__menu::before { display: none; }
  .nav-dd__menu a { font-size: 1rem !important; padding: .55rem .4rem; }
}

/* Accessibilité : focus visible clavier */
a:focus-visible, button:focus-visible, .nav-dd__toggle:focus-visible {
  outline: 2px solid var(--blue-bright); outline-offset: 3px; border-radius: 4px;
}
.header.solid a:focus-visible, .header.solid button:focus-visible { outline-color: var(--blue); }

/* Sous-onglet "Projets" (page) dans le menu Expertises */
.nav-dd__sep { display: block; height: 1px; background: var(--line); margin: .45rem .6rem; }
.nav-dd__menu a.nav-dd__page { color: var(--blue) !important; font-weight: 600; }
.nav-dd__menu a.nav-dd__page.active { background: var(--bg-2); }
@media (max-width: 1180px) { .nav-dd__sep { margin: .45rem 0 .45rem .4rem; } }

/* Décalage d ancrage sous le header fixe */
:target { scroll-margin-top: 96px; }
.innov-card { scroll-margin-top: 96px; }

/* Slogan de marque — "Faisons route ensemble" */
.hero__slogan {
  display: inline-flex; align-items: center; gap: .8rem; margin-top: 1.5rem;
  font-family: var(--ff-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .14em; font-size: .98rem; color: #fff;
}
.hero__slogan::before { content: ""; width: 36px; height: 2px; background: var(--green); display: inline-block; }
.footer__slogan {
  font-family: var(--ff-head); font-weight: 700; color: #fff;
  font-size: 1.2rem; letter-spacing: .01em; margin: -.3rem 0 .9rem;
}

/* Catégorie "Digitales" dans le menu Nos solutions */
.nav-dd__menu a.nav-dd__label {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700;
  color: var(--grey-2) !important; padding: .5rem .85rem .2rem;
}
.nav-dd__menu a.nav-dd__label:hover { background: transparent; color: var(--blue) !important; padding-left: .85rem; }
.nav-dd__menu a.nav-dd__label + a { margin-top: .1rem; }

/* Scrollspy : sous-onglet de la section visible */
.nav-dd__menu a.current {
  background: var(--bg-2); color: var(--blue) !important; font-weight: 600;
  box-shadow: inset 3px 0 0 var(--blue); padding-left: 1.05rem;
}

/* =========================================================
   POLISH v3 — raffinement visuel (Trust & Authority)
   ========================================================= */

/* Rendu texte + sélection de marque */
html { text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
::selection { background: rgba(0,91,169,.16); color: var(--navy); }

/* Titres : équilibre des retours à la ligne + paragraphes plus lisibles */
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
.num, .hero__stats .num, .stats-band .num { font-variant-numeric: tabular-nums; }

/* Boutons : retour tactile au clic + focus accessible */
.btn { will-change: transform; }
.btn:active { transform: translateY(0) scale(.98); }

/* Cartes : ombres plus douces + survol raffiné + filet d'accent au survol */
.card { box-shadow: 0 1px 2px rgba(16,42,82,.04), 0 1px 1px rgba(16,42,82,.03); }
.card:hover { box-shadow: 0 18px 40px -12px rgba(16,42,82,.18); }
.card { position: relative; }
.card::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; border-radius: var(--r-lg) var(--r-lg) 0 0; background: var(--grad); opacity: 0; transition: opacity var(--t); }
.card:hover::after { opacity: 1; }
/* Ne pas dupliquer le filet sur les cartes qui en ont déjà un (innov-card) */
.innov-card::after { content: none; }

/* Icônes de carte : profondeur subtile */
.card__icon { box-shadow: inset 0 0 0 1px rgba(0,91,169,.06); }
.card:hover .card__icon { box-shadow: 0 8px 18px -6px rgba(0,91,169,.45); }

/* Bandeau confiance : transition + accent au survol */
.trust div { transition: background var(--t), transform var(--t); }
.trust div:hover { background: var(--bg); }
.trust .ic { transition: color var(--t), transform var(--t); }
.trust div:hover .ic { color: var(--navy); transform: translateY(-2px); }

/* Hero : profondeur (vignette douce + grain léger) */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(0,21,55,.45) 100%);
}
.hero__inner, .hero__stats { position: relative; z-index: 2; }

/* Liens du fil d'Ariane + footer : transitions homogènes */
.footer__links a, .crumb a { transition: color var(--t), padding var(--t); }

/* Eyebrow : pastille d'accent plus nette */
.eyebrow::before { border-radius: 2px; }

/* Inputs : focus plus premium */
.field input:focus, .field textarea:focus, .field select:focus { box-shadow: 0 0 0 4px rgba(0,91,169,.12), 0 1px 2px rgba(16,42,82,.06); }

/* Barre de défilement discrète (desktop) */
@media (pointer: fine) {
  * { scrollbar-width: thin; scrollbar-color: #c3d2e6 transparent; }
  *::-webkit-scrollbar { width: 10px; height: 10px; }
  *::-webkit-scrollbar-thumb { background: #c3d2e6; border-radius: 100px; border: 2px solid #fff; }
  *::-webkit-scrollbar-thumb:hover { background: var(--blue); }
}

/* Images/vidéos : rendu net + coins cohérents déjà gérés par conteneurs */
img { image-rendering: auto; }

/* Respect mouvement réduit — neutralise survols animés lourds */
@media (prefers-reduced-motion: reduce) {
  .card:hover, .btn:hover, .trust div:hover .ic { transform: none; }
  .card::after, .card:hover::after { transition: none; }
}

/* Projets — liste pays + panneau détail */
.proj-list { display: grid; gap: .6rem; align-content: start; }
.proj-item {
  display: flex; align-items: center; gap: .9rem; width: 100%; text-align: left;
  padding: .85rem 1.1rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); cursor: pointer; transition: var(--t); font-family: var(--ff-body);
  color: var(--ink);
}
.proj-item:hover { border-color: var(--blue); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.proj-item.active { border-color: var(--blue); background: var(--bg); box-shadow: inset 3px 0 0 var(--blue); }
.proj-item .flag { font-size: 1.5rem; line-height: 1; }
.proj-item .nm { font-family: var(--ff-head); font-weight: 600; }
.proj-item .st { margin-left: auto; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--grey-2); white-space: nowrap; }
.proj-item.base .st { color: var(--green); }
#map-panel { margin-top: 1.6rem; }
@media (max-width: 860px) { .map-wrap { grid-template-columns: 1fr; } }

/* Voile léger sur les médias photo (lisibilité du badge) */
.solution__media { position: relative; }
.solution__media::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,21,55,.18), transparent 40%); pointer-events: none; }
.solution__media .badge { z-index: 2; }

/* Galerie médias */
.gallery-item { position: relative; aspect-ratio: 16/10; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; align-items: flex-end; transition: var(--t); }
.gallery-item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,21,55,.72), transparent 55%); }
.gallery-item figcaption { position: relative; z-index: 1; color: #fff; font-family: var(--ff-head); font-weight: 600; padding: 1rem 1.2rem; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* Bande photo pleine largeur */
.media-band { aspect-ratio: 21/9; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
@media (max-width:600px){ .media-band{ aspect-ratio: 16/10; } }

/* Carte projets — infobulle au survol + liens panneau */
.map-tip {
  position: absolute; z-index: 6; pointer-events: none; max-width: 270px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  padding: .75rem .9rem; opacity: 0; transform: translateY(4px); transition: opacity .18s ease, transform .18s ease;
}
.map-tip.show { opacity: 1; transform: none; }
.map-tip strong { display: flex; align-items: center; gap: .4rem; font-family: var(--ff-head); font-size: .95rem; color: var(--ink); }
.map-tip .t-st { font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--blue); margin: .2rem 0 .5rem; }
.map-tip ul { display: grid; gap: .3rem; }
.map-tip li { display: flex; gap: .4rem; align-items: flex-start; font-size: .82rem; color: var(--grey); }
.map-tip li svg { width: 15px; height: 15px; color: var(--green); flex: none; margin-top: 1px; }
.map-tip .hint { margin-top: .55rem; font-size: .74rem; font-weight: 600; color: var(--blue); }
.map-panel ul li a { color: var(--ink); transition: color var(--t); }
.map-panel ul li a:hover { color: var(--blue); text-decoration: underline; }
.map-panel__cta { margin-top: 1.4rem; }

/* N'LOOTTO — visuel, mini-stats marché, graphique KIRA */
.nl-photo { border-radius: var(--r-lg); aspect-ratio: 4/3; min-height: 300px; box-shadow: var(--shadow); }
.nl-market { display: flex; gap: 1.8rem; margin-top: 1.8rem; flex-wrap: wrap; }
.nl-market div { position: relative; padding-left: .9rem; }
.nl-market div::before { content: ""; position: absolute; left: 0; top: .15rem; bottom: .15rem; width: 3px; border-radius: 3px; background: var(--accent); }
.nl-market b { font-family: var(--ff-head); font-weight: 700; font-size: 1.7rem; color: var(--blue); display: block; line-height: 1; }
.nl-market span { font-size: .82rem; color: var(--grey); display: block; margin-top: .25rem; max-width: 16ch; }

.kira { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
.kira-gauge { display: grid; place-items: center; text-align: center; }
.kira-gauge svg { width: 200px; height: 200px; }
.kira-gauge .g-track { fill: none; stroke: var(--bg-2); stroke-width: 14; }
.kira-gauge .g-fill { fill: none; stroke: url(#kiraGrad); stroke-width: 14; stroke-linecap: round; transform: rotate(-90deg); transform-origin: 50% 50%; }
.kira-gauge .g-num { font-family: var(--ff-head); font-weight: 700; font-size: 30px; fill: var(--navy); }
.kira-gauge .g-sub { font-family: var(--ff-head); font-size: 12px; fill: var(--grey-2); letter-spacing: .05em; }
.kira-gauge figcaption { margin-top: .6rem; font-size: .85rem; color: var(--grey); }
.kira-bars { display: grid; gap: 1rem; }
.kira-bar .row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .35rem; }
.kira-bar .row .nm { font-family: var(--ff-head); font-weight: 600; font-size: .92rem; color: var(--ink); }
.kira-bar .row .w { font-family: var(--ff-head); font-weight: 700; font-size: .85rem; color: var(--blue); }
.kira-bar .track { height: 9px; background: var(--bg-2); border-radius: 100px; overflow: hidden; }
.kira-bar .fill { height: 100%; background: var(--grad); border-radius: 100px; width: 0; transition: width 1s cubic-bezier(.22,.61,.36,1); }
.kira-bar.in .fill { width: var(--w); }
@media (max-width: 760px) { .kira { grid-template-columns: 1fr; } .nl-photo { min-height: 240px; } }

/* Logo KIRA dans les cartes */
.kira-logo { height: 44px; width: auto; display: block; margin-bottom: 1.2rem; }

/* Tuiles logo suite KIRA */
.kira-tile { width: 84px; height: 84px; border-radius: 18px; display: block; margin-bottom: 1.1rem; box-shadow: var(--shadow-sm); }
