/* ============================================================
   HORIZON CONSEIL – Design System
   v1.0.0 | Premium consulting theme for Elementor
   ============================================================ */

/* ── Font Awesome 6 – polices locales (backup CDN + override Elementor FA5)
   Les fichiers woff2 sont dans assets/fonts/ pour garantir le chargement
   même en cas de conflit avec les déclarations @font-face du CDN.       */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../fonts/fa-solid-900.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/fa-brands-400.woff2") format("woff2");
}

/* ────────────────────────────────────────────────────────────
   1. VARIABLES CSS
   ──────────────────────────────────────────────────────────── */
:root {
  /* Palette principale */
  --hc-primary:       #011c49;
  --hc-primary-900:   #010f2b;
  --hc-primary-800:   #02286a;
  --hc-primary-700:   #033380;

  /* Accent bleu */
  --hc-accent:        #3095d1;
  --hc-accent-dark:   #1a7ab5;
  --hc-accent-light:  #5aaedf;
  --hc-accent-pale:   rgba(48, 149, 209, 0.08);

  /* Neutres */
  --hc-white:         #ffffff;
  --hc-off-white:     #f8f9fc;
  --hc-gray-50:       #f1f4f9;
  --hc-gray-100:      #e8edf5;
  --hc-gray-200:      #d1d9e8;
  --hc-gray-300:      #a8b4cd;
  --hc-gray-400:      #7a8aab;
  --hc-gray-500:      #5a6a8a;
  --hc-gray-600:      #3d4f72;
  --hc-gray-700:      #2a3a5c;
  --hc-gray-800:      #1a2748;
  --hc-gray-900:      #0d1630;
  --hc-text:          #1e293b;
  --hc-text-muted:    #64748b;

  /* États */
  --hc-success:       #059669;
  --hc-warning:       #d97706;
  --hc-error:         #dc2626;

  /* Typographie */
  --hc-font:          Helvetica, Arial, sans-serif;
  --hc-font-mono:     'JetBrains Mono', 'Fira Code', monospace;

  /* Tailles typographiques */
  --hc-text-xs:    0.75rem;     /* 12px */
  --hc-text-sm:    0.875rem;    /* 14px */
  --hc-text-base:  1rem;        /* 16px */
  --hc-text-lg:    1.125rem;    /* 18px */
  --hc-text-xl:    1.25rem;     /* 20px */
  --hc-text-2xl:   1.5rem;      /* 24px */
  --hc-text-3xl:   1.875rem;    /* 30px */
  --hc-text-4xl:   2.25rem;     /* 36px */
  --hc-text-5xl:   3rem;        /* 48px */
  --hc-text-6xl:   3.75rem;     /* 60px */

  /* Espacement */
  --hc-space-1:  0.25rem;
  --hc-space-2:  0.5rem;
  --hc-space-3:  0.75rem;
  --hc-space-4:  1rem;
  --hc-space-5:  1.25rem;
  --hc-space-6:  1.5rem;
  --hc-space-8:  2rem;
  --hc-space-10: 2.5rem;
  --hc-space-12: 3rem;
  --hc-space-16: 4rem;
  --hc-space-20: 5rem;
  --hc-space-24: 6rem;
  --hc-space-32: 8rem;

  /* Bordures & arrondis */
  --hc-radius-sm:  4px;
  --hc-radius:     6px;
  --hc-radius-md:  8px;
  --hc-radius-lg:  12px;
  --hc-radius-xl:  16px;
  --hc-radius-2xl: 24px;
  --hc-radius-full: 9999px;

  /* Ombres */
  --hc-shadow-xs:  0 1px 2px rgba(1, 28, 73, 0.06);
  --hc-shadow-sm:  0 2px 8px rgba(1, 28, 73, 0.08);
  --hc-shadow:     0 4px 16px rgba(1, 28, 73, 0.10);
  --hc-shadow-md:  0 8px 28px rgba(1, 28, 73, 0.12);
  --hc-shadow-lg:  0 16px 48px rgba(1, 28, 73, 0.15);
  --hc-shadow-xl:  0 24px 64px rgba(1, 28, 73, 0.18);

  /* Transitions */
  --hc-ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --hc-transition: all 0.25s var(--hc-ease);
  --hc-transition-slow: all 0.4s var(--hc-ease);

  /* Layout */
  --hc-container:  1200px;
  --hc-header-h:   72px;
  --hc-section-py: var(--hc-space-24);
}

/* ────────────────────────────────────────────────────────────
   2. RESET & BASE
   ──────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--hc-font);
  font-size: var(--hc-text-base);
  line-height: 1.65;
  color: var(--hc-text);
  background-color: var(--hc-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--hc-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--hc-accent-dark); }

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ────────────────────────────────────────────────────────────
   3. LAYOUT : CONTENEUR & GRILLES
   ──────────────────────────────────────────────────────────── */
.hc-container {
  width: 100%;
  max-width: var(--hc-container);
  margin-inline: auto;
  padding-inline: var(--hc-space-6);
}

.hc-container--wide  { max-width: 1400px; }
.hc-container--narrow { max-width: 800px; }

/* Grilles auto */
.hc-grid {
  display: grid;
  gap: var(--hc-space-8);
}
.hc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.hc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.hc-grid--4 { grid-template-columns: repeat(4, 1fr); }
.hc-grid--auto-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.hc-grid--auto-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

/* Grid asymétrique */
.hc-grid--sidebar   { grid-template-columns: 1fr 360px; gap: var(--hc-space-12); align-items: start; }
.hc-grid--sidebar-l { grid-template-columns: 360px 1fr; gap: var(--hc-space-12); align-items: start; }
.hc-grid--2-3       { grid-template-columns: 2fr 3fr; gap: var(--hc-space-10); align-items: center; }

/* ────────────────────────────────────────────────────────────
   4. SECTIONS
   ──────────────────────────────────────────────────────────── */
.hc-section {
  padding-block: var(--hc-section-py);
}
.hc-section--sm { padding-block: var(--hc-space-16); }
.hc-section--lg { padding-block: var(--hc-space-32); }
.hc-section--light  { background-color: var(--hc-off-white); }
.hc-section--gray   { background-color: var(--hc-gray-50); }
.hc-section--dark   { background-color: var(--hc-primary-900); }
.hc-section--primary { background-color: var(--hc-primary); }

.hc-section-header {
  margin-bottom: var(--hc-space-12);
}
.hc-section-header--center { text-align: center; }
.hc-section-header--center .hc-section-desc { margin-inline: auto; }

/* ────────────────────────────────────────────────────────────
   5. TYPOGRAPHIE
   ──────────────────────────────────────────────────────────── */
.hc-kicker {
  display: inline-block;
  font-size: var(--hc-text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hc-accent);
  margin-bottom: var(--hc-space-3);
}
.hc-kicker--light { color: var(--hc-accent-light); }
.hc-kicker--pill {
  padding: var(--hc-space-1) var(--hc-space-4);
  border: 1px solid currentColor;
  border-radius: var(--hc-radius-full);
}

.hc-section-title {
  font-size: clamp(var(--hc-text-2xl), 3.5vw, var(--hc-text-4xl));
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--hc-primary);
  margin-bottom: var(--hc-space-4);
}
.hc-section-title--white { color: var(--hc-white); }

.hc-section-desc {
  font-size: var(--hc-text-lg);
  color: var(--hc-text-muted);
  line-height: 1.75;
  max-width: 580px;
}
.hc-section-desc--white { color: rgba(255,255,255,0.78); }

/* ────────────────────────────────────────────────────────────
   6. BOUTONS
   ──────────────────────────────────────────────────────────── */

/* ── Icône FA dans les boutons */
.hc-btn i,
.hc-btn-arrow i {
  flex-shrink: 0;
  font-size: 0.82em;
  line-height: 1;
  display: inline-block;
}

/* ── Base commune — bouton plein */
.hc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  max-width: max-content;
  padding: 13px 22px;
  border-radius: 10px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  -webkit-user-select: none;
  user-select: none;
}
.hc-btn:focus-visible {
  outline: 3px solid var(--hc-accent);
  outline-offset: 3px;
}

/* ── Primaire — fond navy */
.hc-btn--primary {
  background: #001B3F;
  color: #ffffff;
  border-color: #001B3F;
}
.hc-btn--primary:hover {
  background: #003B7A;
  border-color: #003B7A;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,27,63,0.16);
}
.hc-btn--primary:active { transform: translateY(0); box-shadow: none; }

/* ── Accent — bleu */
.hc-btn--accent {
  background: var(--hc-accent);
  color: #ffffff;
  border-color: var(--hc-accent);
}
.hc-btn--accent:hover {
  background: var(--hc-accent-dark);
  border-color: var(--hc-accent-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(48,149,209,0.22);
}
.hc-btn--accent:active { transform: translateY(0); box-shadow: none; }

/* ── Outline sur fond clair */
.hc-btn--outline {
  background: transparent;
  color: #001B3F;
  border-color: #001B3F;
}
.hc-btn--outline:hover {
  background: #001B3F;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,27,63,0.12);
}
.hc-btn--outline:active { transform: translateY(0); box-shadow: none; }

/* ── Outline sur fond sombre */
.hc-btn--outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.55);
}
.hc-btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}
.hc-btn--outline-white:active { transform: translateY(0); }

/* ── Ghost (lien inline) */
.hc-btn--ghost {
  background: transparent;
  color: var(--hc-accent);
  border-color: transparent;
  padding-inline: 0;
}
.hc-btn--ghost:hover { color: var(--hc-accent-dark); gap: 14px; }

/* ── Tailles */
.hc-btn--sm { font-size: 13px; padding: 9px 16px; border-radius: 8px; }
.hc-btn--lg { font-size: 16px; padding: 15px 28px; border-radius: 12px; }
.hc-btn--full { width: 100%; max-width: 100%; }

/* ────────────────────────────────────────────────────────────
   6b. BOUTON TEXTE + FLÈCHE (pour cards)
   ──────────────────────────────────────────────────────────── */
.hc-btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  max-width: max-content;
  background: transparent;
  border: none;
  padding: 0;
  color: #001B3F;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: color .25s ease, gap .25s ease;
}
.hc-btn-arrow i {
  display: inline-block;
  font-size: 0.8em;
  transition: transform .25s ease;
}
.hc-btn-arrow:hover { color: #003B7A; gap: 12px; }
.hc-btn-arrow:hover i { transform: translateX(4px); }
.hc-btn-arrow:active { transform: translateY(1px); }

/* ── Variantes selon fond */
.hc-bg-dark .hc-btn--primary {
  background: #ffffff;
  color: #001B3F;
  border-color: #ffffff;
}
.hc-bg-dark .hc-btn--primary:hover {
  background: #2EA8DF;
  border-color: #2EA8DF;
  color: #ffffff;
}
.hc-bg-dark .hc-btn-arrow { color: #ffffff; }
.hc-bg-dark .hc-btn-arrow:hover { color: #2EA8DF; }

.hc-bg-accent .hc-btn--primary { background: #001B3F; color: #ffffff; border-color: #001B3F; }
.hc-bg-accent .hc-btn-arrow { color: #001B3F; }

/* ── Respect des préférences d'animation */
@media (prefers-reduced-motion: reduce) {
  .hc-btn,
  .hc-btn-arrow,
  .hc-btn-arrow i {
    transition: none !important;
    transform: none !important;
  }
}

/* ────────────────────────────────────────────────────────────
   7. BADGES & PILLS
   ──────────────────────────────────────────────────────────── */
.hc-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--hc-space-1);
  font-size: var(--hc-text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--hc-radius-full);
  border: 1px solid transparent;
  line-height: 1.4;
  width: fit-content;
  align-self: flex-start;
}
.hc-badge--primary { background: var(--hc-primary-900); color: var(--hc-white); }
.hc-badge--accent  { background: var(--hc-accent-pale); color: var(--hc-accent-dark); border-color: rgba(48,149,209,0.2); }
.hc-badge--outline { background: transparent; color: var(--hc-text-muted); border-color: var(--hc-gray-200); }
.hc-badge--success { background: rgba(5,150,105,0.1); color: #059669; border-color: rgba(5,150,105,0.2); }
.hc-badge--warning { background: rgba(217,119,6,0.1); color: #d97706; border-color: rgba(217,119,6,0.2); }

/* ────────────────────────────────────────────────────────────
   8. CARDS
   ──────────────────────────────────────────────────────────── */
.hc-card {
  background: var(--hc-white);
  border: 1px solid var(--hc-gray-100);
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  transition: var(--hc-transition);
}
.hc-card:hover {
  box-shadow: var(--hc-shadow-md);
  border-color: transparent;
  transform: translateY(-3px);
}

/* Card avec ligne de couleur au hover */
.hc-card--lined { position: relative; }
.hc-card--lined::before {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hc-primary), var(--hc-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--hc-ease);
}
.hc-card--lined:hover::before { transform: scaleX(1); }

.hc-card__body { padding: var(--hc-space-8); }
.hc-card__body--sm { padding: var(--hc-space-6); }

/* Icône de carte */
.hc-card-icon {
  width: 52px;
  height: 52px;
  background: var(--hc-accent-pale);
  border-radius: var(--hc-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-accent);
  margin-bottom: var(--hc-space-5);
  font-size: 22px;
  flex-shrink: 0;
  transition: var(--hc-transition);
}
.hc-card:hover .hc-card-icon {
  background: var(--hc-primary);
  color: var(--hc-white);
}

.hc-card-title {
  font-size: var(--hc-text-xl);
  font-weight: 700;
  color: var(--hc-primary);
  margin-bottom: var(--hc-space-3);
  line-height: 1.3;
}
.hc-card-desc {
  font-size: var(--hc-text-sm);
  color: var(--hc-text-muted);
  line-height: 1.7;
}
.hc-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--hc-space-2);
  font-size: var(--hc-text-sm);
  font-weight: 600;
  color: var(--hc-accent);
  margin-top: var(--hc-space-5);
  transition: gap 0.2s ease, color 0.2s ease;
}
.hc-card-link:hover { gap: var(--hc-space-3); color: var(--hc-accent-dark); }

/* ────────────────────────────────────────────────────────────
   9. POST CARDS (blog, services, projets, offres)
   ──────────────────────────────────────────────────────────── */
.hc-post-card {
  background: var(--hc-white);
  border: 1px solid var(--hc-gray-100);
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--hc-transition);
}
.hc-post-card:hover {
  box-shadow: var(--hc-shadow-md);
  border-color: transparent;
  transform: translateY(-3px);
}

.hc-post-card__img-wrap { overflow: hidden; aspect-ratio: 16/9; }
.hc-post-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--hc-ease); }
.hc-post-card:hover .hc-post-card__img { transform: scale(1.04); }

