/* ═══════════════════════════════════════════════════════
   COLEC — Feuille de style principale
   Thème FSE WordPress v1.0.0
   Animations gérées par AOS (Animate On Scroll)
═══════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────── */
:root {
  --rose:        #C8084F;
  --rose-2:      #FF2264;
  --rose-dark:   #8F0C45;
  --burgundy:    #620427;
  --burgundy-2:  #4A031E;
  --pink:        #FFE2E9;
  --pink-soft:   #FFF1F4;
  --pink-stroke: #FF9FB7;
  --ink:         #101828;
  --ink-2:       #475467;
  --ink-3:       #667085;
  --ink-4:       #98A2B3;
  --line:        #EAECF0;
  --line-2:      #D0D5DD;
  --bg:          #FFFFFF;
  --bg-2:        #F9FAFB;
  --bg-3:        #F2F4F7;

  --shadow-low:  0px 1px 2px rgba(16,24,40,.06), 0px 1px 3px rgba(16,24,40,.10);
  --shadow-mid:  0px 4px 6px -2px rgba(16,24,40,.03), 0px 12px 16px -4px rgba(16,24,40,.08);
  --shadow-high: 0px 8px 8px -4px rgba(16,24,40,.03), 0px 20px 24px -4px rgba(16,24,40,.08);
  --shadow-rose: 0px 12px 32px -8px rgba(200,8,79,.35);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: "Archivo", sans-serif;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
}
p  { margin: 0; color: var(--ink-2); }
a  { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }

/* ── Container ─────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
.colec-nav,
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.colec-nav.scrolled,
.nav.scrolled {
  background: rgba(255,255,255,.92);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(16,24,40,.02), 0 4px 24px -12px rgba(16,24,40,.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo img   { height: 32px; width: auto; display: block; }
.nav-links      { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  border-radius: 8px;
  transition: color 150ms ease, background-color 150ms ease;
  position: relative;
}
.nav-link:hover { color: var(--rose); background: var(--pink-soft); }
.nav-link.active { color: var(--rose); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
}
.nav-cta-wrap { margin-left: 8px; }
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line);
  background: white;
  border-radius: 10px;
  cursor: pointer;
}
@media (max-width: 1080px) {
  .nav-links  { display: none; }
  .nav-burger { display: flex; }
}

/* WordPress nav block override */
.wp-block-navigation .wp-block-navigation-item__content {
  padding: 8px 14px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--ink-2) !important;
  border-radius: 8px !important;
  transition: color 150ms ease, background-color 150ms ease !important;
}
.wp-block-navigation .wp-block-navigation-item__content:hover {
  color: var(--rose) !important;
  background: var(--pink-soft) !important;
}
.wp-block-site-logo { line-height: 1; }
.wp-block-site-logo img { height: 32px; width: auto; }

/* ═══════════════════════════════════════════════════
   BOUTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, background-color 150ms ease, color 150ms ease,
              box-shadow 150ms ease, border-color 150ms ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--rose);
  color: white;
  box-shadow: var(--shadow-rose);
}
.btn-primary:hover  { background: var(--rose-dark); transform: translateY(-1px); }
.btn-ghost          { background: white; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover    { border-color: var(--ink-3); background: var(--bg-2); }
.btn-white          { background: white; color: var(--burgundy); }
.btn-white:hover    { background: var(--pink-soft); transform: translateY(-1px); }
.btn-outline-white  { background: transparent; color: white; border-color: rgba(255,255,255,.4); }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,.08); }
.btn-link {
  background: transparent;
  color: var(--rose);
  height: auto;
  padding: 0;
  box-shadow: none;
  font-weight: 600;
  border: none;
}
.btn-link::after    { content: "→"; margin-left: 6px; transition: transform 150ms ease; }
.btn-link:hover::after { transform: translateX(3px); }
.btn-sm             { height: 40px; font-size: 14px; padding: 0 16px; }

/* WP button overrides */
.wp-element-button.btn-primary,
.wp-block-button__link.btn-primary {
  background: var(--rose) !important;
  border-radius: 999px !important;
  box-shadow: var(--shadow-rose) !important;
}

/* ═══════════════════════════════════════════════════
   BLOCS GUTENBERG NATIFS — Charte graphique Colec
   Applique la palette, la typographie et les états
   d'interaction à tous les blocs core de l'éditeur.
═══════════════════════════════════════════════════ */

/* ── Bouton natif (core/button) ─────────────────── */
.wp-block-button__link,
.wp-element-button {
  font-family: "Archivo", sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  letter-spacing: 0em !important;
  border-radius: 999px !important;
  padding: 14px 28px !important;
  transition: background-color 150ms ease, color 150ms ease,
              border-color 150ms ease, transform 120ms ease,
              box-shadow 150ms ease !important;
  text-decoration: none !important;
  cursor: pointer !important;
}
/* Variante fill (défaut) */
.wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background-color: var(--rose) !important;
  color: #fff !important;
  border: 2px solid transparent !important;
  box-shadow: var(--shadow-rose);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  background-color: var(--burgundy) !important;
  transform: translateY(-1px);
  box-shadow: 0px 16px 40px -8px rgba(98,4,39,.40);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:focus-visible {
  background-color: var(--rose-dark) !important;
  outline: 3px solid var(--pink-stroke);
  outline-offset: 2px;
}
/* Variante outline */
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent !important;
  color: var(--rose) !important;
  border: 2px solid var(--rose) !important;
  box-shadow: none !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: var(--rose) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.wp-block-button.is-style-outline .wp-block-button__link:focus-visible {
  outline: 3px solid var(--pink-stroke);
  outline-offset: 2px;
}

/* ── Titres natifs (core/heading) ───────────────── */
.wp-block-heading {
  font-family: "Archivo", sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 0.5em;
}
.wp-block-heading h1, h1.wp-block-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.04;
}
.wp-block-heading h2, h2.wp-block-heading {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
}
.wp-block-heading h3, h3.wp-block-heading {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.wp-block-heading h4, h4.wp-block-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.wp-block-heading h5, h5.wp-block-heading {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}
.wp-block-heading h6, h6.wp-block-heading {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* ── Paragraphe natif (core/paragraph) ─────────── */
.wp-block-post-content .wp-block-paragraph,
.entry-content .wp-block-paragraph,
.wp-block-paragraph {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 1em;
}

/* ── Listes natives (core/list) ─────────────────── */
.wp-block-list,
.wp-block-list ul,
.wp-block-list ol {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  padding-left: 1.4em;
  margin: 0 0 1em;
}
.wp-block-list li {
  margin-bottom: 0.5em;
  padding-left: 0.2em;
}
/* Marqueurs listes non ordonnées → couleur rose */
.wp-block-list ul li::marker,
ul.wp-block-list li::marker {
  color: var(--rose);
}
/* Marqueurs listes ordonnées */
.wp-block-list ol li::marker,
ol.wp-block-list li::marker {
  color: var(--rose);
  font-weight: 700;
  font-family: "Archivo", sans-serif;
}

/* ── Séparateur natif (core/separator) ──────────── */
.wp-block-separator {
  border: none !important;
  border-top: 1px solid var(--line) !important;
  margin: 40px auto !important;
  opacity: 1 !important;
}
.wp-block-separator.is-style-wide {
  max-width: 100% !important;
}
.wp-block-separator.is-style-dots {
  border: none !important;
  text-align: center;
  line-height: 1;
  height: auto;
}
.wp-block-separator.is-style-dots::before {
  content: "· · ·";
  color: var(--rose);
  font-size: 20px;
  letter-spacing: 0.5em;
}
/* Séparateur avec couleur personnalisée via palette */
.wp-block-separator.has-rose-background-color {
  border-color: var(--rose) !important;
}
.wp-block-separator.has-rose-pale-background-color {
  border-color: var(--pink) !important;
}

/* ── Citation native (core/quote) ───────────────── */
.wp-block-quote {
  border-left: 4px solid var(--rose) !important;
  padding: 20px 24px !important;
  margin: 0 0 1.5em !important;
  background: var(--pink-soft);
  border-radius: 0 12px 12px 0;
}
.wp-block-quote p,
.wp-block-quote cite {
  font-family: "Caveat", cursive;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}
.wp-block-quote cite,
.wp-block-quote footer {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 10px;
  display: block;
  font-style: normal;
}
.wp-block-quote cite::before { content: "— "; }

/* ── Mise en exergue (core/pullquote) ───────────── */
.wp-block-pullquote {
  border-top: 2px solid var(--rose) !important;
  border-bottom: 2px solid var(--rose) !important;
  border-left: none !important;
  border-right: none !important;
  padding: 40px 32px !important;
  margin: 0 0 1.5em !important;
  background: var(--pink);
  text-align: center;
}
.wp-block-pullquote blockquote p {
  font-family: "Caveat", cursive;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  color: var(--burgundy);
  margin: 0;
}
.wp-block-pullquote cite {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--rose);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 16px;
  display: block;
  font-style: normal;
}

/* ── Code (core/code, core/preformatted) ─────────── */
.wp-block-code,
.wp-block-preformatted {
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", monospace;
  font-size: 13px;
  line-height: 1.65;
  background: var(--bg-3) !important;
  color: var(--rose-dark) !important;
  border: 1px solid var(--line-2);
  border-radius: 10px !important;
  padding: 20px 24px !important;
  overflow-x: auto;
}
/* Inline code dans les paragraphes */
.wp-block-paragraph code,
p code {
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
  background: var(--bg-3);
  color: var(--rose-dark);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--line-2);
}

/* ── Tableau natif (core/table) ─────────────────── */
.wp-block-table {
  overflow-x: auto;
  margin: 0 0 1.5em;
}
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--ink-2);
}
.wp-block-table th {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  background: var(--bg-2);
  padding: 12px 16px;
  border-bottom: 2px solid var(--rose);
  text-align: left;
}
.wp-block-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.wp-block-table tr:last-child td { border-bottom: none; }
.wp-block-table tr:hover td { background: var(--bg-2); }
.wp-block-table.is-style-stripes tr:nth-child(even) td {
  background: var(--pink-soft);
}

/* ── Recherche native (core/search) ─────────────── */
.wp-block-search__input {
  font-family: "Inter", sans-serif !important;
  font-size: 15px !important;
  color: var(--ink) !important;
  background: #fff !important;
  border: 1.5px solid var(--line-2) !important;
  border-radius: 50px !important;
  padding: 12px 20px !important;
  outline: none !important;
  transition: border-color 150ms ease, box-shadow 150ms ease !important;
  width: 100%;
}
.wp-block-search__input:focus {
  border-color: var(--rose) !important;
  box-shadow: 0 0 0 3px rgba(200,8,79,.12) !important;
}
.wp-block-search__button {
  font-family: "Archivo", sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  background: var(--rose) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 12px 24px !important;
  cursor: pointer !important;
  transition: background-color 150ms ease !important;
}
.wp-block-search__button:hover {
  background: var(--burgundy) !important;
}

