/* ========= Design system IKZIA ========= */
:root {
  --blue:#1565C0;
  --orange:#F28C08;
  --ikzia-blue:#0F5CCF;
  --ikzia-orange:#FF7A21;

  --ink-900:#0B1220;
  --ink-800:#1F2933;
  --ink-700:#334155;
  --ink-600:#4B5563;
  --ink-500:#6B7280;
  --ink-200:#E5E7EB;
  --ink-050:#F6F7FB;

  --bg:#FFFFFF;
  --radius:16px;
  --shadow:0 10px 24px rgba(15,23,42,.10);
}

/* ========= Reset simple ========= */
*,
*::before,
*::after {
  box-sizing:border-box;
}

html,body {
  margin:0;
  padding:0;
}

body {
  font-family:ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color:var(--ink-900);
  background:var(--bg);
  line-height:1.6;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}

img {
  max-width:100%;
  height:auto;
  display:block;
}

a {
  color:inherit;
}

.container {
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

/* ========= TOPBAR IKZIA PREMIUM ========= */

.topbar-ikzia {
  background:#0A0F1C;
  color:#E2E8F0;
  font-size:0.85rem;
  padding:6px 0;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.topbar-ikzia__container {
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.topbar-ikzia__left span,
.topbar-ikzia__left a {
  margin-right:10px;
  color:#E2E8F0;
  text-decoration:none;
}

.topbar-ikzia__left a:hover {
  text-decoration:underline;
}

.topbar-ikzia__right {
  display:flex;
  align-items:center;
  gap:8px;
}

/* Icônes sociales rondes */
.topbar-ikzia__icon {
  width:30px;
  height:30px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:rgba(15,23,42,0.85);
  transition:transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.topbar-ikzia__icon svg {
  width:18px;
  height:18px;
  display:block;
}

.topbar-ikzia__icon--linkedin { color:var(--ikzia-blue); }
.topbar-ikzia__icon--instagram { color:var(--ikzia-orange); }
.topbar-ikzia__icon--youtube { color:var(--ikzia-orange); }

.topbar-ikzia__icon:hover {
  transform:translateY(-1px);
  box-shadow:0 6px 14px rgba(15,23,42,0.55);
  opacity:0.95;
}

/* Bouton Contact */
.topbar-ikzia__btn {
  background:var(--ikzia-orange);
  color:#fff !important;
  padding:6px 14px;
  border-radius:999px;
  font-weight:600;
  font-size:0.8rem;
  text-decoration:none;
  margin-left:4px;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.topbar-ikzia__btn:hover {
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(255,140,0,0.35);
  background:#ff8a3b;
}

/* Mobile : on cache la topbar */
@media (max-width:640px) {
  .topbar-ikzia {
    display:none;
  }
}

/* ========= Header & navigation ========= */

.site-header {
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
  border-bottom:1px solid var(--ink-200);
  transition:box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.site-header.is-small {
  box-shadow:var(--shadow);
  transform:translateY(-2px);
}

.nav {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand {
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
}

.brand span {
  font-weight:900;
  letter-spacing:.05em;
  color:var(--blue);
}

.nav__links {
  display:flex;
  align-items:center;
  gap:18px;
}

.nav__links a {
  text-decoration:none;
  padding:8px 12px;
  border-radius:999px;
  font-weight:600;
  color:var(--ink-900);
  font-size:.95rem;
}

.nav__links a:hover {
  background:#F3F4F6;
}

.nav__links a.is-active,
.nav__link--dropdown.is-active {
  background:var(--blue);
  color:#fff;
}

.nav__toggle {
  display:none;
  background:none;
  border:0;
  font-size:24px;
  cursor:pointer;
}

/* Dropdowns nav */
.nav__item {
  position:relative;
  display:flex;
  align-items:center;
}

.nav__link--dropdown {
  background:none;
  border:none;
  padding:8px 12px;
  border-radius:999px;
  font-weight:600;
  font-size:0.95rem;
  cursor:pointer;
  color:var(--ink-900);
}

.nav__link--dropdown:hover {
  background:#F3F4F6;
}

.nav__item--has-dropdown.is-open > .nav__link--dropdown {
  background:var(--blue);
  color:#fff;
}

.nav__dropdown {
  position:absolute;
  top:110%;
  left:0;
  min-width:220px;
  background:#ffffff;
  border-radius:14px;
  box-shadow:0 18px 40px rgba(15,23,42,.18);
  border:1px solid rgba(148,163,184,.35);
  padding:10px 0;
  display:none;
  z-index:100;
}

.nav__item--has-dropdown.is-open > .nav__dropdown {
  display:block;
}

.nav__dropdown a {
  display:block;
  padding:8px 14px;
  font-size:0.9rem;
  text-decoration:none;
  color:var(--ink-800);
  white-space:nowrap;
}

.nav__dropdown a:hover {
  background:#F3F4F6;
  color:var(--blue);
}

/* Desktop : hover direct */
@media (min-width:900px) {
  .nav__item--has-dropdown:hover > .nav__dropdown {
    display:block;
  }
  .nav__item--has-dropdown:hover > .nav__link--dropdown {
    background:var(--blue);
    color:#fff;
  }
}

/* Mobile nav */
@media (max-width:768px) {
  .nav__toggle {
    display:block;
  }

  .nav__links {
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    background:#fff;
    border-top:1px solid var(--ink-200);
    padding:14px 20px;
    gap:12px;
    justify-content:center;
    flex-wrap:wrap;
    display:none;
  }

  .nav__links.is-open {
    display:flex;
  }

  .nav__item {
    flex-direction:column;
    align-items:stretch;
  }

  .nav__dropdown {
    position:static;
    min-width:100%;
    box-shadow:none;
    border-radius:10px;
    margin-top:4px;
  }
}

/* ========= Hero ========= */

.hero {
  position:relative;
  color:#fff;
  overflow:hidden;
  min-height:60vh;
  background:#020617;
}

.hero__bg,
.hero__video {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.hero__video {
  object-fit:cover;
}

.hero__overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(15,23,42,0.85) 0%,
    rgba(15,23,42,0.6) 35%,
    rgba(15,23,42,0.25) 60%,
    rgba(15,23,42,0) 100%
  );
}

.hero__inner {
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  min-height:60vh;
  padding:clamp(72px,10vh,120px) 0;
}

.hero__content {
  max-width:520px;
  margin-left:clamp(32px,8vw,120px);
}

.hero__eyebrow {
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:0.75rem;
  font-weight:600;
  opacity:.85;
  margin:0 0 12px;
}

.hero__title {
  margin:0 0 12px;
  font-size:clamp(32px,3.5vw,48px);
  line-height:1.08;
  font-weight:900;
}

.hero__subtitle {
  margin:0;
  font-size:1rem;
  line-height:1.6;
  max-width:34rem;
  color:#E5E7EB;
}

.hero__actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

/* Hero responsive */
@media (max-width:900px) {
  .hero__inner {
    align-items:flex-end;
    padding:72px 0 70px;
  }
  .hero__content {
    margin:0 20px 40px;
    max-width:none;
  }
}

@media (max-width:600px) {
  .hero__title {
    font-size:1.9rem;
  }
  .hero__actions {
    flex-direction:column;
    align-items:flex-start;
  }
}

/* Hero – overlay différent sur mobile */
@media (max-width:900px) {
  .hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5,20,60,0.2) 0%,
        rgba(5,20,60,0.8) 60%,
        rgba(5,20,60,0.95) 100%
      );
  }
  .hero {
    min-height:70vh;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion:reduce) {
  .hero__video {
    display:none;
  }
  .hero__bg {
    background:url("assets/img/hero/hero-bg-ikzia.png") center/cover no-repeat;
  }
}

/* ========= Boutons ========= */

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 24px;
  border-radius:999px;
  font-weight:700;
  font-size:0.95rem;
  text-decoration:none;
  border:none;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
  box-shadow:0 10px 20px rgba(15,23,42,0.18);
}

.btn--primary,
.btn--blue {
  background:var(--blue);
  color:#fff;
}

.btn--secondary,
.btn--orange {
  background:var(--orange);
  color:#fff;
}

.btn--white {
  background:#fff;
  color:var(--ink-900);
}

.btn--ghost-blue {
  border:1px solid var(--blue);
  color:var(--blue);
  background:transparent;
}

.btn--ghost-orange {
  border:1px solid var(--orange);
  color:var(--orange);
  background:transparent;
}

.btn:hover {
  transform:translateY(-1px);
  filter:brightness(1.04);
  box-shadow:0 8px 18px rgba(15,23,42,.18);
}

/* ========= Sections & layout ========= */

.section {
  padding:56px 0;
}

.section--muted {
  background:var(--ink-050);
}

.section__head {
  margin-bottom:26px;
}

.section__title {
  margin:0 0 6px;
  font-size:clamp(22px,3vw,28px);
  font-weight:800;
}

.section__subtitle {
  margin:0;
  color:var(--ink-500);
  font-size:.98rem;
}

.section--poles,
.section--refs {
  background:#fff;
}

/* ========= Grids ========= */

.grid {
  display:grid;
  gap:26px;
}

.grid--2 {
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.grid--3 {
  grid-template-columns:repeat(3,minmax(0,1fr));
}

/* ========= Cards ========= */

.card {
  background:#fff;
  border-radius:var(--radius);
  border:1px solid var(--ink-200);
  box-shadow:var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.card__media {
  width:100%;
  overflow:hidden;
}

.card__media img {
  width:100%;
  height:220px;
  object-fit:cover;
}

.card__body {
  padding:18px 18px 16px;
}

.card__eyebrow {
  font-size:.78rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--ink-500);
  margin-bottom:4px;
}

.card__title {
  margin:0 0 6px;
  font-size:1.1rem;
  font-weight:800;
}

.card__meta {
  margin:0 0 12px;
  color:var(--ink-700);
  font-size:.95rem;
}

.card__actions {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.card__link {
  font-weight:600;
  text-decoration:none;
  color:var(--blue);
}

/* variantes pôles */
.card--pole .card__body {
  border-top:4px solid var(--blue);
}

.card--orange .card__body {
  border-top-color:var(--orange);
}

/* ========= Callout & newsletter ========= */

.callout {
  background:#0E172A;
  color:#fff;
}

.callout__inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:26px 0;
}

.callout__title {
  margin:0 0 6px;
}

.callout__text {
  margin:0;
  color:#CBD5F5;
}

.newsletter {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
}

.newsletter__form {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.newsletter__form input {
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--ink-200);
  min-width:240px;
}

/* ========= Footer ========= */

.footer {
  margin-top:30px;
  background:#0A0F1C;
  color:#E2E8F0;
  font-size:.88rem;
}

.footer__row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 0;
}

.footer__contact a {
  color:#E2E8F0;
  text-decoration:none;
}

.footer__contact a:hover {
  text-decoration:underline;
}

/* ========= Animations “reveal” ========= */

.reveal {
  opacity:0;
  transform:translateY(12px);
  transition:opacity .5s ease, transform .5s ease;
}

.reveal.is-visible {
  opacity:1;
  transform:translateY(0);
}

/* ========= Accessibilité ========= */

.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}

/* ========= Carousel générique ========= */

.carousel {
  position:relative;
  background:#fff;
  border-radius:var(--radius);
  border:1px solid var(--ink-200);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.carousel__track {
  display:flex;
  transition:transform .4s ease;
}

.carousel__item {
  flex:0 0 100%;
  padding:26px 22px 24px;
  text-align:center;
}

.carousel__item blockquote {
  margin:0 0 10px;
  font-size:1.02rem;
}

.carousel__item figcaption {
  color:var(--ink-500);
  font-size:.9rem;
}

/* ========= Témoignages (Accueil) ========= */

.testimonials {
  position:relative;
}

.testimonials__track-wrapper {
  overflow:hidden;
}

.testimonials__track {
  display:flex;
  transition:transform 0.4s ease;
}

.testimonials__item {
  min-width:100%;
  max-width:720px;
  margin:0 auto;
  padding:16px 20px;
  box-sizing:border-box;
}

.testimonials__item figure {
  background:#ffffff;
  border-radius:16px;
  padding:20px 24px;
  box-shadow:0 10px 24px rgba(15,23,42,0.06);
  border:1px solid rgba(148,163,184,0.25);
}

.testimonials__quote {
  font-size:0.98rem;
  line-height:1.6;
  color:#111827;
  margin-bottom:10px;
}

.testimonials__author {
  font-weight:600;
  font-size:0.9rem;
  color:#111827;
}

.testimonials__role {
  font-size:0.85rem;
  color:#6b7280;
}

/* Flèches */
.testimonials__arrow {
  width:30px;
  height:30px;
  border-radius:999px;
  border:1px solid var(--ink-200);
  background:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  font-size:16px;
  line-height:1;
  color:var(--ink-700);
  box-shadow:0 4px 12px rgba(15,23,42,0.08);
  transition:background 0.2s ease, transform 0.2s ease;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.testimonials__arrow--prev {
  left:-40px;
}

.testimonials__arrow--next {
  right:-40px;
}

.testimonials__arrow:hover {
  background:#f9fafb;
  transform:translateY(-1px);
}

/* Pastilles / dots */
.testimonials__dots {
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:12px;
}

.testimonials__dot {
  width:9px;
  height:9px;
  border-radius:999px;
  border:0;
  background:var(--ink-200);
  cursor:pointer;
  transition:background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.testimonials__dot.is-active {
  background:var(--blue);
  width:18px;
  transform:translateY(-1px);
}

/* Témoignages – padding plus léger sur l’accueil */
.page-accueil #temoignages.section {
  padding-top:32px;
  padding-bottom:40px;
}

/* Responsive témoignages */
@media (max-width:720px) {
  .page-accueil #temoignages.section {
    padding-top:24px;
    padding-bottom:32px;
  }

  .testimonials__item figure {
    padding:18px 18px;
    border-radius:14px;
  }

  .testimonials__quote {
    font-size:0.95rem;
  }

  .testimonials__arrow {
    display:none; /* mobile : swipe + dots */
  }
}

/* ========= Responsive global ========= */

@media (max-width:980px) {
  .grid--3 {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .callout__inner {
    flex-direction:column;
    text-align:center;
  }
}

@media (max-width:768px) {
  .grid--2,
  .grid--3 {
    grid-template-columns:1fr;
  }

  .newsletter {
    flex-direction:column;
    align-items:stretch;
  }
}

/* Prefers reduced motion (global) */
@media (prefers-reduced-motion:reduce) {
  .btn:hover {
    transform:none;
    box-shadow:none;
  }
  .reveal {
    transition:none;
  }
  .carousel__track,
  .testimonials__track {
    transition:none;
  }
}

/* ========= Page Impact & réalisations ========= */

.page-impact main {
  background:#f5f7fb;
}

.section__head--center {
  text-align:center;
  align-items:center;
}

/* Chiffres clés */
.impact-metrics {
  padding:4rem 0;
}

.impact-metrics__grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1.75rem;
  margin-top:2rem;
}

.impact-metrics__item {
  background:#ffffff;
  border-radius:1.25rem;
  padding:1.75rem 1.5rem;
  box-shadow:0 14px 40px rgba(7,28,76,0.07);
  text-align:center;
}

.impact-metrics__icon {
  font-size:1.6rem;
  margin-bottom:0.75rem;
}

.impact-metrics__value {
  font-size:1.8rem;
  font-weight:700;
  color:#0f3c88;
  margin-bottom:0.25rem;
}

.impact-metrics__label {
  font-size:0.95rem;
  color:#5c6b85;
}

/* Avant/Après */
.impact-before-after {
  padding:4rem 0;
}

.impact-before-after__grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.75rem;
  margin-top:2.5rem;
}

.impact-ba-card {
  background:#ffffff;
  border-radius:1.5rem;
  padding:1.75rem 1.5rem;
  box-shadow:0 16px 48px rgba(5,25,70,0.08);
}

.impact-ba-card__title {
  font-size:1.1rem;
  font-weight:600;
  margin-bottom:1.25rem;
  color:#132341;
}

.impact-ba-card__cols {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem;
}

.impact-ba-card__eyebrow {
  font-size:0.78rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-weight:700;
  margin-bottom:0.5rem;
}

.impact-ba-card__eyebrow--before { color:#9b1c31; }
.impact-ba-card__eyebrow--after { color:#0b7c3c; }

.impact-ba-card ul {
  padding-left:1.1rem;
  margin:0;
  font-size:0.92rem;
  color:#4a5871;
}

.impact-ba-card li + li {
  margin-top:0.35rem;
}

/* Études de cas */
.impact-cases {
  padding:4rem 0;
}

.card--case {
  height:100%;
}

.card--case .card__media img {
  height:210px;
  object-fit:cover;
}

/* Logos clients */
.impact-logos {
  padding:3rem 0;
}

.impact-logos__row {
  margin-top:1.75rem;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1.5rem;
}

.impact-logos__item {
  background:#ffffff;
  border-radius:999px;
  padding:0.9rem 1.4rem;
  text-align:center;
  font-size:0.92rem;
  font-weight:600;
  color:#1b355f;
  box-shadow:0 10px 30px rgba(7,31,79,0.07);
}

/* Méthode */
.impact-method {
  padding:4rem 0;
}

.impact-method__grid {
  margin-top:2.25rem;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1.5rem;
}

.impact-method__step {
  background:#ffffff;
  border-radius:1.25rem;
  padding:1.75rem 1.5rem;
  box-shadow:0 16px 48px rgba(5,25,70,0.08);
}

.impact-method__step-number {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:2rem;
  height:2rem;
  border-radius:999px;
  background:linear-gradient(135deg,#ff914d,#ffb35c);
  color:#fff;
  font-weight:700;
  font-size:0.95rem;
  margin-bottom:0.65rem;
}

.impact-method__step-title {
  font-size:1rem;
  font-weight:600;
  margin-bottom:0.35rem;
}

.impact-method__step p {
  font-size:0.92rem;
  color:#4a5871;
}

/* Callout impact */
.callout--impact {
  background:linear-gradient(120deg,#0f3c88,#081c3c);
  color:#ffffff;
}

.callout--impact .callout__title {
  color:#ffffff;
}

.callout--impact .callout__text {
  color:#e2e8ff;
}

/* Impact responsive */
@media (max-width:1024px) {
  .impact-metrics__grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .impact-before-after__grid {
    grid-template-columns:minmax(0,1fr);
  }
  .impact-ba-card__cols {
    grid-template-columns:minmax(0,1fr);
  }
  .impact-logos__row {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .impact-method__grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:640px) {
  .impact-metrics__grid,
  .impact-logos__row,
  .impact-method__grid {
    grid-template-columns:minmax(0,1fr);
  }
}

/* ========= PAGE CONTACT – version "cabinet stratégique" ========= */

.page-contact {
  background:
    radial-gradient(circle at 5% 0%, rgba(15,92,207,0.05), transparent 55%),
    radial-gradient(circle at 95% 100%, rgba(15,23,42,0.08), transparent 55%),
    #f4f6fb;
}

.hero--contact {
  position:relative;
  min-height:260px;
  color:#ffffff;
  overflow:hidden;
}

.hero--contact .hero__bg {
  position:absolute;
  inset:0;
  z-index:-2;
}

.hero--contact .hero__bg-img {
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.2) contrast(1.05) brightness(0.9);
  opacity:0.7;
}

.hero__overlay--gradient {
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 10% 0%, rgba(15,92,207,0.7) 0, transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(255,122,33,0.72) 0, transparent 55%),
    linear-gradient(135deg, rgba(5,19,45,0.95), rgba(5,15,30,0.98));
  z-index:-1;
}

.hero__inner--contact {
  padding:3.4rem 0 2.6rem;
}

.hero--contact .hero__subtitle {
  max-width:36rem;
  font-size:.98rem;
  line-height:1.6;
  opacity:.9;
}

.section--contact-main {
  padding-top:2.5rem;
  padding-bottom:4rem;
}

/* Layout contact */
.contact-layout {
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(0,1.35fr);
  gap:2.5rem;
  align-items:stretch;
}

/* Colonne infos */
.contact-layout__col--info {
  font-size:.95rem;
  background:#ffffff;
  border-radius:18px;
  padding:22px 24px 24px;
  box-shadow:0 18px 45px rgba(9,22,54,0.15);
  border:1px solid rgba(148,163,184,0.25);
  display:flex;
  flex-direction:column;
  gap:16px;
}

.section__title--small {
  font-size:1.15rem;
  margin-bottom:.75rem;
}

.contact-info__text {
  margin:0;
  color:#1f2933;
  line-height:1.5;
}

.contact-info__text strong {
  font-weight:700;
  color:#0b172f;
}

.contact-info__links {
  margin:4px 0 0;
  font-size:.9rem;
  color:#4b5563;
}

.contact-info__links a {
  color:#0f5ccf;
  text-decoration:none;
}

.contact-info__links a:hover {
  text-decoration:underline;
}

/* Carte */
.contact-layout__col--info .map__container {
  margin-top:10px;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(15,35,75,0.18);
  border:1px solid rgba(148,163,184,0.25);
  background:#ffffff;
}

.contact-layout__col--info .map__frame {
  width:100%;
  height:210px;
  border:0;
}

.contact-layout__col--info .map__link {
  display:block;
  padding:6px 10px 8px;
  font-size:.82rem;
  text-align:right;
  color:#0f5ccf;
  font-weight:500;
}

/* Highlights */
.contact-info__highlights {
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(209,213,219,0.8);
}

.contact-info__highlights-title {
  font-size:.9rem;
  font-weight:600;
  color:#111827;
  margin:0 0 6px;
}

.contact-info__highlights-list {
  list-style:none;
  margin:0;
  padding:0;
  font-size:.86rem;
  color:#4b5563;
}

.contact-info__highlights-list li + li {
  margin-top:3px;
}

.contact-info__highlights-list li::before {
  content:"•";
  color:#ff7a21;
  margin-right:6px;
}

.contact-info__kpi {
  margin:8px 0 0;
  font-size:.8rem;
  color:#6b7280;
}

/* Colonne formulaire */
.contact-layout__col--form {}

/* Carte formulaire */
.contact-form-card {
  max-width:720px;
  margin:0 auto;
  padding:22px 26px;
  border-radius:14px;
  background:#ffffff;
  border:1px solid rgba(15,23,42,0.12);
  box-shadow:0 18px 38px rgba(15,23,42,0.12);
}

.contact-form-card::before {
  content:"";
  display:block;
  width:64px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,#0F5CCF,#FF7A21);
  margin-bottom:14px;
}

.contact-form-card__title {
  font-size:1.25rem;
  font-weight:700;
  color:#0b1220;
  margin-bottom:4px;
}

.contact-form-card__intro {
  font-size:0.86rem;
  color:#6b7280;
  margin-bottom:16px;
  max-width:520px;
}

/* Formulaire */
.form--contact .form__fieldset {
  border:0;
  margin:0 0 1.4rem;
  padding:0;
}

.form__legend,
.form__field span {
  font-size:0.82rem;
  font-weight:600;
  letter-spacing:.02em;
  color:#1f2937;
}

.form__grid {
  display:grid;
  gap:10px 14px;
  margin-bottom:.9rem;
}

.form__grid--2 {
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.form__field input,
.form__field textarea {
  width:100%;
  padding:8px 10px;
  font-size:0.88rem;
  border-radius:7px;
  border:1px solid #d1d5e2;
  background:#f9fafb;
  transition:border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.form__field textarea {
  min-height:80px;
  resize:vertical;
}

.form__field input:focus,
.form__field textarea:focus {
  outline:none;
  background:#ffffff;
  border-color:#0F5CCF;
  box-shadow:0 0 0 1px rgba(15,92,207,0.4);
}

/* Choix besoins */
.form__choices {
  display:flex;
  flex-wrap:wrap;
  gap:6px 10px;
}

.form__choice {
  padding:4px 10px;
  border-radius:10px;
  font-size:0.78rem;
  line-height:1.15;
  gap:4px;
  background:#f5f7fa;
  border:1px solid rgba(15,23,42,0.06);
  display:inline-flex;
  align-items:center;
  cursor:pointer;
  transition:all .15s ease;
}

.form__choice span {
  font-size:0.78rem;
}

.form__choice input[type="radio"] {
  width:12px;
  height:12px;
}

.form__choice:hover {
  border-color:rgba(15,92,207,0.4);
  background:#eef3ff;
  transform:translateY(-1px);
}

.form__choice input[type="radio"]:checked + span {
  font-weight:600;
  color:#0F5CCF;
}

.form__help {
  font-size:0.72rem;
  color:#9ca3af;
  margin-top:2px;
}

.form__check {
  display:flex;
  align-items:flex-start;
  gap:6px;
  font-size:0.78rem;
  color:#4b5563;
  margin:10px 0 12px;
}

.form__check input {
  margin-top:.18rem;
}

/* CTA */
.form__actions {
  margin-top:.4rem;
}

.btn--full {
  width:100%;
  padding:11px 0;
  font-size:0.94rem;
  font-weight:600;
  border-radius:999px;
  border:none;
  background:linear-gradient(120deg,#0F172A,#0F5CCF);
  color:#ffffff;
  box-shadow:0 12px 26px rgba(15,23,42,0.35);
}

.btn--full:hover {
  filter:brightness(1.05);
  transform:translateY(-1px);
}

.form-note {
  margin-top:12px;
  font-size:0.8rem;
  color:#7d879c;
}

/* Contact responsive */
@media (max-width:960px) {
  .contact-layout {
    grid-template-columns:minmax(0,1fr);
  }

  .contact-layout__col--info {
    order:2;
    box-shadow:0 12px 30px rgba(9,22,54,0.12);
    padding:18px 18px 20px;
  }

  .contact-layout__col--info .map__frame {
    height:190px;
  }

  .contact-layout__col--form {
    order:1;
  }

  .contact-form-card {
    padding:1.4rem 1.5rem 1.7rem;
  }
}

@media (max-width:640px) {
  .form__grid--2 {
    grid-template-columns:minmax(0,1fr);
  }

  .contact-form-card {
    padding:18px 16px 20px;
    border-radius:12px;
  }

  .contact-form-card__title {
    font-size:1.15rem;
  }

  .form__field textarea {
    min-height:72px;
  }

  .btn--full {
    padding:10px 0;
    font-size:0.9rem;
  }
}

/* ========= IKZIA Chat flottant ========= */

.ikzia-chat {
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:9999;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

/* Bouton flottant fermé */
.ikzia-chat__toggle {
  display:flex;
  align-items:center;
  gap:8px;
  padding:11px 18px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  background:linear-gradient(135deg,#ff8a00,#ff6a00);
  color:#ffffff;
  font-size:14px;
  font-weight:600;
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
  transition:transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease;
}

.ikzia-chat__toggle:hover {
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(0,0,0,0.3);
}

.ikzia-chat__toggle:active {
  transform:translateY(0);
  box-shadow:0 6px 16px rgba(0,0,0,0.25);
}

.ikzia-chat__icon {
  font-size:18px;
}

.ikzia-chat__label {
  white-space:nowrap;
}

/* Panneau */
.ikzia-chat__panel {
  position:absolute;
  right:0;
  bottom:80px;
  width:380px;
  max-width:calc(100vw - 32px);
  background:#ffffff;
  border-radius:20px;
  box-shadow:0 28px 55px rgba(15,23,42,0.5);
  overflow:hidden;
  opacity:0;
  transform:translateY(12px);
  pointer-events:none;
  transition:opacity 0.22s ease, transform 0.22s ease;
}

/* État ouvert */
.ikzia-chat--open .ikzia-chat__panel {
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.ikzia-chat--open .ikzia-chat__toggle {
  opacity:0;
  pointer-events:none;
}

/* Header panel */
.ikzia-chat__header {
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 14px 10px;
  background:radial-gradient(circle at top left,#ffb347,#ff8a00);
  color:#ffffff;
}

.ikzia-chat__avatar {
  width:66px;
  height:66px;
  border-radius:999px;
  background:#ffffff;
  color:#0f172a;
  font-size:14px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
}

.ikzia-chat__titles {
  flex:1;
}

.ikzia-chat__title {
  margin:0;
  font-size:14px;
  font-weight:700;
}

.ikzia-chat__subtitle {
  margin:0;
  font-size:12px;
  opacity:0.9;
}

.ikzia-chat__close {
  border:none;
  background:transparent;
  color:#ffffff;
  font-size:16px;
  cursor:pointer;
  padding:4px;
}

/* Body */
.ikzia-chat__body {
  padding:12px 14px 8px;
  background:linear-gradient(180deg,#0b1430 0%,#06101f 55%,#020617 100%);
  color:#e5e7eb;
}

.ikzia-chat__text {
  font-size:13px;
  margin:0 0 10px;
}

.ikzia-chat__actions {
  display:flex;
  flex-direction:column;
  gap:8px;
}

/* Boutons panel */
.ikzia-chat__btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  border-radius:999px;
  padding:8px 12px;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
  transition:transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease, color 0.15s ease;
  border:none;
}

.ikzia-chat__btn--primary {
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  color:#ffffff;
  box-shadow:0 10px 20px rgba(37,99,235,0.45);
}

.ikzia-chat__btn--primary:hover {
  transform:translateY(-1px);
  box-shadow:0 16px 24px rgba(37,99,235,0.6);
}

.ikzia-chat__btn--whatsapp {
  background:#22c55e;
  color:#052e16;
  box-shadow:0 8px 18px rgba(34,197,94,0.45);
}

.ikzia-chat__btn--whatsapp:hover {
  transform:translateY(-1px);
  box-shadow:0 14px 22px rgba(34,197,94,0.6);
}

.ikzia-chat__btn--ghost {
  background:transparent;
  color:#e5e7eb;
  border:1px solid rgba(148,163,184,0.6);
}

.ikzia-chat__btn--ghost:hover {
  background:rgba(15,23,42,0.9);
}

/* Footer panel */
.ikzia-chat__footer {
  padding:6px 14px 10px;
  font-size:11px;
  color:#64748b;
  background:#020617;
  border-top:1px solid rgba(15,23,42,0.8);
  text-align:center;
}

/* Chat responsive */
@media (max-width:640px) {
  .ikzia-chat {
    right:16px;
    bottom:16px;
  }

  .ikzia-chat__panel {
    bottom:64px;
    width:calc(100vw - 32px);
  }

  .ikzia-chat__toggle {
    padding:10px 14px;
    font-size:13px;
  }
}

/* ===== Section Mission / Audiences (Accueil) ===== */

.section--mission {
  background: radial-gradient(circle at 0% 0%, rgba(21,101,192,0.06), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(242,140,8,0.04), transparent 55%),
              #f8fafc;
  border-top: 1px solid rgba(226,232,240,0.9);
  border-bottom: 1px solid rgba(226,232,240,0.9);
}

.section__head--center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.section__eyebrow {
  font-size: 0.8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0 0 6px;
}

/* ===== Section MISSION – cartes premium alignées ===== */

.section--mission {
  background: radial-gradient(circle at 0 0, rgba(15,92,207,0.03), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(255,122,33,0.03), transparent 55%),
              #f5f7fb;
  padding-top: 64px;
  padding-bottom: 64px;
  text-align: center;
}

.section__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 8px;
}

.section__subtitle--wide {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid mission alignée aux autres cartes */

.mission-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Carte individuelle */

.mission-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 22px 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.22);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mission-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(15, 92, 207, 0.06);
  margin-bottom: 4px;
}

.mission-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.mission-card__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #4b5563;
}

/* Responsive */

@media (max-width: 960px) {
  .mission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mission-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ===== À QUI S'ADRESSE IKZIA ? – CARTES CIBLES ===== */

.section--targets {
  background: #fff;
}

.section--targets .section__head {
  margin-bottom: 28px;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-500);
  margin: 0 0 6px;
}

/* Grille des cibles */
.targets-grid {
  margin-top: 10px;
}

/* Carte cible */
.target-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 22px 20px;
  border: 1px solid var(--ink-200);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.target-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.25);
}

/* Icône */
.target-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 6px;
  background: radial-gradient(circle at 0 0, rgba(37,99,235,0.25), transparent 60%);
}

/* Eyebrow & titres */
.target-card__eyebrow {
  font-size: 0.76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0;
}

.target-card__title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink-900);
  margin: 2px 0 4px;
}

/* Texte */
.target-card__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-600);
  line-height: 1.55;
}

/* Responsive : respirer un peu plus en dessous de 980px */
@media (max-width: 980px) {
  .target-card {
    padding: 20px 18px 18px;
  }
}

/* CHIFFRES CLÉS — CARTES */
.stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.stat-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #0F5CCF; /* Bleu IKZIA */
  margin: 0;
}

.stat-label {
  margin: 4px 0 0;
  font-size: 0.95rem;
  color: #555;
}

/* Pastille couleur à côté du titre des pôles */
.section--poles .card__title {
  position: relative;
  padding-left: 18px; /* espace pour la pastille */
}

.section--poles .card__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0F5CCF;          /* bleu IKZIA par défaut */
  box-shadow: 0 0 0 3px rgba(15, 92, 207, 0.12);
}

