/* XRbentsh_ 2026 : feuille de style unique. Mobile first, propriétés logiques (RTL natif). */

:root {
  --navy: #0A1F3D;
  --navy-2: #12305A;
  --blue: #3D9DD7;
  --blue-deep: #1F73B0;
  --blue-soft: #E8F3FA;
  --ink: #0E1726;
  --ink-2: #3E4A5C;
  --ink-3: #6B7686;
  --line: #E1E5EA;
  --line-dark: rgba(255,255,255,.14);
  --bg: #FFFFFF;
  --bg-soft: #F4F6F8;
  --font: "Plus Jakarta Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-ar: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 80px;
  --radius: 4px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } html.js .reveal { opacity: 1 !important; transform: none !important; } }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font); font-weight: 400; font-size: 1rem; line-height: 1.65; -webkit-font-smoothing: antialiased; }
html[dir="rtl"] body, html[dir="rtl"] button, html[dir="rtl"] input, html[dir="rtl"] textarea, html[dir="rtl"] select { font-family: var(--font-ar); }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3 { letter-spacing: 0; line-height: 1.3; }

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.75rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-2); }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.skip { position: absolute; inset-inline-start: 0; top: -100px; background: var(--blue); color: #fff; padding: 10px 16px; z-index: 200; }
.skip:focus { top: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 840px; }
.section { padding-block: clamp(64px, 8vw, 112px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--navy); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark p { color: #fff; }
.section--blue { background: var(--blue); color: #fff; }
.section--blue h2, .section--blue h3, .section--blue p { color: #fff; }
.section--line { border-top: 1px solid var(--line); }
.section--tint { background: var(--blue-soft); }
.section--blue .btn--light { border-color: #fff; color: #fff; }
.section--blue .btn--light:hover { background: #fff; color: var(--blue); }
.section--blue .stat { border-color: rgba(255,255,255,.6); }
.section--blue .stat span { color: rgba(255,255,255,.85); }
.section--blue .chips li { border-color: rgba(255,255,255,.45); }
.section--blue .chips li:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.section--blue .lead { color: rgba(255,255,255,.92); }
.section--blue .eyebrow { color: #fff; }
.section--tint .tile { background: #fff; }
.section--tint .tiles { background: #fff; border-color: #D5E6F2; }
.section--tint .tiles .tile { border: 0; }
.section--tint .tile:hover { background: #fff; }
.section--tint .tile:hover .tile__icon { background: var(--blue); }

.eyebrow { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--blue); }
.section--blue .eyebrow { color: #fff; } .section--blue .eyebrow::before { background: #fff; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.6; color: var(--ink-2); max-width: 64ch; }
.section--dark .lead { color: rgba(255,255,255,.8); }
.section--blue .lead, .hero--video .lead { color: rgba(255,255,255,.88); }

/* Boutons */
.btn { display: inline-flex; align-items: center; gap: 12px; min-height: 52px; padding: 0 26px; border: 1.5px solid var(--navy); border-radius: var(--radius); font-weight: 600; font-size: .9375rem; color: var(--navy); background: transparent; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); white-space: nowrap; }
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); flex: none; }
html[dir="rtl"] .btn svg { transform: scaleX(-1); }
.btn:hover { background: var(--navy); color: #fff; }
.btn:hover svg { transform: translateX(4px); }
html[dir="rtl"] .btn:hover svg { transform: scaleX(-1) translateX(4px); }
.btn--primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: #fff; }
.btn--light { border-color: #fff; color: #fff; }
.btn--light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.link { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .9375rem; color: var(--blue); }
.link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
html[dir="rtl"] .link svg { transform: scaleX(-1); }
.link:hover { color: var(--blue-deep); }
.link:hover svg { transform: translateX(4px); }
html[dir="rtl"] .link:hover svg { transform: scaleX(-1) translateX(4px); }
.section--dark .link, .section--blue .link { color: #fff; }
.section--blue .link:hover, .section--dark .link:hover { color: #fff; opacity: .85; }

/* Header */
.header { position: fixed; inset-inline: 0; top: 0; z-index: 100; height: var(--header-h); display: flex; align-items: center; background: #fff; border-bottom: 1px solid var(--line); transition: background .3s var(--ease), border-color .3s var(--ease); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: block; line-height: 0; }
.brand img { height: 30px; width: auto; }
.brand .logo-light { display: none; }
.nav { display: none; }
.nav ul { display: flex; gap: 30px; }
.nav a { font-weight: 600; font-size: .9375rem; padding: 8px 0; position: relative; color: var(--ink); }
.nav a::after { content: ""; position: absolute; inset-inline-start: 0; bottom: 0; width: 100%; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
html[dir="rtl"] .nav a::after { transform-origin: right; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.header__tools { display: flex; align-items: center; gap: 4px; }
.icon-btn { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .25s; }
.icon-btn:hover { background: var(--bg-soft); }
.icon-btn svg { width: 20px; height: 20px; }
.lang { position: relative; }
.lang__btn { display: inline-flex; align-items: center; gap: 6px; height: 44px; padding: 0 12px; font-weight: 600; font-size: .875rem; border-radius: 22px; }
.lang__btn:hover { background: var(--bg-soft); }
.lang__btn svg { width: 12px; height: 12px; }
.lang__menu { position: absolute; inset-inline-end: 0; top: calc(100% + 8px); min-width: 170px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 16px 40px rgba(10,31,61,.12); padding: 6px; display: none; }
.lang.is-open .lang__menu { display: block; }
.lang__menu a { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; font-size: .9375rem; color: var(--ink); border-radius: 3px; }
.lang__menu a:hover { background: var(--bg-soft); }
.lang__menu a[aria-current="true"] { color: var(--blue); font-weight: 600; }
.lang__menu small { color: var(--ink-3); font-weight: 600; }
.burger { display: inline-flex; }
.burger span { display: block; width: 22px; height: 2px; background: currentColor; position: relative; }
.burger span::before, .burger span::after { content: ""; position: absolute; inset-inline-start: 0; width: 22px; height: 2px; background: currentColor; transition: transform .3s var(--ease); }
.burger span::before { top: -7px; } .burger span::after { top: 7px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span::after { transform: translateY(-7px) rotate(-45deg); }

/* Header transparent au dessus du hero vidéo */
body[data-header="dark"] .header:not(.is-scrolled):not(.is-menu) { background: transparent; border-color: transparent; color: #fff; }
body[data-header="dark"] .header:not(.is-scrolled):not(.is-menu) .logo-dark { display: none; }
body[data-header="dark"] .header:not(.is-scrolled):not(.is-menu) .logo-light { display: block; }
body[data-header="dark"] .header:not(.is-scrolled):not(.is-menu) .nav a { color: #fff; }
body[data-header="dark"] .header:not(.is-scrolled):not(.is-menu) .icon-btn:hover, body[data-header="dark"] .header:not(.is-scrolled):not(.is-menu) .lang__btn:hover { background: rgba(255,255,255,.14); }

/* Menu mobile */
.mobile-menu { position: fixed; inset: 0; top: var(--header-h); background: #fff; z-index: 90; padding: 16px var(--gutter) 40px; overflow-y: auto; display: none; }
body.menu-open .mobile-menu { display: block; }
body.menu-open { overflow: hidden; }
.mobile-menu ul li a { display: block; padding: 18px 0; font-size: 1.35rem; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu ul li a[aria-current="page"] { color: var(--blue); }
.mobile-menu__langs { display: flex; gap: 8px; margin-top: 28px; }
.mobile-menu__langs a { padding: 10px 16px; border: 1.5px solid var(--line); border-radius: var(--radius); font-weight: 600; font-size: .875rem; }
.mobile-menu__langs a[aria-current="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }
.mobile-menu .btn { margin-top: 28px; }

/* Recherche */
.search { position: fixed; inset: 0; z-index: 120; background: rgba(10,31,61,.97); color: #fff; display: none; overflow-y: auto; padding: 40px var(--gutter); }
.search.is-open { display: block; }
.search__head { display: flex; align-items: center; justify-content: space-between; max-width: 900px; margin: 0 auto 32px; }
.search__head h2 { font-size: 1.25rem; color: #fff; }
.search__close { color: #fff; } .search__close:hover { background: rgba(255,255,255,.12); }
.search__input { max-width: 900px; margin: 0 auto; }
.search__input input { width: 100%; background: transparent; border: 0; border-bottom: 2px solid rgba(255,255,255,.4); color: #fff; font: inherit; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; padding: 12px 0; outline: none; }
.search__input input::placeholder { color: rgba(255,255,255,.45); font-weight: 400; }
.search__results { max-width: 900px; margin: 32px auto 0; display: grid; gap: 6px; }
.search__results a { display: grid; grid-template-columns: 80px 1fr; gap: 16px; align-items: center; padding: 10px; border-radius: 4px; color: #fff; font-weight: 500; }
.search__results a:hover { background: rgba(255,255,255,.08); }
.search__results img { width: 80px; height: 56px; object-fit: cover; border-radius: 3px; }
.search__results .date { font-size: .75rem; color: rgba(255,255,255,.55); font-weight: 400; }
.search__empty { color: rgba(255,255,255,.6); }

/* Héros */
main { padding-top: var(--header-h); }
body[data-header="dark"] main { padding-top: 0; }
.hero { position: relative; overflow: hidden; }
.hero--page { padding-block: clamp(56px, 8vw, 104px) clamp(56px, 7vw, 88px); border-bottom: 1px solid var(--line); background: #fff; }
.hero--page h1 { max-width: 20ch; }
.hero--page .lead { margin-top: 24px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero--video { min-height: clamp(560px, 92svh, 800px); display: flex; align-items: center; color: #fff; background: var(--navy); }
.hero__media { position: absolute; inset: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,31,61,.88) 0%, rgba(10,31,61,.62) 50%, rgba(10,31,61,.25) 100%); }
.hero--video .container { position: relative; z-index: 1; padding-top: calc(var(--header-h) + 40px); padding-bottom: 64px; }
.hero--video h1 { max-width: 17ch; color: #fff; }
.hero--video .lead { margin-top: 24px; max-width: 58ch; }

/* Têtes de section */
.section-head { display: grid; gap: 20px 48px; align-items: end; margin-bottom: 44px; }
.section-head h2 { max-width: 22ch; }
.section-head__text { margin: 0; }
.section-head__link { justify-self: start; padding-bottom: 6px; }
.trust-label { display: flex; align-items: center; gap: 24px; margin: 0; font-size: .8125rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.trust-label::before, .trust-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* Grilles de cas */
.cases-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.cases { display: grid; gap: 40px 28px; }
.case { display: flex; flex-direction: column; gap: 16px; }
.case__media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--bg-soft); border-radius: var(--radius); }
.case__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.case:hover .case__media img { transform: scale(1.03); }
.case__body { display: flex; flex-direction: column; gap: 10px; }
.case__date { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); }
.case h3 { font-size: 1.2rem; transition: color .25s; }
.case:hover h3 { color: var(--blue); }
.case p { font-size: .9375rem; }
.case--featured h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 700; letter-spacing: -0.015em; }
.case--featured p { font-size: 1rem; }
.case--row { display: grid; gap: 24px; }

/* Logos */
.logos { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
.logos li { display: flex; align-items: center; justify-content: center; height: 120px; padding: 24px; border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos img { max-height: 44px; max-width: 76%; width: auto; object-fit: contain; filter: grayscale(1); opacity: .6; transition: filter .3s, opacity .3s; }
.logos li:hover img { filter: none; opacity: 1; }

/* Bandeau logos défilant */
.marquee { overflow: hidden; padding-block: 20px 8px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__list { display: flex; align-items: center; flex: none; }
.marquee__list li { display: flex; align-items: center; justify-content: center; width: clamp(150px, 16vw, 220px); height: 64px; padding: 0 20px; }
.marquee__list img { max-height: 44px; max-width: 100%; width: auto; object-fit: contain; filter: grayscale(1); opacity: .6; transition: filter .3s, opacity .3s; }
.marquee__list li:hover img { filter: none; opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
html[dir="rtl"] .marquee__track { animation-name: marquee-rtl; }
@keyframes marquee-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; width: 100%; } .marquee__list { flex-wrap: wrap; justify-content: center; } .marquee__list[aria-hidden="true"] { display: none; } }

/* Bandeau bureaux (Connect) */
.marquee--cards { padding-block: 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee--cards .marquee__track { animation-duration: 40s; }
.marquee--cards .marquee__list { gap: 16px; padding-inline-end: 16px; }
.office { flex: none; width: clamp(240px, 26vw, 320px); height: auto; min-height: 150px; padding: 26px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); display: flex; flex-direction: column; align-items: flex-start; text-align: start; justify-content: space-between; gap: 16px; transition: border-color .25s, background .25s; }
.office:hover { border-color: var(--blue); background: var(--bg-3); }
.office b { font-weight: 700; font-size: .8125rem; color: var(--blue); }
.office span { font-size: 1.15rem; font-weight: 600; line-height: 1.3; }

/* Chiffres */
.stats { display: grid; gap: 32px; }
.stat { border-inline-start: 2px solid var(--blue); padding-inline-start: 24px; }
.stat b { display: block; font-weight: 700; font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -0.03em; color: #fff; }
.stat span { display: block; margin-top: 12px; font-size: .9375rem; font-weight: 500; color: rgba(255,255,255,.75); }
.stats--light .stat b { color: var(--navy); }
.stats--light .stat span { color: var(--ink-2); }

/* Vidéo pleine largeur */
.video-band { position: relative; background: var(--navy); }
.video-band video, .video-band img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; max-height: 76vh; }
.video-band__ctl { position: absolute; inset-inline-end: 24px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%; background: rgba(10,31,61,.6); color: #fff; display: inline-flex; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.video-band__ctl svg { width: 18px; height: 18px; }

/* Formulaires */
.newsletter { display: grid; gap: 28px; align-items: center; }
.newsletter form { display: flex; flex-direction: column; flex-wrap: wrap; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: .875rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea, .field select { width: 100%; font: inherit; font-size: 1rem; padding: 14px 16px; border: 1.5px solid var(--line); background: #fff; color: var(--ink); border-radius: var(--radius); transition: border-color .25s; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); outline: none; }
.field textarea { min-height: 160px; resize: vertical; }
.form-row { display: grid; gap: 16px; }
.form-note { font-size: .8125rem; color: var(--ink-3); }
.form-status { font-size: .9375rem; font-weight: 600; min-height: 1.4em; }
.form-status.is-ok { color: #1E7F4F; }
.form-status.is-err { color: #B3261E; }

/* Citation */
.quote { display: grid; gap: 32px; align-items: center; }
.quote__media { width: min(100%, 300px); aspect-ratio: 1; border-radius: 50%; overflow: hidden; }
.quote__media img { width: 100%; height: 100%; object-fit: cover; }
.quote blockquote { margin: 0; font-size: clamp(1.3rem, 2.3vw, 1.85rem); font-weight: 600; line-height: 1.35; letter-spacing: -0.01em; }
.quote__who { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; }
.quote__who b { font-weight: 700; font-size: .9375rem; }
.quote__who span { font-size: .9375rem; opacity: .85; }
.quote .link { margin-top: 24px; }

/* CTA */
.cta { position: relative; overflow: hidden; background: #fff; }
.cta .container { position: relative; z-index: 1; }
.cta__leaf { position: absolute; inset-inline-end: -30px; bottom: -40px; width: min(50vw, 440px); opacity: .55; pointer-events: none; }
.cta h2 { max-width: 16ch; }
.cta .lead { margin-top: 18px; }
.cta .btn { margin-top: 32px; }

/* Clôture accueil : CTA + newsletter dans un seul bloc */
.closing { position: relative; overflow: hidden; background: #fff; }
.closing .container { position: relative; z-index: 1; }
.closing__grid { display: grid; gap: 48px; align-items: start; }
.closing h2 { max-width: 16ch; }
.closing__nl { background: var(--bg-soft); border-radius: var(--radius); padding: 32px; }
.closing__nl h3 { font-size: 1.25rem; }
.closing__nl p { margin: 8px 0 20px; font-size: .9375rem; }
.closing__nl form { display: flex; flex-wrap: wrap; gap: 10px; position: relative; }
.closing__nl .field { flex: 1 1 220px; }
.closing__nl .form-status { flex-basis: 100%; margin: 0; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Footer */
.footer { background: var(--navy); color: #fff; padding-block: clamp(56px, 7vw, 88px) 32px; }
.footer__grid { display: grid; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-dark); }
.footer__brand img { height: 30px; width: auto; }
.footer__brand p { margin-top: 20px; color: rgba(255,255,255,.7); max-width: 34ch; font-size: .9375rem; }
.footer h4 { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,.88); font-weight: 500; }
.footer ul a:hover { color: var(--blue); }
.footer__actions { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.footer__social { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border: 1.5px solid var(--line-dark); border-radius: var(--radius); }
.footer__social:hover { border-color: var(--blue); color: var(--blue); }
.footer__social svg { width: 18px; height: 18px; }
.footer .address { color: rgba(255,255,255,.65); }
.footer .address b { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: space-between; padding-top: 24px; font-size: .8125rem; color: rgba(255,255,255,.55); }
.footer__bottom a { color: rgba(255,255,255,.75); }
.footer__bottom ul { display: flex; gap: 24px; }

/* Onglets */
.tabs { display: grid; gap: 32px; }
.tabs__list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.tabs__list button { text-align: start; padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 1.15rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color .25s; }
.tabs__list button svg { width: 16px; height: 16px; flex: none; transition: transform .3s var(--ease); }
.tabs__list button[aria-selected="true"] { color: var(--blue); }
.tabs__list button[aria-selected="true"] svg { transform: rotate(45deg); }
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; }
.tabs__panel h3 { margin-bottom: 14px; }
.tabs__panel p { font-size: 1.05rem; }
.tabs__mobile-panel { display: none; padding: 0 0 20px; color: var(--ink-2); }

/* Expertise / secteurs */
.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.tile { background: #fff; padding: 28px 24px; display: flex; flex-direction: column; gap: 24px; min-height: 180px; transition: background .3s; }
.tile:hover { background: var(--blue-soft); }
.tile__icon { width: 56px; height: 56px; background: var(--navy); border-radius: var(--radius); display: inline-flex; align-items: center; justify-content: center; }
.tile:hover .tile__icon { background: var(--blue); }
.tile__icon img { width: 30px; height: 30px; }
.tile h3 { font-size: 1.05rem; margin-top: auto; }

/* Accordéon services */
.accordion { border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc__btn { width: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; padding: 22px 0; text-align: start; }
.acc__btn:hover .acc__title { color: var(--blue); }
.acc__num { font-size: .8125rem; font-weight: 700; color: var(--blue); }
.acc__title { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 600; transition: color .25s; }
.acc__plus { width: 40px; height: 40px; border: 1.5px solid var(--line); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: transform .3s var(--ease), background .3s; }
.acc__plus svg { width: 14px; height: 14px; }
.acc__btn[aria-expanded="true"] .acc__plus { transform: rotate(45deg); background: var(--navy); color: #fff; border-color: var(--navy); }
.acc__panel { display: none; padding: 0 0 28px; }
.acc__panel.is-open { display: grid; gap: 24px; }
.acc__panel p { max-width: 64ch; }
.acc__caps h4 { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.acc__caps ul { display: flex; flex-wrap: wrap; gap: 8px; }
.acc__caps li { padding: 8px 14px; border: 1.5px solid var(--line); border-radius: var(--radius); font-size: .875rem; font-weight: 500; }
.acc__icon { width: 48px; height: 48px; color: var(--blue); }
.acc__icon svg { width: 48px; height: 48px; }

/* Teaser services (accueil) */
.svc-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc { background: #fff; padding: 32px 28px; display: flex; flex-direction: column; gap: 16px; transition: background .3s; }
.svc:hover { background: var(--blue-soft); }
.svc__icon { width: 44px; height: 44px; color: var(--blue); }
.svc__icon svg { width: 44px; height: 44px; }
.svc h3 { font-size: 1.1rem; }
.svc p { font-size: .9375rem; }

/* Lieux */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips li { padding: 10px 16px; border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius); font-size: .9375rem; font-weight: 500; transition: border-color .25s, background .25s; }
.chips li:hover { border-color: var(--blue); background: rgba(61,157,215,.15); }
.split { display: grid; gap: 40px; }

/* Carrières */
.filters { display: grid; gap: 16px; margin-bottom: 32px; }
.jobs { border-top: 1px solid var(--line); }
.job { display: grid; gap: 12px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: center; }
.job h3 { font-size: 1.15rem; }
.job:hover h3 { color: var(--blue); }
.job__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.job__tags span { font-size: .8125rem; font-weight: 500; padding: 5px 10px; background: var(--bg-soft); border-radius: 3px; color: var(--ink-2); }
.job .link { justify-self: start; }
.jobs__empty { padding: 32px 0; color: var(--ink-3); }

/* Article */
.article__head { padding-block: clamp(48px, 7vw, 88px) 40px; }
.article__meta { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 24px; }
.article__meta a { color: var(--blue); }
.article__hero { aspect-ratio: 21 / 9; overflow: hidden; background: var(--bg-soft); border-radius: var(--radius); }
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.prose { font-size: 1.0625rem; line-height: 1.75; }
.prose p { color: var(--ink-2); margin-bottom: 1.4em; }
.prose h3 { font-size: 1.4rem; font-weight: 700; margin: 2.2em 0 .7em; letter-spacing: -0.01em; }
.prose h3:first-child { margin-top: 0; }
.prose ul { margin: 0 0 1.6em; display: grid; gap: .8em; }
.prose ul li { position: relative; padding-inline-start: 24px; color: var(--ink-2); }
.prose ul li::before { content: ""; position: absolute; inset-inline-start: 0; top: .72em; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.article__share { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); }
.article__share span { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-inline-end: 8px; }
.article__share a, .article__share button { width: 44px; height: 44px; border: 1.5px solid var(--line); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.article__share a:hover, .article__share button:hover { border-color: var(--navy); }
.article__share svg { width: 16px; height: 16px; }
.pager { display: grid; gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 64px; }
.pager a { background: #fff; padding: 28px var(--gutter); display: flex; flex-direction: column; gap: 8px; }
.pager a:hover { background: var(--bg-soft); }
.pager a span { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.pager a b { font-weight: 600; font-size: 1.05rem; }
.pager a.pager--next { text-align: end; align-items: flex-end; }

/* Job page */
.job-page__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.job-page__tags span { font-size: .8125rem; font-weight: 500; padding: 6px 12px; border: 1.5px solid var(--line); border-radius: 3px; }
.apply { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--line); }
.apply h2 { margin-bottom: 28px; }

/* Contact */
.contact { display: grid; gap: 48px; }
.contact form { display: grid; gap: 20px; }
.map { aspect-ratio: 4 / 3; background: var(--bg-soft); border-radius: var(--radius); overflow: hidden; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.offices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.offices li { background: #fff; padding: 24px 20px; display: flex; flex-direction: column; gap: 10px; min-height: 120px; }
.offices li b { font-weight: 700; font-size: .8125rem; color: var(--blue); }
.offices li span { font-size: 1.05rem; font-weight: 600; }
.address { display: grid; gap: 6px; font-size: .9375rem; color: var(--ink-2); margin-top: 24px; }
.address b { font-weight: 600; color: var(--ink); }
.address a { color: var(--blue); font-weight: 600; }

/* Page 404 */
.notfound { min-height: 60vh; display: flex; align-items: center; }

/* Reveal */
html.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.is-in { opacity: 1; transform: none; }

/* Responsive */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .tiles--six { grid-template-columns: repeat(3, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .job { grid-template-columns: 1fr auto; }
  .job__tags { grid-column: 1 / -1; }
  .newsletter form { flex-direction: row; align-items: flex-end; }
  .newsletter form .field { flex: 1; }
  .filters { grid-template-columns: 1fr 1fr; }
  .pager { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .cases { grid-template-columns: repeat(3, 1fr); }
  .section-head { grid-template-columns: 1fr auto; }
  .section-head__text { grid-column: 1 / -1; max-width: 60ch; }
  .section-head__link { justify-self: end; }
  .cases--two { grid-template-columns: repeat(2, 1fr); }
  .case--row { grid-template-columns: 1fr 1fr; align-items: center; }
  .logos { grid-template-columns: repeat(4, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .newsletter { grid-template-columns: 1fr 1.2fr; }
  .quote { grid-template-columns: 300px 1fr; gap: 64px; }
  .footer__grid { grid-template-columns: 1.3fr .8fr 1.2fr; gap: 64px; }
  .closing__grid { grid-template-columns: 1.2fr 1fr; gap: 64px; }
  .closing__nl { padding: 40px; }
  .tabs { grid-template-columns: 1fr 1fr; gap: 64px; }
  .tiles { grid-template-columns: repeat(4, 1fr); }
  .tiles--three { grid-template-columns: repeat(3, 1fr); }
  .tiles--six { grid-template-columns: repeat(6, 1fr); }
  .tiles--six .tile { min-height: 160px; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .contact { grid-template-columns: 1.1fr 1fr; gap: 64px; }
  .offices { grid-template-columns: repeat(3, 1fr); }
  .acc__panel.is-open { grid-template-columns: 48px 1fr 1fr; gap: 32px; }
  .job { grid-template-columns: 1.4fr 1fr auto; }
  .job__tags { grid-column: auto; }
  .nav { display: block; }
  .burger { display: none; }
  .mobile-menu { display: none !important; }
  .hero--video { min-height: clamp(620px, 100svh, 900px); }
}
@media (hover: none) { .case:hover .case__media img { transform: none; } }
@media print { .header, .footer, .search, .mobile-menu { display: none !important; } main { padding-top: 0; } }


/* ============ THÈME SOMBRE (override) ============ */
:root { --bg: #0B1526; --bg-2: #10203A; --bg-3: #15294A; --bg-soft: #10203A; --ink: #FFFFFF; --ink-2: rgba(255,255,255,.76); --ink-3: rgba(255,255,255,.55); --line: rgba(255,255,255,.12); --blue-soft: #13294A; }
body { background: var(--bg); color: #fff; }
.header { background: rgba(11,21,38,.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-color: var(--line); color: #fff; }
.brand .logo-dark { display: none; } .brand .logo-light { display: block; }
.nav a { color: #fff; }
.icon-btn:hover, .lang__btn:hover { background: rgba(255,255,255,.1); }
.lang__menu { background: var(--bg-2); border-color: var(--line); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.lang__menu a { color: #fff; } .lang__menu a:hover { background: rgba(255,255,255,.08); }
.mobile-menu { background: var(--bg); }
.mobile-menu ul li a { border-color: var(--line); }
.mobile-menu__langs a { border-color: var(--line); }
.mobile-menu__langs a[aria-current="true"] { background: var(--blue); border-color: var(--blue); }
body[data-header="dark"] .header:not(.is-scrolled):not(.is-menu) { background: transparent; }
.section--soft, .section--tint { background: var(--bg-2); }
.section--dark { background: #070D18; }
.section--line { border-color: var(--line); }
.hero--page { background: var(--bg-2); border-color: var(--line); }
.hero--photo { background: var(--bg); min-height: 420px; display: flex; align-items: center; }
.hero--photo .hero__media::after { background: linear-gradient(90deg, rgba(11,21,38,.95) 0%, rgba(11,21,38,.8) 50%, rgba(11,21,38,.5) 100%); }
.hero--photo .container { position: relative; z-index: 1; }
.btn { border-color: #fff; color: #fff; }
.btn:hover { background: #fff; color: var(--navy); }
.btn--primary { border-color: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: #fff; }
.field input, .field textarea, .field select { background: rgba(255,255,255,.06); border-color: var(--line); color: #fff; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.4); }
.field select option { color: var(--ink); background: var(--bg-2); }
.case__media, .article__hero, .map { background: var(--bg-2); }
.marquee__list img { filter: grayscale(1) brightness(0) invert(1); opacity: .75; }
.marquee__list li:hover img { filter: none; opacity: 1; }
.trust-label::before, .trust-label::after { background: var(--line); }
.tiles, .svc-grid, .offices, .pager { background: var(--line); border-color: var(--line); }
.tile, .svc, .offices li, .pager a { background: var(--bg-2); }
.tile:hover, .svc:hover, .pager a:hover { background: var(--bg-3); }
.section--tint .tiles { background: var(--line); border-color: var(--line); }
.section--tint .tile, .section--soft .tile, .section--soft .svc { background: var(--bg); }
.section--tint .tile:hover, .section--soft .tile:hover { background: var(--bg-3); }
.tile__icon { background: var(--blue); }
.tile:hover .tile__icon { background: #fff; }
.tile:hover .tile__icon img { filter: brightness(0) saturate(100%) invert(12%) sepia(40%) saturate(2000%) hue-rotate(200deg); }
.tabs__list, .tabs__list button, .accordion, .acc, .jobs, .job, .article__share, .apply, .pager { border-color: var(--line); }
.acc__plus, .acc__caps li, .article__share a, .article__share button, .job-page__tags span { border-color: var(--line); }
.acc__btn[aria-expanded="true"] .acc__plus { background: #fff; color: var(--navy); border-color: #fff; }
.article__share a:hover, .article__share button:hover { border-color: #fff; }
.job__tags span { background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); }
.closing { background: var(--bg-2); }
.closing__nl { background: var(--bg); }
.cta { background: var(--bg-2); }
.cta__leaf { opacity: .3; }
.section--soft.quote-wrap { background: var(--bg-2); }
.stats--light .stat b { color: #fff; }
.stats--light .stat span { color: var(--ink-2); }
.search { background: rgba(7,13,24,.97); }
.footer { background: #070D18; }
.hero__media::after { background: linear-gradient(90deg, rgba(11,21,38,.9) 0%, rgba(11,21,38,.6) 50%, rgba(11,21,38,.25) 100%); }
.video-band { background: var(--bg); }
.prose h3 { color: #fff; }
.address b { color: #fff; }
.lang__menu small { color: var(--ink-3); }
.form-status.is-ok { color: #6FD39B; } .form-status.is-err { color: #FF8A80; }


/* ============ ALTERNANCE STRICTE : nuit / bleu ============ */
.section--soft, .section--tint, .closing, .cta, .hero--page, .video-band { background: var(--bg); }
.closing__nl { background: var(--bg-2); border: 1px solid var(--line); }
.section--blue { background: var(--blue); }
.section--blue .tiles, .section--blue .svc-grid { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.22); }
.section--blue .tile, .section--blue .svc { background: var(--blue); }
.section--blue .tile:hover, .section--blue .svc:hover { background: rgba(10,31,61,.35); }
.section--blue .tile__icon { background: var(--navy); }
.section--blue .tile:hover .tile__icon { background: #fff; }
.section--blue .office { background: rgba(10,31,61,.3); border-color: rgba(255,255,255,.25); }
.section--blue .office:hover { background: rgba(10,31,61,.55); border-color: #fff; }
.section--blue .office b { color: #fff; }
.section--blue .btn--primary { background: #fff; border-color: #fff; color: var(--navy); }
.section--blue .btn--primary:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.section--blue .btn { border-color: #fff; color: #fff; }
.section--blue .btn:hover { background: #fff; color: var(--navy); }
.section--blue .btn--primary:hover { background: var(--navy); color: #fff; }
.section--blue p, .section--blue .lead, .section--blue .form-note { color: rgba(255,255,255,.9); }
.section--blue .field label { color: #fff; }
.section--blue .field input, .section--blue .field textarea { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); color: #fff; }
.section--blue .cta__leaf { opacity: .18; }
.section--blue .chips li { border-color: rgba(255,255,255,.5); }
.section--blue .stat { border-color: rgba(255,255,255,.7); }
.section--blue .split p { color: rgba(255,255,255,.9); }
.section--blue .section-head__link { color: #fff; }
.section--blue h2, .section--blue h3 { color: #fff; }
.section--blue .marquee--cards { -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }


/* ============ Cartes secteurs (photo) ============ */
.scards { display: grid; gap: 16px; grid-template-columns: 1fr; }
.scard { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 3; background: var(--bg-2); }
.scard picture, .scard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.scard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,31,61,.15) 0%, rgba(10,31,61,.35) 45%, rgba(10,31,61,.92) 100%); }
.scard:hover img { transform: scale(1.04); }
.scard__body { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 14px; padding: 24px; }
.scard__icon { width: 48px; height: 48px; background: var(--blue); border-radius: var(--radius); display: inline-flex; align-items: center; justify-content: center; }
.scard__icon img { position: static; width: 26px; height: 26px; }
.scard h3 { color: #fff; font-size: 1.25rem; }
.section--blue .scard::after { background: linear-gradient(180deg, rgba(10,31,61,.1) 0%, rgba(10,31,61,.3) 45%, rgba(10,31,61,.9) 100%); }
.section--blue .scard__icon { background: #fff; }
.section--blue .scard__icon img { filter: brightness(0) saturate(100%) invert(12%) sepia(40%) saturate(2000%) hue-rotate(200deg); }
@media (min-width: 640px) { .scards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .scards { grid-template-columns: repeat(3, 1fr); gap: 20px; } .scard { aspect-ratio: 4 / 3; } }
.hero--photo .hero__media img { object-position: center; }
.cta__leaf { display: none; }


/* ============ MARINE + BLANC, bleu clair en accent ============ */
:root { --bg: #0A1F3D; --bg-2: #10294A; --bg-3: #163559; --navy: #0A1F3D; --line: rgba(255,255,255,.14); }
body { background: var(--bg); }
.header { background: rgba(10,31,61,.92); }
.footer { background: #061428; }
.section--dark { background: #061428; }
.hero__media::after { background: linear-gradient(90deg, rgba(10,31,61,.92) 0%, rgba(10,31,61,.65) 50%, rgba(10,31,61,.3) 100%); }
.hero--photo .hero__media::after { background: linear-gradient(90deg, rgba(10,31,61,.96) 0%, rgba(10,31,61,.82) 50%, rgba(10,31,61,.55) 100%); }
.search { background: rgba(6,20,40,.97); }

/* Sections blanches : thème clair local */
.section--white { background: #fff; color: #0A1F3D; --line: #E1E5EA; --ink: #0A1F3D; --ink-2: #3E4A5C; --ink-3: #6B7686; --bg: #fff; --bg-2: #F4F6F8; --bg-3: #EAF0F6; }
.section--white h1, .section--white h2, .section--white h3, .section--white h4 { color: #0A1F3D; }
.section--white p, .section--white .lead, .section--white .split p, .section--white .form-note { color: #3E4A5C; }
.section--white .eyebrow { color: var(--blue); } .section--white .eyebrow::before { background: var(--blue); }
.section--white .link, .section--white .section-head__link { color: var(--blue); }
.section--white .link:hover { color: var(--blue-deep); }
.section--white .btn { border-color: #0A1F3D; color: #0A1F3D; }
.section--white .btn:hover { background: #0A1F3D; color: #fff; }
.section--white .btn--primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.section--white .btn--primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: #fff; }
.section--white .btn--light { border-color: #0A1F3D; color: #0A1F3D; }
.section--white .btn--light:hover { background: #0A1F3D; color: #fff; }
.section--white .stat { border-color: var(--blue); }
.section--white .stat b { color: #0A1F3D; }
.section--white .stat span { color: #3E4A5C; }
.section--white .tiles, .section--white .svc-grid, .section--white .offices { background: #E1E5EA; border-color: #E1E5EA; }
.section--white .tile, .section--white .svc, .section--white .offices li { background: #fff; }
.section--white .tile:hover, .section--white .svc:hover { background: #F4F6F8; }
.section--white .tile__icon { background: #0A1F3D; }
.section--white .tile:hover .tile__icon { background: var(--blue); }
.section--white .tile:hover .tile__icon img { filter: none; }
.section--white .scard__icon { background: var(--blue); }
.section--white .scard__icon img { filter: none; }
.section--white .scard::after { background: linear-gradient(180deg, rgba(10,31,61,.15) 0%, rgba(10,31,61,.35) 45%, rgba(10,31,61,.92) 100%); }
.section--white .office { background: #F4F6F8; border-color: #E1E5EA; }
.section--white .office:hover { background: #fff; border-color: var(--blue); }
.section--white .office b { color: var(--blue); }
.section--white .office span { color: #0A1F3D; }
.section--white .chips li { border-color: #D5DCE4; color: #0A1F3D; }
.section--white .chips li:hover { border-color: var(--blue); background: #EAF4FB; }
.section--white .tabs__list, .section--white .tabs__list button { border-color: #E1E5EA; }
.section--white .tabs__list button { color: #0A1F3D; }
.section--white .tabs__list button[aria-selected="true"] { color: var(--blue); }
.section--white .field label { color: #0A1F3D; }
.section--white .field input, .section--white .field textarea, .section--white .field select { background: #fff; border-color: #E1E5EA; color: #0A1F3D; }
.section--white .field input::placeholder { color: #8A94A3; }
.section--white .quote blockquote { color: #0A1F3D; }
.section--white .quote__who b { color: #0A1F3D; } .section--white .quote__who span { color: #3E4A5C; }
.section--white .marquee--cards { -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.section--white .trust-label { color: #6B7686; }
.section--white .cta__leaf { display: none; }
.section--white .section-head h2 { color: #0A1F3D; }
.section--white .case h3, .section--white .case h3 a { color: #0A1F3D; }
.section--white .case:hover h3 { color: var(--blue); }
.section--white .case__media { background: #F4F6F8; }

.scard__body { padding: 28px; }
.scard h3 { font-size: 1.35rem; }
.scard h3::after { content: ''; display: block; width: 32px; height: 2px; background: var(--blue); margin-top: 12px; transition: width .3s var(--ease); }
.scard:hover h3::after { width: 56px; }

/* Cartes cases : format identique partout */
.case p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; font-size: .9375rem; line-height: 1.6; }
.case--featured p { -webkit-line-clamp: 5; font-size: 1rem; }
.case h3 { font-size: 1.2rem; line-height: 1.3; }

/* Expertises (Who We Are) : liste numérotée */
.expertise { display: grid; grid-template-columns: 1fr; gap: 0 40px; margin: 0; padding: 0; list-style: none; }
.expertise li { display: flex; align-items: baseline; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.expertise li:last-child { border-bottom: 1px solid var(--line); }
.expertise b { font-weight: 700; font-size: .8125rem; color: var(--blue); min-width: 28px; }
.expertise span { font-weight: 600; font-size: 1.15rem; }
@media (min-width: 640px) { .expertise { grid-template-columns: 1fr 1fr; } .expertise li:nth-last-child(2) { border-bottom: 1px solid var(--line); } }
@media (min-width: 900px) { .expertise { grid-template-columns: repeat(4, 1fr); } .expertise li { border-bottom: 1px solid var(--line); padding: 28px 0; } .expertise li:nth-last-child(2) { border-bottom: 1px solid var(--line); } }