/* ── Formulaires natifs WordPress (commentaires, etc.) */
.wp-block-post-comments-form input[type="text"],
.wp-block-post-comments-form input[type="email"],
.wp-block-post-comments-form input[type="url"],
.wp-block-post-comments-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line-2);
  border-radius: 12px;
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  appearance: none;
}
.wp-block-post-comments-form input:focus,
.wp-block-post-comments-form textarea:focus,
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200,8,79,.12);
}
.wp-block-post-comments-form textarea,
.comment-form textarea {
  min-height: 140px;
  resize: vertical;
}
.wp-block-post-comments-form label,
.comment-form label {
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}
.wp-block-post-comments-form input[type="submit"],
.comment-form input[type="submit"] {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 14px;
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  cursor: pointer;
  width: auto;
  transition: background-color 150ms ease, transform 120ms ease;
  box-shadow: var(--shadow-rose);
}
.wp-block-post-comments-form input[type="submit"]:hover,
.comment-form input[type="submit"]:hover {
  background: var(--burgundy);
  transform: translateY(-1px);
}

/* ── Image native (core/image) ──────────────────── */
.wp-block-image img {
  border-radius: 16px;
  max-width: 100%;
  height: auto;
  display: block;
}
.wp-block-image figcaption {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* ── Couverture native (core/cover) ─────────────── */
.wp-block-cover .wp-block-cover__inner-container {
  font-family: "Archivo", sans-serif;
}

/* ── Balises standard héritées (hors blocs) ──────── */
.entry-content a,
.wp-block-post-content a {
  color: var(--rose);
  text-decoration: none;
  transition: color 150ms ease;
}
.entry-content a:hover,
.wp-block-post-content a:hover {
  color: var(--burgundy);
  text-decoration: underline;
}
.entry-content strong,
.wp-block-post-content strong {
  font-weight: 700;
  color: var(--ink);
}
.entry-content em,
.wp-block-post-content em {
  font-style: italic;
  color: var(--ink-2);
}

/* ── Focus visible global (accessibilité) ────────── */
:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════
   SECTIONS — BASE
═══════════════════════════════════════════════════ */
.colec-section { padding: 112px 0; }
section        { padding: 112px 0; }
@media (max-width: 720px) { .colec-section, section { padding: 80px 0; } }

.section-eyebrow {
  color: var(--rose);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  max-width: 720px;
}
.section-lead {
  margin-top: 20px;
  font-size: 18px;
  color: var(--ink-2);
  max-width: 680px;
  line-height: 1.6;
}

/* Eyebrow badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 12px 0 8px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--pink-stroke);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(200,8,79,.18);
}

/* ═══════════════════════════════════════════════════
   HERO — PAGE D'ACCUEIL
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 156px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -160px; right: -140px;
  width: 560px; height: 560px;
  background: radial-gradient(circle at 30% 30%, var(--pink) 0%, rgba(255,226,233,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero { padding: 128px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.04;
  font-weight: 800;
  margin-top: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--rose);
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 6px;
  background: var(--pink);
  border-radius: 4px;
  z-index: -1;
}
.hero-sub {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 560px;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-3);
}
.avatar-stack { display: flex; }
.avatar-stack .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  margin-left: -10px;
}
.avatar-stack .av:first-child { margin-left: 0; }

.hero-visual {
  position: relative;
  aspect-ratio: 5/6;
  max-width: 560px;
  margin-left: auto;
  border-radius: 32px;
  overflow: hidden;
  background: var(--pink);
}
.hero-photo-fallback {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 25%, rgba(255,226,233,.6), transparent 60%),
              linear-gradient(135deg, var(--rose) 0%, var(--burgundy) 100%);
  display: grid;
  place-items: center;
}
.hero-photo-fallback img {
  width: 60%;
  opacity: .95;
  filter: brightness(0) invert(1);
}
.hero-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-high);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
}
.hero-card-1 { top: 24px; left: -24px; }
.hero-card-2 { bottom: 32px; right: -28px; }
@media (max-width: 980px) {
  .hero-card-1 { left: 12px; }
  .hero-card-2 { right: 12px; }
}
.hero-card .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: var(--rose);
}
.hero-card .label {
  font-size: 12px;
  color: var(--ink-3);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
}
.hero-card .value {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

/* ═══════════════════════════════════════════════════
   PARTNERS MARQUEE
═══════════════════════════════════════════════════ */
.partners-section {
  padding: 64px 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
}
.partners-title {
  text-align: center;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 28px;
}
.marquee {
  --gap: 64px;
  display: flex;
  gap: var(--gap);
  width: max-content;
  animation: colec-scroll 38s linear infinite;
  padding-bottom: 40px;
}
.marquee:hover { animation-play-state: paused; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--gap);
  flex-shrink: 0;
}
.partner-logo {
  height: 40px;
  display: flex;
  align-items: center;
  color: var(--ink-3);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  opacity: .65;
  transition: opacity 200ms ease, color 200ms ease;
}
.partner-logo:hover { opacity: 1; color: var(--ink); }
@keyframes colec-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - var(--gap)/2)); }
}

/* ═══════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════════ */
.stats-section   { background: var(--bg-2); }
.stats-header    { text-align: center; margin: 0 auto 64px; max-width: 760px; }
.stats-header .section-title { margin: 0 auto; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .stats-grid { grid-template-columns: 1fr; } }
.stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-mid);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-high); }
.stat-num {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--rose);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-num .unit { font-size: .45em; font-weight: 700; color: var(--burgundy); margin-left: 4px; }
.stat-label  { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 18px; margin-top: 16px; color: var(--ink); }
.stat-desc   { margin-top: 8px; font-size: 14px; color: var(--ink-3); line-height: 1.5; }
.stat-source { margin-top: 16px; font-size: 12px; color: var(--ink-4); border-top: 1px dashed var(--line); padding-top: 12px; }

/* ═══════════════════════════════════════════════════
   AMBITION (bannière bordeaux → rose)
═══════════════════════════════════════════════════ */
.ambition {
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,34,100,.30) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,.06) 0%, transparent 40%),
    linear-gradient(135deg, var(--burgundy) 0%, var(--rose) 100%);
  color: white;
  overflow: hidden;
}
.ambition::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.ambition-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.ambition-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pink-stroke);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0 auto 28px;
}
.ambition-eyebrow::before, .ambition-eyebrow::after {
  content: "";
  width: 32px; height: 1px;
  background: var(--pink-stroke);
  opacity: .5;
}
.ambition-headline {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: white;
  text-align: center;
  text-wrap: balance;
  max-width: 1100px;
  margin: 0 auto;
}
.ambition-headline .pill {
  display: inline-block;
  background: white;
  color: var(--rose);
  padding: .04em .34em;
  border-radius: 999px;
  margin: 0 .06em;
  line-height: 1;
  transform: translateY(-.02em);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.25);
}
.ambition-headline .underline {
  position: relative;
  display: inline-block;
  color: white;
}
.ambition-headline .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -0.06em;
  height: 0.10em;
  background: white;
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 900ms cubic-bezier(.22,1,.36,1) 200ms;
}
.ambition.in .ambition-headline .underline::after { transform: scaleX(1); }
.ambition.in .ambition-headline .underline.delay::after { transition-delay: 600ms; }
.ambition-meta {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 40px;
}
.ambition-handsign     { display: inline-flex; align-items: center; gap: 14px; }
.ambition-handsign .arrow {
  font-family: "Caveat", cursive;
  font-size: 24px;
  font-weight: 600;
  color: var(--pink-stroke);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ambition-handsign .arrow svg { width: 36px; height: auto; }
.ambition-meta .pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--rose);
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 12px 32px -12px rgba(0,0,0,.4);
  transition: transform 200ms ease;
}
.ambition-meta .pill-cta:hover { transform: translateY(-2px); }
.ambition-stores { display: flex; gap: 12px; align-items: center; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: black;
  color: white;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  transition: transform 200ms ease, background 200ms ease;
}
.store-btn:hover { transform: translateY(-2px); background: #1a1a1a; }
.store-btn .top { font-size: 10px; opacity: .8; line-height: 1; text-transform: uppercase; letter-spacing: .06em; }
.store-btn .bot { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 18px; line-height: 1.1; }

/* ═══════════════════════════════════════════════════
   BOUCLE VERTUEUSE
═══════════════════════════════════════════════════ */
.loop-section { background: linear-gradient(180deg, white 0%, var(--bg-2) 100%); }
.loop-intro   { text-align: center; margin: 0 auto 80px; max-width: 760px; }
.loop-intro .section-title { margin: 0 auto; }
.loop-steps   { display: flex; flex-direction: column; gap: 96px; }
.loop-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.loop-step:nth-child(even) .loop-text   { order: 2; }
.loop-step:nth-child(even) .loop-visual { order: 1; }
@media (max-width: 980px) {
  .loop-step { grid-template-columns: 1fr; gap: 32px; }
  .loop-step:nth-child(even) .loop-text   { order: 1; }
  .loop-step:nth-child(even) .loop-visual { order: 2; }
}
.loop-step-num   { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.loop-step-num .badge {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--rose);
  color: white;
  display: grid;
  place-items: center;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 20px;
  box-shadow: var(--shadow-rose);
}
.loop-step-num .label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--rose);
}
.loop-step h3 { font-size: clamp(28px, 3vw, 40px); font-weight: 700; line-height: 1.1; margin-bottom: 16px; }
.loop-step p  { font-size: 17px; line-height: 1.6; color: var(--ink-2); }
.loop-step ul { margin-top: 20px; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.loop-step ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-2);
}
.loop-step ul li::before {
  content: "";
  flex: none;
  width: 18px; height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--pink);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23C8084F' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='3.5,8.5 6.5,11.5 12.5,5'/></svg>");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}
.loop-visual {
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-high);
  border: 1px solid var(--line);
  position: relative;
  background: var(--pink);
}
.loop-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(98,4,39,.18) 100%);
}
.loop-img-1 {
  background: url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat,
              linear-gradient(135deg, var(--rose), var(--burgundy));
}
.loop-img-2 {
  background: url("https://images.unsplash.com/photo-1611273426858-450d8e3c9fce?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat,
              linear-gradient(135deg, var(--rose), var(--burgundy));
}
.loop-img-3 {
  background: url("https://images.unsplash.com/photo-1556742502-ec7c0e9f34b1?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat,
              linear-gradient(135deg, var(--rose), var(--burgundy));
}
.loop-step-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  background: white;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.loop-step-tag .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
  position: relative;
}
.loop-step-tag .pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--rose);
  animation: colec-pulse 1.6s ease-out infinite;
}
@keyframes colec-pulse {
  0%   { transform: scale(.8);  opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}
.loop-cta {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   OFFRES
═══════════════════════════════════════════════════ */
.offers-section { background: var(--bg); }
.offers-head    { text-align: center; margin-bottom: 56px; }
.offers-head .section-title { margin: 0 auto; }

.offers-hero {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,34,100,.35) 0%, transparent 50%),
    linear-gradient(135deg, var(--burgundy) 0%, var(--rose) 100%);
  color: white;
  padding: 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-high);
  margin-bottom: 24px;
  text-decoration: none;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.offers-hero:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -12px rgba(98,4,39,.4); }