/* Variante orange pour les cartes "formations" & "digital" */
.section--poles .card--orange .card__title::before {
  background: #FF7A21;
  box-shadow: 0 0 0 3px rgba(255, 122, 33, 0.16);
}

/* Base des cartes pôles */
.card--pole {
  border-radius: 18px;
  border: 1px solid #E3E8F5;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

/* Image qui respire un peu au hover */
.card--pole .card__media img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}

/* Hover par défaut = thématique bleue */
.card--pole:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 92, 207, 0.25);
  box-shadow: 0 18px 45px rgba(15, 92, 207, 0.18);
}

.card--pole:hover .card__media img {
  transform: scale(1.03);
}

/* Hover pour les cartes orange (Formations & Digital) */
.card--pole.card--orange:hover {
  border-color: rgba(255, 122, 33, 0.28);
  box-shadow: 0 18px 45px rgba(255, 122, 33, 0.22);
}

/* SECTION MISSION – fond vivant + cartes animées fort */
.section--mission {
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, #f5f8ff 0, #eef3ff 35%, #ffffff 70%);
  animation: missionGlow 18s ease-in-out infinite alternate;
}

/* grille inchangée */
.section--mission .mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Carte de mission – état initial (avant apparition) */
.section--mission .mission-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 24px 24px;
  box-shadow: 0 10px 30px rgba(15, 37, 71, 0.06);
  border: 1px solid rgba(15, 92, 207, 0.06);

  opacity: 0;
  transform: translateY(32px) scale(0.96);
  filter: blur(6px);

  /* on garde des transitions douces pour le hover */
  transition:
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