.hc-post-card__body {
  padding: var(--hc-space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hc-post-card__badges { display: flex; gap: var(--hc-space-2); flex-wrap: wrap; margin-bottom: var(--hc-space-3); }
.hc-post-card__date {
  font-size: var(--hc-text-xs);
  color: var(--hc-text-muted);
  font-weight: 500;
  display: block;
  margin-bottom: var(--hc-space-2);
}
.hc-post-card__title {
  font-size: var(--hc-text-lg);
  font-weight: 700;
  line-height: 1.35;
  color: var(--hc-primary);
  margin-bottom: var(--hc-space-3);
}
.hc-post-card__title a { color: inherit; text-decoration: none; }
.hc-post-card__title a:hover { color: var(--hc-accent); }
.hc-post-card__excerpt {
  font-size: var(--hc-text-sm);
  color: var(--hc-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--hc-space-4);
}
.hc-post-card__link {
  font-size: var(--hc-text-sm);
  font-weight: 600;
  color: var(--hc-accent);
  display: inline-flex;
  align-items: center;
  gap: var(--hc-space-1);
  align-self: flex-start;
  transition: gap 0.2s ease;
}
.hc-post-card__link:hover { gap: var(--hc-space-2); color: var(--hc-accent-dark); }

/* ────────────────────────────────────────────────────────────
   10. HEADER
   ──────────────────────────────────────────────────────────── */
.hc-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--hc-header-h);
  background: var(--hc-white);
  border-bottom: 1px solid var(--hc-gray-100);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.hc-header.is-scrolled {
  box-shadow: var(--hc-shadow-sm);
}

.hc-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--hc-space-6);
}

/* Logo */
.hc-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.hc-header__logo-img { height: 40px; width: auto; }
.hc-header__logo-text {
  font-size: var(--hc-text-xl);
  font-weight: 800;
  color: var(--hc-primary);
  letter-spacing: -0.03em;
}

/* Nav desktop */
.hc-nav { flex: 1; display: flex; justify-content: center; margin-inline: auto; }
.hc-nav__list {
  display: flex;
  align-items: center;
  gap: var(--hc-space-1);
}
.hc-nav__list li { position: relative; }
.hc-nav__list > li > a {
  display: block;
  font-size: var(--hc-text-sm);
  font-weight: 500;
  color: var(--hc-gray-700);
  padding: var(--hc-space-2) var(--hc-space-3);
  border-radius: var(--hc-radius);
  transition: var(--hc-transition);
}
.hc-nav__list > li > a:hover,
.hc-nav__list > li.current-menu-item > a,
.hc-nav__list > li.current-menu-ancestor > a {
  color: var(--hc-primary);
  background: var(--hc-gray-50);
}

/* Sous-menu */
.hc-nav__list .sub-menu {
  position: absolute;
  inset-block-start: calc(100% + 8px);
  inset-inline-start: 0;
  min-width: 220px;
  background: var(--hc-white);
  border: 1px solid var(--hc-gray-100);
  border-radius: var(--hc-radius-md);
  box-shadow: var(--hc-shadow-lg);
  padding: var(--hc-space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
}
.hc-nav__list li:hover > .sub-menu,
.hc-nav__list li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hc-nav__list .sub-menu a {
  display: block;
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-700);
  padding: var(--hc-space-2) var(--hc-space-3);
  border-radius: var(--hc-radius);
  transition: background 0.15s ease, color 0.15s ease;
}
.hc-nav__list .sub-menu a:hover {
  background: var(--hc-gray-50);
  color: var(--hc-primary);
}

.hc-header__actions {
  display: flex;
  align-items: center;
  gap: var(--hc-space-3);
  flex-shrink: 0;
}
.hc-header__cta { display: none; }

/* Burger */
.hc-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--hc-gray-200);
  border-radius: var(--hc-radius);
  cursor: pointer;
  padding: 8px;
  transition: border-color 0.2s ease;
}
.hc-burger:hover { border-color: var(--hc-primary); }
.hc-burger__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--hc-primary);
  border-radius: 2px;
  transition: var(--hc-transition);
}
.hc-burger.is-open .hc-burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hc-burger.is-open .hc-burger__bar:nth-child(2) { opacity: 0; }
.hc-burger.is-open .hc-burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ────────────────────────────────────────────────────────────
   11. MENU MOBILE
   ──────────────────────────────────────────────────────────── */
.hc-mobile-nav {
  position: fixed;
  inset-block: 0;
  inset-inline-start: 0;
  width: min(380px, 100vw);
  background: var(--hc-primary);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s var(--hc-ease);
  overflow-y: auto;
}
.hc-mobile-nav:not([hidden]) { display: flex; }
.hc-mobile-nav.is-open { transform: translateX(0); }

.hc-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--hc-space-5) var(--hc-space-6);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hc-mobile-nav__logo img { height: 36px; filter: brightness(0) invert(1); }
.hc-mobile-nav__logo span { color: var(--hc-white); font-weight: 800; font-size: var(--hc-text-lg); }
.hc-mobile-nav__close {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: var(--hc-radius);
  color: var(--hc-white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.hc-mobile-nav__close:hover { background: rgba(255,255,255,0.2); }

.hc-mobile-nav__nav { flex: 1; padding: var(--hc-space-4); }
.hc-mobile-nav__list { display: flex; flex-direction: column; }
.hc-mobile-nav__list a {
  display: block;
  padding: var(--hc-space-4) var(--hc-space-3);
  font-size: var(--hc-text-base);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s ease, padding 0.2s ease;
}
.hc-mobile-nav__list a:hover { color: var(--hc-white); padding-inline-start: var(--hc-space-5); }
.hc-mobile-nav__list .sub-menu a {
  padding-inline-start: var(--hc-space-8);
  font-size: var(--hc-text-sm);
  color: rgba(255,255,255,0.65);
}
.hc-mobile-nav__footer { padding: var(--hc-space-6); border-top: 1px solid rgba(255,255,255,0.1); }

.hc-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.hc-mobile-overlay.is-open { opacity: 1; visibility: visible; }

/* ────────────────────────────────────────────────────────────
   12. MAIN CONTENT OFFSET (header fixed)
   ──────────────────────────────────────────────────────────── */
#hc-main-wrap {
  padding-top: var(--hc-header-h);
}
.hc-main { min-height: 50vh; }

/* ────────────────────────────────────────────────────────────
   13. HERO INTERNE (pages secondaires)
   ──────────────────────────────────────────────────────────── */
.hc-inner-hero {
  background: linear-gradient(140deg, var(--hc-primary-900) 0%, var(--hc-primary) 55%, var(--hc-primary-800) 100%);
  padding-block: var(--hc-space-20) var(--hc-space-16);
  position: relative;
  overflow: hidden;
}

/* Motif décoratif subtil */
.hc-inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(48,149,209,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hc-inner-hero .hc-container { position: relative; z-index: 1; }

.hc-inner-hero__title {
  font-size: clamp(var(--hc-text-2xl), 4vw, var(--hc-text-4xl));
  font-weight: 800;
  color: var(--hc-white);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-top: var(--hc-space-4);
  margin-bottom: var(--hc-space-3);
  max-width: 700px;
}
.hc-inner-hero__title--article { max-width: 760px; }

.hc-inner-hero__sub {
  font-size: var(--hc-text-lg);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 560px;
}

/* ────────────────────────────────────────────────────────────
   14. BREADCRUMB
   ──────────────────────────────────────────────────────────── */
.hc-breadcrumb { margin-bottom: var(--hc-space-3); }
.hc-bc__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--hc-space-2);
  font-size: var(--hc-text-xs);
  color: rgba(255,255,255,0.55);
}
.hc-bc__item a { color: rgba(255,255,255,0.7); transition: color 0.2s ease; }
.hc-bc__item a:hover { color: var(--hc-white); }
.hc-bc__item--current { color: rgba(255,255,255,0.9); }
.hc-bc__sep { opacity: 0.4; }

/* ────────────────────────────────────────────────────────────
   15. FORMULAIRES
   ──────────────────────────────────────────────────────────── */
.hc-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--hc-space-2);
  margin-bottom: var(--hc-space-5);
}
.hc-label {
  font-size: var(--hc-text-sm);
  font-weight: 600;
  color: var(--hc-gray-700);
}
.hc-label--required::after { content: ' *'; color: var(--hc-error); }

.hc-input,
.hc-textarea,
.hc-select {
  width: 100%;
  padding: 0.8125rem var(--hc-space-4);
  font-family: var(--hc-font);
  font-size: var(--hc-text-base);
  color: var(--hc-text);
  background: var(--hc-white);
  border: 1.5px solid var(--hc-gray-200);
  border-radius: var(--hc-radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
}
.hc-input:focus,
.hc-textarea:focus,
.hc-select:focus {
  border-color: var(--hc-accent);
  box-shadow: 0 0 0 3px rgba(48,149,209,0.12);
}
.hc-input::placeholder,
.hc-textarea::placeholder { color: var(--hc-gray-300); }
.hc-textarea { resize: vertical; min-height: 140px; }

/* CF7 override */
.wpcf7-form .wpcf7-form-control {
  width: 100%;
  padding: 0.8125rem var(--hc-space-4) !important;
  border: 1.5px solid var(--hc-gray-200) !important;
  border-radius: var(--hc-radius) !important;
  font-family: var(--hc-font) !important;
  font-size: var(--hc-text-base) !important;
  color: var(--hc-text) !important;
  background: var(--hc-white) !important;
  transition: border-color 0.2s ease !important;
  outline: none;
  box-sizing: border-box;
}
.wpcf7-form .wpcf7-form-control:focus {
  border-color: var(--hc-accent) !important;
  box-shadow: 0 0 0 3px rgba(48,149,209,0.12) !important;
}
.wpcf7-form .wpcf7-submit {
  background: var(--hc-accent) !important;
  color: var(--hc-white) !important;
  border: none !important;
  padding: 0.875rem var(--hc-space-8) !important;
  font-weight: 600 !important;
  border-radius: var(--hc-radius) !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
}
.wpcf7-form .wpcf7-submit:hover { background: var(--hc-accent-dark) !important; }

/* Honeypot caché */
.hc-hp { display: none !important; visibility: hidden !important; position: absolute !important; left: -9999px !important; }

/* ────────────────────────────────────────────────────────────
   16. STATS / CHIFFRES CLÉS
   ──────────────────────────────────────────────────────────── */
.hc-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
.hc-stat-item {
  padding: var(--hc-space-10) var(--hc-space-6);
  text-align: center;
  background: var(--hc-primary);
}
.hc-stat-number {
  font-size: clamp(var(--hc-text-3xl), 4vw, var(--hc-text-5xl));
  font-weight: 800;
  color: var(--hc-accent-light);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: var(--hc-space-2);
}
.hc-stat-label {
  font-size: var(--hc-text-sm);
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ────────────────────────────────────────────────────────────
   17. FOOTER
   ──────────────────────────────────────────────────────────── */
.hc-footer {
  background: var(--hc-primary-900);
  color: rgba(255,255,255,0.8);
}

/* Bande newsletter */
.hc-footer__top {
  background: var(--hc-primary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--hc-space-10);
}
.hc-footer__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hc-space-8);
  flex-wrap: wrap;
}
.hc-footer__top-label {
  font-size: var(--hc-text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hc-accent-light);
  margin-bottom: var(--hc-space-2);
}
.hc-footer__top-title {
  font-size: var(--hc-text-xl);
  font-weight: 700;
  color: var(--hc-white);
  line-height: 1.35;
  max-width: 400px;
}