@media (max-width: 980px) { .offers-hero { padding: 40px 28px; grid-template-columns: 1fr; gap: 32px; } }
.offers-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.offers-hero-text { position: relative; }
.offers-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.16);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  border: 1px solid rgba(255,255,255,.24);
  margin-bottom: 20px;
}
.offers-hero-badge::before { content: "★"; color: var(--pink-stroke); }
.offers-hero h3 {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 16px;
}
.offers-hero p  { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.85); margin-bottom: 28px; max-width: 540px; }
.offers-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.offers-hero-features {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.offer-feat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(8px);
  transition: transform 200ms ease, background 200ms ease;
}
.offer-feat:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.offer-feat-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.16);
  display: grid;
  place-items: center;
  color: white;
  margin-bottom: 12px;
}
.offer-feat-title { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 16px; color: white; line-height: 1.2; }
.offer-feat-desc  { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 6px; line-height: 1.4; }

.offers-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 720px) { .offers-secondary { grid-template-columns: 1fr; } }
.cta-card {
  position: relative;
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  text-decoration: none;
}
.cta-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-high); border-color: var(--pink-stroke); }
.cta-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: var(--rose);
  margin-bottom: 20px;
}
.cta-card h3 { color: var(--ink); font-size: 22px; margin-bottom: 8px; }
.cta-card p  { font-size: 15px; line-height: 1.55; flex: 1; }
.cta-card .cta-arrow {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--rose);
}
.cta-card .cta-arrow svg  { transition: transform 200ms ease; }
.cta-card:hover .cta-arrow svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════════════════ */
.testi-section { background: var(--burgundy); color: white; }
.testi-section h2,
.testi-section .section-title  { color: white; }
.testi-section .section-eyebrow { color: var(--pink-stroke); }
.testi-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}
.testi-controls { display: flex; gap: 12px; }
.ctl-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.24);
  background: transparent;
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 150ms ease, border-color 150ms ease;
}
.ctl-btn:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
.ctl-btn.primary { background: var(--rose); border-color: var(--rose); }
.ctl-btn.primary:hover { background: var(--rose-dark); border-color: var(--rose-dark); }
.testi-viewport { overflow: hidden; }
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 480ms cubic-bezier(.22,1,.36,1);
}
.testi-card {
  flex: 0 0 calc((100% - 24px) / 2);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(8px);
}
@media (max-width: 880px) { .testi-card { flex: 0 0 100%; } }
.testi-quote {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 32px;
}
.testi-quote::before {
  content: "\201C";
  display: block;
  font-family: "Archivo", sans-serif;
  font-size: 64px;
  line-height: .6;
  color: var(--rose-2);
  margin-bottom: 16px;
}
.testi-meta    { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.testi-photo   {
  width: 56px; height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--pink);
  flex: none;
  border: 2px solid rgba(255,255,255,.16);
}
.testi-name    { font-weight: 700; font-size: 16px; color: white; line-height: 1.2; }
.testi-role    { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 2px; }
.testi-stats   {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.testi-stat-num   { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 26px; color: var(--rose-2); line-height: 1; }
.testi-stat-label { margin-top: 6px; font-size: 12px; color: rgba(255,255,255,.65); line-height: 1.4; }
.testi-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.24);
  transition: width 200ms ease, background 200ms ease;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.testi-dot.active { background: var(--rose-2); width: 28px; border-radius: 4px; }

/* ═══════════════════════════════════════════════════
   PARTNERS GRID
═══════════════════════════════════════════════════ */
.partners-grid-section { padding: 96px 0; background: var(--bg); }
.partners-grid-head    { text-align: center; margin-bottom: 48px; }
.partners-grid-head .section-title { margin: 0 auto; font-size: clamp(28px, 3.5vw, 44px); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 140px;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 720px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }
.partner-slot {
  border: 1.5px dashed var(--line-2);
  border-radius: 16px;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink-4);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease, transform 200ms ease;
}
.partner-slot:hover {
  border-color: var(--rose);
  color: var(--rose);
  background: var(--pink-soft);
  transform: translateY(-3px);
}
.partner-slot svg    { width: 28px; height: 28px; opacity: .5; }
.partner-slot:hover svg { opacity: 1; }
.partner-slot .pname { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 14px; color: var(--ink-3); letter-spacing: -0.01em; }
.partner-slot .ptag  { font-size: 11px; color: var(--ink-4); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }

/* ═══════════════════════════════════════════════════
   HERO — PAGE À PROPOS
═══════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  padding: 200px 0 120px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}
.about-hero::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, var(--pink) 0%, rgba(255,226,233,0) 60%);
  pointer-events: none;
  z-index: 0;
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 12px 0 8px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--pink-stroke);
  margin-bottom: 32px;
}
.about-hero .eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(200,8,79,.18);
}
.about-hero h1 {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 14vw, 200px);
  line-height: .92;
  letter-spacing: -0.05em;
  color: var(--rose);
  margin-bottom: 32px;
}
.about-hero h1 .dot { color: var(--burgundy); }
.about-hero .accroche {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.2;
  color: var(--ink);
  max-width: 780px;
  margin: 0 auto 20px;
  text-wrap: balance;
}
.about-hero .accroche em { font-style: normal; color: var(--rose); }
.about-hero .slogan {
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--burgundy);
  margin-top: 8px;
}
.about-hero .slogan::before { content: "« "; opacity: .6; }
.about-hero .slogan::after  { content: " »"; opacity: .6; }
.hero-scroll-cue {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero-scroll-cue .line {
  width: 32px; height: 1px;
  background: var(--ink-4);
  position: relative;
  overflow: hidden;
}
.hero-scroll-cue .line::after {
  content: "";
  position: absolute;
  left: -100%; top: 0;
  width: 100%; height: 100%;
  background: var(--rose);
  animation: colec-scrollcue 2.4s ease-in-out infinite;
}
@keyframes colec-scrollcue {
  0%       { left: -100%; }
  60%, 100% { left: 100%; }
}

/* ═══════════════════════════════════════════════════
   HISTOIRE / TIMELINE
═══════════════════════════════════════════════════ */
.history-section { background: var(--bg-2); }
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) { .history-grid { grid-template-columns: 1fr; gap: 56px; } }
.history-text .section-title { max-width: 560px; }
.history-text p { font-size: 17px; line-height: 1.7; color: var(--ink-2); margin-top: 20px; }
.history-text p strong { color: var(--ink); font-weight: 600; }

.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 15px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--rose) 0%, var(--pink-stroke) 100%);
  border-radius: 2px;
}
.timeline-item { position: relative; padding: 18px 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px; top: 24px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--rose);
  box-shadow: 0 0 0 4px var(--bg-2);
}
.timeline-item.major::before {
  width: 22px; height: 22px;
  left: -35px; top: 22px;
  background: var(--rose);
  border-color: var(--rose);
  box-shadow: 0 0 0 4px var(--bg-2), 0 0 0 8px var(--pink);
}
.timeline-year {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--rose);
  line-height: 1;
}
.timeline-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin-top: 6px;
}
.timeline-desc { font-size: 14px; color: var(--ink-3); margin-top: 4px; line-height: 1.55; }

/* ═══════════════════════════════════════════════════
   MISSION / VISION
═══════════════════════════════════════════════════ */
.mv-section { position: relative; background: white; }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) { .mv-grid { grid-template-columns: 1fr; } }
.mv-card {
  position: relative;
  border-radius: 28px;
  padding: 56px 48px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mv-card.mission { background: var(--pink-soft); border: 1px solid var(--pink-stroke); color: var(--burgundy); }
.mv-card.vision  {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,34,100,.32) 0%, transparent 50%),
    linear-gradient(135deg, var(--burgundy) 0%, var(--rose) 100%);
  color: white;
}
.mv-card.vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.mv-card > * { position: relative; z-index: 1; }
.mv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 24px;
}
.mv-card.mission .mv-eyebrow { color: var(--rose); }
.mv-card.vision  .mv-eyebrow { color: var(--pink-stroke); }
.mv-eyebrow .num {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 13px;
}
.mv-card.mission .mv-eyebrow .num { background: var(--rose); color: white; }
.mv-card.vision  .mv-eyebrow .num { background: white; color: var(--rose); }
.mv-headline {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.mv-card.mission .mv-headline { color: var(--burgundy); }
.mv-card.vision  .mv-headline { color: white; }
.mv-card.vision  .mv-headline em {
  font-style: normal;
  background: white;
  color: var(--rose);
  padding: .04em .32em;
  border-radius: 999px;
  display: inline-block;
  line-height: 1;
  transform: translateY(-.04em);
}
.mv-body { margin-top: 24px; font-size: 17px; line-height: 1.6; max-width: 460px; }
.mv-card.mission .mv-body { color: var(--burgundy); opacity: .85; }
.mv-card.vision  .mv-body { color: rgba(255,255,255,.86); }
.mv-foot {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}
.mv-card.mission .mv-foot { color: var(--rose); }
.mv-card.vision  .mv-foot { color: white; }
.mv-foot .year-pill {
  padding: 6px 14px;
  border-radius: 999px;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 14px;
}
.mv-card.mission .mv-foot .year-pill { background: var(--rose); color: white; }
.mv-card.vision  .mv-foot .year-pill { background: white; color: var(--rose); }

/* ═══════════════════════════════════════════════════
   VALEURS — CONSTELLATION
═══════════════════════════════════════════════════ */
.values-section { background: var(--bg-2); overflow: hidden; }
.values-head    { text-align: center; margin: 0 auto 64px; max-width: 720px; }
.values-head .section-title { margin: 0 auto; }
.constellation {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16/10;
}
.constellation-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.v-bubble {
  position: absolute;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  box-shadow: var(--shadow-mid);
  border: 1px solid var(--line);
  cursor: default;
  transition: transform 300ms cubic-bezier(.22,1,.36,1), box-shadow 300ms ease, border-color 300ms ease;
  z-index: 2;
}
.v-bubble:hover {
  box-shadow: var(--shadow-high);
  border-color: var(--pink-stroke);
}
.v-bubble .v-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: var(--rose);
  margin-bottom: 8px;
}
.v-bubble .v-name {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.1;
}
/* Centre */
.v-bubble.center {
  width: 320px; height: 320px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--rose) 0%, var(--burgundy) 100%);
  border: none;
  color: white;
  box-shadow: var(--shadow-rose);
  padding: 32px;
  z-index: 3;
}
.v-bubble.center:hover { transform: translate(-50%, -50%) scale(1.03); }
.v-bubble.center::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px dashed rgba(255,255,255,.28);
  border-radius: 50%;
  pointer-events: none;
}
.v-bubble.center .v-icon  { width: 56px; height: 56px; background: rgba(255,255,255,.18); color: white; margin-bottom: 14px; }
.v-bubble.center .v-name  { color: white; font-size: 28px; margin-bottom: 12px; letter-spacing: -0.02em; }
.v-bubble.center .v-desc  { font-size: 14px; color: rgba(255,255,255,.88); line-height: 1.5; max-width: 220px; }
/* Satellites */
.v-bubble.engagement { width: 170px; height: 170px; top: 16%; left: 4%; }
.v-bubble.proximite  { width: 150px; height: 150px; top: 6%;  left: 38%; }
.v-bubble.dynamisme  { width: 160px; height: 160px; bottom: 6%; left: 36%; }
.v-bubble.innovation { width: 180px; height: 180px; top: 26%; right: 4%; }
/* Float animations */
@keyframes colec-float-a { 0%,100% { transform: translateY(0); }  50% { transform: translateY(-8px); } }
@keyframes colec-float-b { 0%,100% { transform: translateY(0); }  50% { transform: translateY(8px); } }
.v-bubble.engagement { animation: colec-float-a 6s ease-in-out infinite; }
.v-bubble.proximite  { animation: colec-float-b 7s ease-in-out infinite; }
.v-bubble.dynamisme  { animation: colec-float-a 8s ease-in-out infinite; }
.v-bubble.innovation { animation: colec-float-b 6.5s ease-in-out infinite; }
@media (max-width: 880px) {
  .constellation { aspect-ratio: auto; height: auto; max-width: 480px; }
  .constellation-svg { display: none; }
  .v-bubble {
    position: relative !important;
    top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
    transform: none !important;
    width: 100% !important; height: auto !important;
    border-radius: 20px !important;
    aspect-ratio: auto;
    padding: 24px !important;
    margin-bottom: 16px;
    animation: none !important;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }
  .v-bubble .v-icon   { margin-bottom: 0; flex: none; }
  .v-bubble.center    { background: linear-gradient(135deg, var(--rose) 0%, var(--burgundy) 100%); }
  .v-bubble.center::before  { display: none; }
  .v-bubble.center .v-name  { font-size: 22px; margin-bottom: 6px; }
  .v-bubble.center .v-desc  { max-width: none; }
}