/* apparition au scroll : vraie animation “pop” */
.section--mission .mission-card.is-visible {
  animation: missionPop 620ms cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
}

/* décalage pour l’effet “vague” */
.section--mission .mission-card:nth-child(1).is-visible { animation-delay: 0.00s; }
.section--mission .mission-card:nth-child(2).is-visible { animation-delay: 0.12s; }
.section--mission .mission-card:nth-child(3).is-visible { animation-delay: 0.24s; }

/* Icône circulaire */
.section--mission .mission-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 0 0, #f5f8ff 0, #e4f0ff 40%, #ffffff 100%);
  box-shadow: 0 6px 18px rgba(15, 92, 207, 0.18);
  margin-bottom: 16px;
  font-size: 20px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.section--mission .mission-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #102342;
  margin-bottom: 6px;
}

.section--mission .mission-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

/* Hover premium bien visible */
.section--mission .mission-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 55px rgba(15, 37, 71, 0.18);
  border-color: rgba(15, 92, 207, 0.2);
  background: radial-gradient(circle at top left, #f5f8ff 0, #ffffff 45%);
}

.section--mission .mission-card:hover .mission-card__icon {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 24px rgba(15, 92, 207, 0.25);
}

/* ---- KEYFRAMES ---- */

/* pop d’apparition des cartes */
@keyframes missionPop {
  0% {
    opacity: 0;
    transform: translateY(32px) scale(0.94);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* léger “respir” du fond */
@keyframes missionGlow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 80% 20%;
  }
}