.hc-footer__newsletter { flex-shrink: 0; }
.hc-footer__newsletter-row {
  display: flex;
  gap: var(--hc-space-3);
}
.hc-footer__newsletter-input {
  padding: 0.75rem var(--hc-space-4);
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--hc-radius);
  color: var(--hc-white);
  font-family: var(--hc-font);
  font-size: var(--hc-text-sm);
  min-width: 260px;
  outline: none;
  transition: border-color 0.2s ease;
}
.hc-footer__newsletter-input::placeholder { color: rgba(255,255,255,0.45); }
.hc-footer__newsletter-input:focus { border-color: var(--hc-accent); }

/* Corps du footer */
.hc-footer__body { padding-block: var(--hc-space-16) var(--hc-space-12); }

.hc-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--hc-space-12);
}

.hc-footer__col-title {
  font-size: var(--hc-text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--hc-space-5);
}

.hc-footer__logo { display: inline-block; margin-bottom: var(--hc-space-5); }
.hc-footer__logo-text {
  font-size: var(--hc-text-xl);
  font-weight: 800;
  color: var(--hc-white);
  letter-spacing: -0.02em;
}
.hc-footer__brand-desc {
  font-size: var(--hc-text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: var(--hc-space-6);
}

/* Réseaux sociaux */
.hc-footer__social { display: flex; gap: var(--hc-space-3); }
.hc-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--hc-radius);
  color: rgba(255,255,255,0.65);
  transition: background 0.2s ease, color 0.2s ease;
}
.hc-footer__social-link i { font-size: 16px; display: block; line-height: 1; }
.hc-footer__social-link:hover { background: var(--hc-accent); color: var(--hc-white); }

/* Menu footer */
.hc-footer__menu {
  display: flex;
  flex-direction: column;
  gap: var(--hc-space-1);
}
.hc-footer__menu a {
  font-size: var(--hc-text-sm);
  color: rgba(255,255,255,0.65);
  padding-block: var(--hc-space-2);
  display: flex;
  align-items: center;
  gap: 0;
  transition: color 0.2s ease;
}
.hc-footer__menu a::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.68em;
  color: var(--hc-accent);
  max-width: 0;
  overflow: hidden;
  margin-right: 0;
  opacity: 0;
  white-space: nowrap;
  transition: max-width 0.2s ease, margin-right 0.2s ease, opacity 0.2s ease;
}
.hc-footer__menu a:hover { color: var(--hc-white); }
.hc-footer__menu a:hover::before {
  max-width: 1.2em;
  margin-right: var(--hc-space-2);
  opacity: 1;
}

/* Contact footer */
.hc-footer__contact-list { display: flex; flex-direction: column; gap: var(--hc-space-4); }
.hc-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--hc-space-3);
  font-size: var(--hc-text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.hc-footer__contact-icon {
  color: var(--hc-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.hc-footer__contact-icon i { font-size: 15px; display: block; line-height: 1; }
.hc-footer__contact-item a { color: rgba(255,255,255,0.8); }
.hc-footer__contact-item a:hover { color: var(--hc-white); }

/* Barre de bas */
.hc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--hc-space-6);
}
.hc-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--hc-space-4);
}
.hc-footer__copyright {
  font-size: var(--hc-text-sm);
  color: rgba(255,255,255,0.45);
}
.hc-footer__copyright a { color: rgba(255,255,255,0.65); }
.hc-footer__copyright a:hover { color: var(--hc-white); }

.hc-footer__legal-menu {
  display: flex;
  gap: var(--hc-space-6);
  flex-wrap: wrap;
}
.hc-footer__legal-menu a {
  font-size: var(--hc-text-xs);
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}
.hc-footer__legal-menu a:hover { color: rgba(255,255,255,0.8); }

/* ────────────────────────────────────────────────────────────
   18. ARTICLE SINGLE
   ──────────────────────────────────────────────────────────── */
.hc-inner-hero--article { padding-block: var(--hc-space-16) var(--hc-space-12); }
.hc-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--hc-space-5);
  margin-top: var(--hc-space-3);
}
.hc-article-meta--top { margin-top: var(--hc-space-3); margin-bottom: var(--hc-space-2); }
.hc-article-meta__item {
  display: flex;
  align-items: center;
  gap: var(--hc-space-2);
  font-size: var(--hc-text-sm);
  color: rgba(255,255,255,0.65);
}

.hc-article-layout { display: grid; grid-template-columns: 1fr 300px; gap: var(--hc-space-12); align-items: start; }
.hc-article-thumbnail {
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  margin-bottom: var(--hc-space-8);
}
.hc-article-thumbnail__img { width: 100%; max-height: 480px; object-fit: cover; display: block; }

/* Contenu article */
.hc-prose {
  font-size: var(--hc-text-lg);
  line-height: 1.8;
  color: var(--hc-text);
}
.hc-prose h2 { font-size: var(--hc-text-2xl); font-weight: 700; color: var(--hc-primary); margin: 2.5em 0 0.75em; letter-spacing: -0.02em; }
.hc-prose h3 { font-size: var(--hc-text-xl); font-weight: 700; color: var(--hc-primary); margin: 2em 0 0.6em; }
.hc-prose p { margin-bottom: 1.5em; }
.hc-prose ul, .hc-prose ol { margin: 1.5em 0; padding-left: 1.5em; }
.hc-prose ul { list-style: disc; }
.hc-prose ol { list-style: decimal; }
.hc-prose li { margin-bottom: 0.5em; }
.hc-prose strong { font-weight: 700; color: var(--hc-gray-800); }
.hc-prose blockquote {
  border-left: 3px solid var(--hc-accent);
  padding: var(--hc-space-4) var(--hc-space-6);
  margin: 2em 0;
  background: var(--hc-off-white);
  border-radius: 0 var(--hc-radius) var(--hc-radius) 0;
  font-style: italic;
  color: var(--hc-gray-600);
}
.hc-prose a { color: var(--hc-accent); text-decoration: underline; text-underline-offset: 3px; }
.hc-prose img { border-radius: var(--hc-radius-md); }

.hc-article-tags { display: flex; flex-wrap: wrap; gap: var(--hc-space-2); margin-top: var(--hc-space-8); }

.hc-article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hc-space-4);
  margin-top: var(--hc-space-10);
  padding-top: var(--hc-space-8);
  border-top: 1px solid var(--hc-gray-100);
}
.hc-article-nav__item {
  display: flex;
  flex-direction: column;
  gap: var(--hc-space-1);
  padding: var(--hc-space-4);
  border: 1px solid var(--hc-gray-100);
  border-radius: var(--hc-radius);
  transition: var(--hc-transition);
}
.hc-article-nav__item:hover { border-color: var(--hc-accent); }
.hc-article-nav__item--next { text-align: right; }
.hc-article-nav__label { font-size: var(--hc-text-xs); font-weight: 600; color: var(--hc-accent); text-transform: uppercase; letter-spacing: 0.08em; }
.hc-article-nav__title { font-size: var(--hc-text-sm); font-weight: 600; color: var(--hc-primary); line-height: 1.4; }

/* Sidebar article */
.hc-article-sidebar { position: sticky; top: calc(var(--hc-header-h) + var(--hc-space-6)); }
.hc-sidebar-cta {
  background: var(--hc-primary);
  border-radius: var(--hc-radius-lg);
  padding: var(--hc-space-8);
  margin-bottom: var(--hc-space-6);
  text-align: center;
}
.hc-sidebar-cta__label { font-size: var(--hc-text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--hc-accent-light); margin-bottom: var(--hc-space-2); }
.hc-sidebar-cta__title { font-size: var(--hc-text-lg); font-weight: 700; color: var(--hc-white); margin-bottom: var(--hc-space-3); }
.hc-sidebar-cta__text { font-size: var(--hc-text-sm); color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: var(--hc-space-5); }

.hc-sidebar-block {
  background: var(--hc-off-white);
  border-radius: var(--hc-radius-lg);
  padding: var(--hc-space-6);
}
.hc-sidebar-block__title { font-size: var(--hc-text-sm); font-weight: 700; color: var(--hc-primary); margin-bottom: var(--hc-space-4); padding-bottom: var(--hc-space-3); border-bottom: 2px solid var(--hc-accent); }
.hc-sidebar-posts { display: flex; flex-direction: column; gap: var(--hc-space-4); }
.hc-sidebar-posts__item { display: flex; flex-direction: column; gap: var(--hc-space-1); }
.hc-sidebar-posts__link { font-size: var(--hc-text-sm); font-weight: 600; color: var(--hc-primary); line-height: 1.4; }
.hc-sidebar-posts__link:hover { color: var(--hc-accent); }
.hc-sidebar-posts__date { font-size: var(--hc-text-xs); color: var(--hc-text-muted); }

/* ────────────────────────────────────────────────────────────
   19. PAGINATION
   ──────────────────────────────────────────────────────────── */
.hc-pagination { margin-top: var(--hc-space-12); display: flex; justify-content: center; }
.hc-pagination__list { display: flex; gap: var(--hc-space-2); flex-wrap: wrap; }
.hc-pagination__item a,
.hc-pagination__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding-inline: var(--hc-space-3);
  border: 1px solid var(--hc-gray-100);
  border-radius: var(--hc-radius);
  font-size: var(--hc-text-sm);
  font-weight: 500;
  color: var(--hc-gray-600);
  transition: var(--hc-transition);
}
.hc-pagination__item a:hover { border-color: var(--hc-accent); color: var(--hc-accent); }
.hc-pagination__item span.current { background: var(--hc-primary); border-color: var(--hc-primary); color: var(--hc-white); }

/* ────────────────────────────────────────────────────────────
   20. COMING SOON
   ──────────────────────────────────────────────────────────── */
.hc-cs-body { margin: 0; }
.hc-cs {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--hc-primary-900) 0%, var(--hc-primary) 60%, var(--hc-primary-800) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--hc-space-8);
  text-align: center;
}
.hc-cs__inner { max-width: 560px; width: 100%; }
.hc-cs__logo { margin-bottom: var(--hc-space-8); }
.hc-cs__logo-text { font-size: var(--hc-text-2xl); font-weight: 800; color: var(--hc-white); }
.hc-cs__title {
  font-size: clamp(var(--hc-text-2xl), 4vw, var(--hc-text-4xl));
  font-weight: 800;
  color: var(--hc-white);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-top: var(--hc-space-4);
  margin-bottom: var(--hc-space-5);
}
.hc-cs__desc { font-size: var(--hc-text-lg); color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: var(--hc-space-8); }

.hc-cs__countdown {
  display: flex;
  justify-content: center;
  gap: var(--hc-space-4);
  margin-bottom: var(--hc-space-8);
  flex-wrap: wrap;
}
.hc-cs__cd-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--hc-radius-md);
  padding: var(--hc-space-5) var(--hc-space-6);
  min-width: 80px;
}
.hc-cs__cd-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--hc-accent-light);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hc-cs__cd-label {
  display: block;
  font-size: var(--hc-text-xs);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--hc-space-2);
}

.hc-cs__form { margin-bottom: var(--hc-space-8); }
.hc-cs__form-label { font-size: var(--hc-text-sm); color: rgba(255,255,255,0.7); margin-bottom: var(--hc-space-3); }
.hc-cs__form-row { display: flex; gap: var(--hc-space-3); justify-content: center; flex-wrap: wrap; }
.hc-cs__input {
  flex: 1;
  min-width: 220px;
  padding: 0.8125rem var(--hc-space-4);
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--hc-radius);
  color: var(--hc-white);
  font-family: var(--hc-font);
  font-size: var(--hc-text-sm);
}
.hc-cs__input::placeholder { color: rgba(255,255,255,0.4); }
.hc-cs__input:focus { outline: none; border-color: var(--hc-accent); }
.hc-cs__contact { font-size: var(--hc-text-sm); color: rgba(255,255,255,0.5); }
.hc-cs__contact a { color: rgba(255,255,255,0.7); }
.hc-cs__contact a:hover { color: var(--hc-white); }

/* ────────────────────────────────────────────────────────────
   21. MAINTENANCE
   ──────────────────────────────────────────────────────────── */
.hc-mnt-body { margin: 0; }
.hc-mnt {
  min-height: 100vh;
  background: var(--hc-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--hc-space-8);
  text-align: center;
}
.hc-mnt__inner { max-width: 520px; width: 100%; }
.hc-mnt__icon { margin-bottom: var(--hc-space-6); display: flex; justify-content: center; }
.hc-mnt__logo { margin-bottom: var(--hc-space-5); }
.hc-mnt__logo img { margin-inline: auto; }
.hc-mnt__logo-text { font-size: var(--hc-text-xl); font-weight: 800; color: var(--hc-primary); }
.hc-mnt__title { font-size: var(--hc-text-3xl); font-weight: 800; color: var(--hc-primary); margin-bottom: var(--hc-space-4); }
.hc-mnt__desc { font-size: var(--hc-text-base); color: var(--hc-text-muted); line-height: 1.75; margin-bottom: var(--hc-space-6); }
.hc-mnt__contact {
  background: var(--hc-white);
  border: 1px solid var(--hc-gray-100);
  border-radius: var(--hc-radius);
  padding: var(--hc-space-4) var(--hc-space-6);
  margin-bottom: var(--hc-space-6);
  font-size: var(--hc-text-sm);
  color: var(--hc-text-muted);
}
.hc-mnt__contact strong { color: var(--hc-primary); }
.hc-mnt__contact a { color: var(--hc-accent); }
.hc-mnt__copy { font-size: var(--hc-text-xs); color: var(--hc-gray-300); margin-top: var(--hc-space-8); }