/* ═══════════════════════════════════════════════════
   TEAM
═══════════════════════════════════════════════════ */
.team-section { background: white; }
.team-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.team-head .section-title { max-width: 520px; }
.team-head .section-lead  { max-width: 440px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 1080px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
  display: flex;
  flex-direction: column;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-high); border-color: var(--pink-stroke); }
.team-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--pink);
}
.team-photo .ph-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 64px;
  color: white;
  background: linear-gradient(135deg, var(--rose) 0%, var(--burgundy) 100%);
  letter-spacing: -0.04em;
}
.ph-fallback.alt-1 { background: linear-gradient(135deg, var(--rose-2) 0%, var(--rose) 100%); }
.ph-fallback.alt-2 { background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-2) 100%); }
.ph-fallback.alt-3 { background: linear-gradient(135deg, var(--rose-dark) 0%, var(--burgundy) 100%); }
.ph-fallback.alt-4 { background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%); }
.ph-fallback.alt-5 { background: linear-gradient(135deg, var(--burgundy-2) 0%, var(--rose) 100%); }
.team-linkedin {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: white;
  color: #0A66C2;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-mid);
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
  z-index: 2;
}
.team-linkedin:hover { background: #0A66C2; color: white; transform: scale(1.1); }
.team-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.team-name {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.2;
}
.team-role  { font-size: 14px; color: var(--rose); font-weight: 600; margin-top: 4px; margin-bottom: 16px; }
.team-bio   {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  flex: 1;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.team-bio::before {
  content: "\201C";
  display: inline-block;
  font-family: "Archivo", sans-serif;
  color: var(--pink-stroke);
  font-size: 28px;
  line-height: 0;
  margin-right: 4px;
  transform: translateY(8px);
}

/* ═══════════════════════════════════════════════════
   CHIFFRES / FIGURES
═══════════════════════════════════════════════════ */
.figures-section {
  background:
    radial-gradient(circle at 20% 30%, rgba(255,34,100,.30) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,.06) 0%, transparent 40%),
    linear-gradient(135deg, var(--burgundy) 0%, var(--rose) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.figures-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.figures-head    { text-align: center; margin: 0 auto 64px; position: relative; max-width: 720px; }
.figures-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pink-stroke);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 20px;
}
.figures-eyebrow::before, .figures-eyebrow::after {
  content: "";
  width: 32px; height: 1px;
  background: var(--pink-stroke);
  opacity: .5;
}
.figures-section h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: white;
  text-wrap: balance;
}
.figures-section h2 .since {
  display: inline-block;
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-size: .7em;
  color: var(--pink-stroke);
  transform: rotate(-2deg);
  margin-left: 6px;
}
.figures-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .figures-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .figures-grid { grid-template-columns: 1fr; } }
.figure {
  position: relative;
  padding: 32px 28px;
  border-left: 1px solid rgba(255,255,255,.16);
  transition: transform 300ms ease;
}
.figure:first-child { border-left: none; }
@media (max-width: 980px) {
  .figure { border-left: none; border-top: 1px solid rgba(255,255,255,.12); padding-top: 32px; }
  .figure:nth-child(-n+2) { border-top: none; padding-top: 0; }
}
@media (max-width: 540px) {
  .figure:nth-child(2) { border-top: 1px solid rgba(255,255,255,.12); padding-top: 32px; }
}
.figure:hover  { transform: translateY(-4px); }
.figure-num {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 7vw, 88px);
  line-height: .9;
  letter-spacing: -0.04em;
  color: white;
  display: flex;
  align-items: baseline;
}
.figure-num .plus { color: var(--pink-stroke); font-size: .5em; margin-right: 4px; line-height: 1; }
.figure-num .unit { font-size: .45em; margin-left: 6px; color: rgba(255,255,255,.85); }
.figure-label    { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 16px; color: white; margin-top: 16px; line-height: 1.3; }
.figure-desc     { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 8px; line-height: 1.55; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.colec-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 72px 0 40px; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-brand img { height: 36px; margin-bottom: 16px; display: block; }
.foot-brand p   { color: rgba(255,255,255,.6); font-size: 14px; max-width: 280px; }
.foot-col h4 {
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .10em;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col a  { color: rgba(255,255,255,.65); font-size: 14px; transition: color 150ms ease; }
.foot-col a:hover { color: white; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.foot-bottom a { color: inherit; transition: color 150ms ease; }
.foot-bottom a:hover { color: white; }

/* WP Site Logo in footer → white */
.colec-footer .wp-block-site-logo img { filter: brightness(0) invert(1); }

/* ═══════════════════════════════════════════════════
   AOS OVERRIDES
   S'assure que les animations AOS s'appliquent
   correctement dans tous les contextes
═══════════════════════════════════════════════════ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* Empêche le flash invisible sur les éléments
   qui ont un délai AOS important */
[data-aos][data-aos-delay] {
  transition-delay: 0s !important;
}
[data-aos][data-aos-delay].aos-animate {
  transition-delay: var(--aos-delay) !important;
}

/* ═══════════════════════════════════════════════════
   UTILITAIRES
═══════════════════════════════════════════════════ */
.text-center  { text-align: center; }
.text-rose    { color: var(--rose); }
.mt-auto      { margin-top: auto; }
.sr-only      { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* Padding top pour compenser la nav fixe */
body { padding-top: 76px; }

/* ═══════════════════════════════════════════════════
   REVEAL ANIMATIONS — pages Particuliers, Nos Offres, Bailleurs
═══════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-pop { opacity: 0; transform: scale(0.94) translateY(16px); transition: opacity 700ms cubic-bezier(0.22,1,0.36,1), transform 700ms cubic-bezier(0.22,1,0.36,1); }
.reveal-pop.in { opacity: 1; transform: scale(1) translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal-right.in { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════════════
   PAGE PARTICULIERS
═══════════════════════════════════════════════════ */

/* Intro */
.part-intro { padding: 156px 0 72px; position: relative; overflow: hidden; }
.part-intro::before {
  content: ""; position: absolute; top: -120px; left: -140px; width: 460px; height: 460px;
  background: radial-gradient(circle at 50% 50%, var(--pink) 0%, rgba(255,226,233,0) 70%);
  pointer-events: none; z-index: 0;
}
.part-intro::after {
  content: ""; position: absolute; bottom: -180px; right: -160px; width: 540px; height: 540px;
  background: radial-gradient(circle at 50% 50%, rgba(255,226,233,0.7) 0%, rgba(255,226,233,0) 70%);
  pointer-events: none; z-index: 0;
}
.part-intro-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }
.part-intro-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  height: 32px; padding: 0 12px 0 8px; border-radius: 999px;
  background: var(--pink); color: var(--burgundy);
  font-size: 13px; font-weight: 600; border: 1px solid var(--pink-stroke); margin-bottom: 28px;
}
.part-intro-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 4px rgba(200,8,79,0.18); }
.part-intro h1 { font-size: clamp(40px, 5.6vw, 68px); line-height: 1.04; font-weight: 800; }
.part-intro h1 em { font-style: normal; color: var(--rose); position: relative; }
.part-intro h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 6px; background: var(--pink); border-radius: 4px; z-index: -1; }

/* Intro card */
.intro-card {
  margin: 56px auto 0; background: white; border: 1px solid var(--line);
  border-radius: 24px; padding: 40px 44px; box-shadow: var(--shadow-mid);
  text-align: left; position: relative;
}
@media (max-width: 720px) { .intro-card { padding: 28px 24px; } }
.intro-card::before {
  content: ""; position: absolute; top: 0; left: 32px; right: 32px; height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--rose-2)); border-radius: 0 0 4px 4px;
}
.intro-card-icon {
  width: 56px; height: 56px; border-radius: 16px; background: var(--pink); color: var(--rose);
  display: grid; place-items: center; margin-bottom: 20px; box-shadow: 0 0 0 6px var(--pink-soft);
}
.intro-card p { font-size: 18px; line-height: 1.65; color: var(--ink-2); text-wrap: pretty; }
.intro-card p + p { margin-top: 16px; }
.intro-card strong { color: var(--ink); font-weight: 600; }
.intro-link {
  color: var(--rose); font-weight: 600; text-decoration: underline;
  text-decoration-color: var(--pink-stroke); text-underline-offset: 4px; text-decoration-thickness: 2px;
  transition: color 150ms ease, text-decoration-color 150ms ease;
}
.intro-link:hover { color: var(--rose-dark); text-decoration-color: var(--rose); }
.intro-share {
  margin-top: 28px; padding-top: 24px; border-top: 1px dashed var(--line);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.intro-share-label { font-size: 13px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; }
.share-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 16px; border-radius: 999px;
  background: var(--bg-2); border: 1px solid var(--line);
  font-size: 14px; font-weight: 600; color: var(--ink);
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease; cursor: pointer;
}
.share-btn:hover { background: var(--pink-soft); border-color: var(--pink-stroke); color: var(--rose); }
.share-btn svg { width: 16px; height: 16px; }
.share-btn.copied { background: var(--pink); border-color: var(--rose); color: var(--rose); }