/* HERO PLUS COMPACT, STYLE CABINET STRATÉGIQUE */
.hero--home {
  min-height: 55vh;
  padding-top: 90px;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
}

.hero--home .hero__inner {
  max-width: 650px;
  margin-left: 5%;
}

.hero--home .hero__title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero--home .hero__subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 520px;
  margin-bottom: 32px;
  opacity: 0.95;
}

/* ESPACEMENT AUTOUR DES BOUTONS */
.hero__actions {
  margin-top: 14px;
  margin-bottom: 28px;
}

/* BADGE FRANCO-SAOUDIEN PLUS BAS */
.hero-badge {
  margin-top: 28px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px; /* 👉 plus bas sous les boutons */
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 40px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

/* Point bleu premium */
.hero__badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0F63F4; /* bleu IKZIA */
  box-shadow: 0 0 4px rgba(15, 99, 244, 0.8);
}

/* Hover subtil façon cabinet international */
.hero__badge:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
}


/* HERO – Apparition animée (fade + slide up) */

.hero--home .hero__eyebrow,
.hero--home .hero__title,
.hero--home .hero__subtitle,
.hero--home .hero__actions,
.hero--home .hero__firm-badge {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
  will-change: opacity, transform;
}

/* Quand la classe est activée sur le body */
.hero-animate .hero--home .hero__eyebrow,
.hero-animate .hero--home .hero__title,
.hero-animate .hero--home .hero__subtitle,
.hero-animate .hero--home .hero__actions,
.hero-animate .hero--home .hero__firm-badge {
  opacity: 1;
  transform: translateY(0);
}

/* Décalage dans le temps pour effet "cascade" */

.hero-animate .hero--home .hero__eyebrow {
  transition-delay: 0.05s;
}

.hero-animate .hero--home .hero__title {
  transition-delay: 0.18s;
}

.hero-animate .hero--home .hero__subtitle {
  transition-delay: 0.30s;
}

.hero-animate .hero--home .hero__actions {
  transition-delay: 0.45s;
}

.hero-animate .hero--home .hero__firm-badge {
  transition-delay: 0.60s;
}

/* ========== NOTRE MÉTHODE – CARTES PREMIUM ========== */

.section--method {
  padding-top: 72px;
  padding-bottom: 80px;
  background: radial-gradient(
      circle at top left,
      rgba(15, 92, 207, 0.06),
      transparent 55%
    ),
    #f5f7fb;
}

.method {
  max-width: 1120px;
  margin-inline: auto;
}

.method__head {
  text-align: center;
  margin-bottom: 40px;
}

.method__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 8px;
}

.method__subtitle {
  max-width: 640px;
  margin: 8px auto 0;
}

/* GRID */

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 960px) {
  .method-grid {
    grid-template-columns: 1fr;
  }
}

/* CARDS */

.method-card {
  position: relative;
  padding: 22px 22px 24px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(15, 92, 207, 0.06),
    rgba(15, 23, 42, 0.01)
  );
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(14px) scale(0.99);
  opacity: 0;
  animation: methodFadeUp 0.65s ease forwards;
}

/* petite cascade sur les 3 colonnes */
.method-card:nth-child(2) {
  animation-delay: 0.08s;
}
.method-card:nth-child(3) {
  animation-delay: 0.16s;
}

.method-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.method-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

/* variantes couleur */
.method-card__icon--blue {
  background: radial-gradient(circle at 30% 20%, #ffffff 0, #0f5ccf 60%);
  color: #ffffff;
}

.method-card__icon--orange {
  background: radial-gradient(circle at 30% 20%, #ffffff 0, #ff7a21 60%);
  color: #ffffff;
}

.method-card__icon--gradient {
  background: radial-gradient(
    circle at 20% 0%,
    #ffffff 0,
    #0f5ccf 50%,
    #ff7a21 100%
  );
  color: #ffffff;
}

.method-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.method-card__number {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
}

.method-card__title {
  font-size: 1.02rem;
  font-weight: 600;
  color: #0f172a;
}

.method-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

/* HOVER – micro-interactions */

.method-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.18);
  border-color: rgba(15, 92, 207, 0.45);
}

/* petite lueur dans le coin bas droit */
.method-card::after {
  content: "";
  position: absolute;
  inset: auto 10% -24px auto;
  width: 60px;
  height: 24px;
  background: radial-gradient(
    circle at 50% 0,
    rgba(15, 92, 207, 0.35),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.25s ease-out;
  pointer-events: none;
}

.method-card:hover::after {
  opacity: 1;
}

/* ANIMATION D’ENTRÉE */

@keyframes methodFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section--method {
  padding-top: 40px;   /* au lieu de 72px */
  padding-bottom: 60px; /* un peu moins */
}
.section__title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #0f172a;
}
.method__eyebrow {
  margin-bottom: 4px;
}
.method__subtitle {
  margin-top: 6px;
}
.method-grid {
  max-width: 980px;
  margin-inline: auto;
}

/* SECTION CONFIANCE */
.trusted-by {
  padding: 96px 0;
  background: #ffffff;
  text-align: center;
}

.trusted-by .section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.trusted-by .section-subtitle {
  max-width: 820px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
}

/* Conteneur des logos */
.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
  padding: 32px 0;
}