/* ────────────────────────────────────────────────────────────
   22. UTILITAIRES ELEMENTOR
   ──────────────────────────────────────────────────────────── */
/* S'assurer qu'Elementor a accès à toutes les couleurs du thème */
.elementor-kit-tag-body {
  --e-global-color-primary:    var(--hc-primary);
  --e-global-color-secondary:  var(--hc-primary-800);
  --e-global-color-text:       var(--hc-text);
  --e-global-color-accent:     var(--hc-accent);
}

/* Pleine largeur Elementor */
.elementor-section.elementor-section-stretched { width: 100% !important; }

/* Padding sur les sections Elementor */
.elementor-section { padding: 0; }

/* ────────────────────────────────────────────────────────────
   23. DIVERS : Empty, Divider, etc.
   ──────────────────────────────────────────────────────────── */
.hc-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--hc-accent), var(--hc-accent-light));
  border-radius: 2px;
  margin-bottom: var(--hc-space-5);
}
.hc-divider--center { margin-inline: auto; }

.hc-empty {
  text-align: center;
  padding: var(--hc-space-16);
  color: var(--hc-text-muted);
}

/* ────────────────────────────────────────────────────────────
   24. RESPONSIVE
   ──────────────────────────────────────────────────────────── */

/* ── Desktop large */
@media (min-width: 1280px) {
  .hc-header__cta { display: inline-flex; }
  .hc-burger { display: none; }
}

/* ── Tablette paysage */
@media (max-width: 1279px) {
  :root { --hc-header-h: 64px; }
  .hc-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--hc-space-10); }
  .hc-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .hc-article-layout { grid-template-columns: 1fr; }
  .hc-article-sidebar { position: static; }
}