/* How — 3-step zigzag */
.how-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.how-head { text-align: center; max-width: 760px; margin: 0 auto 80px; }
.how-head .section-title { margin: 0 auto; }
.how-head .section-lead { margin-left: auto; margin-right: auto; }
.how-steps { position: relative; display: flex; flex-direction: column; gap: 64px; }
.how-step { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 980px) { .how-step { grid-template-columns: 1fr; gap: 28px; } }
.how-step:nth-child(even) .how-text { order: 2; }
.how-step:nth-child(even) .how-visual { order: 1; }
@media (max-width: 980px) {
  .how-step:nth-child(even) .how-text { order: 1; }
  .how-step:nth-child(even) .how-visual { order: 2; }
}
.how-step-num {
  font-family: "Archivo", sans-serif; font-weight: 800;
  font-size: clamp(120px, 16vw, 200px); line-height: 0.9; letter-spacing: -0.06em;
  background: linear-gradient(135deg, var(--rose) 0%, var(--burgundy) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px; display: inline-block; position: relative;
}
.how-step-num::after {
  content: ""; position: absolute; bottom: 0.16em; left: -0.06em;
  width: 0.55em; height: 0.55em; background: var(--pink); border-radius: 50%; z-index: -1; opacity: 0.5;
}
.how-step-label {
  display: inline-block; font-size: 13px; font-weight: 700; color: var(--rose);
  text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 14px;
  padding: 4px 12px; background: var(--pink); border-radius: 999px;
}
.how-step h3 { font-size: clamp(26px, 3vw, 36px); font-weight: 700; line-height: 1.1; margin-bottom: 14px; text-wrap: balance; }
.how-step > .how-text p { font-size: 17px; line-height: 1.6; color: var(--ink-2); max-width: 460px; }
.how-visual {
  aspect-ratio: 4/3; border-radius: 28px; overflow: hidden;
  position: relative; background: var(--pink); box-shadow: var(--shadow-high); border: 1px solid var(--line);
}
.how-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(98,4,39,0.20) 100%); pointer-events: none;
}
.how-img-1 { background: url("https://images.unsplash.com/photo-1556742502-ec7c0e9f34b1?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat, linear-gradient(135deg, var(--rose), var(--burgundy)); }
.how-img-2 { background: url("https://images.unsplash.com/photo-1605117882932-f9e32b03fea9?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat, linear-gradient(135deg, var(--rose), var(--burgundy)); }
.how-img-3 { background: url("https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat, linear-gradient(135deg, var(--rose), var(--burgundy)); }
.how-tag {
  position: absolute; top: 20px; left: 20px; background: white;
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow-mid); display: inline-flex; align-items: center; gap: 8px; z-index: 1;
}
.how-tag .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--rose); position: relative; }
.how-tag .pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--rose); animation: colec-pulse 1.6s ease-out infinite;
}

/* Reassure */
.reassure-section { padding: 64px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reassure-card { max-width: 720px; margin: 0 auto; text-align: center; padding: 0 24px; }
.reassure-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%; background: white; color: var(--rose);
  box-shadow: var(--shadow-mid); margin-bottom: 20px; border: 1px solid var(--line);
}
.reassure-headline {
  font-family: "Archivo", sans-serif; font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3; font-weight: 600; color: var(--ink); text-wrap: balance;
}
.reassure-sub { margin-top: 12px; font-size: 16px; color: var(--ink-3); }

/* Stores */
.stores-section { padding: 88px 0; text-align: center; }
.stores-section h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; margin-bottom: 16px; text-wrap: balance; }
.stores-section > .container > p { max-width: 560px; margin: 0 auto 36px; font-size: 16px; }
.stores-buttons { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.stores-section .store-btn { padding: 14px 22px; border-radius: 14px; }
.store-btn .top { font-size: 11px; opacity: 0.75; line-height: 1; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.store-btn .bot { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 19px; line-height: 1; }

/* Propose */
.propose-section {
  padding: 96px 0; color: white; position: relative; overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(255,34,100,0.30) 0%, transparent 50%),
              linear-gradient(135deg, var(--burgundy) 0%, var(--rose) 100%);
}
.propose-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 24px 24px; pointer-events: none;
}
.propose-inner { position: relative; max-width: 880px; margin: 0 auto; text-align: center; }
.propose-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--pink-stroke); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 24px;
}
.propose-eyebrow::before, .propose-eyebrow::after { content: ""; width: 32px; height: 1px; background: var(--pink-stroke); opacity: 0.5; }
.propose-section h2 {
  font-family: "Archivo", sans-serif; font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1; font-weight: 800; color: white; text-wrap: balance; margin-bottom: 20px;
}
.propose-section .propose-desc { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto 36px; line-height: 1.6; }
.propose-link-card {
  display: flex; align-items: center; gap: 12px;
  max-width: 540px; margin: 0 auto; background: white;
  border-radius: 16px; padding: 8px 8px 8px 20px;
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.3);
}
.propose-link-card .url {
  flex: 1; font-family: "Inter", monospace; font-size: 14px; font-weight: 500;
  color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-align: left;
}
.propose-link-card .url-prefix { color: var(--ink-4); }
.copy-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 18px; border-radius: 10px;
  background: var(--rose); color: white; font-weight: 600; font-size: 14px;
  border: none; cursor: pointer; transition: background 150ms ease; flex: none;
}
.copy-btn:hover { background: var(--rose-dark); }
.copy-btn.copied { background: var(--burgundy); }
.copy-btn svg { width: 16px; height: 16px; }
.propose-channels { margin-top: 24px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.channel-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
  color: white; height: 40px; padding: 0 16px; border-radius: 999px;
  font-size: 14px; font-weight: 500; transition: background 150ms ease; cursor: pointer;
}
.channel-btn:hover { background: rgba(255,255,255,0.18); }
.channel-btn svg { width: 16px; height: 16px; }

/* FAQ */
.faq-section { padding: 96px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }
.faq-side .section-title { font-size: clamp(28px, 3.6vw, 44px); }
.faq-side-cta {
  margin-top: 24px; padding: 24px; background: var(--pink-soft);
  border: 1px solid var(--pink-stroke); border-radius: 16px;
}
.faq-side-cta h4 { font-size: 16px; margin-bottom: 6px; color: var(--burgundy); }
.faq-side-cta p { font-size: 14px; color: var(--ink-2); margin-bottom: 14px; }
.faq-side-cta a { color: var(--rose); font-weight: 600; font-size: 14px; }
.faq-side-cta a:hover { color: var(--rose-dark); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line); border-radius: 16px; background: white;
  overflow: hidden; transition: border-color 200ms ease, box-shadow 200ms ease;
}
.faq-item:hover { border-color: var(--pink-stroke); }
.faq-item.open { border-color: var(--rose); box-shadow: var(--shadow-mid); }
.faq-q {
  width: 100%; background: transparent; border: 0; padding: 22px 24px;
  text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: "Archivo", sans-serif; font-weight: 600; font-size: 17px;
  color: var(--ink); line-height: 1.35; transition: color 150ms ease;
}
.faq-item.open .faq-q, .faq-q:hover { color: var(--rose); }
.faq-icon {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  background: var(--pink-soft); display: grid; place-items: center;
  color: var(--rose); transition: transform 240ms cubic-bezier(0.22,1,0.36,1), background 200ms ease;
}
.faq-item.open .faq-icon { background: var(--rose); color: white; transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 320ms cubic-bezier(0.22,1,0.36,1); }
.faq-a-inner { padding: 0 24px 24px; font-size: 15px; line-height: 1.65; color: var(--ink-2); }
.faq-a-inner a { color: var(--rose); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Toast */
.colec-toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink); color: white; padding: 12px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 600; box-shadow: var(--shadow-high);
  z-index: 9999; display: flex; align-items: center; gap: 8px;
  transition: transform 240ms cubic-bezier(0.22,1,0.36,1); pointer-events: none;
}
.colec-toast.show { transform: translateX(-50%) translateY(0); }
.colec-toast svg { width: 16px; height: 16px; color: var(--rose-2); }

/* ═══════════════════════════════════════════════════
   PAGE NOS OFFRES
═══════════════════════════════════════════════════ */

/* Targets — 3 image cards */
.targets-section { padding: 64px 0 112px; }
.targets-head { margin-bottom: 56px; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.targets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .targets-grid { grid-template-columns: 1fr; } }
.target-card {
  position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 3/4;
  cursor: pointer; box-shadow: var(--shadow-mid); display: block; text-decoration: none;
  transition: transform 400ms cubic-bezier(0.22,1,0.36,1), box-shadow 400ms ease;
}
.target-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-high); }
.target-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 800ms cubic-bezier(0.22,1,0.36,1); }
.target-card:hover .target-card-img { transform: scale(1.06); }
.target-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(98,4,39,0.10) 0%, rgba(16,24,40,0.20) 50%, rgba(16,24,40,0.78) 100%);
  transition: background 300ms ease;
}
.target-card:hover::after { background: linear-gradient(180deg, rgba(200,8,79,0.20) 0%, rgba(98,4,39,0.45) 50%, rgba(98,4,39,0.88) 100%); }
.target-card-tag {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  color: var(--rose); padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
}
.target-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 32px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
}
.target-card-label {
  font-family: "Archivo", sans-serif; font-weight: 800; font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15; color: white; letter-spacing: -0.02em; flex: 1;
}
.target-card-arrow {
  flex: none; width: 56px; height: 56px; border-radius: 50%;
  background: white; color: var(--rose); display: grid; place-items: center;
  transition: transform 300ms ease, background 300ms ease;
}
.target-card:hover .target-card-arrow { transform: translateX(4px) scale(1.05); background: var(--pink); }
.target-card-img-1 { background-image: url("https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=1200&q=80"); }
.target-card-img-2 { background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200&q=80"); }
.target-card-img-3 { background-image: url("https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=1200&q=80"); }

/* Actions Carousel (Nos Offres) */
.offres-actions { background: var(--bg-2); overflow: hidden; }
.offres-actions-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
@media (max-width: 980px) { .offres-actions-grid { grid-template-columns: 1fr; gap: 40px; } }
.offres-actions-controls { margin-top: 32px; display: flex; gap: 12px; }
.offres-ctl-btn {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--line-2); background: white; color: var(--ink);
  cursor: pointer; display: grid; place-items: center;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}
.offres-ctl-btn:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }
.offres-ctl-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.offres-ctl-btn.primary { background: var(--rose); border-color: var(--rose); color: white; box-shadow: var(--shadow-rose); }
.offres-ctl-btn.primary:hover { background: var(--rose-dark); border-color: var(--rose-dark); }
.offres-actions-viewport { overflow: visible; position: relative; margin-right: -32px; }
.offres-actions-track {
  display: flex; gap: 20px;
  transition: transform 600ms cubic-bezier(0.22,1,0.36,1); will-change: transform;
}
.offres-action-card {
  flex: 0 0 320px; background: white; border: 1px solid var(--line);
  border-radius: 24px; padding: 32px 28px; box-shadow: var(--shadow-low);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
  display: flex; flex-direction: column; gap: 20px; min-height: 320px;
}
.offres-action-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-mid); border-color: var(--pink-stroke); }
.offres-action-num {
  width: 56px; height: 56px; border-radius: 18px; background: var(--pink); color: var(--rose);
  display: grid; place-items: center; font-family: "Archivo", sans-serif; font-weight: 800; font-size: 24px;
}
.offres-action-card.featured .offres-action-num { background: var(--rose); color: white; box-shadow: var(--shadow-rose); }
.offres-action-card.featured { border-color: var(--rose); background: linear-gradient(180deg, white 0%, var(--pink-soft) 100%); }
.offres-action-title { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 22px; line-height: 1.2; color: var(--ink); }
.offres-action-desc { font-size: 15px; line-height: 1.55; color: var(--ink-2); flex: 1; }
.offres-action-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--rose); text-transform: uppercase; letter-spacing: 0.10em; }
.offres-action-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rose); }
.offres-actions-progress { margin-top: 40px; height: 4px; background: var(--line); border-radius: 999px; overflow: hidden; max-width: 240px; }
.offres-actions-progress-bar { height: 100%; background: var(--rose); border-radius: 999px; width: 33%; transition: width 500ms ease; }