/* Style des logos */
.logo {
  max-height: 60px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

/* Effet hover subtil premium */
.logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

/* SECTION TÉMOIGNAGES – VERSION PREMIUM */

.testimonials.section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: radial-gradient(circle at top, #f3f7ff 0, #f5f6f8 40%, #f7f7f9 100%);
}

/* Centrer le header + sous-titre plus étroit */
.section__head--center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.section__subtitle--narrow {
  max-width: 640px;
  margin: 8px auto 0;
}

/* Track des témoignages : enlever les puces, bien centrer */

.testimonials__track-wrapper {
  display: flex;
  justify-content: center;
}

.testimonials__track {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: transform 0.4s ease;
}

.testimonials__item {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

/* Carte témoignage premium */

.testimonials__item figure {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 40px;
  background: radial-gradient(circle at top left, rgba(15,92,207,0.06), rgba(255,255,255,0.96));
  border-radius: 24px;
  box-shadow:
    0 18px 45px rgba(12, 36, 99, 0.12),
    0 0 0 1px rgba(15, 92, 207, 0.04);
}

/* Texte de la citation */

.testimonials__quote {
  position: relative;
  margin: 0 0 20px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #1d2736;
}

.testimonials__quote::before {
  content: "“";
  position: absolute;
  left: -10px;
  top: -10px;
  font-size: 2.5rem;
  color: rgba(15, 92, 207, 0.25);
}

/* Nom + rôle */

.testimonials__meta {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6b7280;
}

.testimonials__name {
  font-weight: 600;
  color: #111827;
}

/* Dots de navigation */

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.25s ease;
}

.testimonials__dot.is-active {
  width: 22px;
  background: #0f5ccf;
}

/* Arrows si tu les utilises encore */

.testimonials__arrow {
  border-radius: 999px;
  border: 1px solid rgba(15, 92, 207, 0.15);
  background: #ffffff;
  padding: 6px 10px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15, 92, 207, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.testimonials__arrow:hover {
  transform: translateY(-1px);
  background: #f3f7ff;
}

/* RWD – mobile : un peu plus compact */

@media (max-width: 768px) {
  .testimonials.section {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .testimonials__item figure {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .testimonials__quote {
    font-size: 0.95rem;
  }
}

/* Pills & bénéfices hero */

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid #d4e0ff;
  background: #f5f7ff;
  font-size: 0.9rem;
  color: #0f3563;
  text-decoration: none;
}

.pill:hover {
  background: #e7efff;
}

.hero-benefits {
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.pill img,
.pill span {
  font-size: 0.9rem;
}

/* Grille des domaines d’expertise sur la home */
.section--poles .mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* En dessous d'une certaine largeur, on repasse en 1 colonne */
@media (max-width: 768px) {
  .section--poles .mission-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   DOMAINES D'EXPERTISE – PAGES DETAIL (Consulting / Digital)
   ========================================================= */

/* Section générique (pages détaillées) */
.section {
  padding: 80px 0;
}

.section__head {
  max-width: 780px;
  margin: 0 auto 40px;
}

.section__title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.section__subtitle {
  color: #6b7280;
  font-size: 0.98rem;
}

/* Grilles */
.grid {
  display: grid;
  gap: 32px;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

/* Listes de points dans les sections texte */
.section ul {
  margin: 0;
  padding-left: 1.4rem;
  color: #4b5563;
  font-size: 0.97rem;
}

.section li + li {
  margin-top: 4px;
}

/* Cartes "Formats d’intervention" */
.mission-grid {
  align-items: stretch;
}

.mission-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mission-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 0 0, #3b82f6, #0f172a);
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.mission-card__title {
  font-size: 1.02rem;
  font-weight: 600;
}

.mission-card__text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.55;
}

/* Cartes "Types de projets" */
.targets-grid {
  align-items: stretch;
}

.target-card {
  background: #f9fafb;
  border-radius: 18px;
  padding: 24px 22px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.target-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e5f0ff;
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.target-card__eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
}

.target-card__title {
  font-size: 1.02rem;
  font-weight: 600;
}

.target-card__text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.55;
}

/* CTA bas de page – harmonisé avec le reste du site */
.callout {
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #f9fafb;
  padding: 48px 0;
}

.callout__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.callout__title {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.callout__text {
  font-size: 0.97rem;
  color: #e5e7eb;
}

.callout__cta .btn--white {
  background: #ffffff;
  color: #111827;
  border-radius: 999px;
  padding-inline: 26px;
}

@media (max-width: 800px) {
  .callout__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Spécifique Digital – formats d’intervention */
.section--digital-formats {
  background: radial-gradient(circle at top, #f3f7ff 0, #f7f9fc 45%, #ffffff 100%);
}

.section--digital-formats .section__head--center {
  text-align: center;
}

.mission-card__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
}

.mission-card__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  background: #eef3ff;
  color: #2341a0;
}

.mission-card__step {
  font-size: .85rem;
  font-weight: 600;
  color: #99a3c2;
}

.mission-card__list {
  margin: .75rem 0 0;
  padding-left: 1.1rem;
  font-size: .9rem;
  color: #4b5565;
}

.mission-card__list li + li {
  margin-top: .25rem;
}

/* Variante légère de fond pour ces cartes */
.mission-card--gradient {
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 40%, #ffffff 100%);
}

/* Version compacte de la callout (pour la page digitale) */
.callout--compact {
  padding: 32px 0;
}

.callout--compact .callout__inner {
  gap: 16px;
}

.callout--compact .callout__title {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.callout--compact .callout__text {
  font-size: 0.95rem;
  max-width: 620px;
}

.callout--compact .btn--white {
  padding: 10px 24px;
  font-size: 0.95rem;
}

/* Variantes de centrage de head */
.section__head--center,
.section__head.center,
.section__head.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* HERO DIGITAL – mockup à droite */

.page-hero--digital {
  position: relative;
  overflow: hidden;
}

.page-hero--digital .page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-right: 40%;
}

.page-hero__mockup {
  position: absolute;
  right: 8%;
  bottom: -12px;
  width: 420px;
  max-width: 42%;
  pointer-events: none;
}

.page-hero__mockup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(6, 20, 46, 0.35);
}

/* ========== PAGE HERO – DIGITAL & INNOVATION (compact) ========== */

.page-hero {
  position: relative;
  padding: 72px 0 56px;
  color: #ffffff;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(15,92,207,0.28), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255,122,33,0.26), transparent 55%),
    #020617;
}

.page-hero--digital {
  min-height: 40vh;
}

/* Layout général */
.page-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Colonne texte */
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.page-hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin: 0 0 10px;
}

.page-hero__title {
  margin: 0 0 14px;
  font-size: 2.3rem;
  line-height: 1.2;
  font-weight: 800;
}

.page-hero__subtitle {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #e5e7eb;
  max-width: 520px;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  margin-bottom: 10px;
}

.page-hero__bullets {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 0.86rem;
  color: #cbd5f5;
}

.page-hero__bullets li::before {
  content: "•";
  margin-right: 6px;
  color: #ffb454;
}

/* Colonne visuelle – mockup */
.page-hero__visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.page-hero__mockup {
  position: relative;
  width: 380px;
  max-width: 100%;
  border-radius: 20px;
  background: radial-gradient(circle at top left, #1f2937, #020617);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.55),
    0 0 0 1px rgba(148,163,184,0.18);
  overflow: hidden;
}

/* Barre type “fenêtre” */
.page-hero__mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: linear-gradient(90deg, #020617, #0b1120);
}

.page-hero__mockup-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148,163,184,0.4);
}

/* Contenu mockup */
.page-hero__mockup-body {
  padding: 18px 18px 20px;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.page-hero__mockup-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(15,92,207,0.2);
  color: #c7d2fe;
  margin-bottom: 10px;
}

.page-hero__mockup-body h2 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: #f9fafb;
}

.page-hero__mockup-body p {
  margin: 0;
  font-size: 0.86rem;
  color: #cbd5f5;
}

/* Transition douce vers la section suivante (fond très léger) */
.section--digital-formats {
  background: radial-gradient(circle at top, #f5f7ff 0, #f9fafb 40%, #ffffff 100%);
}

/* ------------ Responsive ------------ */

@media (max-width: 1024px) {
  .page-hero {
    padding-top: 64px;
    padding-bottom: 48px;
  }

  .page-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero__visual {
    width: 100%;
    justify-content: flex-start;
  }

  .page-hero__mockup {
    margin-top: 14px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .page-hero__inner {
    gap: 24px;
  }

  .page-hero__title {
    font-size: 1.8rem;
  }

  .page-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero__visual {
    justify-content: center;
  }

  .page-hero__mockup {
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
  }

  .page-hero__bullets {
    flex-direction: column;
  }
}
/* ===========================
   HERO DIGITAL – VERSION BANDEAU COMPACT
   =========================== */

.page-hero--digital {
  min-height: 360px;              /* beaucoup plus bas */
  padding: 60px 0 32px;
  display: flex;
  align-items: center;
  position: relative;
}

/* Colonne texte : plus serrée, plus proche du centre */
.page-hero--digital .page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin-left: 8%;
  padding-right: 0;
}

/* Eyebrow discret */
.page-hero--digital .hero__eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 6px;
}

/* Titre raccourci visuellement */
.page-hero--digital .hero__title,
.page-hero--digital .page-hero__title {
  font-size: 2.1rem;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 10px;
}

/* Sous-titre réduit + lignes plus courtes */
.page-hero--digital .hero__subtitle,
.page-hero--digital .page-hero__subtitle {
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 380px;
  margin: 0 0 16px;
  opacity: 0.9;
}

/* Boutons : bloc compact */
.page-hero--digital .hero__actions {
  margin-top: 8px;
  margin-bottom: 10px;
  gap: 10px;
}

/* Liste sous les boutons = “note” discrète */
.page-hero--digital ul {
  margin-top: 8px;
  padding-left: 1.1rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #cbd5f5;
}

.page-hero--digital ul li + li {
  margin-top: 2px;
}

/* Carte / mockup : plus petite et plus haute */
.page-hero__mockup {
  position: absolute;
  right: 10%;
  bottom: 40px;           /* remonte la carte */
  width: 340px;
  max-width: 32%;
  pointer-events: none;
}

.page-hero__mockup img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(6, 15, 35, 0.55);
}

/* Lien visuel avec la section en dessous : moins d’espace */
.page-hero--digital + .section {
  padding-top: 40px;      /* tu peux descendre à 32 si tu veux vraiment serrer */
}

/* TABLETTE */
@media (max-width: 1024px) {
  .page-hero--digital {
    min-height: auto;
    padding: 56px 0 32px;
  }

  .page-hero__mockup {
    width: 300px;
    max-width: 40%;
    right: 6%;
    bottom: 24px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .page-hero--digital {
    flex-direction: column;
    align-items: flex-start;
    padding: 64px 0 36px;
  }

  .page-hero--digital .page-hero__content {
    margin-left: 20px;
    margin-right: 20px;
    max-width: none;
  }

  .page-hero__mockup {
    position: static;
    margin: 20px auto 0;
    width: 82%;
    max-width: 360px;
  }

  .page-hero--digital ul {
    font-size: 0.78rem;
  }
}
.page-hero--digital .hero__title {
  font-size: 2.1rem;
  line-height: 1.25;
  max-width: 18ch;   /* largeur visuelle maîtrisée */
}

.page-hero--digital .hero__subtitle {
  max-width: 40ch;
}

.page-hero--digital .hero-benefits {
  margin-top: 12px;
  font-size: 0.84rem;
  color: #cbd5f5;
}
/* ==========================
   HERO DIGITAL IKZIA
   ========================== */

.page-hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(15,92,207,0.45), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255,122,33,0.55), transparent 55%),
    #020617;
}

.page-hero--digital {
  padding: 72px 0 52px;          /* hauteur maîtrisée */
}

/* voile pour adoucir le gradient */
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 0%, rgba(15,23,42,0.20), transparent 60%),
    linear-gradient(120deg, rgba(2,6,23,0.65), rgba(15,23,42,0.9));
  pointer-events: none;
  z-index: 0;
}

/* Layout deux colonnes */
.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* ===== Texte gauche ===== */

.page-hero__content {
  flex: 1;
  max-width: 520px;
  text-align: left;
}

.page-hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(226,232,240,0.75);
  margin: 0 0 10px;
}

.page-hero__title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  line-height: 1.25;
  font-weight: 800;
}

.page-hero__subtitle {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 34rem;
  color: rgba(226,232,240,0.92);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.page-hero__actions .btn {
  padding-inline: 18px;
  padding-block: 10px;
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(15,23,42,0.35);
}

.page-hero__actions .btn--ghost-blue {
  background: transparent;
  color: #c7d2fe;
  border-color: rgba(191,219,254,0.5);
}

/* petites lignes sous le texte */
.page-hero__bullets {
  margin: 10px 0 0;
  padding-left: 1.1rem;
  list-style: disc;
  font-size: 0.86rem;
  color: rgba(209,213,219,0.9);
}

.page-hero__bullets li + li {
  margin-top: 3px;
}

/* ===== Carte droite ===== */

.page-hero__card {
  flex: 0 0 340px;
  max-width: 360px;
  align-self: center;
  background: radial-gradient(circle at 0 0, #1f2937, #020617 70%);
  border-radius: 20px;
  padding: 16px 18px 18px;
  box-shadow:
    0 24px 60px rgba(15,23,42,0.7),
    0 0 0 1px rgba(15,23,42,0.55);
  border: 1px solid rgba(15,23,42,0.9);
  color: #e5e7eb;
}

/* barre type fenêtre */
.page-hero__card-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.page-hero__card-bar .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(148,163,184,0.75);
}

.page-hero__card-bar .dot:nth-child(1) { background: #f97373; }
.page-hero__card-bar .dot:nth-child(2) { background: #facc15; }
.page-hero__card-bar .dot:nth-child(3) { background: #4ade80; }

.page-hero__card-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.9);
  margin: 0 0 6px;
}

.page-hero__card-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: #f9fafb;
}

.page-hero__card-text {
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(209,213,219,0.92);
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
  .page-hero--digital {
    padding: 64px 0 44px;
  }

  .page-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .page-hero__card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 380px;
  }
}

@media (max-width: 640px) {
  .page-hero--digital {
    padding: 56px 0 40px;
  }

  .page-hero__title {
    font-size: 1.8rem;
  }

  .page-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero__card {
    max-width: none;
  }
}
.hero-ikzia {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 0;
  max-width: 1300px;
  margin: 0 auto;
  gap: 60px;
}

.hero-content {
  flex: 1.2;
  max-width: 560px; /* + espace pour éviter l'effet bloc serré */
}

.hero-ikzia h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--bg);
}

.hero-subtext {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-200);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-list li {
  margin-bottom: 8px;
  color: var(--ink-200);
  font-size: 16px;
}

/* ==== Carte à droite === */

.hero-card {
  flex: 1;
  display: flex;
  justify-content: center;
}

.card-inner {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 32px;
  border-radius: var(--radius);
  width: 330px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.hero-ikzia {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 0;
  max-width: 1300px;
  margin: 0 auto;
  gap: 72px;
}

.hero-content {
  flex: 1.2;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(15, 92, 207, 0.12);
  color: var(--ink-200);
  margin-bottom: 18px;
}

.hero-ikzia h1 {
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #ffffff;
}

.hero-accent {
  color: var(--ikzia-orange);
}

.hero-subtext {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-200);
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.hero-btn-primary {
  background: var(--ikzia-orange);
  color: #ffffff;
}

.hero-btn-secondary {
  border: 1px solid rgba(229, 231, 235, 0.4);
  color: var(--ink-200);
  background: transparent;
}

.hero-trust {
  font-size: 13px;
  color: var(--ink-200);
  opacity: 0.9;
  margin-bottom: 18px;
}

.hero-list {
  padding-left: 18px;
  margin: 0;
}

.hero-list li {
  margin-bottom: 6px;
  color: var(--ink-200);
  font-size: 14px;
}

/* Carte à droite */

.hero-card {
  flex: 1;
  display: flex;
  justify-content: center;
}

.card-inner {
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 26px 30px;
  border-radius: var(--radius);
  max-width: 340px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-200);
  margin-bottom: 10px;
}