/* ── Tablette portrait */
@media (max-width: 1023px) {
  :root { --hc-section-py: var(--hc-space-16); }
  .hc-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .hc-grid--sidebar { grid-template-columns: 1fr; }
  .hc-grid--sidebar-l { grid-template-columns: 1fr; }
  .hc-grid--2-3 { grid-template-columns: 1fr; }
  .hc-footer__top-inner { flex-direction: column; }
  .hc-footer__newsletter-input { min-width: 200px; }
  .hc-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile */
@media (max-width: 767px) {
  :root {
    --hc-section-py: var(--hc-space-12);
    --hc-container: 100%;
  }
  .hc-container { padding-inline: var(--hc-space-5); }
  .hc-nav { display: none; }
  .hc-grid--2, .hc-grid--3, .hc-grid--4 { grid-template-columns: 1fr; }
  .hc-footer__grid { grid-template-columns: 1fr; gap: var(--hc-space-8); }
  .hc-footer__newsletter-row { flex-direction: column; }
  .hc-footer__newsletter-input { min-width: 100%; }
  .hc-article-nav { grid-template-columns: 1fr; }
  .hc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hc-cs__countdown { gap: var(--hc-space-3); }
  .hc-cs__cd-block { min-width: 64px; padding: var(--hc-space-4); }
  .hc-cs__cd-num { font-size: 2rem; }
  .hc-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ── Mobile small */
@media (max-width: 479px) {
  .hc-stats-grid { grid-template-columns: 1fr; }
  .hc-cs__form-row { flex-direction: column; }
}

/* ══════════════════════════════════════════════════════════════════════════
   22. AMÉLIORATIONS PREMIUM v2
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Inner Hero — padding et titre agrandis ─────────────────────────────── */
.hc-inner-hero {
  padding-block: 7.5rem;
}
.hc-inner-hero__title {
  font-size: clamp(var(--hc-text-3xl), 5.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 820px;
}
@media (max-width: 1023px) {
  .hc-inner-hero { padding-block: 5.625rem; }
}
@media (max-width: 767px) {
  .hc-inner-hero { padding-block: 4.375rem; }
  .hc-inner-hero__title { font-size: 2.125rem; }
}

/* ── Breadcrumb en pill ─────────────────────────────────────────────────── */
.hc-breadcrumb {
  display: block;
  margin-bottom: 1.75rem;
}
.hc-bc__list {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}
.hc-bc__item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  min-width: 0;
}
.hc-bc__item a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.hc-bc__item a:hover { color: #fff; }
.hc-bc__item--current {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}
.hc-bc__sep {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  flex-shrink: 0;
  opacity: 1;
}

/* ── HC Page Title widget — styles premium ──────────────────────────────── */
.hc-w-pt {
  position: relative;
  background: linear-gradient(140deg, var(--hc-primary-900, #010f2b) 0%, var(--hc-primary, #011c49) 55%, var(--hc-primary-800, #02286a) 100%);
  overflow: hidden;
}
.hc-w-pt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 75% 50%, rgba(48,149,209,0.14) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hc-w-pt__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hc-w-pt--full-bg {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.hc-w-pt--full-content {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.hc-w-pt__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-inline: auto;
  padding: 7.5rem 1.5rem;
}
.hc-w-pt--full-content .hc-w-pt__inner {
  max-width: 100%;
}
.hc-w-pt__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 0.5625rem 1rem;
  margin-bottom: 1.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}
.hc-w-pt__breadcrumb a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.hc-w-pt__breadcrumb a:hover { color: #fff; }
.hc-w-pt__bc-sep { color: rgba(255,255,255,0.35); font-size: 0.75rem; }
.hc-w-pt__breadcrumb [aria-current="page"] { color: rgba(255,255,255,0.95); font-weight: 600; }
.hc-w-pt__kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hc-accent-light, #5aaedf);
  margin-bottom: 1rem;
}
.hc-w-pt__title {
  font-size: clamp(2.125rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  max-width: 820px;
}
.hc-w-pt__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 580px;
  margin: 0;
}
@media (max-width: 1023px) {
  .hc-w-pt__inner { padding-block: 5.625rem; }
  .hc-w-pt__title { font-size: clamp(1.875rem, 4.5vw, 2.75rem); }
}
@media (max-width: 767px) {
  .hc-w-pt__inner { padding-block: 4.375rem; }
  .hc-w-pt__title { font-size: 2.125rem; }
}

/* ── Utilitaires full-width ─────────────────────────────────────────────── */
.hc-full-width-bg {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.hc-full-width-content {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-inline: 1.5rem;
}
.hc-full-width-bg > .hc-inner-container {
  max-width: var(--hc-container, 1200px);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── Grilles — responsive amélioré ─────────────────────────────────────── */
@media (max-width: 1023px) {
  .hc-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .hc-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .hc-grid--auto-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
  .hc-grid--2,
  .hc-grid--3,
  .hc-grid--4,
  .hc-grid--auto-3,
  .hc-grid--auto-4 { grid-template-columns: 1fr; }
}

/* ── HC Dynamic Page Title (.hc-w-dpt) — même design que .hc-w-pt ─────────── */
.hc-w-dpt {
  position: relative;
  background: linear-gradient(140deg, var(--hc-primary-900, #010f2b) 0%, var(--hc-primary, #011c49) 55%, var(--hc-primary-800, #02286a) 100%);
  overflow: hidden;
}
.hc-w-dpt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 75% 50%, rgba(48, 149, 209, 0.14) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hc-w-dpt__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hc-w-dpt--full-bg {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.hc-w-dpt--full-content {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.hc-w-dpt__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-inline: auto;
  padding: 7.5rem 1.5rem;
}
.hc-w-dpt--full-content .hc-w-dpt__inner {
  max-width: 100%;
}

/* Kicker */
.hc-w-dpt__kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hc-accent-light, #5aaedf);
  margin-bottom: 1rem;
}

/* Titre */
.hc-w-dpt__title {
  font-size: clamp(2.125rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  max-width: 820px;
}

/* Description */
.hc-w-dpt__desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 580px;
  margin: 0;
}

/* Breadcrumb pill */
.hc-w-dpt__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.5625rem 1rem;
  margin-top: 1.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}
.hc-w-dpt__breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.hc-w-dpt__breadcrumb a:hover { color: #fff; }
.hc-w-dpt__bc-sep { color: rgba(255, 255, 255, 0.35); font-size: 0.75rem; }
.hc-w-dpt__breadcrumb [aria-current="page"] { color: rgba(255, 255, 255, 0.95); font-weight: 600; }

/* Responsive */
@media (max-width: 1023px) {
  .hc-w-dpt__inner { padding-block: 5.625rem; }
  .hc-w-dpt__title { font-size: clamp(1.875rem, 4.5vw, 2.75rem); }
}
@media (max-width: 767px) {
  .hc-w-dpt__inner { padding-block: 4.375rem; }
  .hc-w-dpt__title { font-size: 2.125rem; }
  .hc-w-dpt__breadcrumb { white-space: normal; text-align: left; }
}

/* ── Layout sidebar 70/30 ───────────────────────────────────────────────────── */
.hc-layout-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2.5rem;
  align-items: start;
}
.hc-layout-with-sidebar--left {
  grid-template-columns: 300px minmax(0, 1fr);
}
.hc-cpt-main-content { min-width: 0; }
.hc-sidebar { min-width: 0; }

@media (max-width: 1023px) {
  .hc-layout-with-sidebar,
  .hc-layout-with-sidebar--left {
    grid-template-columns: 1fr;
  }
  .hc-layout-with-sidebar--left .hc-sidebar { order: -1; }
}

/* ── Sidebar widgets ────────────────────────────────────────────────────────── */
.hc-sidebar-widget {
  background: #fff;
  border: 1px solid rgba(1,28,73,0.07);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(1,28,73,0.04);
}
.hc-sidebar-widget__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--hc-primary, #011c49);
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 2px solid var(--hc-accent, #3095d1);
}

/* Services list */
.hc-sidebar-services__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hc-sidebar-services__item a,
.hc-sidebar-services__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--hc-text, #1a2135);
  text-decoration: none;
  padding: 0.5rem 0.625rem;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.hc-sidebar-services__item a:hover {
  background: rgba(48,149,209,0.08);
  color: var(--hc-primary, #011c49);
}
.hc-sidebar-services__arrow {
  color: var(--hc-accent, #3095d1);
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Projects list */
.hc-sidebar-projects__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.hc-sidebar-projects__item a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  padding: 0.375rem 0;
  transition: opacity 0.18s;
}
.hc-sidebar-projects__item a:hover { opacity: 0.75; }
.hc-sidebar-projects__thumb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(1,28,73,0.05);
}
.hc-sidebar-projects__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hc-sidebar-projects__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hc-primary, #011c49);
  line-height: 1.35;
}

/* Jobs list */
.hc-sidebar-jobs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hc-sidebar-jobs__item a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
  padding: 0.625rem 0.75rem;
  border-radius: 10px;
  border-left: 3px solid var(--hc-accent, #3095d1);
  background: rgba(48,149,209,0.04);
  transition: background 0.18s;
}
.hc-sidebar-jobs__item a:hover { background: rgba(48,149,209,0.1); }
.hc-sidebar-jobs__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hc-primary, #011c49);
  line-height: 1.35;
}
.hc-sidebar-jobs__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hc-sidebar-jobs__loc {
  font-size: 0.75rem;
  color: var(--hc-text-muted, #6b7a99);
}
.hc-badge--xs { font-size: 0.6875rem; padding: 0.125rem 0.5rem; }

/* CTA block inside sidebar widget */
.hc-sidebar-widget__cta { margin-top: 1.25rem; }

/* Breadcrumb pill margin when placed below title inside .hc-w-pt */
.hc-w-pt .hc-breadcrumb { margin-top: 1rem; }
.hc-w-pt .hc-bc__list { margin: 0; }

/* ── Elementor Sidebar Widgets — base commune ──────────────────────────────── */

/* Wrappers flex column */
.hc-w-blsb,
.hc-w-svsb,
.hc-w-prjsb,
.hc-w-jobsb {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Bloc individuel */
.hc-sb-block {
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

/* Titres bloc */
.hc-sb-block__title {
  font-size: 1rem;
  font-weight: 700;
  color: #011c49;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(1, 28, 73, 0.07);
  letter-spacing: -0.01em;
}

/* ── Bloc Recherche ────────────────────────────────────────────────────────── */
.hc-sb-search__form {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(1, 28, 73, 0.14);
  border-radius: 12px;
  overflow: hidden;
  background: #f7f8fb;
  transition: border-color 0.2s;
}
.hc-sb-search__form:focus-within { border-color: #3095d1; }
.hc-sb-search__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: #1a2135;
  outline: none;
}
.hc-sb-search__input::placeholder { color: #9aa2b4; }
.hc-sb-search__btn {
  padding: 10px 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7a99;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.hc-sb-search__btn:hover { color: #3095d1; }

/* ── Bloc Catégories / Secteurs ────────────────────────────────────────────── */
.hc-sb-cats__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hc-sb-cats__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.875rem;
  color: #1a2135;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.hc-sb-cats__item a:hover { background: rgba(48, 149, 209, 0.08); color: #3095d1; }
.hc-sb-cats__item.is-active a { background: rgba(48, 149, 209, 0.12); color: #3095d1; font-weight: 600; }
.hc-sb-cats__count {
  font-size: 0.75rem;
  color: #9aa2b4;
  background: rgba(1, 28, 73, 0.06);
  border-radius: 100px;
  padding: 1px 7px;
  min-width: 22px;
  text-align: center;
}

/* ── Bloc Tags ─────────────────────────────────────────────────────────────── */
.hc-sb-tags__cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hc-sb-tags__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.8125rem;
  color: #4a5568;
  background: rgba(1, 28, 73, 0.05);
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1.3;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.hc-sb-tags__tag:hover {
  background: rgba(48, 149, 209, 0.1);
  color: #3095d1;
  border-color: rgba(48, 149, 209, 0.25);
}
.hc-sb-tags__tag.is-active {
  background: #3095d1;
  color: #fff;
  border-color: #3095d1;
}
.hc-sb-tags__count {
  font-size: 0.7rem;
  opacity: 0.7;
  font-weight: 600;
}

/* ── Bloc Articles récents ─────────────────────────────────────────────────── */
.hc-sb-recent__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hc-sb-recent__link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.hc-sb-recent__img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.hc-sb-recent__img img { width: 100%; height: 100%; object-fit: cover; }
.hc-sb-recent__meta { display: flex; flex-direction: column; gap: 3px; }
.hc-sb-recent__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a2135;
  line-height: 1.3;
  transition: color 0.15s;
}
.hc-sb-recent__link:hover .hc-sb-recent__title { color: #3095d1; }
.hc-sb-recent__date { font-size: 0.75rem; color: #6b7a99; }

/* ── Bloc CTA ──────────────────────────────────────────────────────────────── */
.hc-sb-cta {
  background: linear-gradient(135deg, #001B3F 0%, #003B7A 100%) !important;
  border-color: transparent !important;
  padding: 28px !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hc-sb-cta__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}
.hc-sb-cta__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  margin: 0;
}
.hc-sb-cta__btn {
  margin-top: 4px;
  background: #ffffff;
  color: #001B3F;
  border-color: #ffffff;
  align-self: flex-start;
}
.hc-sb-cta__btn:hover {
  background: #2EA8DF;
  border-color: #2EA8DF;
  color: #ffffff;
}

/* ── Bloc Newsletter ───────────────────────────────────────────────────────── */
.hc-sb-newsletter__text { font-size: 0.875rem; color: #6b7a99; margin: 0 0 14px; }
.hc-sb-newsletter__form { margin-top: 4px; }

/* ── Liste Services ────────────────────────────────────────────────────────── */
.hc-sb-svc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hc-sb-svc__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 0.875rem;
  color: #1a2135;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.hc-sb-svc__link:hover { background: rgba(48, 149, 209, 0.08); color: #3095d1; }
.hc-sb-svc__item.is-active .hc-sb-svc__link {
  background: rgba(48, 149, 209, 0.1);
  color: #3095d1;
  font-weight: 600;
}
.hc-sb-svc__arrow { color: #3095d1; display: flex; align-items: center; flex-shrink: 0; }
.hc-sb-svc__icon { font-size: 0.875rem; color: #3095d1; }

/* ── Bloc Méthodologie ─────────────────────────────────────────────────────── */
.hc-sb-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: none;
}
.hc-sb-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hc-sb-step__num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #011c49;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.hc-sb-step__label {
  font-size: 0.875rem;
  color: #1a2135;
  line-height: 1.4;
}

/* ── Bloc Contact rapide ───────────────────────────────────────────────────── */
.hc-sb-contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hc-sb-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hc-sb-contact__icon {
  flex-shrink: 0;
  color: #3095d1;
  display: flex;
  align-items: center;
  margin-top: 2px;
}
.hc-sb-contact__icon--wa { color: #25d366; }
.hc-sb-contact__link {
  font-size: 0.875rem;
  color: #1a2135;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.15s;
}
.hc-sb-contact__link:hover { color: #3095d1; }
.hc-sb-contact__item--avail .hc-sb-contact__link { color: #6b7a99; cursor: default; }

/* ── Projets récents (Project Sidebar) ─────────────────────────────────────── */
.hc-sb-prj__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }

/* Layout vertical */
.hc-sb-prj-card--v { display: flex; flex-direction: column; gap: 10px; }
.hc-sb-prj-card--v .hc-sb-prj__img {
  display: block;
  width: 100%;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}
.hc-sb-prj-card--v .hc-sb-prj__img img { width: 100%; height: 100%; object-fit: cover; }

/* Layout horizontal */
.hc-sb-prj-card--h { display: flex; align-items: flex-start; gap: 12px; }
.hc-sb-prj-card--h .hc-sb-prj__thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.hc-sb-prj-card--h .hc-sb-prj__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Corps + titre */
.hc-sb-prj__body { display: flex; flex-direction: column; gap: 5px; }
.hc-sb-prj__title { margin: 0; }
.hc-sb-prj__title a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a2135;
  text-decoration: none;
  transition: color 0.15s;
}
.hc-sb-prj__title a:hover { color: #3095d1; }

/* Layout mini */
.hc-sb-prj-card--mini .hc-sb-prj__body { flex-direction: row; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ── Offres (Job Sidebar) ───────────────────────────────────────────────────── */
.hc-sb-jobs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hc-sb-job-item {
  padding: 10px 12px;
  border-left: 3px solid #3095d1;
  background: #f7f8fb;
  border-radius: 0 10px 10px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: background 0.15s;
}
.hc-sb-job-item:hover,
.hc-sb-job-item.is-active { background: rgba(48, 149, 209, 0.1); }
.hc-sb-job-item__title { margin: 0; }
.hc-sb-job-item__title a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a2135;
  text-decoration: none;
  transition: color 0.15s;
}
.hc-sb-job-item__title a:hover { color: #3095d1; }
.hc-sb-job-item__meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.hc-sb-job-item__loc { font-size: 0.75rem; color: #6b7a99; display: flex; align-items: center; gap: 3px; }

/* ── Culture & Valeurs (Job Sidebar) ───────────────────────────────────────── */
.hc-sb-values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.hc-sb-value {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hc-sb-value__icon {
  flex-shrink: 0;
  color: #3095d1;
  display: flex;
  align-items: center;
  margin-top: 2px;
  font-size: 0.875rem;
}
.hc-sb-value__text { font-size: 0.875rem; color: #1a2135; line-height: 1.4; }

/* ── Contact RH ─────────────────────────────────────────────────────────────── */
.hc-sb-hr-contact__name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b7a99;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
}

/* ── Candidature spontanée (variante CTA) ──────────────────────────────────── */
.hc-sb-spontaneous {
  background: linear-gradient(135deg, #001B3F 0%, #003B7A 100%) !important;
  border-color: transparent !important;
}

/* ══════════════════════════════════════════════════════════════════════════════
   HC Company Snapshot (.hc-w-csnap)
   ══════════════════════════════════════════════════════════════════════════════ */

.hc-w-csnap { padding: 5rem 1.5rem; }

.hc-csnap__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
}
.hc-csnap__grid--above {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
.hc-csnap__grid--above .hc-csnap__badge-wrap {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}
.hc-csnap__grid--above .hc-csnap__points {
  grid-column: 2;
  grid-row: 2;
}

/* Texte */
.hc-csnap__kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3095d1;
  margin-bottom: 1rem;
}
.hc-csnap__title {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  color: #011c49;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
}
.hc-csnap__desc {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0 0 1.75rem;
}
.hc-csnap__btn {
  display: inline-flex;
  align-items: center;
}

/* Badge */
.hc-csnap__badge-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hc-csnap__badge-line {
  position: absolute;
  background: rgba(48, 149, 209, 0.2);
}
.hc-csnap__badge-line--h {
  width: 140%;
  height: 1px;
  top: 50%;
  left: -20%;
}
.hc-csnap__badge-line--v {
  width: 1px;
  height: 140%;
  left: 50%;
  top: -20%;
}
.hc-csnap__badge-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #011c49 0%, #003B7A 100%);
  border: 2px solid rgba(48, 149, 209, 0.35);
  box-shadow: 0 8px 32px rgba(1, 28, 73, 0.22), 0 0 0 8px rgba(48, 149, 209, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.hc-csnap__badge-main {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.hc-csnap__badge-sub {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 0 8px;
}
.hc-csnap__badge-icon { font-size: 2.5rem; color: #fff; }
.hc-csnap__badge-img { width: 60%; height: 60%; object-fit: contain; }

/* Points */
.hc-csnap__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hc-csnap__point {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(1, 28, 73, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 1px 4px rgba(1, 28, 73, 0.05);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.hc-csnap__point:hover {
  box-shadow: 0 4px 16px rgba(1, 28, 73, 0.1);
  transform: translateY(-2px);
}
.hc-csnap__point-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #011c49;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.03em;
}
.hc-csnap__point-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hc-csnap__point-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #011c49;
  line-height: 1.3;
}
.hc-csnap__point-desc { font-size: 0.8125rem; color: #6b7a99; }
.hc-csnap__point-icon { margin-left: auto; flex-shrink: 0; color: #3095d1; font-size: 0.875rem; }

/* ── Accordion Company Snapshot */
.hc-csnap__acc-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hc-csnap__acc-item {
  background-color: #ffffff;
  border: 1px solid rgba(1, 28, 73, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.hc-csnap__acc-item.is-open {
  background-color: rgba(48, 149, 209, 0.05);
  border-color: #3095d1;
}
.hc-csnap__acc-item:hover:not(.is-open) {
  box-shadow: 0 4px 16px rgba(1, 28, 73, 0.08);
}

.hc-csnap__acc-hd {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.hc-csnap__acc-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #011c49;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.hc-csnap__acc-item.is-open .hc-csnap__acc-num {
  background-color: #3095d1;
}

.hc-csnap__acc-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: rgba(48, 149, 209, 0.1);
  color: #3095d1;
  font-size: 1rem;
}

.hc-csnap__acc-title {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #011c49;
  line-height: 1.3;
  transition: color 0.25s ease;
}
.hc-csnap__acc-item.is-open .hc-csnap__acc-title {
  color: #3095d1;
}

/* Toggle — chevron */
.hc-csnap__acc-toggle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: auto;
  color: #011c49;
  transition: transform 0.3s ease, color 0.25s ease;
}
.hc-csnap__acc-item.is-open .hc-csnap__acc-toggle--chevron {
  transform: rotate(180deg);
}
/* Toggle — plus/minus */
.hc-csnap__acc-toggle--pm .hc-csnap__toggle-v {
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.hc-csnap__acc-item.is-open .hc-csnap__acc-toggle--pm .hc-csnap__toggle-v {
  opacity: 0;
  transform: scaleY(0);
}

/* Corps */
.hc-csnap__acc-body { overflow: hidden; }
.hc-csnap__acc-body-inner {
  padding: 0 20px 16px;
}
.hc-csnap__acc-desc {
  font-size: 0.875rem;
  color: #6b7a99;
  line-height: 1.65em;
}
.hc-csnap__acc-desc p { margin: 0 0 0.6em; }
.hc-csnap__acc-desc p:last-child { margin-bottom: 0; }
.hc-csnap__acc-link {
  margin-top: 10px;
  font-size: 0.875rem;
  color: #3095d1;
}
.hc-csnap__acc-link:hover { color: #1a7ab5; }

@media (max-width: 1023px) {
  .hc-csnap__grid {
    grid-template-columns: 1fr;
  }
  .hc-csnap__badge-wrap { order: -1; }
  .hc-csnap__badge-line { display: none; }
  .hc-csnap__grid--above { grid-template-columns: 1fr; }
  .hc-csnap__grid--above .hc-csnap__badge-wrap,
  .hc-csnap__grid--above .hc-csnap__points,
  .hc-csnap__grid--above .hc-csnap__acc-wrap { grid-column: 1; grid-row: auto; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   HC Method Steps Split (.hc-w-mstep)
   ══════════════════════════════════════════════════════════════════════════════ */

.hc-w-mstep { padding: 5rem 1.5rem; background: #f8fafc; }

.hc-mstep__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
}
.hc-mstep__grid--two-col {
  grid-template-columns: 1fr 1fr;
}
.hc-mstep__grid--steps {
  grid-template-columns: 1fr;
}

/* Intro */
.hc-mstep__kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3095d1;
  margin-bottom: 1rem;
}
.hc-mstep__title {
  font-size: clamp(1.375rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #011c49;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
}
.hc-mstep__desc {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0 0 1.75rem;
}
.hc-mstep__btn { display: inline-flex; align-items: center; }

/* Badge */
.hc-mstep__badge-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hc-mstep__deco-line {
  position: absolute;
  background: rgba(48, 149, 209, 0.2);
}
.hc-mstep__deco-line--h {
  width: 160%;
  height: 1px;
  top: 50%;
  left: -30%;
}
.hc-mstep__deco-line--v {
  width: 1px;
  height: 160%;
  left: 50%;
  top: -30%;
}
.hc-mstep__badge-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #011c49 0%, #013a7a 100%);
  border: 2px solid rgba(48, 149, 209, 0.3);
  box-shadow: 0 8px 32px rgba(1, 28, 73, 0.2), 0 0 0 10px rgba(48, 149, 209, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
  z-index: 1;
}
.hc-mstep__badge-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.hc-mstep__badge-label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 0 6px;
}
.hc-mstep__badge-icon { font-size: 2rem; color: #fff; margin-bottom: 4px; }

/* Étapes */
.hc-mstep__steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hc-mstep__step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #001B3F;
  border-radius: 14px;
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
a.hc-mstep__step:hover {
  background: #002a5c;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(1, 28, 73, 0.2);
}
.hc-mstep__step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #003B7A;
  color: #5aaedf;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hc-mstep__step-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.hc-mstep__step-icon { font-size: 1rem; color: #5aaedf; margin-bottom: 2px; }
.hc-mstep__step-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}
.hc-mstep__step-desc { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.62); }

/* ── Accordion Method Steps Split */
.hc-mstep__acc-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hc-mstep__acc-item {
  background-color: #001B3F;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.hc-mstep__acc-item.is-open {
  background-color: #003B7A;
  border-color: rgba(46, 168, 223, 0.5);
}
.hc-mstep__acc-item:hover:not(.is-open) {
  background-color: #002550;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hc-mstep__acc-hd {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.hc-mstep__acc-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #003B7A;
  color: #5aaedf;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.hc-mstep__acc-item.is-open .hc-mstep__acc-num {
  background-color: #2EA8DF;
  color: #ffffff;
}

.hc-mstep__acc-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5aaedf;
  font-size: 1rem;
}

.hc-mstep__acc-title {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  transition: color 0.25s ease;
}
.hc-mstep__acc-item.is-open .hc-mstep__acc-title {
  color: #5aaedf;
}

/* Toggle — chevron */
.hc-mstep__acc-toggle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.45);
  transition: transform 0.3s ease, color 0.25s ease;
}
.hc-mstep__acc-item.is-open .hc-mstep__acc-toggle {
  color: #5aaedf;
}
.hc-mstep__acc-item.is-open .hc-mstep__acc-toggle--chevron {
  transform: rotate(180deg);
}
/* Toggle — plus/minus */
.hc-mstep__acc-toggle--pm .hc-mstep__toggle-v {
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.hc-mstep__acc-item.is-open .hc-mstep__acc-toggle--pm .hc-mstep__toggle-v {
  opacity: 0;
  transform: scaleY(0);
}

/* Corps */
.hc-mstep__acc-body { overflow: hidden; }
.hc-mstep__acc-body-inner {
  padding: 0 20px 18px;
}
.hc-mstep__acc-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65em;
}
.hc-mstep__acc-desc p { margin: 0 0 0.6em; }
.hc-mstep__acc-desc p:last-child { margin-bottom: 0; }
.hc-mstep__acc-link {
  margin-top: 10px;
  font-size: 0.875rem;
  color: #5aaedf;
}
.hc-mstep__acc-link:hover { color: #2EA8DF; }

@media (max-width: 1023px) {
  .hc-mstep__grid {
    grid-template-columns: 1fr;
  }
  .hc-mstep__badge-wrap { order: -1; }
  .hc-mstep__deco-line { display: none; }
  .hc-mstep__grid--two-col { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .hc-csnap__acc-hd { padding: 14px 16px; gap: 10px; }
  .hc-csnap__acc-body-inner { padding: 0 16px 14px; }
  .hc-csnap__acc-num { width: 30px; height: 30px; font-size: 0.6875rem; }
  .hc-mstep__acc-hd { padding: 14px 16px; gap: 10px; }
  .hc-mstep__acc-body-inner { padding: 0 16px 14px; }
  .hc-mstep__acc-num { width: 34px; height: 34px; font-size: 0.75rem; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   HC Company Intro Image (.hc-w-ciimg)
   ══════════════════════════════════════════════════════════════════════════════ */

.hc-w-ciimg { padding: 5rem 1.5rem; }

.hc-ciimg__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
}
.hc-ciimg__grid--img-left .hc-ciimg__media  { order: -1; }
.hc-ciimg__grid--img-right .hc-ciimg__media { order: 1; }

/* Texte */
.hc-ciimg__kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3095d1;
  margin-bottom: 1rem;
}
.hc-ciimg__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #011c49;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
}
.hc-ciimg__desc {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.75;
  margin: 0 0 1.75rem;
}

/* Points */
.hc-ciimg__points {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hc-ciimg__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hc-ciimg__point-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(48, 149, 209, 0.1);
  color: #3095d1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 1px;
  transition: background 0.2s, color 0.2s;
}
.hc-ciimg__point-icon i,
.hc-ciimg__point-icon svg {
  color: inherit;
  font-size: inherit;
  fill: currentColor;
  width: 1em;
  height: 1em;
}
.hc-ciimg__point-text { font-size: 0.9375rem; color: #1a2135; font-weight: 500; line-height: 1.5; }
.hc-ciimg__btn { display: inline-flex; align-items: center; }

/* Image */
.hc-ciimg__media { position: relative; }
.hc-ciimg__img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.hc-ciimg__img-wrap--portrait  { aspect-ratio: 3 / 4; }
.hc-ciimg__img-wrap--square    { aspect-ratio: 1 / 1; }
.hc-ciimg__img-wrap--4-3       { aspect-ratio: 4 / 3; }
.hc-ciimg__img-wrap--16-9      { aspect-ratio: 16 / 9; }
.hc-ciimg__img-wrap--auto      { height: 100%; min-height: 420px; }
.hc-ciimg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hc-ciimg__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 28, 73, 0.25);
  pointer-events: none;
}

/* Card flottante */
.hc-ciimg__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(1, 28, 73, 0.08);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(1, 28, 73, 0.12);
  z-index: 2;
  min-width: 180px;
}
.hc-ciimg__float-card--bottom-left  { bottom: -20px; left: -20px; }
.hc-ciimg__float-card--bottom-right { bottom: -20px; right: -20px; }
.hc-ciimg__float-card--top-left     { top: -20px;    left: -20px; }
.hc-ciimg__float-card--top-right    { top: -20px;    right: -20px; }
.hc-ciimg__float-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(48, 149, 209, 0.1);
  color: #3095d1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.hc-ciimg__float-body { display: flex; flex-direction: column; gap: 2px; }
.hc-ciimg__float-title { font-size: 0.875rem; font-weight: 700; color: #011c49; }
.hc-ciimg__float-text  { font-size: 0.75rem; color: #6b7a99; }

@media (max-width: 1023px) {
  .hc-ciimg__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hc-ciimg__grid--img-left .hc-ciimg__media  { order: 1; }
  .hc-ciimg__float-card--bottom-left,
  .hc-ciimg__float-card--top-left  { left: 12px; }
  .hc-ciimg__float-card--bottom-right,
  .hc-ciimg__float-card--top-right { right: 12px; }
  .hc-ciimg__float-card--bottom-left,
  .hc-ciimg__float-card--bottom-right { bottom: 12px; }
  .hc-ciimg__float-card--top-left,
  .hc-ciimg__float-card--top-right    { top: 12px; }
}
@media (max-width: 767px) {
  .hc-ciimg__img-wrap--portrait { aspect-ratio: 4 / 3; }
  .hc-w-csnap,
  .hc-w-mstep,
  .hc-w-ciimg { padding: 3.5rem 1.25rem; }
}

/* ═══════════════════════════════════════════════════════
   HC FAQ ACCORDION  (.hc-w-faq)
═══════════════════════════════════════════════════════ */
.hc-w-faq {
  width: 100%;
}

/* ── En-tête */
.hc-faq__header {
  margin-bottom: 40px;
}
.hc-faq__kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3095d1;
  margin-bottom: 12px;
}
.hc-faq__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #011c49;
  margin: 0 0 12px;
  line-height: 1.25;
}
.hc-faq__desc {
  font-size: 1rem;
  color: #6b7a99;
  margin: 0;
  line-height: 1.65;
}

/* ── Liste */
.hc-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Item */
.hc-faq__item {
  background: #ffffff;
  border: 1.5px solid #e8edf5;
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.hc-faq__item.is-open {
  background: #f0f7ff;
  border-color: #3095d1;
  box-shadow: 0 4px 20px rgba(48, 149, 209, 0.12);
}

/* ── Bouton question */
.hc-faq__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  color: #011c49;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.hc-faq__btn:hover { color: #3095d1; }
.hc-faq__btn--icon-left  { flex-direction: row-reverse; }
.hc-faq__q-text { flex: 1; }

/* ── Conteneur icône */
.hc-faq__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: transparent;
  transition: background-color 0.25s ease;
  flex-shrink: 0;
}
.hc-faq__item.is-open .hc-faq__icon-wrap {
  background: #e8f4fd;
}

/* ── Icônes SVG */
.hc-faq__icon { display: flex; align-items: center; justify-content: center; color: #011c49; transition: color 0.25s ease; }
.hc-faq__item.is-open .hc-faq__icon { color: #3095d1; }

/* Plus/Minus toggle */
.hc-faq__icon--pm { position: relative; width: 18px; height: 18px; }
.hc-faq__icon--pm .hc-faq__icon-plus,
.hc-faq__icon--pm .hc-faq__icon-minus { position: absolute; inset: 0; transition: opacity 0.2s ease, transform 0.2s ease; }
.hc-faq__icon--pm .hc-faq__icon-plus  { opacity: 1; transform: rotate(0deg); }
.hc-faq__icon--pm .hc-faq__icon-minus { opacity: 0; }
.hc-faq__item.is-open .hc-faq__icon--pm .hc-faq__icon-plus  { opacity: 0; transform: rotate(90deg); }
.hc-faq__item.is-open .hc-faq__icon--pm .hc-faq__icon-minus { opacity: 1; }

/* Chevron rotate */
.hc-faq__icon--chevron svg,
.hc-faq__icon--arrow svg {
  transition: transform 0.3s ease;
}
.hc-faq__item.is-open .hc-faq__icon--chevron svg { transform: rotate(180deg); }
.hc-faq__item.is-open .hc-faq__icon--arrow svg   { transform: rotate(180deg); }

/* ── Panneau réponse */
.hc-faq__answer { overflow: hidden; }
.hc-faq__answer[hidden] { display: none; }
.hc-faq__answer-inner {
  padding: 0 24px 24px;
  color: #4a5568;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.hc-faq__answer-inner p:last-child { margin-bottom: 0; }

/* ── Responsive */
@media (max-width: 767px) {
  .hc-faq__btn { padding: 16px 18px; font-size: 0.9375rem; }
  .hc-faq__answer-inner { padding: 0 18px 18px; }
  .hc-faq__title { font-size: 1.375rem; }
}

/* ═══════════════════════════════════════════════════════
   HC DYNAMIC DETAIL CONTENT  (.hc-w-ddc)
═══════════════════════════════════════════════════════ */
.hc-w-ddc {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

/* ── Image principale */
.hc-ddc__image-section {
  margin-bottom: 40px;
  width: 100%;
}
.hc-ddc__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}
.hc-ddc__img-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.hc-ddc__img-caption {
  margin-top: 10px;
  font-size: 0.8125rem;
  color: #8a9bb0;
  text-align: center;
  font-style: italic;
}

/* image inline left/right */
.hc-ddc__image--left,
.hc-ddc__image--right {
  float: left;
  width: 44%;
  margin-right: 32px;
  margin-bottom: 16px;
}
.hc-ddc__image--right {
  float: right;
  margin-right: 0;
  margin-left: 32px;
}

/* ── Paragraphes */
.hc-ddc__paragraphs {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 48px;
}
.hc-ddc__para-block { max-width: 100%; }
.hc-ddc__para-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3095d1;
  margin-bottom: 10px;
}
.hc-ddc__para-title {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: #011c49;
  margin: 0 0 16px;
  line-height: 1.3;
}
.hc-ddc__para-body {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.75;
}
.hc-ddc__para-body p:last-child { margin-bottom: 0; }
.hc-ddc__para-body ul,
.hc-ddc__para-body ol {
  padding-left: 1.5em;
  margin: 0.75em 0;
}
.hc-ddc__para-body li { margin-bottom: 0.4em; }
.hc-ddc__para-sep {
  border: none;
  border-top: 1.5px solid #e8edf5;
  margin-top: 24px;
}

/* ── Section cartes */
.hc-ddc__cards-section {
  background: #f8fafc;
  border-radius: 24px;
  padding: 56px 40px;
  margin-bottom: 48px;
}
.hc-ddc__cards-header {
  text-align: center;
  margin-bottom: 40px;
}
.hc-ddc__cards-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3095d1;
  margin-bottom: 10px;
}
.hc-ddc__cards-title {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #011c49;
  margin: 0 0 12px;
}
.hc-ddc__cards-desc {
  font-size: 1rem;
  color: #6b7a99;
  margin: 0;
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.65;
}

/* ── Grille cartes */
.hc-ddc__cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hc-ddc__cards--list {
  grid-template-columns: 1fr;
}
.hc-ddc__cards--horizontal {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 24px;
  padding-bottom: 8px;
}
.hc-ddc__cards--horizontal .hc-ddc__card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

/* ── Carte individuelle */
.hc-ddc__card {
  background: #ffffff;
  border: 1.5px solid #e8edf5;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  text-decoration: none;
  color: inherit;
}
a.hc-ddc__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(1, 28, 73, 0.1);
  border-color: #3095d1;
}

.hc-ddc__card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  background: #e8f4fd;
  margin-bottom: 4px;
  transition: background-color 0.25s ease;
}
.hc-ddc__card-icon-wrap i,
.hc-ddc__card-icon-wrap svg { font-size: 24px; color: #3095d1; fill: #3095d1; width: 24px; height: 24px; }

.hc-ddc__card-img-wrap { width: 100%; border-radius: 12px; overflow: hidden; }
.hc-ddc__card-img-wrap img { width: 100%; height: auto; display: block; }

.hc-ddc__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #011c49;
  margin: 0;
  line-height: 1.3;
}
.hc-ddc__card-desc {
  font-size: 0.875rem;
  color: #6b7a99;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}
.hc-ddc__card-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #3095d1;
  margin-top: auto;
}

/* ── FAQ intégrée */
.hc-ddc__faq-section {
  margin-bottom: 48px;
}
.hc-ddc__faq-header {
  margin-bottom: 28px;
}
.hc-ddc__faq-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3095d1;
  margin-bottom: 8px;
}
.hc-ddc__faq-title {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: #011c49;
  margin: 0;
}
.hc-ddc__faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hc-ddc__faq-item {
  background: #ffffff;
  border: 1.5px solid #e8edf5;
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.hc-ddc__faq-item.is-open {
  background: #f0f7ff;
  border-color: #3095d1;
}
.hc-ddc__faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 14px;
  color: #011c49;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s;
}
.hc-ddc__faq-btn:hover { color: #3095d1; }
.hc-ddc__faq-item.is-open .hc-ddc__faq-btn { color: #3095d1; }
.hc-ddc__faq-q-text { flex: 1; }
.hc-ddc__faq-icon-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; min-width: 32px; border-radius: 50%;
  background: transparent; transition: background-color 0.25s;
}
.hc-ddc__faq-item.is-open .hc-ddc__faq-icon-wrap { background: #e8f4fd; }
.hc-ddc__faq-icon-pm {
  font-size: 13px; line-height: 1; display: block;
  color: #011c49;
  transition: transform 0.25s ease, color 0.25s ease;
}
.hc-ddc__faq-item.is-open .hc-ddc__faq-icon-pm { transform: rotate(45deg); color: #3095d1; }
.hc-ddc__faq-answer { overflow: hidden; }
.hc-ddc__faq-answer[hidden] { display: none; }
.hc-ddc__faq-answer-inner {
  padding: 0 22px 20px;
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.7;
}
.hc-ddc__faq-answer-inner p:last-child { margin-bottom: 0; }

/* ── Méta bar (top) */
.hc-ddc__meta-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.hc-ddc__meta-badge {
  display: inline-flex; align-items: center;
  padding: 4px 14px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
  text-decoration: none; line-height: 1.4; white-space: nowrap;
  transition: opacity 0.2s;
}
.hc-ddc__meta-badge--accent { background: #3095d1; color: #fff; }
.hc-ddc__meta-badge--accent:hover { opacity: 0.85; }
.hc-ddc__meta-badge--outline {
  background: transparent; color: #4a5568;
  border: 1px solid #d0d9e8;
}
.hc-ddc__meta-badge--outline:hover { border-color: #3095d1; color: #3095d1; }
.hc-ddc__meta-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; color: #4a5568;
}
.hc-ddc__meta-icon { color: #3095d1; font-size: 13px; }

/* ── Méta bottom (tags + partage) */
.hc-ddc__meta-bottom {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 20px; padding: 24px 0;
  border-top: 1px solid #e8edf5;
  margin-bottom: 32px;
}
.hc-ddc__meta-tags, .hc-ddc__meta-share {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.hc-ddc__meta-label {
  font-size: 0.8125rem; font-weight: 600; color: #4a5568; white-space: nowrap;
}
.hc-ddc__meta-share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #f0f4f8; color: #4a5568;
  text-decoration: none; font-size: 14px;
  transition: background 0.2s, color 0.2s;
}
.hc-ddc__meta-share-btn:hover { background: #3095d1; color: #fff; }

/* ── Formulaire candidature */
.hc-ddc__form-section {
  background: #f8fafc;
  border-radius: 20px;
  padding: 40px;
}
.hc-ddc__form-header { margin-bottom: 24px; }
.hc-ddc__form-title {
  font-size: 1.375rem; font-weight: 700; color: #011c49; margin: 0 0 8px;
}
.hc-ddc__form-subtitle {
  color: #6b7a99; font-size: 0.9375rem; margin: 0;
}
.hc-ddc__form-body { }

/* ── CTA */
.hc-ddc__cta {
  background: linear-gradient(135deg, #001B3F 0%, #003B7A 100%);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  margin-top: 16px;
}
.hc-ddc__cta-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hc-ddc__cta-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hc-ddc__cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
}
.hc-ddc__cta-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
  line-height: 1.65;
}
.hc-ddc__cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.hc-ddc__cta-btn {
  background: var(--hc-accent);
  border-color: var(--hc-accent);
}
.hc-ddc__cta-btn:hover {
  background: var(--hc-accent-dark);
  border-color: var(--hc-accent-dark);
}
.hc-ddc__cta-btn2 {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.45);
}
.hc-ddc__cta-btn2:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.85);
  color: #ffffff;
}

/* ── Responsive DDC */
@media (max-width: 1023px) {
  .hc-ddc__cards-grid { grid-template-columns: repeat(2, 1fr); }
  .hc-ddc__cards-section { padding: 40px 28px; }
  .hc-ddc__cta { padding: 48px 32px; }
  .hc-ddc__image--left,
  .hc-ddc__image--right {
    float: none;
    width: 100%;
    margin: 0 0 32px;
  }
}
@media (max-width: 767px) {
  .hc-ddc__cards-grid { grid-template-columns: 1fr; }
  .hc-ddc__cards-section { padding: 32px 20px; border-radius: 16px; }
  .hc-ddc__cta { padding: 40px 24px; border-radius: 16px; }
  .hc-ddc__cta-btns { flex-direction: column; align-items: center; }
  .hc-ddc__cta-btn,
  .hc-ddc__cta-btn2 { width: 100%; justify-content: center; }
  .hc-w-ddc { gap: 0; }
}

/* ═══════════════════════════════════════════════════════
   HC COMPANY ACCORDION INTRO  (.hc-w-cai)
═══════════════════════════════════════════════════════ */

.hc-w-cai { width: 100%; }

/* ── Grille 2 colonnes */
.hc-cai__grid {
  display: grid;
  grid-template-columns: var(--cai-col-left, 45%) 1fr;
  gap: 70px;
  align-items: center;
}

/* Inversion accordions à gauche */
.hc-cai__grid--acc-left .hc-cai__left  { order: 2; }
.hc-cai__grid--acc-left .hc-cai__right { order: 1; }

/* ────────────────────────────────────────────────────
   COLONNE GAUCHE
──────────────────────────────────────────────────── */

/* Surtitre pill */
.hc-cai__kicker {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #003B7A;
  background: rgba(46, 168, 223, 0.10);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

/* Titre */
.hc-cai__title {
  font-size: clamp(1.625rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #001B3F;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

/* Description */
.hc-cai__desc {
  font-size: 1rem;
  color: #667085;
  line-height: 1.72;
  margin: 0 0 28px;
}

/* Points clés */
.hc-cai__points {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hc-cai__point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hc-cai__point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: rgba(46, 168, 223, 0.10);
  flex-shrink: 0;
  transition: background-color 0.2s;
}
.hc-cai__point-icon i,
.hc-cai__point-icon svg {
  font-size: 13px;
  color: #003B7A;
  fill: #003B7A;
  width: 13px;
  height: 13px;
}

.hc-cai__point-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #101828;
  line-height: 1.4;
}

/* Bouton CTA */
.hc-cai__btn { border-radius: 12px; }
.hc-cai__btn-icon {
  display: flex;
  align-items: center;
  font-size: 0.875em;
  transition: transform 0.25s ease;
}
.hc-cai__btn:hover .hc-cai__btn-icon { transform: translateX(3px); }

/* ────────────────────────────────────────────────────
   COLONNE DROITE — ENVELOPPE ACCORDION
──────────────────────────────────────────────────── */

.hc-cai__acc-wrap {
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(16, 24, 40, 0.06);
}

/* ── Séparateur entre items */
.hc-cai__item + .hc-cai__item {
  border-top: 1px solid rgba(16, 24, 40, 0.08);
}

/* ── Styles items */
.hc-cai__item--light  { background: #ffffff; }
.hc-cai__item--dark   { background: #001B3F; }
.hc-cai__item--accent { background: linear-gradient(135deg, #003B7A 0%, #2EA8DF 100%); }

/* ── Header (bouton cliquable) */
.hc-cai__item-hd {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background-color 0.2s ease;
}
.hc-cai__item-hd:disabled { cursor: default; pointer-events: none; }
.hc-cai__item--light  .hc-cai__item-hd:hover:not(:disabled) { background: rgba(48, 149, 209, 0.04); }
.hc-cai__item--dark   .hc-cai__item-hd:hover:not(:disabled) { background: rgba(255, 255, 255, 0.05); }
.hc-cai__item--accent .hc-cai__item-hd:hover:not(:disabled) { background: rgba(255, 255, 255, 0.08); }

/* ── Icône item (gauche du titre) */
.hc-cai__item-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  transition: background-color 0.25s;
}
.hc-cai__item--light  .hc-cai__item-icon-wrap { background: rgba(46, 168, 223, 0.10); }
.hc-cai__item--dark   .hc-cai__item-icon-wrap { background: rgba(255, 255, 255, 0.10); }
.hc-cai__item--accent .hc-cai__item-icon-wrap { background: rgba(255, 255, 255, 0.15); }

.hc-cai__item-icon-wrap i,
.hc-cai__item-icon-wrap svg { font-size: 18px; width: 18px; height: 18px; }
.hc-cai__item--light .hc-cai__item-icon-wrap  i,
.hc-cai__item--light .hc-cai__item-icon-wrap  svg { color: #003B7A; fill: #003B7A; }
.hc-cai__item--dark .hc-cai__item-icon-wrap   i,
.hc-cai__item--dark .hc-cai__item-icon-wrap   svg { color: #2EA8DF; fill: #2EA8DF; }
.hc-cai__item--accent .hc-cai__item-icon-wrap i,
.hc-cai__item--accent .hc-cai__item-icon-wrap svg { color: #ffffff; fill: #ffffff; }

/* ── Titre de l'item */
.hc-cai__item-title {
  flex: 1;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.2s;
  text-align: left;
}
.hc-cai__item--light  .hc-cai__item-title { color: #001B3F; }
.hc-cai__item--dark   .hc-cai__item-title { color: #ffffff; }
.hc-cai__item--accent .hc-cai__item-title { color: #ffffff; }
.hc-cai__item--light.is-open  .hc-cai__item-title { color: #2EA8DF; }

/* ── Toggle +/- */
.hc-cai__toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background-color 0.25s;
}
.hc-cai__item--light  .hc-cai__toggle-wrap { background: rgba(16, 24, 40, 0.05); }
.hc-cai__item--dark   .hc-cai__toggle-wrap { background: rgba(255, 255, 255, 0.10); }
.hc-cai__item--accent .hc-cai__toggle-wrap { background: rgba(255, 255, 255, 0.14); }
.hc-cai__item.is-open .hc-cai__toggle-wrap { background: rgba(46, 168, 223, 0.14); }

.hc-cai__toggle {
  position: relative;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hc-cai__toggle-plus,
.hc-cai__toggle-minus {
  position: absolute;
  inset: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.hc-cai__toggle-plus  { opacity: 1;  transform: rotate(0deg); }
.hc-cai__toggle-minus { opacity: 0; }
.hc-cai__item.is-open .hc-cai__toggle-plus  { opacity: 0; transform: rotate(90deg); }
.hc-cai__item.is-open .hc-cai__toggle-minus { opacity: 1; }

.hc-cai__item--light  .hc-cai__toggle { color: #667085; }
.hc-cai__item--dark   .hc-cai__toggle { color: rgba(255, 255, 255, 0.65); }
.hc-cai__item--accent .hc-cai__toggle { color: rgba(255, 255, 255, 0.75); }
.hc-cai__item--light.is-open  .hc-cai__toggle { color: #2EA8DF; }
.hc-cai__item--dark.is-open   .hc-cai__toggle { color: #ffffff; }
.hc-cai__item--accent.is-open .hc-cai__toggle { color: #ffffff; }

/* ── Corps dépliable */
.hc-cai__item-body { overflow: hidden; }
.hc-cai__item-body[hidden] { display: none; }

.hc-cai__item-body-inner { padding: 0 28px 24px; }

.hc-cai__item-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
}
.hc-cai__item-desc p:last-child { margin-bottom: 0; }
.hc-cai__item--light  .hc-cai__item-desc { color: #667085; }
.hc-cai__item--dark   .hc-cai__item-desc { color: rgba(255, 255, 255, 0.76); }
.hc-cai__item--accent .hc-cai__item-desc { color: rgba(255, 255, 255, 0.82); }

.hc-cai__item-img {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
}
.hc-cai__item-img img { width: 100%; height: auto; display: block; }

/* ── Responsive tablette */
@media (max-width: 1023px) {
  .hc-cai__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    --cai-col-left: 100%;
  }
  /* Réinitialise l'inversion de colonnes (déjà en 1 col) */
  .hc-cai__grid--acc-left .hc-cai__left,
  .hc-cai__grid--acc-left .hc-cai__right { order: unset; }
  /* Ordre mobile configurable */
  .hc-cai__grid--mob-accfirst .hc-cai__left  { order: 2; }
  .hc-cai__grid--mob-accfirst .hc-cai__right { order: 1; }
}

/* ── Responsive mobile */
@media (max-width: 767px) {
  .hc-cai__title { font-size: 1.5rem; }
  .hc-cai__item-hd { padding: 18px 20px; gap: 12px; }
  .hc-cai__item-body-inner { padding: 0 20px 18px; }
  .hc-cai__item-icon-wrap { width: 34px; height: 34px; min-width: 34px; border-radius: 10px; }
  .hc-cai__btn { width: 100%; justify-content: center; }
  .hc-cai__acc-wrap { border-radius: 18px; }
}

/* ═══════════════════════════════════════════════════════════
   HC DIRECTOR MESSAGE PREMIUM  (.hc-w-dmp)
═══════════════════════════════════════════════════════════ */

/* ── Wrapper */
.hc-w-dmp {
  position: relative;
}

/* ── Grille 2 colonnes */
.hc-dmp__grid {
  --dmp-col-img: 42%;
  display: grid;
  grid-template-columns: var(--dmp-col-img) 1fr;
  gap: 64px;
  align-items: center;
}

/* Image à droite : inverser l'ordre des colonnes */
.hc-dmp__grid--img-right {
  grid-template-columns: 1fr var(--dmp-col-img);
}
.hc-dmp__grid--img-right .hc-dmp__col-image { order: 2; }
.hc-dmp__grid--img-right .hc-dmp__col-content { order: 1; }

/* ── Colonne image */
.hc-dmp__col-image {
  position: relative;
}

.hc-dmp__img-outer {
  position: relative;
}

/* Décoration blob derrière l'image */
.hc-dmp__img-deco {
  position: absolute;
  width: 75%;
  padding-bottom: 75%;
  border-radius: 50%;
  background-color: rgba(46, 168, 223, 0.12);
  z-index: 0;
  pointer-events: none;
}
.hc-dmp__img-deco--right {
  top: -6%;
  right: -8%;
}
.hc-dmp__img-deco--left {
  top: -6%;
  left: -8%;
}

/* Conteneur image */
.hc-dmp__img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.10);
}
.hc-dmp__img-wrap--ratio-auto {
  aspect-ratio: auto;
}

/* Image portrait */
.hc-dmp__portrait {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Filtres */
.hc-dmp__filter--contrast { filter: contrast(1.12) saturate(1.08); }
.hc-dmp__filter--bw       { filter: grayscale(1); }

/* Overlay */
.hc-dmp__img-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 27, 63, 0.18);
  pointer-events: none;
}

/* ── Badge flottant */
.hc-dmp__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(16, 24, 40, 0.14);
  z-index: 2;
  white-space: nowrap;
}
/* Positions */
.hc-dmp__badge--bl { bottom: 20px; left: 20px; }
.hc-dmp__badge--br { bottom: 20px; right: 20px; }
.hc-dmp__badge--tl { top: 20px; left: 20px; }
.hc-dmp__badge--tr { top: 20px; right: 20px; }

.hc-dmp__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #2EA8DF;
  line-height: 1;
}
.hc-dmp__badge-icon svg { width: 1em; height: 1em; fill: currentColor; }

.hc-dmp__badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #001B3F;
  letter-spacing: 0.02em;
}

/* ── Colonne contenu */
.hc-dmp__col-content {
  display: flex;
  flex-direction: column;
}

/* Bloc card contenu */
.hc-dmp__content-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 4px 32px rgba(16, 24, 40, 0.06);
}
.hc-dmp__content-card--bare {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

/* ── Surtitre */
.hc-dmp__kicker {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2EA8DF;
  margin-bottom: 16px;
}

/* ── Titre */
.hc-dmp__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: #001B3F;
  margin: 0 0 24px;
}

/* ── Citations */
.hc-dmp__quote {
  position: relative;
  margin: 0 0 28px;
  padding: 20px 24px;
  border-left: 4px solid #2EA8DF;
  border-radius: 16px;
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.65;
  color: #001B3F;
}
.hc-dmp__quote p { margin: 0; }

/* Style simple — seulement le trait gauche, fond transparent */
.hc-dmp__quote--simple {
  background-color: transparent;
}

/* Style card — fond coloré */
.hc-dmp__quote--card {
  background-color: rgba(46, 168, 223, 0.08);
}

/* Style premium — fond coloré + guillemets décoratifs */
.hc-dmp__quote--premium {
  background-color: rgba(46, 168, 223, 0.08);
  padding-top: 32px;
}

/* Guillemets décoratifs (premium) */
.hc-dmp__quote-mark {
  position: absolute;
  top: -8px;
  left: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
  font-style: normal;
  color: rgba(46, 168, 223, 0.25);
  pointer-events: none;
  user-select: none;
}

/* ── Texte principal */
.hc-dmp__body {
  color: #475467;
  line-height: 1.8em;
  margin-bottom: 32px;
}
.hc-dmp__body p { margin: 0 0 1em; }
.hc-dmp__body p:last-child { margin-bottom: 0; }

/* ── Bloc identité */
.hc-dmp__identity {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 24, 40, 0.10);
}

/* Signature */
.hc-dmp__sig-wrap {
  flex-shrink: 0;
}

.hc-dmp__signature-text {
  display: block;
  font-family: "Dancing Script", "Pacifico", "Caveat", cursive;
  font-size: 38px;
  line-height: 1.1;
  color: #001B3F;
  white-space: nowrap;
}
.hc-dmp__signature-text--rotated {
  transform: rotate(-3deg);
  display: inline-block;
}

.hc-dmp__signature-img {
  display: block;
  width: 160px;
  height: auto;
  opacity: 0.85;
}

/* Nom et rôle */
.hc-dmp__identity-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hc-dmp__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #001B3F;
  line-height: 1.3;
}
.hc-dmp__role {
  margin: 0;
  font-size: 0.875rem;
  color: #667085;
  line-height: 1.4;
}

/* ── Bouton */
.hc-dmp__btn { margin-top: 8px; }

/* ── Responsive tablette (≤ 1023px) — 1 colonne */
@media (max-width: 1023px) {
  .hc-dmp__grid,
  .hc-dmp__grid--img-right {
    grid-template-columns: 1fr;
    gap: 40px;
    --dmp-col-img: 100%;
  }
  /* Réinitialiser l'ordre forcé par img-right */
  .hc-dmp__grid--img-right .hc-dmp__col-image,
  .hc-dmp__grid--img-right .hc-dmp__col-content { order: unset; }

  /* Ordre mobile : image d'abord (défaut) */
  .hc-dmp__grid--mob-imgfirst .hc-dmp__col-image  { order: 1; }
  .hc-dmp__grid--mob-imgfirst .hc-dmp__col-content { order: 2; }
  /* Ordre mobile : texte d'abord */
  .hc-dmp__grid--mob-textfirst .hc-dmp__col-image  { order: 2; }
  .hc-dmp__grid--mob-textfirst .hc-dmp__col-content { order: 1; }

  /* Image cap en tablette */
  .hc-dmp__img-wrap { max-width: 520px; margin: 0 auto; }
  .hc-dmp__content-card { padding: 36px; }
  .hc-dmp__title { font-size: 1.625rem; }
}

/* ── Responsive mobile (≤ 767px) */
@media (max-width: 767px) {
  .hc-dmp__grid { gap: 28px; }
  .hc-dmp__content-card { padding: 24px; border-radius: 20px; }
  .hc-dmp__title { font-size: 1.375rem; }
  .hc-dmp__quote { padding: 16px 18px; font-size: 1rem; }
  .hc-dmp__quote--premium { padding-top: 28px; }
  .hc-dmp__quote-mark { font-size: 4rem; }
  .hc-dmp__identity { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hc-dmp__signature-text { font-size: 28px; }
  .hc-dmp__badge { padding: 8px 12px; }
  .hc-dmp__badge--bl, .hc-dmp__badge--br { bottom: 12px; }
  .hc-dmp__badge--bl, .hc-dmp__badge--tl { left: 12px; }
  .hc-dmp__badge--br, .hc-dmp__badge--tr { right: 12px; }
  .hc-dmp__badge--tl, .hc-dmp__badge--tr { top: 12px; }
}

/* ══════════════════════════════════════════════════════════
   HEADER — Logos desktop / sticky
══════════════════════════════════════════════════════════ */

/* Sticky hidden par défaut, visible au scroll */
.hc-header__logo .hc-logo--sticky {
  display: none;
}

/* Quand le header est scrollé : inverser */
.hc-header.is-scrolled .hc-logo--default {
  display: none;
}
.hc-header.is-scrolled .hc-logo--sticky {
  display: block;
}

/* ══════════════════════════════════════════════════════════
   FLUENT FORMS — Bouton submit avec flèche FA
══════════════════════════════════════════════════════════ */
.ff-btn-submit {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}
.ff-btn-submit::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.82em;
  line-height: 1;
  display: inline-block;
}


/* ═══════════════════════════════════════════════════════════════════════════
   HC TESTIMONIALS  (.hc-w-testi)
═══════════════════════════════════════════════════════════════════════════ */

.hc-w-testi { width: 100%; }

.hc-w-testi__header {
  text-align: center;
  margin-bottom: 48px;
}
.hc-w-testi__kicker { margin-bottom: 10px; }
.hc-w-testi__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #011c49;
  margin: 0 0 12px;
  line-height: 1.2;
}
.hc-w-testi__desc {
  font-size: 1rem;
  color: #6b7a99;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Carte ── */
.hc-testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(1, 28, 73, 0.07);
  box-shadow: 0 2px 16px rgba(1, 28, 73, 0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  box-sizing: border-box;
}

/* Étoiles */
.hc-testi-card__rating {
  display: flex;
  gap: 3px;
}
.hc-testi-card__star--filled { color: #f59e0b; font-size: 16px; }
.hc-testi-card__star--empty  { color: #d1d5db; font-size: 16px; }

/* Commentaire */
.hc-testi-card__content {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #4a5568;
  font-style: italic;
  flex: 1;
  position: relative;
  padding-left: 20px;
}
.hc-testi-card__content::before {
  content: '\201C';
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.5rem;
  line-height: 0;
  color: #3095d1;
  opacity: 0.18;
  position: absolute;
  left: 0;
  top: 18px;
}

/* Auteur */
.hc-testi-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(1, 28, 73, 0.06);
  margin-top: auto;
}
.hc-testi-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.hc-testi-card__avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3095d1 0%, #011c49 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}
.hc-testi-card__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hc-testi-card__name    { font-size: 0.9375rem; font-weight: 700; color: #011c49; display: block; }
.hc-testi-card__role    { font-size: 0.8125rem; color: #6b7a99; display: block; }
.hc-testi-card__company { font-size: 0.8125rem; font-weight: 600; color: #3095d1; display: block; }

/* ── Grille ── */
.hc-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Navigation slider ── */
.hc-testi-swiper { overflow: hidden; }
.hc-testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.hc-testi-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(1, 28, 73, 0.18);
  background: #fff;
  color: #011c49;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.hc-testi-arrow:hover { background: #3095d1; color: #fff; border-color: #3095d1; }
.hc-testi-dots-wrap { display: flex; align-items: center; gap: 6px; }
.hc-testi-pagination { display: flex !important; align-items: center; justify-content: center; gap: 6px; position: static !important; bottom: auto !important; }
.hc-testi-pagination .swiper-pagination-bullet {
  background: rgba(1, 28, 73, 0.25);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: background 0.2s, width 0.2s;
}
.hc-testi-pagination .swiper-pagination-bullet-active {
  background: #3095d1;
  width: 24px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hc-testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hc-testi-grid { grid-template-columns: 1fr; }
  .hc-testi-card { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HC LOGOS MARQUEE  (.hc-w-logos)
═══════════════════════════════════════════════════════════════════════════ */

.hc-w-logos { width: 100%; }

.hc-w-logos__header {
  text-align: center;
  margin-bottom: 32px;
}
.hc-w-logos__kicker { margin-bottom: 8px; }
.hc-w-logos__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #011c49;
  margin: 0;
}

/* Rangées multiples */
.hc-w-logos-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Item logo */
.hc-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.2s;
}
.hc-logo-item__img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  opacity: 0.55;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.hc-logo-item__placeholder {
  font-size: 0.875rem;
  font-weight: 600;
  color: #9aa2b4;
  white-space: nowrap;
}