/* Nos Offres Stats (5 cols) */
.offres-stats-section { background: var(--bg); }
.offres-stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1100px) { .offres-stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .offres-stats-grid { grid-template-columns: repeat(2, 1fr); } }
.offres-stat { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 28px 24px; box-shadow: var(--shadow-mid); transition: transform 240ms ease, box-shadow 240ms ease; }
.offres-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-high); }
.offres-stat-num { font-family: "Archivo", sans-serif; font-weight: 800; font-size: clamp(40px, 4.5vw, 56px); line-height: 1; letter-spacing: -0.04em; color: var(--rose); display: flex; align-items: baseline; gap: 2px; }
.offres-stat-num .plus { font-size: 0.5em; font-weight: 700; margin-right: 2px; line-height: 1.1; }
.offres-stat-num .unit { font-size: 0.40em; font-weight: 700; color: var(--burgundy); margin-left: 4px; }
.offres-stat-label { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 16px; margin-top: 16px; color: var(--ink); }
.offres-stat-desc { margin-top: 6px; font-size: 13px; color: var(--ink-3); line-height: 1.5; }

/* CTA Final */
.offres-cta-section { background: var(--bg-2); padding: 80px 0 120px; }
.offres-cta-card {
  position: relative; border-radius: 32px; overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(255,34,100,0.38) 0%, transparent 50%),
              radial-gradient(circle at 15% 90%, rgba(255,159,183,0.22) 0%, transparent 45%),
              linear-gradient(135deg, var(--burgundy) 0%, var(--rose) 100%);
  color: white; padding: 80px 64px; text-align: center; box-shadow: var(--shadow-high);
}
@media (max-width: 720px) { .offres-cta-card { padding: 56px 28px; } }
.offres-cta-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 24px 24px; pointer-events: none;
}
.offres-cta-card > * { position: relative; z-index: 1; }
.offres-cta-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--pink-stroke); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em; margin: 0 auto 24px;
}
.offres-cta-eyebrow::before, .offres-cta-eyebrow::after { content: ""; width: 32px; height: 1px; background: var(--pink-stroke); opacity: 0.5; }
.offres-cta-card h2 { font-family: "Archivo", sans-serif; font-weight: 800; font-size: clamp(32px, 4.6vw, 60px); line-height: 1.08; color: white; text-wrap: balance; max-width: 880px; margin: 0 auto; }
.offres-cta-card h2 em { font-style: normal; color: var(--pink-stroke); }
.offres-cta-sub { margin: 24px auto 0; color: rgba(255,255,255,0.85); font-size: 18px; line-height: 1.6; max-width: 600px; }
.offres-cta-actions { margin-top: 40px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════
   PAGE BAILLEURS SOCIAUX
═══════════════════════════════════════════════════ */

/* Breadcrumb */
.breadcrumb-wrap { background: var(--bg); border-bottom: 1px solid var(--line); padding-top: 0; }
.breadcrumb-nav { display: flex; align-items: center; gap: 10px; padding: 18px 0; font-size: 13px; color: var(--ink-3); }
.breadcrumb-nav a { color: var(--ink-3); transition: color 150ms ease; }
.breadcrumb-nav a:hover { color: var(--rose); }
.breadcrumb-sep { color: var(--ink-4); display: inline-flex; }
.breadcrumb-current { color: var(--rose); font-weight: 600; }
.breadcrumb-home-icon { width: 14px; height: 14px; }

/* Hero Immersif */
.hero-immersive {
  position: relative; min-height: 640px; height: calc(100vh - 76px); max-height: 820px;
  overflow: hidden; display: grid; place-items: center; color: white; isolation: isolate;
}
.hero-immersive .hero-bg {
  position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=2000&q=80");
  background-size: cover; background-position: center; transform: scale(1.04); z-index: -2;
}
.hero-immersive::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,34,100,0.42) 0%, transparent 55%),
              radial-gradient(ellipse at 20% 80%, rgba(98,4,39,0.65) 0%, transparent 60%),
              linear-gradient(135deg, rgba(98,4,39,0.78) 0%, rgba(200,8,79,0.62) 50%, rgba(15,5,11,0.78) 100%);
  z-index: -1;
}
.hero-immersive::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 28px 28px; pointer-events: none; z-index: -1;
}
.hero-immersive-inner { position: relative; text-align: center; max-width: 980px; padding: 0 24px; }
.hero-immersive-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20);
  color: white; padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em;
  backdrop-filter: blur(8px); margin-bottom: 32px;
}
.hero-immersive-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rose-2); box-shadow: 0 0 0 4px rgba(255,34,100,0.30); }
.hero-immersive h1 { font-size: clamp(38px, 5.6vw, 76px); line-height: 1.04; font-weight: 800; color: white; text-wrap: balance; letter-spacing: -0.025em; }
.hero-immersive h1 .accent { position: relative; display: inline-block; color: white; }
.hero-immersive h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -0.04em;
  height: 0.10em; background: var(--rose-2); border-radius: 4px;
  transform-origin: left; transform: scaleX(0);
  transition: transform 1000ms cubic-bezier(0.22,1,0.36,1) 400ms;
}
.hero-immersive.in h1 .accent::after { transform: scaleX(1); }
.hi-lead { margin: 28px auto 0; max-width: 660px; font-size: 19px; line-height: 1.55; color: rgba(255,255,255,0.85); }
.hi-actions { margin-top: 44px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hi-scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  display: flex; align-items: center; gap: 10px; flex-direction: column;
}
.hi-scroll-cue .line { width: 1px; height: 32px; background: rgba(255,255,255,0.5); animation: hi-cue 1.6s ease-in-out infinite; transform-origin: top; }
@keyframes hi-cue {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Problème → Solution */
.ps-section { background: var(--bg); }
.ps-grid {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  align-items: stretch; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line); background: white; box-shadow: var(--shadow-mid);
}
@media (max-width: 880px) { .ps-grid { grid-template-columns: 1fr; } }
.ps-side { padding: 56px 48px; display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 720px) { .ps-side { padding: 40px 28px; } }
.ps-problem { background: var(--bg-2); border-right: 1px solid var(--line); }
@media (max-width: 880px) { .ps-problem { border-right: 0; border-bottom: 1px solid var(--line); } }
.ps-solution { background: white; }
.ps-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; padding: 6px 12px; border-radius: 999px; align-self: flex-start; }
.ps-tag.problem { background: rgba(102,112,133,0.12); color: var(--ink-2); }
.ps-tag.solution { background: var(--pink); color: var(--burgundy); border: 1px solid var(--pink-stroke); }
.ps-side h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; line-height: 1.18; color: var(--ink); }
.ps-side p { font-size: 16px; line-height: 1.6; color: var(--ink-2); }
.ps-side ul { margin: 8px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ps-side ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink-2); }
.ps-problem ul li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%;
  background: rgba(102,112,133,0.16);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23667085' stroke-width='2.6' stroke-linecap='round'><line x1='4' y1='8' x2='12' y2='8'/></svg>");
  background-size: 70%; background-repeat: no-repeat; background-position: center;
}
.ps-solution ul li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%;
  background: var(--pink);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23C8084F' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='3.5,8.5 6.5,11.5 12.5,5'/></svg>");
  background-size: 70%; background-repeat: no-repeat; background-position: center;
}
.ps-arrow { display: flex; align-items: center; justify-content: center; background: linear-gradient(90deg, var(--bg-2) 0%, var(--bg-2) 50%, white 50%, white 100%); }
@media (max-width: 880px) { .ps-arrow { display: none; } }
.ps-arrow .circle { width: 64px; height: 64px; border-radius: 50%; background: var(--rose); color: white; display: grid; place-items: center; box-shadow: var(--shadow-rose); }

/* Bailleurs Actions (4-card grid) */
.bs-actions-section { background: linear-gradient(180deg, white 0%, var(--bg-2) 100%); }
.bs-actions-head { text-align: center; margin: 0 auto 72px; max-width: 760px; }
.bs-actions-head .section-title { margin: 0 auto; }
.bs-actions-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
@media (max-width: 1080px) { .bs-actions-row { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 540px) { .bs-actions-row { grid-template-columns: 1fr; } }
.bs-action-card {
  background: white; border: 1px solid var(--line); border-radius: 24px;
  padding: 32px 28px 28px; box-shadow: var(--shadow-low); display: flex; flex-direction: column;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.bs-action-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-high); border-color: var(--pink-stroke); }