.card-inner h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: #ffffff;
}

.card-inner p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-200);
}

/* Petite adaptation responsive */

@media (max-width: 960px) {
  .hero-ikzia {
    flex-direction: column;
    padding: 80px 20px 60px;
  }

  .hero-card {
    justify-content: flex-start;
    width: 100%;
  }

  .card-inner {
    width: 100%;
    max-width: 100%;
  }
}
.page-hero--digital .page-hero__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/* HERO DIGITAL – fond sombre + layout texte / carte */

.page-hero--digital {
  background: radial-gradient(circle at top left, #0F5CCF 0%, #0B1220 45%, #020617 100%);
  padding: 96px 0 110px;
  color: #ffffff;
}

.page-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.page-hero__text {
  flex: 1.3;
  max-width: 560px;
}

.page-hero__card {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* Typo */

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, 0.85);
  margin-bottom: 16px;
}

.page-hero--digital h1 {
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 20px;
}

.page-hero__intro {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(241, 245, 249, 0.88);
  max-width: 540px;
  margin-bottom: 28px;
}

/* Boutons */

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.hero-btn-primary {
  background: var(--ikzia-orange);
  color: #ffffff;
}

.hero-btn-secondary {
  border: 1px solid rgba(248, 250, 252, 0.45);
  color: rgba(241, 245, 249, 0.9);
  background: transparent;
}

/* Liste */

.hero-list {
  padding-left: 18px;
  margin: 0;
}

.hero-list li {
  margin-bottom: 6px;
  font-size: 14px;
  color: rgba(241, 245, 249, 0.9);
}

/* Carte */

.card-inner--digital {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 20px;
  padding: 24px 26px;
  max-width: 320px;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.card-tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 10px;
}

.card-inner--digital h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

.card-inner--digital p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.95);
}

/* Responsive */

@media (max-width: 960px) {
  .page-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero__card {
    width: 100%;
    justify-content: flex-start;
  }

  .card-inner--digital {
    max-width: 100%;
  }
}
/* ===============================
   PAGE POLES – MINI HERO PREMIUM
   =============================== */

.page-poles .section--intro-domains {
  padding: 64px 0 52px;
  background:
    radial-gradient(circle at 0 0, rgba(15,92,207,0.06), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255,122,33,0.04), transparent 55%),
    #ffffff;
  border-bottom: 1px solid rgba(226,232,240,0.9);
}

.page-poles .domains-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 52px;
}

.page-poles .domains-hero__content {
  flex: 1.4;
  max-width: 620px;
}

.page-poles .section__title--big {
  font-size: clamp(1.9rem, 2.4vw, 2.3rem);
  margin-bottom: 10px;
}

.page-poles .section__subtitle--wide {
  margin-top: 4px;
  color: var(--ink-600);
  font-size: 0.98rem;
}

/* Bénéfices alignés */

.page-poles .domains-benefits {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.9rem;
  color: var(--ink-600);
}

.page-poles .domains-benefits li {
  position: relative;
  padding-left: 18px;
}

.page-poles .domains-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.12);
}

/* Pills des 4 domaines */

.page-poles .domains-pills {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-poles .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  background: #f9fafb;
  font-size: 0.86rem;
  color: #1f2933;
  text-decoration: none;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.page-poles .pill__icon {
  font-size: 1rem;
}

.page-poles .pill__label {
  white-space: nowrap;
}

.page-poles .pill:hover {
  background: #eef2ff;
  border-color: rgba(59,130,246,0.6);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15,23,42,0.08);
}

/* Carte de synthèse à droite */

.page-poles .domains-hero__card {
  flex: 1;
  max-width: 360px;
  background: linear-gradient(145deg,#0f172a,#020617);
  color: #e5e7eb;
  border-radius: 20px;
  padding: 22px 22px 20px;
  box-shadow:
    0 20px 50px rgba(15,23,42,0.55),
    0 0 0 1px rgba(15,23,42,0.65);
}

.page-poles .domains-hero__chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(15,92,207,0.18);
  color: #c7d2fe;
  margin: 0 0 10px;
}

.page-poles .domains-hero__card-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f9fafb;
}

.page-poles .domains-hero__card-text {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cbd5f5;
}

.page-poles .domains-hero__list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: #e5e7eb;
}

.page-poles .domains-hero__list li + li {
  margin-top: 3px;
}

/* Responsive */

@media (max-width: 960px) {
  .page-poles .domains-hero {
    flex-direction: column;
    gap: 32px;
  }

  .page-poles .domains-hero__card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .page-poles .section--intro-domains {
    padding: 48px 0 40px;
  }

  .page-poles .domains-benefits {
    flex-direction: column;
    gap: 4px;
  }

  .page-poles .domains-pills {
    gap: 8px;
  }

  .page-poles .pill {
    font-size: 0.84rem;
    padding-inline: 12px;
  }
}
/* ==========================
   HERO CONSULTING IKZIA
   ========================== */

.page-hero--consulting {
  padding: 80px 0 68px;
  background:
    radial-gradient(circle at 0% 0%, rgba(15,92,207,0.35), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(15,118,110,0.32), transparent 55%),
    #020617;
}

.page-hero--consulting .page-hero__title {
  font-size: clamp(2rem, 2.7vw, 2.5rem);
}

.page-hero--consulting .page-hero__subtitle {
  max-width: 32rem;
}

.page-hero--consulting .btn.btn--orange {
  background: var(--ikzia-orange);
}

.page-hero--consulting .btn.btn--orange:hover {
  filter: brightness(1.05);
}

/* Carte consulting : légère variation par rapport au digital */
.page-hero__card--consulting {
  background: radial-gradient(circle at 0 0, #0b172f, #020617 70%);
  border-radius: 20px;
  padding: 18px 20px 20px;
  box-shadow:
    0 26px 60px rgba(15,23,42,0.75),
    0 0 0 1px rgba(15,23,42,0.7);
}
/* ==========================
   CONSULTING – INTRO & HIGHLIGHTS
   ========================== */

.section--consulting-intro {
  background: #ffffff;
  padding-top: 64px;
  padding-bottom: 56px;
}

.consulting-highlights {
  margin-top: 32px;
}

.consulting-highlight {
  background: #f9fafb;
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 12px 30px rgba(15,23,42,0.06);
}

.consulting-highlight h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 600;
  color: #0f172a;
}

.consulting-highlight p {
  margin: 0;
  font-size: 0.94rem;
  color: #4b5563;
}
/* ==========================
   CONSULTING – FORMATS
   ========================== */

.section--consulting-formats {
  background: radial-gradient(circle at top, #f3f7ff 0, #f7f9fc 45%, #ffffff 100%);
  padding-top: 64px;
  padding-bottom: 64px;
}

.mission-card--consulting {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(148,163,184,0.45);
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
}

.mission-card--consulting .mission-card__icon {
  background: radial-gradient(circle at 0 0, #e0edff, #0f5ccf);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(15,92,207,0.35);
}

.mission-card__list {
  margin: 10px 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #4b5565;
}

.mission-card__list li + li {
  margin-top: 3px;
}
/* ==========================
   CONSULTING – INTRO & HIGHLIGHTS
   ========================== */

.section--consulting-intro {
  background: #ffffff;
  padding-top: 64px;
  padding-bottom: 56px;
}

.consulting-highlights {
  margin-top: 32px;
}

.consulting-highlight {
  background: #f9fafb;
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 12px 30px rgba(15,23,42,0.06);
}

.consulting-highlight h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 600;
  color: #0f172a;
}

.consulting-highlight p {
  margin: 0;
  font-size: 0.94rem;
  color: #4b5563;
}
/* ==========================
   CONSULTING – FORMATS
   ========================== */

.section--consulting-formats {
  background: radial-gradient(circle at top, #f3f7ff 0, #f7f9fc 45%, #ffffff 100%);
  padding-top: 64px;
  padding-bottom: 64px;
}

.mission-card--consulting {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(148,163,184,0.45);
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
}

.mission-card--consulting .mission-card__icon {
  background: radial-gradient(circle at 0 0, #e0edff, #0f5ccf);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(15,92,207,0.35);
}

.mission-card__list {
  margin: 10px 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #4b5565;
}

.mission-card__list li + li {
  margin-top: 3px;
}
/* ==========================
   CONSULTING – TYPES DE PROJETS
   ========================== */

.section--consulting-projects {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 70px;
}

.target-card--consulting {
  background: #f9fafb;
  border-radius: 18px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 14px 36px rgba(15,23,42,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.target-card--consulting:hover {
  transform: translateY(-4px);
  border-color: rgba(15,92,207,0.4);
  box-shadow: 0 20px 48px rgba(15,23,42,0.14);
}
/* ==========================
   HERO CONSULTING IKZIA
   ========================== */

.page-hero--consulting {
  padding: 80px 0 68px;
  background:
    radial-gradient(circle at 0% 0%, rgba(15,92,207,0.35), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(15,118,110,0.32), transparent 55%),
    #020617;
  color: #ffffff;
}

.page-hero__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.page-hero__content {
  flex: 1.4;
  max-width: 600px;
}

.page-hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 12px;
}

.page-hero__title {
  font-size: 2.4rem;
  line-height: 1.25;
  margin: 0 0 14px;
  font-weight: 700;
}

.page-hero__title span {
  color: var(--ikzia-orange);
}

.page-hero__subtitle {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.55;
  margin: 0 0 22px;
}

.page-hero__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.btn {
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn--orange {
  background: var(--ikzia-orange);
  color: #fff;
}

.btn--ghost-blue {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

.page-hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-hero__bullets li {
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
  font-size: 0.92rem;
  opacity: 0.9;
}

.page-hero__bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ikzia-orange);
}

/* CARTE CONSULTING */

.page-hero__card--consulting {
  flex: 1;
  background: linear-gradient(145deg, #0e1524, #0b1120);
  padding: 22px;
  border-radius: 18px;
  color: #fff;
  max-width: 340px;
  box-shadow:
    0 22px 50px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.05);
}

.page-hero__card-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  opacity: 0.7;
  letter-spacing: 0.15em;
  margin: 0 0 8px;
}

.page-hero__card-title {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.35;
}

.page-hero__card-text {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.55;
  margin-bottom: 10px;
}

/* INTRO */
.section--consulting-intro {
  padding: 64px 0 52px;
}

/* HIGHLIGHTS */

.consulting-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.consulting-highlight {
  background: #f9fafb;
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 12px 30px rgba(15,23,42,0.06);
}

.consulting-highlight h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.consulting-highlight p {
  margin: 0;
  font-size: 0.92rem;
  color: #4b5563;
}

/* FORMATS */

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.mission-card--consulting {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
}

.mission-card__icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* TYPES DE PROJETS */

.targets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.target-card--consulting {
  background: #f9fafb;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.4);
}

.target-card__eyebrow {
  font-size: 0.75rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

/* CTA */
.callout--compact {
  padding: 54px 0;
  background: linear-gradient(135deg, #0f172a, #10192f);
  color: #fff;
}
.page-hero--consulting {
  background: radial-gradient(circle at top left, #0F5CCF 0, #020617 55%, #000 100%);
}
/* HERO FORMATIONS */
.page-hero--formations {
  background: linear-gradient(135deg, #0F5CCF 0%, #031C3A 100%);
  padding: 120px 0;
  color: var(--bg);
}

.card-inner--formations {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}
/* ======== Page Formations & compétences ======== */

.page-hero--training {
  background: radial-gradient(circle at 0% 0%, #1d8cf8 0%, #0b1535 55%, #050816 100%);
}

/* Carte héro formations */
.card-inner--training {
  background: linear-gradient(145deg, rgba(15, 92, 207, 0.18), rgba(5, 8, 22, 0.95));
  border-radius: var(--radius);
  padding: 24px 24px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.card-inner--training h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.card-inner--training p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Sections communes formations */

.section {
  padding: 80px 0;
  background: var(--bg);
}

.section--light {
  background: #f7f9fc;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-header h2 {
  font-size: 1.9rem;
  margin-bottom: 8px;
  color: var(--ink-900);
}

.section-header p {
  font-size: 0.98rem;
  color: var(--ink-600);
}

/* Grille de cartes (piliers, formats, publics) */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 960px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px 24px 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.pillar-card__icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.pillar-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(21, 101, 192, 0.08);
  color: var(--ikzia-blue);
  margin-bottom: 10px;
}

.pillar-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--ink-900);
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--ink-600);
  margin-bottom: 10px;
}

.pillar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-600);
}

.pillar-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
}

.pillar-card ul li::before {
  content: "•";
  position: absolute;
  left: 5px;
  top: 0;
  color: var(--ikzia-orange);
}

/* CTA bas de page */

.section-cta {
  margin-top: 48px;
  padding: 24px 24px;
  border-radius: var(--radius);
  background: linear-gradient(95deg, #0f5ccf, #1565c0);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
}

.section-cta__text {
  font-size: 1.05rem;
  font-weight: 500;
}

.section-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-cta .btn--primary {
  background: #ffffff;
  color: #0f5ccf;
}

.section-cta .btn--ghost {
  border-color: #ffffff;
  color: #ffffff;
}

@media (max-width: 720px) {
  .section-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Bullets premium IKZIA */
.liste-ikzia {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.liste-ikzia li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.45;
}

.liste-ikzia li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px; /* ajuste si ton texte est plus petit */
    width: 6px;
    height: 6px;
    background-color: #FF7A21; /* orange IKZIA */
    border-radius: 50%;
}
/* ==== MISSIONS – VERSION PREMIUM ÉLITISTE (CONSULTING) ==== */

/* Grille des formats d'accompagnement – uniquement dans la section consulting */
.section--consulting-formats .mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1120px;
  margin: 40px auto 0;
  align-items: stretch;
}

/* Cartes consulting : premium + même hauteur */
.section--consulting-formats .mission-card--consulting {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 28px 22px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section--consulting-formats .mission-card--consulting:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* Icône */
.section--consulting-formats .mission-card__icon {
  font-size: 28px;
  display: inline-block;
  margin-bottom: 14px;
}

/* Badges (pills + étape) */
.section--consulting-formats .mission-card__pill {
  background: rgba(15, 92, 207, 0.08);
  color: var(--ikzia-blue);
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 20px;
  font-weight: 600;
}

.section--consulting-formats .mission-card__step {
  font-size: 13px;
  color: var(--ink-600);
  margin-left: 8px;
}

/* Titre de carte */
.section--consulting-formats .mission-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 16px 0 12px;
  color: var(--ink-900);
}

/* Tagline éventuelle sous le titre */
.section--consulting-formats .mission-card__tagline {
  margin-bottom: 18px;
  color: var(--ink-600);
  font-size: 0.95rem;
}

/* Liste */
.section--consulting-formats .mission-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.section--consulting-formats .mission-card__list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 8px;
  line-height: 1.45;
  font-size: 15px;
  color: var(--ink-700);
}

.section--consulting-formats .mission-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--ikzia-orange);
}

