/* Notre Histoire — charte Propulsecar (alignée style.css + home.css) */
    /* ─── DESIGN TOKENS ─────────────────────────────────────────── */
    .page-notre-histoire {
      --navy: #111;
      --blue: var(--propulse-primary, #034AAA);
      --blue-mid: var(--propulse-primary-dark, #0248B1);
      --accent: var(--propulse-primary, #034AAA);
      --white: #fff;
      --offwhite: #f5f6f8;
      --grey: #6c757d;
      --grey-lt: #e9ecef;
      --text: #1a1a1a;

      --font-display: 'League Spartan', Arial, sans-serif;
      --font-body: 'Montserrat', Arial, sans-serif;

      --radius: 0.375rem;
      --radius-lg: 12px;
      --radius-btn: 14px;

      --section-pad-y: clamp(80px, 10vw, 140px);
    }

    /* ─── RESET ─────────────────────────────────────────────────── */
    /* Ne pas mettre margin/padding sur * : ça annule .container Bootstrap (centrage + gouttières). */
    .page-notre-histoire *, .page-notre-histoire *::before, .page-notre-histoire *::after { box-sizing: border-box; }
    .page-notre-histoire {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--offwhite);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    .page-notre-histoire img { display: block; max-width: 100%; }
    .page-notre-histoire a { color: inherit; text-decoration: none; }
    .page-notre-histoire a:hover { color: inherit; }
    .page-notre-histoire .cta-final__contact a {
      color: rgba(126, 179, 249, 0.95) !important;
      text-decoration: underline;
    }
    .page-notre-histoire .cta-final__contact a:hover {
      color: #fff !important;
    }
    .page-notre-histoire ul { list-style: none; }

    /* ─── UTILITIES ──────────────────────────────────────────────── */
    /* Même colonne que l’accueil (style.css) — forcé ici car l’ancien reset * cassait .container */
    @media (min-width: 1200px) {
      .page-notre-histoire .container {
        max-width: 1140px !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }
      /* Hero : même colonne que le reste (fond + image inclus) */
      .page-notre-histoire .hero {
        max-width: 1140px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100%;
        border-radius: 0 0 1.25rem 1.25rem;
      }
    }
    .page-notre-histoire .eyebrow {
      display: inline-block;
      font-family: var(--font-display);
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 18px;
    }
    .page-notre-histoire .eyebrow--light { color: rgba(255,255,255,0.55); }
    .page-notre-histoire .section-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(1.75rem, 3.5vw, 2.8rem);
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: var(--navy);
    }
    .page-notre-histoire .section-title--light { color: var(--white); }
    .page-notre-histoire .body-text {
      font-size: clamp(0.95rem, 1.5vw, 1.05rem);
      line-height: 1.75;
      color: #495057;
      font-weight: 400;
    }
    .page-notre-histoire .body-text--light { color: rgba(255,255,255,0.72); }
    .page-notre-histoire .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 11px 22px;
      font-family: var(--font-display);
      font-size: 0.8125rem; font-weight: 700;
      letter-spacing: 0.04em;
      border-radius: var(--radius-btn);
      cursor: pointer; transition: background .2s, border-color .2s, transform .2s;
    }
    .page-notre-histoire .btn--primary {
      background: var(--blue); color: var(--white) !important;
      border: none;
      box-shadow: 0 2px 8px rgba(3, 74, 170, 0.25);
    }
    .page-notre-histoire .btn--primary:hover {
      background: var(--blue-mid); color: var(--white) !important;
      transform: translateY(-1px);
    }
    .page-notre-histoire .btn--outline {
      border: 1.5px solid rgba(255,255,255,0.35);
      color: var(--white);
    }
    .page-notre-histoire .btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }
    .page-notre-histoire .btn--outline-dark {
      border: 1.5px solid var(--navy);
      color: var(--navy);
    }
    .page-notre-histoire .btn--outline-dark:hover { background: var(--navy); color: var(--white); }

    /* ─── HERO ───────────────────────────────────────────────────── */
    .page-notre-histoire .hero {
      position: relative;
      min-height: 100vh;
      display: flex; align-items: flex-end;
      overflow: hidden;
    }
    .page-notre-histoire .hero__bg {
      position: absolute; inset: 0;
      background: #111;
    }
    /* IMAGE 1 — ambiance automobile — hero bg */
    .page-notre-histoire .hero__image {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
      object-position: center 30%;
      opacity: 0.42;
      filter: grayscale(15%);
    }
    .page-notre-histoire .hero__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        to top,
        rgba(6, 8, 12, 0.96) 0%,
        rgba(3, 30, 70, 0.55) 50%,
        rgba(3, 74, 170, 0.12) 100%
      );
    }
    .page-notre-histoire .hero__content {
      position: relative; z-index: 2;
      padding-bottom: 80px;
      width: 100%;
    }
    .page-notre-histoire .hero__tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.6875rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: #7eb3f9;
      border: 1px solid rgba(3, 74, 170, 0.45);
      background: rgba(3, 74, 170, 0.18);
      padding: 6px 14px; border-radius: 20px;
      margin-bottom: 32px;
    }
    .page-notre-histoire .hero__tag::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--blue);
      border-radius: 50%;
      animation: nh-hero-pulse 2s ease-in-out infinite;
    }
    @keyframes nh-hero-pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.35; }
    }
    .page-notre-histoire .hero__h1 {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 6vw, 5.2rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.04em;
      color: var(--white);
      max-width: 760px;
      margin-bottom: 24px;
    }
    .page-notre-histoire .hero__h1 em {
      font-style: normal;
      color: var(--blue);
    }
    .page-notre-histoire .hero__intro {
      font-size: clamp(1rem, 1.8vw, 1.15rem);
      line-height: 1.7;
      color: rgba(255,255,255,0.68);
      font-weight: 300;
      max-width: 560px;
      margin-bottom: 40px;
    }
    .page-notre-histoire .hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

    .page-notre-histoire .hero__scroll {
      position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.35);
      font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
      z-index: 2;
    }
    .page-notre-histoire .hero__scroll-line {
      width: 1px; height: 36px;
      background: linear-gradient(to bottom, rgba(126, 179, 249, 0.5), transparent);
      animation: scrollLine 2s ease-in-out infinite;
    }
    @keyframes scrollLine {
      0% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      51% { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* ─── CONSTAT ────────────────────────────────────────────────── */
    .page-notre-histoire .constat {
      padding: var(--section-pad-y) 0;
      background: var(--offwhite);
    }
    .page-notre-histoire .constat__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .page-notre-histoire .constat__items { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
    .page-notre-histoire .constat__item {
      display: flex; gap: 18px; align-items: flex-start;
      padding: 24px;
      background: var(--white);
      border-radius: var(--radius-lg);
      border-left: 3px solid var(--blue);
      box-shadow: 0 2px 12px rgba(3, 74, 170, 0.08);
      transition: transform .2s;
    }
    .page-notre-histoire .constat__item:hover { transform: translateX(4px); }
    .page-notre-histoire .constat__icon {
      width: 38px; height: 38px; flex-shrink: 0;
      background: rgba(3, 74, 170, 0.1);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .page-notre-histoire .constat__item-text strong {
      display: block;
      font-family: var(--font-display);
      font-size: 0.88rem; font-weight: 700;
      color: var(--navy); margin-bottom: 4px;
    }
    .page-notre-histoire .constat__item-text span {
      font-size: 0.85rem; color: var(--grey); line-height: 1.6;
    }
    .page-notre-histoire .constat__visual {
      position: relative;
    }
    .page-notre-histoire .constat__stat-block {
      background: linear-gradient(160deg, #0a2148 0%, #111 50%, #061a2e 100%);
      color: var(--white);
      padding: 40px;
      border-radius: var(--radius-lg);
      position: relative;
      overflow: hidden;
    }
    .page-notre-histoire .constat__stat-block::before {
      content: '';
      position: absolute; top: -40px; right: -40px;
      width: 160px; height: 160px;
      background: var(--blue);
      border-radius: 50%;
      opacity: 0.18;
    }
    .page-notre-histoire .constat__stat {
      font-family: var(--font-display);
      font-size: 3.8rem; font-weight: 800;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 8px;
    }
    .page-notre-histoire .constat__stat-label {
      font-size: 0.9rem; color: rgba(255,255,255,0.65);
      line-height: 1.55; margin-bottom: 32px;
    }
    .page-notre-histoire .constat__divider {
      height: 1px; background: rgba(255,255,255,0.1); margin: 28px 0;
    }
    @media (max-width: 900px) {
      .page-notre-histoire .constat__grid { grid-template-columns: 1fr; gap: 48px; }
    }

    /* ─── NAISSANCE ──────────────────────────────────────────────── */
    .page-notre-histoire .naissance {
      padding: var(--section-pad-y) 0;
      background: var(--white);
    }
    .page-notre-histoire .naissance__layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
      margin-top: 64px;
    }
    /* IMAGE 3 — photo équipe PropulseCar */
    .page-notre-histoire .naissance__image-wrap {
      position: relative;
    }
    .page-notre-histoire .naissance__image {
      width: 100%; aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: var(--radius-lg);
    }
    .page-notre-histoire .naissance__image-badge {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--blue);
      color: var(--white);
      font-family: var(--font-display);
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 16px 22px;
      border-radius: var(--radius-lg);
      box-shadow: 0 8px 24px rgba(3, 74, 170, 0.35);
    }
    .page-notre-histoire .naissance__text { display: flex; flex-direction: column; gap: 20px; }
    .page-notre-histoire .naissance__text p {
      font-size: clamp(0.95rem, 1.5vw, 1.04rem);
      line-height: 1.8;
      color: #495057;
      font-weight: 400;
    }
    .page-notre-histoire .naissance__quote {
      border-left: 3px solid var(--blue);
      padding: 18px 24px;
      background: rgba(3, 74, 170, 0.06);
      border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--navy);
      font-style: italic;
      margin: 8px 0;
    }
    @media (max-width: 900px) {
      .page-notre-histoire .naissance__layout { grid-template-columns: 1fr; gap: 40px; }
      .page-notre-histoire .naissance__image { aspect-ratio: 16/9; }
      .page-notre-histoire .naissance__image-badge { bottom: -12px; right: 16px; }
    }

    /* ─── TERRAIN ────────────────────────────────────────────────── */
    .page-notre-histoire .terrain {
      padding: var(--section-pad-y) 0;
      background: #111;
      position: relative;
      overflow: hidden;
    }
    .page-notre-histoire .terrain::before {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(3, 74, 170, 0.35) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-notre-histoire .terrain__inner { position: relative; }
    .page-notre-histoire .terrain__layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
      margin-top: 64px;
    }
    .page-notre-histoire .terrain__steps { display: flex; flex-direction: column; gap: 0; }
    .page-notre-histoire .terrain__step {
      display: flex; gap: 20px;
      padding-bottom: 36px;
      position: relative;
    }
    .page-notre-histoire .terrain__step:not(:last-child)::after {
      content: '';
      position: absolute; left: 19px; top: 40px;
      width: 1px; bottom: 0;
      background: rgba(255,255,255,0.12);
    }
    .page-notre-histoire .terrain__step-num {
      width: 40px; height: 40px; flex-shrink: 0;
      background: var(--blue);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display);
      font-weight: 800; font-size: 0.85rem;
      color: var(--white);
    }
    .page-notre-histoire .terrain__step-body strong {
      display: block;
      font-family: var(--font-display);
      font-weight: 700; font-size: 0.95rem;
      color: var(--white);
      margin-bottom: 6px;
    }
    .page-notre-histoire .terrain__step-body p {
      font-size: 0.88rem; line-height: 1.7;
      color: rgba(255,255,255,0.58);
    }
    /* IMAGE 2 — Formation session */
    .page-notre-histoire .terrain__image-wrap { position: relative; }
    .page-notre-histoire .terrain__image {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: center top;
      border-radius: var(--radius-lg);
      filter: brightness(0.9);
    }
    .page-notre-histoire .terrain__image-label {
      position: absolute; bottom: 20px; left: 20px;
      background: rgba(17, 17, 17, 0.88);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 12px 18px;
      border-radius: var(--radius-lg);
      color: var(--white);
      font-size: 0.8rem; font-weight: 500;
    }
    .page-notre-histoire .terrain__image-label strong {
      display: block;
      font-family: var(--font-display);
      font-size: 0.88rem;
      color: var(--accent);
    }
    @media (max-width: 900px) {
      .page-notre-histoire .terrain__layout { grid-template-columns: 1fr; gap: 40px; }
    }

    /* ─── PILLARS ────────────────────────────────────────────────── */
    .page-notre-histoire .pillars {
      padding: var(--section-pad-y) 0;
      background: var(--offwhite);
    }
    .page-notre-histoire .pillars__header {
      max-width: 640px; margin-bottom: 64px;
    }
    .page-notre-histoire .pillars__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .page-notre-histoire .pillar {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px 30px;
      border: 1px solid var(--grey-lt);
      transition: box-shadow .25s, transform .25s;
      position: relative; overflow: hidden;
    }
    .page-notre-histoire .pillar::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--blue-mid));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s;
    }
    .page-notre-histoire .pillar:hover { box-shadow: 0 12px 40px rgba(3, 74, 170, 0.12); transform: translateY(-4px); }
    .page-notre-histoire .pillar:hover::after { transform: scaleX(1); }
    .page-notre-histoire .pillar__icon {
      width: 48px; height: 48px;
      background: rgba(3, 74, 170, 0.1);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 22px;
    }
    .page-notre-histoire .pillar__title {
      font-family: var(--font-display);
      font-weight: 700; font-size: 1rem;
      color: var(--navy); margin-bottom: 10px;
    }
    .page-notre-histoire .pillar__text {
      font-size: 0.87rem; line-height: 1.7;
      color: var(--grey);
    }
    @media (max-width: 900px) {
      .page-notre-histoire .pillars__grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 580px) {
      .page-notre-histoire .pillars__grid { grid-template-columns: 1fr; }
    }

    /* ─── VISION ─────────────────────────────────────────────────── */
    .page-notre-histoire .vision {
      padding: var(--section-pad-y) 0;
      background: var(--white);
    }
    .page-notre-histoire .vision__layout {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px; align-items: start;
      margin-top: 60px;
    }
    .page-notre-histoire .vision__sticky {
      position: sticky; top: 100px;
    }
    .page-notre-histoire .vision__list { display: flex; flex-direction: column; gap: 28px; }
    .page-notre-histoire .vision__item {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 18px; align-items: flex-start;
    }
    .page-notre-histoire .vision__num {
      font-family: var(--font-display);
      font-size: 2rem; font-weight: 800;
      color: var(--grey-lt);
      line-height: 1;
    }
    .page-notre-histoire .vision__item-body strong {
      display: block;
      font-family: var(--font-display);
      font-weight: 700; font-size: 0.95rem;
      color: var(--navy); margin-bottom: 6px;
    }
    .page-notre-histoire .vision__item-body p {
      font-size: 0.88rem; line-height: 1.7;
      color: var(--grey);
    }
    .page-notre-histoire .vision__statement {
      background: linear-gradient(145deg, #0a2148 0%, #111 55%, #0d1f3d 100%);
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      position: relative; overflow: hidden;
    }
    .page-notre-histoire .vision__statement::before {
      content: '"';
      position: absolute; top: -20px; left: 24px;
      font-family: var(--font-display);
      font-size: 12rem; font-weight: 800;
      color: rgba(255,255,255,0.04);
      line-height: 1;
    }
    .page-notre-histoire .vision__statement p {
      font-family: var(--font-display);
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      font-weight: 600;
      color: var(--white);
      line-height: 1.55;
      margin-bottom: 24px;
    }
    .page-notre-histoire .vision__statement-author {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.06em; text-transform: uppercase;
    }
    .page-notre-histoire .vision__statement-author span { color: var(--accent); }
    @media (max-width: 900px) {
      .page-notre-histoire .vision__layout { grid-template-columns: 1fr; }
      .page-notre-histoire .vision__sticky { position: static; }
    }

    /* ─── REASSURANCE ────────────────────────────────────────────── */
    .page-notre-histoire .reassurance {
      padding: var(--section-pad-y) 0;
      background: var(--offwhite);
    }
    .page-notre-histoire .reassurance__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px; margin-top: 56px;
    }
    .page-notre-histoire .reassurance__card {
      padding: 30px 24px;
      background: var(--white);
      border-radius: var(--radius-lg);
      border: 1px solid var(--grey-lt);
      text-align: center;
    }
    .page-notre-histoire .reassurance__card-icon {
      font-size: 1.8rem; margin-bottom: 16px;
    }
    .page-notre-histoire .reassurance__card-title {
      font-family: var(--font-display);
      font-weight: 700; font-size: 0.9rem;
      color: var(--navy); margin-bottom: 8px;
    }
    .page-notre-histoire .reassurance__card-text {
      font-size: 0.83rem; line-height: 1.6;
      color: var(--grey);
    }
    @media (max-width: 900px) {
      .page-notre-histoire .reassurance__grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 500px) {
      .page-notre-histoire .reassurance__grid { grid-template-columns: 1fr; }
    }

    /* ─── FAQ ────────────────────────────────────────────────────── */
    .page-notre-histoire .faq {
      padding: var(--section-pad-y) 0;
      background: var(--white);
    }
    .page-notre-histoire .faq__inner {
      max-width: 760px; margin: 0 auto;
    }
    .page-notre-histoire .faq__header { text-align: center; margin-bottom: 56px; }
    .page-notre-histoire .faq__list { display: flex; flex-direction: column; gap: 0; }
    .page-notre-histoire .faq__item {
      border-bottom: 1px solid var(--grey-lt);
    }
    .page-notre-histoire .faq__question {
      width: 100%; display: flex; justify-content: space-between; align-items: center;
      gap: 16px;
      padding: 24px 0;
      background: none; border: none; cursor: pointer;
      text-align: left;
      font-family: var(--font-display);
      font-weight: 600; font-size: 0.97rem;
      color: var(--navy);
      transition: color .2s;
    }
    .page-notre-histoire .faq__question:hover { color: var(--blue); }
    .page-notre-histoire .faq__plus {
      width: 28px; height: 28px; flex-shrink: 0;
      border-radius: 50%;
      border: 1.5px solid var(--grey-lt);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--grey);
      transition: all .25s;
    }
    .page-notre-histoire .faq__item.open .faq__plus {
      background: var(--blue); border-color: var(--blue);
      color: var(--white); transform: rotate(45deg);
    }
    .page-notre-histoire .faq__answer {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease;
    }
    .page-notre-histoire .faq__answer-inner {
      padding-bottom: 24px;
      font-size: 0.92rem; line-height: 1.8;
      color: var(--grey);
    }
    .page-notre-histoire .faq__item.open .faq__answer { max-height: 400px; }

    /* ─── CTA FINAL ──────────────────────────────────────────────── */
    .page-notre-histoire .cta-final {
      padding: var(--section-pad-y) 0;
      background: #111;
      position: relative; overflow: hidden;
    }
    .page-notre-histoire .cta-final::before {
      content: '';
      position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%);
      width: 800px; height: 400px;
      background: radial-gradient(ellipse, rgba(3, 74, 170, 0.45) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-notre-histoire .cta-final__inner {
      position: relative; text-align: center;
    }
    .page-notre-histoire .cta-final__title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }
    .page-notre-histoire .cta-final__title em { font-style: normal; color: var(--accent); }
    .page-notre-histoire .cta-final__sub {
      font-size: 1rem; color: rgba(255,255,255,0.55);
      margin-bottom: 52px;
      max-width: 480px; margin-left: auto; margin-right: auto;
    }
    .page-notre-histoire .cta-final__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 48px;
    }
    .page-notre-histoire .cta-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg);
      padding: 28px 18px;
      transition: background .2s, border-color .2s;
      cursor: pointer;
    }
    .page-notre-histoire .cta-card:hover {
      background: rgba(3, 74, 170, 0.15);
      border-color: rgba(126, 179, 249, 0.45);
    }
    .page-notre-histoire .cta-card__icon { font-size: 1.5rem; margin-bottom: 12px; }
    .page-notre-histoire .cta-card__title {
      font-family: var(--font-display);
      font-size: 0.85rem; font-weight: 700;
      color: var(--white); margin-bottom: 6px;
    }
    .page-notre-histoire .cta-card__sub {
      font-size: 0.78rem; color: rgba(255,255,255,0.42);
    }
    .page-notre-histoire .cta-card a { display: block; }
    .page-notre-histoire .cta-final__contact {
      font-size: 0.85rem; color: rgba(255,255,255,0.45);
    }
    @media (max-width: 900px) {
      .page-notre-histoire .cta-final__grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 500px) {
      .page-notre-histoire .cta-final__grid { grid-template-columns: 1fr; }
    }

    
/* Intégration site : décalage sous le header fixe */
.page-notre-histoire .hero__content { padding-top: clamp(120px, 18vh, 200px); }
@media (max-width: 991px) {
  .page-notre-histoire .hero__content { padding-top: clamp(100px, 16vh, 180px); }
}