.bs-action-card.is-current { border-color: var(--rose); }
.bs-action-num { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.bs-action-badge {
  width: 44px; height: 44px; border-radius: 50%; background: var(--pink); color: var(--rose);
  display: grid; place-items: center; font-family: "Archivo", sans-serif; font-weight: 800; font-size: 18px;
  border: 1.5px solid var(--pink-stroke);
}
.bs-action-card.is-current .bs-action-badge { background: var(--rose); color: white; border-color: var(--rose); box-shadow: var(--shadow-rose); }
.bs-action-step-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--rose); }
.bs-action-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--pink-soft); color: var(--rose); display: grid; place-items: center; margin-bottom: 16px; }
.bs-action-card h3 { font-size: 22px; font-weight: 700; line-height: 1.2; margin-bottom: 10px; color: var(--ink); }
.bs-action-card p { font-size: 15px; line-height: 1.55; color: var(--ink-2); flex: 1; }
.bs-mid-cta { margin-top: 72px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.bs-mid-cta .question { font-family: "Archivo", sans-serif; font-weight: 700; font-size: clamp(20px, 2vw, 26px); color: var(--ink); }

/* Avantages */
.adv-section { background: var(--bg); }
.adv-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: start; }
@media (max-width: 980px) { .adv-grid { grid-template-columns: 1fr; gap: 48px; } }
.adv-head .section-title { margin: 0; }
.adv-head .adv-intro { font-size: 17px; line-height: 1.6; color: var(--ink-2); margin-top: 20px; max-width: 420px; }
.adv-quote { margin-top: 32px; padding: 20px 24px; border-left: 3px solid var(--rose); background: var(--pink-soft); border-radius: 0 12px 12px 0; font-family: "Archivo", sans-serif; font-weight: 600; font-size: 16px; color: var(--burgundy); line-height: 1.45; }
.adv-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 720px) { .adv-list { grid-template-columns: 1fr; } }
.adv-item { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 28px; transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease; }
.adv-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-mid); border-color: var(--pink-stroke); }
.adv-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; }
.adv-icon.c1 { background: var(--pink); color: var(--rose); }
.adv-icon.c2 { background: #E8F5EE; color: #1F8A5B; }
.adv-icon.c3 { background: #FFF4E0; color: #C77800; }
.adv-icon.c4 { background: #E6EEFF; color: #2A6FDB; }
.adv-item h3 { font-size: 19px; font-weight: 700; line-height: 1.25; color: var(--ink); margin-bottom: 8px; }
.adv-item p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }

/* Bailleurs Testimonials (dark bg, style différent) */
.bs-testi-section { background: var(--burgundy); color: white; }
.bs-testi-section .section-title { color: white; }
.bs-testi-section .section-eyebrow { color: var(--pink-stroke); }
.bs-testi-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 24px; flex-wrap: wrap; }
.bs-testi-controls { display: flex; gap: 12px; }
.bs-testi-viewport { overflow: hidden; }
.bs-testi-track { display: flex; gap: 24px; transition: transform 480ms cubic-bezier(0.22,1,0.36,1); }
.bs-testi-card {
  flex: 0 0 calc((100% - 24px) / 2);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px; padding: 36px; backdrop-filter: blur(8px);
}
@media (max-width: 880px) { .bs-testi-card { flex: 0 0 100%; } }
.bs-testi-quote { font-family: "Archivo", sans-serif; font-weight: 600; font-size: clamp(20px, 1.8vw, 24px); line-height: 1.4; letter-spacing: -0.01em; color: white; margin-bottom: 32px; text-wrap: pretty; }
.bs-testi-quote::before { content: "\201C"; display: block; font-family: "Archivo", sans-serif; font-size: 64px; line-height: 0.6; color: var(--rose-2); margin-bottom: 16px; }
.bs-testi-meta { display: flex; align-items: center; gap: 16px; }
.bs-testi-photo { width: 56px; height: 56px; border-radius: 50%; background-size: cover; background-position: center; background-color: var(--pink); flex: none; border: 2px solid rgba(255,255,255,0.16); }
.bs-testi-name { font-weight: 700; font-size: 16px; color: white; line-height: 1.2; }
.bs-testi-role { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.bs-testi-dots { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.bs-testi-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.24); transition: width 200ms ease, background 200ms ease; border: 0; padding: 0; cursor: pointer; }
.bs-testi-dot.active { background: var(--rose-2); width: 28px; border-radius: 4px; }

/* Btn lg */
.btn-lg { height: 56px; font-size: 16px; padding: 0 28px; }
.btn-white { background: white; color: var(--burgundy); }
.btn-white:hover { background: var(--pink-soft); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ═══════════════════════════════════════════════════
   PAGE ENTREPRISES
═══════════════════════════════════════════════════ */

/* ── Hero light (Entreprises) ──────────────────── */
.ent-hero {
  position: relative;
  min-height: 620px;
  height: calc(100vh - 122px);
  max-height: 820px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--ink);
  isolation: isolate;
  background: var(--bg);
}
.ent-hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -180px;
  width: 720px; height: 720px;
  background: radial-gradient(circle at 30% 30%, var(--pink) 0%, rgba(255,226,233,0) 65%);
  z-index: -1;
  pointer-events: none;
}
.ent-hero::after {
  content: "";
  position: absolute;
  bottom: -260px; left: -200px;
  width: 680px; height: 680px;
  background: radial-gradient(circle at 50% 50%, rgba(255,34,100,0.10) 0%, rgba(255,34,100,0) 65%);
  z-index: -1;
  pointer-events: none;
}
.ent-hero-deco {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: radial-gradient(circle at 1px 1px, rgba(200,8,79,0.10) 1px, transparent 0);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
}
.ent-hero-orbits {
  position: absolute;
  top: 50%; right: -240px;
  transform: translateY(-50%);
  width: 720px; height: 720px;
  pointer-events: none; z-index: -1;
  opacity: 0.7;
}
.ent-hero-orbits svg { width: 100%; height: 100%; display: block; }

/* Floating chips */
.ent-hero-chip {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-mid);
  padding: 12px 16px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  z-index: 2;
}
.ent-chip-ico {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--pink); color: var(--rose);
  display: grid; place-items: center;
  flex: none;
}
.ent-chip-ico svg { width: 16px; height: 16px; }
.ent-chip-meta { display: flex; flex-direction: column; line-height: 1.2; }
.ent-chip-lab { font-size: 10px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.10em; }
.ent-chip-val { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 14px; color: var(--ink); }
.ent-hero-chip-1 { top: 18%; left: 6%; animation: ent-floaty 6s ease-in-out infinite; }
.ent-hero-chip-2 { top: 28%; right: 7%; animation: ent-floaty 7s ease-in-out infinite -2s; }
.ent-hero-chip-3 { bottom: 22%; left: 9%; animation: ent-floaty 8s ease-in-out infinite -4s; }
.ent-hero-chip-4 { bottom: 18%; right: 10%; animation: ent-floaty 6.5s ease-in-out infinite -1s; }
@media (max-width: 720px) { .ent-hero-chip { display: none; } }
@keyframes ent-floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Entreprises Actions ───────────────────────── */
.ent-actions-section {
  padding: 112px 0;
  background: linear-gradient(180deg, white 0%, var(--bg-2) 100%);
}
@media (max-width: 720px) { .ent-actions-section { padding: 80px 0; } }
.ent-actions-head { text-align: center; margin: 0 auto 72px; max-width: 760px; }
.ent-actions-head .section-title { margin: 0 auto; }
.ent-actions-head .section-lead { margin-left: auto; margin-right: auto; }

.ent-actions-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
  position: relative;
}
@media (max-width: 1080px) { .ent-actions-row { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 540px) { .ent-actions-row { grid-template-columns: 1fr; gap: 24px; } }

.ent-action-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-low);
  display: flex; flex-direction: column;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  position: relative; z-index: 1;
}
.ent-action-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-high);
  border-color: var(--pink-stroke);
}
.ent-action-card:hover .ent-action-badge {
  background: var(--rose); color: white; border-color: var(--rose);
  box-shadow: var(--shadow-rose);
}
.ent-action-num { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.ent-action-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pink); color: var(--rose);
  display: grid; place-items: center;
  font-family: "Archivo", sans-serif; font-weight: 800; font-size: 18px;
  border: 1.5px solid var(--pink-stroke);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.ent-action-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--rose); }
.ent-action-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--pink-soft); color: var(--rose);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.ent-action-card h3 { font-size: 22px; font-weight: 700; line-height: 1.2; margin-bottom: 10px; color: var(--ink); }
.ent-action-card p { font-size: 15px; line-height: 1.55; color: var(--ink-2); flex: 1; }

.ent-action-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: white; border: 1.5px solid var(--pink-stroke);
  color: var(--rose);
  display: grid; place-items: center;
  box-shadow: var(--shadow-low);
  pointer-events: none;
}
.ent-action-arrow svg { width: 14px; height: 14px; }
.ent-aa1 { left: calc(25% - 16px); }
.ent-aa2 { left: calc(50% - 16px); }
.ent-aa3 { left: calc(75% - 16px); }
@media (max-width: 1080px) { .ent-action-arrow { display: none; } }

/* Mid-CTA rose */
.ent-mid-cta {
  margin-top: 80px;
  position: relative;
  border-radius: 24px;
  padding: 48px 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,34,100,0.30) 0%, transparent 55%),
    linear-gradient(135deg, var(--burgundy) 0%, var(--rose) 100%);
  color: white;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  box-shadow: var(--shadow-high);
}
.ent-mid-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.ent-mid-cta-text { position: relative; max-width: 560px; }
.ent-mid-cta-q {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2; color: white;
  letter-spacing: -0.01em;
  margin: 0;
}
.ent-mid-cta-sub {
  margin-top: 8px;
  font-size: 15px; color: rgba(255,255,255,0.80);
  line-height: 1.5; margin-bottom: 0;
}
@media (max-width: 720px) { .ent-mid-cta { padding: 36px 28px; flex-direction: column; align-items: flex-start; } }


/* ═══════════════════════════════════════════════════════
   PAGE CONTACT
═══════════════════════════════════════════════════════ */