/* Livrable clé : toujours ancré en bas de la carte */
.section--consulting-formats .mission-card__deliverable {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--ink-700);
  border-top: 1px solid var(--ink-200);
  padding-top: 12px;
}

/* Responsive : 1 colonne sur mobile, sans toucher aux autres grilles du site */
@media (max-width: 960px) {
  .section--consulting-formats .mission-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
}
/* OPTIONNEL (si tu veux garder tes “pills” mais les aligner au style IKZIA) */
.domains-pills{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 16px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(229,231,235,.95);
  background: rgba(255,255,255,.75);
  text-decoration:none;
  color: rgba(11,18,32,.86);
  box-shadow: 0 10px 20px rgba(15,23,42,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(15,23,42,.08);
  border-color: rgba(15,92,207,.22);
}
.pill__icon{ font-size: 16px; }
.pill__label{ font-weight: 700; font-size: 13px; }
/* FIX CONTRASTE HERO (page pôles) */
.page-poles .page-hero__text,
.page-poles .page-hero__text *{
  opacity: 1 !important;
}

.page-poles .page-hero__text h1,
.page-poles .page-hero__text .eyebrow{
  color: rgba(11,18,32,.92) !important;
}

.page-poles .page-hero__text .page-hero__intro,
.page-poles .page-hero__text .hero-list,
.page-poles .page-hero__text p,
.page-poles .page-hero__text li{
  color: rgba(11,18,32,.74) !important;
}
.page-poles .page-hero{
  position: relative;
}

.page-poles .page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(900px 360px at 10% 10%, rgba(15,92,207,.10), transparent 60%);
  pointer-events:none;
}

.page-poles .page-hero__inner{
  position: relative;
  z-index: 1;
}
.page-poles .page-hero__card .card-inner{
  box-shadow: 0 30px 60px rgba(15,23,42,.16);
  transform: translateY(-2px);
}

.page-poles .page-hero__card .card-inner:hover{
  transform: translateY(-4px);
  box-shadow: 0 40px 80px rgba(15,23,42,.20);
}
.page-poles .pill{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.page-poles .pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(15,23,42,.08);
  border-color: rgba(15,92,207,.22);
}
/* === FIX TEXTE FANTÔME — page pôles === */
.page-poles .page-hero .page-hero__text,
.page-poles .page-hero .page-hero__text *{
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* Titres */
.page-poles .page-hero .page-hero__text h1,
.page-poles .page-hero .page-hero__text .section__title,
.page-poles .page-hero .page-hero__text .section__title--big{
  color: #0b1220 !important;
}

/* Texte courant */
.page-poles .page-hero .page-hero__text p,
.page-poles .page-hero .page-hero__text li,
.page-poles .page-hero .page-hero__text .page-hero__intro,
.page-poles .page-hero .page-hero__text .section__subtitle,
.page-poles .page-hero .page-hero__text .section__subtitle--wide{
  color: rgba(11,18,32,.76) !important;
}

/* Eyebrow / petit libellé */
.page-poles .page-hero .page-hero__text .eyebrow,
.page-poles .page-hero .page-hero__text .section__eyebrow{
  color: rgba(11,18,32,.62) !important;
  letter-spacing: .08em;
}
/* Plan B : forcer tout le hero de la page pôles */
.page-poles .page-hero h1,
.page-poles .page-hero p,
.page-poles .page-hero li{
  color: #0b1220 !important;
  opacity: 1 !important;
}
.page-poles .page-hero p,
.page-poles .page-hero li{
  color: rgba(11,18,32,.76) !important;
}
/* === FIX CARTE HERO — page pôles === */
.page-poles .page-hero__card,
.page-poles .page-hero__card *{
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* Texte carte : forcer du blanc lisible */
.page-poles .page-hero__card .card-inner,
.page-poles .page-hero__card .card-inner *{
  color: rgba(255,255,255,.92) !important;
}

/* Variantes plus fines */
.page-poles .page-hero__card .card-tag{
  color: rgba(255,255,255,.72) !important;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-poles .page-hero__card p,
.page-poles .page-hero__card li{
  color: rgba(255,255,255,.78) !important;
}
/* Si tu as un ::before qui noie le texte */
.page-poles .page-hero__card .card-inner::before{
  opacity: .18 !important;
}
.page-poles .page-hero__card .card-inner{
  background: radial-gradient(900px 500px at 20% 10%, rgba(15,92,207,.25), rgba(3,7,18,.98) 60%);
  box-shadow: 0 28px 70px rgba(15,23,42,.22);
}
.page-poles .page-hero__card .card-inner{
  /* 1) On conserve ton gradient */
  background: radial-gradient(
    900px 500px at 20% 10%,
    rgba(15,92,207,.25),
    rgba(3,7,18,.98) 60%
  );

  /* 2) On garde ton shadow + léger “glow” premium (très subtil) */
  box-shadow:
    0 28px 70px rgba(15,23,42,.22),
    0 0 0 1px rgba(255,255,255,.06);

  /* 3) Petite stabilité visuelle */
  border-radius: 22px;         /* si déjà défini ailleurs, ne cassera pas */
  overflow: hidden;            /* évite les débordements d’overlay éventuels */
}

/* Option “ultra safe” : si tu veux éviter tout impact global, commente ces 2 lignes :
border-radius / overflow
*/
/* =========================================================
   OFFRES — Harmonisation UI (STRICTEMENT .page-offres)
   ========================================================= */

.page-offres .section{
  padding: clamp(56px, 6vw, 88px) 0;
}

.page-offres #offres-alignees .section__head,
.page-offres #offres-principales .section__head{
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.page-offres #offres-alignees .section__title,
.page-offres #offres-principales .section__title{
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.page-offres #offres-alignees .section__subtitle,
.page-offres #offres-principales .section__subtitle{
  margin-top: 10px;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.6;
}

/* Offres alignées */
.page-offres .grid.grid--4.offres-poles{
  margin-top: 22px;
  gap: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px){
  .page-offres .grid.grid--4.offres-poles{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .page-offres .grid.grid--4.offres-poles{ grid-template-columns: 1fr; }
}

.page-offres .offre-pole{
  position: relative;
  border-radius: 18px;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid rgba(15, 92, 207, 0.10);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  overflow: hidden;
}

.page-offres .offre-pole::before{
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #0F5CCF, #FF7A21);
  opacity: .95;
}

.page-offres .offre-pole h3{
  margin: 6px 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.page-offres .offre-pole p{
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.55;
  font-size: 14px;
}

.page-offres .offre-pole .link-more{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 700;
  font-size: 13px;
  color: #0F5CCF;
  text-decoration: none;
}

.page-offres .offre-pole .link-more::after{
  content: "→";
  transform: translateY(-1px);
  transition: transform .18s ease;
}

.page-offres .offre-pole .link-more:hover::after{
  transform: translate(3px, -1px);
}

.page-offres .offre-pole:hover{
  transform: translateY(-3px);
  border-color: rgba(15, 92, 207, 0.22);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
}

/* Offres principales */
.page-offres .grid.grid--3.offres-grid{
  margin-top: 22px;
  gap: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px){
  .page-offres .grid.grid--3.offres-grid{ grid-template-columns: 1fr; }
}

.page-offres .offer-card{
  border-radius: 18px;
  padding: 20px 20px 16px;
  background: #fff;
  border: 1px solid rgba(15, 92, 207, 0.10);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.page-offres .offer-card__pole{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.72);
  background: rgba(15, 92, 207, 0.06);
  border: 1px solid rgba(15, 92, 207, 0.10);
  margin: 0 0 12px;
}

.page-offres .offer-card__title{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.page-offres .offer-card__text{
  margin: 0 0 12px;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.6;
  font-size: 14px;
}

.page-offres .offer-card__bullets{
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.page-offres .offer-card__bullets li{
  position: relative;
  padding-left: 26px;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.5;
  font-size: 13.5px;
}

.page-offres .offer-card__bullets li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
  color: #0F5CCF;
  background: rgba(15, 92, 207, 0.10);
  border: 1px solid rgba(15, 92, 207, 0.18);
}

.page-offres .offer-card__footer{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.page-offres .offer-card:hover{
  transform: translateY(-3px);
  border-color: rgba(15, 92, 207, 0.22);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
}

.page-offres .section--muted{
  background: linear-gradient(180deg, rgba(15, 92, 207, 0.04), rgba(255, 255, 255, 1));
}
/* ======== Ajustements compacts (CTA + Newsletter) ======== */
/* Réduit la hauteur des bandes "Prêts à cadrer votre projet ?" et "Insights" */
.callout .callout__inner{
  padding:14px 0;
}

.callout .callout__title{
  font-size:1.15rem;
  margin:0 0 4px;
}

.callout .callout__text{
  font-size:.95rem;
}

.section--newsletter{
  padding:32px 0;
}

.section--newsletter .newsletter{
  align-items:center;
}

.section--newsletter .section__title{
  margin:0 0 6px;
}

.section--newsletter .section__subtitle{
  margin:0;
}

.section--newsletter .newsletter__form input{
  padding:8px 12px;
  min-width:220px;
}
/* ======== Ajustements ULTRA compacts (CTA + Newsletter) ======== */
.callout{ min-height:auto; }
.callout .callout__inner{ padding:8px 0; }
.callout .callout__title{ font-size:1.05rem; margin:0 0 2px; line-height:1.2; }
.callout .callout__text{ font-size:.9rem; line-height:1.35; margin:0; }
.callout .btn, .callout button, .callout a.btn{ padding:8px 14px; font-size:.9rem; }

.section--newsletter{ padding:20px 0; }
.section--newsletter .section__title{ font-size:1.4rem; margin:0 0 4px; line-height:1.15; }
.section--newsletter .section__subtitle{ font-size:.95rem; margin:0; }
.section--newsletter .newsletter{ gap:14px; }
.section--newsletter .newsletter__form input{ padding:7px 10px; min-width:200px; }
.section--newsletter .newsletter__form button{ padding:7px 12px; font-size:.9rem; }

/* ====== ACTUALITES : filtres (look premium) ====== */
.news-filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin:18px 0 26px;
}

.news-filters__btn{
  appearance:none;
  border:1px solid rgba(15, 92, 207, .18);
  background:#fff;
  color:#0b1b33;
  padding:8px 12px;
  border-radius:999px;
  font-weight:600;
  font-size:.92rem;
  cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.news-filters__btn:hover{
  transform:translateY(-1px);
  border-color:rgba(15, 92, 207, .35);
  box-shadow:0 10px 24px rgba(11,27,51,.08);
}

.news-filters__btn.is-active{
  background:linear-gradient(90deg, #0F5CCF, #0B3A85);
  border-color:transparent;
  color:#fff;
}

/* ====== ACTUALITES : hero plus compact ====== */
.page-hero--actualite{
  padding:56px 0;
}

@media (max-width: 820px){
  .page-hero--actualite{
    padding:44px 0;
  }
}
/* Cards actu : micro interaction */
.news-grid .card{
  transition:transform .12s ease, box-shadow .12s ease;
}
.news-grid .card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 40px rgba(11,27,51,.10);
}
.card{ position:relative; }
.card__stretched{ position:absolute; inset:0; z-index:1; }
.card__body, .card__media, .card__link{ position:relative; z-index:2; }
.news-grid .card{ cursor:pointer; }

/* ====== ARTICLES (mise en forme premium) ====== */
.article-wrap{ max-width: 920px; margin: 0 auto; }
.article-header{ margin: 10px 0 18px; }
.article-meta{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin:10px 0 0; }
.article-badge{
  display:inline-flex; align-items:center;
  padding:6px 10px; border-radius:999px;
  background:rgba(15,92,207,.08);
  border:1px solid rgba(15,92,207,.18);
  font-weight:700; font-size:.85rem; color:#0b1b33;
}
.article-date{ font-size:.92rem; opacity:.75; }

.article-lead{
  font-size:1.05rem; line-height:1.65;
  margin: 14px 0 0;
  color: rgba(11,27,51,.9);
  max-width: 76ch;
}

.article-hr{ height:1px; background:rgba(11,27,51,.10); border:0; margin:22px 0; }

.takeaways{
  border-radius:16px;
  padding:16px 16px;
  background: #fff;
  border:1px solid rgba(11,27,51,.10);
  box-shadow:0 10px 30px rgba(11,27,51,.06);
}
.takeaways h3{ margin:0 0 10px; font-size:1rem; }
.takeaways ul{ margin:0; padding-left:18px; }
.takeaways li{ margin:6px 0; line-height:1.55; }

.article-content h2{
  margin:22px 0 10px;
  font-size:1.25rem;
  letter-spacing:-0.01em;
}
.article-content p{
  margin:0 0 12px;
  line-height:1.75;
  color: rgba(11,27,51,.92);
}
.article-content ul{
  margin: 0 0 14px;
  padding-left:18px;
}
.article-content li{ margin:6px 0; line-height:1.65; }

.article-nav{
  display:flex; justify-content:space-between; align-items:center;
  gap:12px; flex-wrap:wrap; margin-top:18px;
}
.article-nav a{ text-decoration:none; }
.article-nav .card__link{ font-weight:700; }

.callout.callout--article{ border-radius:18px; overflow:hidden; }
.callout.callout--article .callout__inner{ padding:14px 0; }

/* ===== Impact V2 ===== */
.hero--impact .hero__bg-img{ width:100%; height:100%; object-fit:cover; object-position:center; }
.hero--impact .hero__bg{ min-height:520px; }

.impact-kpis{ margin-top:-52px; }
.impact-kpis .card{ text-align:center; padding:18px 16px; }
.impact-kpis .kpi__value{ font-size:1.6rem; font-weight:800; letter-spacing:-0.02em; }
.impact-kpis .kpi__label{ opacity:.85; line-height:1.45; }

.impact-proof{ border:1px solid rgba(11,27,51,.10); border-radius:18px; background:#fff; padding:18px; box-shadow:0 10px 30px rgba(11,27,51,.06); }
.impact-proof__grid{ display:grid; gap:14px; grid-template-columns:repeat(3, minmax(0,1fr)); }
@media (max-width: 900px){ .impact-proof__grid{ grid-template-columns:1fr; } }

.ba-v2{ display:grid; gap:14px; grid-template-columns:repeat(3, minmax(0,1fr)); }
@media (max-width: 900px){ .ba-v2{ grid-template-columns:1fr; } }
.ba-v2__card{ border:1px solid rgba(11,27,51,.10); border-radius:18px; background:#fff; overflow:hidden; box-shadow:0 10px 30px rgba(11,27,51,.06); }
.ba-v2__head{ padding:14px 16px; background:linear-gradient(135deg, rgba(15,92,207,.12), rgba(255,122,33,.10)); }
.ba-v2__title{ margin:0; font-size:1.05rem; font-weight:800; }
.ba-v2__body{ padding:14px 16px; display:grid; gap:12px; grid-template-columns:1fr 1fr; }
@media (max-width: 900px){ .ba-v2__body{ grid-template-columns:1fr; } }
.ba-v2__pill{ display:inline-flex; align-items:center; gap:8px; font-weight:800; font-size:.78rem; padding:6px 10px; border-radius:999px; border:1px solid rgba(11,27,51,.10); }
.ba-v2__pill--before{ background:rgba(255,122,33,.10); }
.ba-v2__pill--after{ background:rgba(15,92,207,.10); }

.case-v2 .card__body{ position:relative; }
.case-v2 .case-badges{ display:flex; gap:8px; flex-wrap:wrap; margin:0 0 10px; }
.case-v2 .badge{ display:inline-flex; padding:6px 10px; border-radius:999px; border:1px solid rgba(11,27,51,.10); font-weight:800; font-size:.78rem; background:#fff; }
.case-v2 .case-metrics{ display:grid; gap:8px; grid-template-columns:repeat(3, minmax(0,1fr)); margin-top:12px; }
@media (max-width: 900px){ .case-v2 .case-metrics{ grid-template-columns:1fr; } }
.case-v2 .metric{ border:1px solid rgba(11,27,51,.10); border-radius:14px; padding:10px 10px; background:rgba(11,27,51,.02); }
.case-v2 .metric strong{ display:block; font-size:1.05rem; }

/* ===== Impact KPI V3 (attractif) ===== */
.impact-kpis{ margin-top:-64px; }
.impact-kpis__grid{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
@media (max-width: 1100px){
  .impact-kpis__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 620px){
  .impact-kpis__grid{ grid-template-columns: 1fr; }
}

.kpi-card{
  position:relative;
  border:1px solid rgba(11,27,51,.10);
  border-radius:18px;
  background:#fff;
  padding:18px 18px 16px;
  box-shadow:0 10px 30px rgba(11,27,51,.06);
  overflow:hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.kpi-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(135deg, rgba(15,92,207,.18), rgba(255,122,33,.12));
  opacity:.0;
  transition: opacity .15s ease;
}
.kpi-card > *{ position:relative; z-index:1; }
.kpi-card:hover{
  transform: translateY(-2px);
  box-shadow:0 16px 45px rgba(11,27,51,.12);
}
.kpi-card:hover::before{ opacity:1; }

.kpi-card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.kpi-card__icon{
  width:40px; height:40px;
  border-radius:14px;
  display:grid; place-items:center;
  background:rgba(15,92,207,.10);
  border:1px solid rgba(15,92,207,.18);
  font-size:18px;
}
.kpi-card__tag{
  font-size:.78rem;
  font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(11,27,51,.10);
  background:rgba(11,27,51,.02);
  white-space:nowrap;
}
.kpi-card__value{
  font-size:1.9rem;
  font-weight:900;
  letter-spacing:-0.03em;
  margin: 0 0 6px;
}
.kpi-card__label{
  margin:0;
  opacity:.85;
  line-height:1.45;
}
/* ===== A propos V2 (plus attractif) ===== */
.apropos-kpis{ margin-top:-54px; }
.apropos-kpis__grid{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(4, minmax(0,1fr));
}
@media (max-width:1100px){ .apropos-kpis__grid{ grid-template-columns:repeat(2, minmax(0,1fr)); } }
@media (max-width:620px){ .apropos-kpis__grid{ grid-template-columns:1fr; } }

.apropos-kpi{
  position:relative;
  border:1px solid rgba(11,27,51,.10);
  border-radius:18px;
  background:#fff;
  padding:18px 18px 16px;
  box-shadow:0 10px 30px rgba(11,27,51,.06);
  overflow:hidden;
  transition:transform .15s ease, box-shadow .15s ease;
}
.apropos-kpi:hover{ transform:translateY(-2px); box-shadow:0 16px 45px rgba(11,27,51,.12); }
.apropos-kpi__top{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px; }
.apropos-kpi__icon{
  width:40px; height:40px; border-radius:14px;
  display:grid; place-items:center;
  background:rgba(15,92,207,.10);
  border:1px solid rgba(15,92,207,.18);
  font-size:18px;
}
.apropos-kpi__tag{
  font-size:.78rem; font-weight:800;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(11,27,51,.10);
  background:rgba(11,27,51,.02);
  white-space:nowrap;
}
.apropos-kpi__value{ font-size:1.25rem; font-weight:900; margin:0 0 6px; }
.apropos-kpi__label{ margin:0; opacity:.85; line-height:1.45; }

.apropos-split{
  display:grid; gap:18px;
  grid-template-columns: 1.2fr .8fr;
  align-items:start;
}
@media (max-width:980px){ .apropos-split{ grid-template-columns:1fr; } }

.apropos-card{
  border:1px solid rgba(11,27,51,.10);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 30px rgba(11,27,51,.06);
  padding:18px;
}
.apropos-card h3{ margin:0 0 8px; }
.apropos-list{ margin:10px 0 0; padding-left:18px; opacity:.92; }