.contact-hero {
  position: relative; padding: 156px 0 64px; overflow: hidden; text-align: center;
}
.contact-hero::before {
  content: ""; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 540px;
  background: radial-gradient(ellipse at center, #FFE2E9 0%, rgba(255,226,233,0) 65%);
  pointer-events: none; z-index: 0;
}
.contact-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.contact-h1 { font-size: clamp(40px, 5.2vw, 64px) !important; line-height: 1.05 !important; font-weight: 800 !important; margin-top: 24px !important; }
.contact-h1 em { font-style: normal; color: #C8084F; position: relative; white-space: nowrap; }
.contact-h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 6px; background: #FFE2E9; border-radius: 4px; z-index: -1; }
.contact-hero-sub { margin: 20px auto 0 !important; font-size: 19px !important; line-height: 1.55 !important; color: #475467 !important; max-width: 560px; }

.form-section { padding: 48px 0 96px; }
.form-shell {
  max-width: 720px; margin: 0 auto; background: white;
  border: 1px solid #EAECF0; border-radius: 28px;
  box-shadow: 0px 8px 8px -4px rgba(16,24,40,.03), 0px 20px 24px -4px rgba(16,24,40,.08);
  padding: 56px; position: relative;
}
@media (max-width: 720px) { .form-shell { padding: 36px 24px; border-radius: 24px; } }
.form-shell::before {
  content: ""; position: absolute; inset: -1px; border-radius: 28px; padding: 1px;
  background: linear-gradient(180deg, #FF9FB7, transparent 40%);
  -webkit-mask: linear-gradient(white,white) content-box, linear-gradient(white,white);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: .5;
}
.form-shell form { display: flex; flex-direction: column; gap: 22px; position: relative; }
.form-success { display: none; text-align: center; padding: 24px 8px 8px; }
.form-success.show { display: block; }
.form-shell form.hidden { display: none; }
.form-success .check { width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%; background: #FFE2E9; display: grid; place-items: center; color: #C8084F; box-shadow: 0 0 0 8px #FFF1F4; }
.form-success h3 { font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.form-success p { font-size: 16px; color: #475467; max-width: 420px; margin: 0 auto; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.label { font-weight: 600; font-size: 14px; color: #101828; display: flex; align-items: baseline; gap: 8px; }
.label .opt { font-weight: 500; font-size: 12px; color: #98A2B3; }
.input, .select, .textarea {
  width: 100%; font-family: "Inter", sans-serif; font-size: 15px; color: #101828;
  background: #F9FAFB; border: 1px solid #EAECF0; border-radius: 12px; padding: 14px 16px; line-height: 1.4;
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
  -webkit-appearance: none; appearance: none; outline: none;
}
.input::placeholder, .textarea::placeholder { color: #98A2B3; }
.input:hover, .select:hover, .textarea:hover { border-color: #D0D5DD; }
.input:focus, .select:focus, .textarea:focus { background: white; border-color: #C8084F; box-shadow: 0 0 0 4px rgba(200,8,79,.12); }
.select-wrap { position: relative; }
.select { padding-right: 44px; cursor: pointer; }
.select:invalid { color: #98A2B3; }
.select-wrap::after { content: ""; position: absolute; right: 18px; top: 50%; width: 10px; height: 10px; border-right: 2px solid #667085; border-bottom: 2px solid #667085; transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.textarea { min-height: 168px; resize: vertical; }
.submit-btn { width: 100%; height: 56px; font-size: 16px; margin-top: 6px; }
.submit-btn svg { transition: transform 200ms ease; }
.submit-btn:hover svg { transform: translateX(3px); }
.calendly-link { align-self: center; margin-top: 4px; font-size: 14px; color: #475467; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: #D0D5DD; transition: color 150ms ease, text-decoration-color 150ms ease; }
.calendly-link:hover { color: #C8084F; text-decoration-color: #C8084F; }
.privacy-note { margin-top: 4px; font-size: 12px; color: #98A2B3; text-align: center; line-height: 1.5; }
.privacy-note a { color: #667085; text-decoration: underline; text-underline-offset: 2px; }
.privacy-note a:hover { color: #C8084F; }

.reassure { padding: 24px 0 96px; }
.reassure-grid { gap: 24px !important; align-items: stretch !important; }
.reassure-card { background: #F9FAFB; border: 1px solid #EAECF0; border-radius: 20px; padding: 28px 24px; text-align: center; transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease; }
.reassure-card:hover { transform: translateY(-3px); box-shadow: 0px 4px 6px -2px rgba(16,24,40,.03), 0px 12px 16px -4px rgba(16,24,40,.08); border-color: #FF9FB7; }
.reassure-icon { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 16px; background: #FFE2E9; color: #C8084F; display: grid; place-items: center; }
.reassure-title { font-weight: 700 !important; font-size: 17px !important; color: #101828 !important; margin-bottom: 6px !important; }
.reassure-desc { font-size: 14px !important; color: #667085 !important; line-height: 1.5 !important; margin: 0 !important; }

.coords { padding: 0 0 112px; }
.coords-inner { max-width: 960px; margin: 0 auto; padding: 40px 48px; background: #F9FAFB; border: 1px dashed #D0D5DD; border-radius: 24px; display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; align-items: flex-start; }
@media (max-width: 720px) { .coords-inner { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; } }
.coords-item .clabel { font-size: 12px; text-transform: uppercase; letter-spacing: .10em; font-weight: 700; color: #98A2B3; margin-bottom: 10px; }
.coords-item .cvalue { font-family: "Archivo", sans-serif; font-weight: 600; font-size: 16px; color: #101828; line-height: 1.5; display: block; }
.coords-item a.cvalue { color: #101828; transition: color 150ms ease; }
.coords-item a.cvalue:hover { color: #C8084F; }
.coords-item .csub { font-size: 13px; color: #667085; margin-top: 4px; }
.li-link { display: inline-flex !important; align-items: center; gap: 8px; }
.li-link svg { color: #C8084F; }


/* ═══════════════════════════════════════════════════════
   PAGE BLOG
═══════════════════════════════════════════════════════ */

.blog-hero { position: relative; padding: 144px 0 56px; overflow: hidden; }
.blog-hero::before { content: ""; position: absolute; top: -180px; right: -120px; width: 520px; height: 520px; background: radial-gradient(circle at 30% 30%, #FFE2E9 0%, rgba(255,226,233,0) 70%); pointer-events: none; z-index: 0; }
.blog-hero::after { content: ""; position: absolute; top: -120px; left: -180px; width: 380px; height: 380px; background: radial-gradient(circle at 60% 40%, rgba(255,226,233,.55) 0%, rgba(255,226,233,0) 70%); pointer-events: none; z-index: 0; }
.blog-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.blog-hero h1 { font-weight: 800 !important; font-size: clamp(38px, 5.4vw, 64px) !important; line-height: 1.04 !important; margin-top: 20px !important; }
.blog-hero h1 em { font-style: normal; color: #C8084F; position: relative; }
.blog-hero h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 5px; background: #FFE2E9; border-radius: 4px; z-index: -1; }
.blog-hero-sub { margin-top: 20px !important; font-size: 18px !important; line-height: 1.55 !important; color: #475467 !important; max-width: 620px; margin-left: auto !important; margin-right: auto !important; }

.filters-section { position: sticky; top: 76px; z-index: 50; background: rgba(255,255,255,.86); backdrop-filter: saturate(140%) blur(12px); -webkit-backdrop-filter: saturate(140%) blur(12px); border-top: 1px solid #EAECF0; border-bottom: 1px solid #EAECF0; padding: 16px 0; }
.filters-row { display: flex; align-items: center; gap: 10px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding: 2px; }
.filters-row::-webkit-scrollbar { display: none; }
.chip { flex: none; display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 18px; border-radius: 999px; background: white; border: 1px solid #D0D5DD; color: #475467; font-family: "Inter", sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: color 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease; }
.chip:hover { color: #C8084F; border-color: #FF9FB7; background: #FFF1F4; }
.chip .count { display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 22px; padding: 0 7px; border-radius: 999px; background: #F2F4F7; color: #667085; font-size: 12px; font-weight: 700; transition: background 150ms ease, color 150ms ease; }
.chip:hover .count { background: white; color: #C8084F; }
.chip.active { background: #C8084F; color: white; border-color: #C8084F; box-shadow: 0px 12px 32px -8px rgba(200,8,79,.35); }
.chip.active .count { background: rgba(255,255,255,.22); color: white; }

.articles-section { padding: 56px 0 96px; }
.articles-grid, .wp-block-post-template.articles-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 32px 28px !important; list-style: none !important; padding: 0 !important; margin: 0 !important; }
@media (max-width: 980px) { .articles-grid, .wp-block-post-template.articles-grid { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 640px) { .articles-grid, .wp-block-post-template.articles-grid { grid-template-columns: 1fr !important; gap: 28px !important; } }
.article-card { display: flex; flex-direction: column; background: white; border: 1px solid #EAECF0; border-radius: 20px; overflow: hidden; transition: transform 280ms cubic-bezier(.22,1,.36,1), box-shadow 280ms ease, border-color 280ms ease; }
.article-card:hover { transform: translateY(-6px); box-shadow: 0px 8px 8px -4px rgba(16,24,40,.03), 0px 20px 24px -4px rgba(16,24,40,.08); border-color: #FF9FB7; }
.article-thumb, .wp-block-post-featured-image.article-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #FFE2E9; display: block; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.22,1,.36,1); }
.article-card:hover .article-thumb img { transform: scale(1.06); }
.article-badge, .wp-block-post-terms.article-badge { display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 12px; background: #C8084F; color: white; font-size: 12px; font-weight: 700; border-radius: 999px; box-shadow: 0 4px 12px -2px rgba(200,8,79,.4); margin: 0; }
.article-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: white; }
.article-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.article-title, .wp-block-post-title.article-title { font-family: "Archivo", sans-serif; font-weight: 700 !important; font-size: 19px !important; line-height: 1.3 !important; color: #101828 !important; margin: 0 !important; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-title a, .wp-block-post-title.article-title a { color: inherit !important; text-decoration: none !important; }
.article-card:hover .article-title, .article-card:hover .wp-block-post-title.article-title { color: #C8084F !important; }
.article-excerpt, .wp-block-post-excerpt.article-excerpt p { font-size: 14.5px !important; line-height: 1.55 !important; color: #667085 !important; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin: 0 !important; }
.article-foot { margin-top: auto; padding-top: 16px; border-top: 1px dashed #EAECF0; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.article-date, .wp-block-post-date.article-date { font-size: 13px; color: #98A2B3; font-weight: 500; }
.article-link, .wp-block-read-more.article-link { font-size: 14px; font-weight: 600; color: #C8084F; text-decoration: none !important; }
.article-card:hover .article-link { text-decoration: underline !important; }
.empty-state { text-align: center; padding: 72px 24px; border: 1.5px dashed #D0D5DD; border-radius: 24px; background: #F9FAFB; }
.empty-state-icon { width: 64px; height: 64px; border-radius: 16px; background: #FFE2E9; color: #C8084F; display: inline-grid; place-items: center; margin-bottom: 20px; }

.pagination, .wp-block-query-pagination.pagination { margin-top: 56px; display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; }
.page-btn, .wp-block-query-pagination-previous.page-btn, .wp-block-query-pagination-next.page-btn { min-width: 44px; height: 44px; padding: 0 16px; background: white; border: 1px solid #EAECF0; border-radius: 12px; font-family: "Inter", sans-serif; font-size: 14px; font-weight: 600; color: #475467; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 6px; text-decoration: none !important; transition: border-color 150ms ease, color 150ms ease, background 150ms ease; }
.page-btn:hover, .wp-block-query-pagination-previous.page-btn:hover, .wp-block-query-pagination-next.page-btn:hover { border-color: #FF9FB7; color: #C8084F; background: #FFF1F4; }
.wp-block-query-pagination-numbers { display: flex; gap: 8px; }
.wp-block-query-pagination-numbers a, .wp-block-query-pagination-numbers span { min-width: 44px; height: 44px; padding: 0 12px; background: white; border: 1px solid #EAECF0; border-radius: 12px; font-size: 14px; font-weight: 600; color: #475467; display: inline-flex; align-items: center; justify-content: center; text-decoration: none !important; transition: border-color 150ms ease, color 150ms ease, background 150ms ease; }
.wp-block-query-pagination-numbers a:hover { border-color: #FF9FB7; color: #C8084F; background: #FFF1F4; }
.wp-block-query-pagination-numbers .current { background: #C8084F; color: white; border-color: #C8084F; box-shadow: 0px 12px 32px -8px rgba(200,8,79,.35); }

.newsletter-section { padding: 0 0 112px; }
.newsletter { position: relative; background: #FFF1F4; border: 1px solid #FF9FB7; border-radius: 28px; padding: 56px 64px; overflow: hidden; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 880px) { .newsletter { grid-template-columns: 1fr; padding: 40px 28px; gap: 28px; } }
.newsletter::before { content: ""; position: absolute; right: -120px; top: -120px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(200,8,79,.10) 0%, transparent 70%); pointer-events: none; }
.newsletter::after { content: ""; position: absolute; left: -80px; bottom: -100px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(255,159,183,.25) 0%, transparent 70%); pointer-events: none; }
.newsletter-text { position: relative; z-index: 1; }
.newsletter-eyebrow { display: inline-flex; align-items: center; gap: 8px; height: 28px; padding: 0 12px; background: white; color: #C8084F; border: 1px solid #FF9FB7; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.newsletter h2 { font-family: "Archivo", sans-serif; font-weight: 800 !important; font-size: clamp(28px, 3.4vw, 40px) !important; line-height: 1.1 !important; color: #620427 !important; }
.newsletter p { margin-top: 14px !important; font-size: 16px !important; line-height: 1.55 !important; color: #4A031E !important; }
.newsletter-form { position: relative; z-index: 1; display: flex; gap: 10px; background: white; padding: 8px; border-radius: 999px; border: 1px solid #FF9FB7; box-shadow: 0px 4px 6px -2px rgba(16,24,40,.03), 0px 12px 16px -4px rgba(16,24,40,.08); }
@media (max-width: 540px) { .newsletter-form { flex-direction: column; padding: 14px; border-radius: 20px; } }
.newsletter-input { flex: 1; height: 48px; border: 0; background: transparent; padding: 0 18px; font-family: "Inter", sans-serif; font-size: 15px; color: #101828; outline: none; }
.newsletter-input::placeholder { color: #98A2B3; }
.newsletter-form .btn { flex: none; }
.newsletter-legal { margin-top: 14px; font-size: 13px; color: #667085; }
.newsletter-legal a { color: #620427; text-decoration: underline; text-decoration-color: #FF9FB7; text-underline-offset: 3px; }
