/* CSS extrait de index.html */

:root {
    --rouge: #C5092F;
    --rouge-dark: #A00725;
    --rouge-light: #FCE5E9;
    --bleu: #0159AA;
    --bleu-dark: #014684;
    --bleu-light: #E5EEF7;
    --noir: #3A3A3A;
    --gris-90: #1F1F1F;
    --gris-70: #4A4A4A;
    --gris-50: #8A8A8A;
    --gris-30: #D4D4D4;
    --gris-10: #F2F2F2;
    --blanc: #FAFAFA;
    --blanc-pur: #FFFFFF;
    --rule: #E0E0E0;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.55;
    color: var(--noir);
    background: var(--blanc);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  /* ═════ BOUTONS ═════════════════════════ */
  .btn-primary, .btn-ghost, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
  }
  .btn-primary {
    background: var(--rouge);
    color: white;
    border-color: var(--rouge);
  }
  .btn-primary:hover {
    background: var(--rouge-dark);
    border-color: var(--rouge-dark);
    transform: translateY(-1px);
  }
  .btn-ghost {
    background: transparent;
    color: var(--noir);
    border-color: var(--noir);
  }
  .btn-ghost:hover {
    background: var(--noir);
    color: white;
  }
  .btn-outline {
    background: transparent;
    color: var(--bleu);
    border-color: var(--bleu);
  }
  .btn-outline:hover {
    background: var(--bleu);
    color: white;
  }

  /* ═════ NAV ═════════════════════════════ */
  .nav {
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  body.nav-open .nav {
    backdrop-filter: none;
    z-index: 1000;
  }
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-brand {
    display: flex;
    align-items: baseline;
    gap: 6px;
    line-height: 1;
  }
  .nav-brand-juri {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    color: var(--rouge);
    letter-spacing: -0.01em;
  }
  .nav-brand-fidu {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    color: var(--bleu);
    letter-spacing: -0.01em;
  }
  .nav-brand-mark {
    font-family: 'Archivo Black', sans-serif;
    font-size: 8px;
    color: var(--noir);
    letter-spacing: 0.24em;
    margin-left: 8px;
    padding-left: 10px;
    border-left: 1px solid var(--gris-30);
    padding-top: 2px;
  }

  .nav-logo {
    display: block;
    height: 42px;
    width: auto;
    object-fit: contain;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gris-70);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--rouge); }
  .nav-cta {
    background: var(--noir);
    color: white !important;
    padding: 11px 22px;
    font-weight: 600;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--rouge); }

  /* Hamburger mobile */
  .nav-burger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px 8px;
    width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    align-items: flex-end;
    z-index: 1001;
    position: relative;
  }
  .nav-burger span {
    display: block;
    height: 2.5px;
    background: var(--noir);
    width: 28px;
    transition: all 0.3s ease;
  }
  .nav-burger span:nth-child(2) { width: 22px; }
  .nav-burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg); width: 28px;
  }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg); width: 28px;
  }
  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(10, 10, 10, 0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .nav-overlay.is-visible { opacity: 1; }

  /* === DROPDOWN NAV ============================== */
  .nav-item-dropdown { position: relative; }
  .nav-item-dropdown > .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--gris-70);
    padding: 0;
    transition: color 0.2s;
    line-height: 1;
  }
  .nav-item-dropdown > .nav-toggle::after {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s;
    margin-left: 2px;
    margin-top: -2px;
  }
  .nav-item-dropdown.is-open > .nav-toggle::after,
  .nav-item-dropdown:hover > .nav-toggle::after {
    transform: rotate(225deg) translateY(0);
    margin-top: 2px;
  }
  .nav-item-dropdown > .nav-toggle:hover { color: var(--rouge); }
  .nav-dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 240px;
    background: var(--blanc);
    border: 1px solid rgba(10,10,10,0.08);
    border-radius: 4px;
    box-shadow: 0 12px 32px rgba(10,10,10,0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
    z-index: 1002;
  }
  .nav-item-dropdown:hover .nav-dropdown,
  .nav-item-dropdown:focus-within .nav-dropdown,
  .nav-item-dropdown.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
  }
  .nav-dropdown a {
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gris-70);
    white-space: nowrap;
    transition: color 0.15s, background 0.15s;
  }
  .nav-dropdown a:hover {
    color: var(--rouge);
    background: rgba(197, 9, 47, 0.04);
  }
  .nav-dropdown a strong {
    font-weight: 700;
    color: var(--noir);
  }
  .nav-dropdown a:hover strong { color: var(--rouge); }
  .nav-dropdown-divider {
    height: 1px;
    background: rgba(10,10,10,0.08);
    margin: 6px 16px;
  }


  /* === FLOATING PHONE CTA ============================ */
  .floating-phone-cta {
    position: fixed;
    bottom: 28px;
    right: 88px;
    width: 48px;
    height: 48px;
    background: var(--rouge, #C5092F);
    color: var(--blanc-pur, #FFFFFF);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(10, 10, 10, 0.18);
    transition: background 0.2s, transform 0.2s;
    border-radius: 4px;
  }
  .floating-phone-cta:hover {
    background: var(--noir, #0A0A0A);
    transform: translateY(-2px);
  }
  .floating-phone-cta svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  @media (max-width: 600px) {
    .floating-phone-cta { bottom: 18px; right: 80px; width: 52px; height: 52px; }
  }

  /* === BACK TO TOP =============================== */
  .back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--noir);
    color: var(--blanc);
    border-radius: 4px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    z-index: 1000;
    opacity: 1 !important;
    visibility: visible !important;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(10, 10, 10, 0.18);
    padding: 0;
  }
  .back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .back-to-top:hover { background: var(--rouge); }
  .back-to-top svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  @media (max-width: 600px) {
    .back-to-top { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  }

  /* ═════ HERO ═════════════════════════════ */
  .hero {
    padding: 88px 0 72px;
    background: #FEFAFB;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #C5092F;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 0; right: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(197, 9, 47, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: "";
    position: absolute;
    bottom: -10%; left: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(1, 89, 170, 0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
  }
  .hero-text {
    max-width: 860px;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 11px;
    color: var(--noir);
    letter-spacing: 0.3em;
    margin-bottom: 32px;
  }
  .hero-eyebrow::before {
    content: "";
    width: 36px; height: 3px;
    background: var(--rouge);
  }
  .hero h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin-bottom: 32px;
    color: var(--noir);
  }
  .hero h1 .accent-rouge { color: var(--rouge); }
  .hero h1 .accent-bleu { color: var(--bleu); }
  .hero h1 em {
    font-style: normal;
    font-weight: 400;
    font-family: 'Archivo', sans-serif;
    opacity: 0.6;
  }
  .hero-lede {
    font-size: 19px;
    line-height: 1.6;
    color: var(--gris-70);
    margin-bottom: 40px;
    max-width: 580px;
  }
  .hero-lede strong {
    color: var(--noir);
    font-weight: 600;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* Bloc logo JuriFidu dans le hero (à droite) — allégé */
  .hero-emblem {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .emblem-frame {
    padding: 52px 64px 40px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    position: relative;
  }
  .emblem-frame::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 48px; height: 1.5px;
    background: var(--noir);
  }
  .emblem-frame::after {
    content: "";
    position: absolute;
    bottom: 0; right: 0;
    width: 48px; height: 1.5px;
    background: var(--noir);
  }
  .emblem-juri {
    font-family: 'Archivo Black', sans-serif;
    font-size: 88px;
    color: var(--rouge);
    letter-spacing: -0.02em;
    line-height: 0.88;
  }
  .emblem-fidu {
    font-family: 'Archivo Black', sans-serif;
    font-size: 88px;
    color: var(--bleu);
    letter-spacing: -0.02em;
    line-height: 0.88;
  }
  .emblem-tag {
    font-family: 'Archivo Black', sans-serif;
    font-size: 15px;
    color: var(--rouge);
    letter-spacing: 0.16em;
    margin-top: 12px;
  }
  .emblem-subtitle {
    margin-top: 22px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--gris-50);
  }

  /* ═════ APPROCHE (ex-manifeste, version allégée) ═════════ */
  .approche {
    padding: 120px 0;
    background: var(--blanc);
    border-top: 1px solid var(--rule);
    position: relative;
  }
  .approche-header {
    display: flex;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .approche-intro {
    font-size: 18px;
    color: var(--gris-70);
    max-width: 640px;
    margin-bottom: 64px;
    line-height: 1.6;
  }
  .approche h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 60px;
    max-width: 960px;
    color: var(--noir);
  }
  .approche h2 .highlight {
    color: var(--rouge);
    font-weight: 600;
  }
  .approche h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gris-50);
  }
  .approche-claims {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1.5px solid var(--noir);
    border-bottom: 1.5px solid var(--noir);
  }
  .claim {
    padding: 40px 28px 44px;
    border-right: 1px solid var(--rule);
  }
  .claim:last-child { border-right: none; }
  .claim-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 12px;
    color: var(--rouge);
    letter-spacing: 0.22em;
    margin-bottom: 18px;
    display: block;
  }
  .claim-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 14px;
    color: var(--noir);
    letter-spacing: -0.01em;
  }
  .claim-text {
    font-size: 14px;
    color: var(--gris-70);
    line-height: 1.6;
  }

  .claim-highlight {
    background: var(--rouge);
    color: white;
    border-right: none !important;
  }
  .claim-highlight .claim-number { color: white; opacity: 0.85; }
  .claim-highlight .claim-title { color: white; }
  .claim-highlight .claim-text { color: rgba(255, 255, 255, 0.92); }

  /* ═════ MARQUES ═════════════════════════ */
  .marques {
    padding: 120px 0;
    background: var(--blanc);
  }
  .marques-header {
    display: flex;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .marques h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: var(--noir);
  }
  .marques h2 em { font-style: italic; font-weight: 400; color: var(--rouge); }
  .marques-intro {
    font-size: 18px;
    color: var(--gris-70);
    max-width: 680px;
    margin-bottom: 64px;
    line-height: 1.6;
  }

  /* Grid des marques : 3 featured en haut (row 1), 4 autres en row 2 */
  /* ═════ TIMELINE CHRONOLOGIQUE ═════ */
  .cycle-timeline {
    position: relative;
    margin: 0 0 40px;
    padding: 20px 0;
  }
  .cycle-line {
    position: absolute;
    left: 0; right: 0; top: 50%;
    transform: translateY(-50%);
    height: 1.5px;
    background: var(--gris-30);
  }
  .cycle-segments {
    position: absolute;
    left: 0; right: 0; top: 50%;
    transform: translateY(-50%);
    height: 1.5px;
    display: flex;
  }
  .cycle-segment { height: 100%; }
  .cycle-segment-1 { width: 12.5%; background: var(--bleu); }
  .cycle-segment-2 { width: 75%; background: var(--noir); }
  .cycle-segment-3 { width: 12.5%; background: #6A5ACD; }
  .cycle-labels {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 6fr 1fr;
    align-items: center;
    min-height: 40px;
  }
  .cycle-label {
    font-family: 'Archivo Black', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-align: center;
    background: var(--blanc);
    padding: 0 14px;
    position: relative;
    z-index: 2;
    justify-self: center;
    color: var(--noir);
  }
  .cycle-label-1 { color: var(--bleu); }
  .cycle-label-3 { color: #6A5ACD; }

  /* ═════ GRILLE 8 CARDS ÉGALES ═════ */
  .marques-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .marque-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid var(--rule);
    padding: 28px 24px 22px;
    min-height: 280px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }
  .marque-card:hover {
    border-color: var(--noir);
    transform: translateY(-2px);
  }
  .marque-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--rouge);
    transform: translateX(-50%);
    transition: width 0.3s ease;
  }
  .marque-card:hover::after { width: 60%; }

  .marque-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 17px;
    letter-spacing: -0.01em;
    line-height: 1;
    margin-bottom: 6px;
  }
  .marque-baseline {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: var(--gris-50);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .marque-pitch {
    font-size: 13px;
    color: var(--gris-70);
    line-height: 1.55;
    margin-bottom: 18px;
    flex-grow: 1;
  }
  .marque-link {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--noir);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
  }
  .marque-card:hover .marque-link { gap: 14px; color: var(--rouge); }

  /* Couleurs signatures des noms de marque */
  .marque-card[data-brand="startup"] .marque-name { color: #1E5FBF; }
  .marque-card[data-brand="droit"]   .marque-name { color: #D4212D; }
  .marque-card[data-brand="huma"]    .marque-name { color: #8B6F47; }
  .marque-card[data-brand="conta"]   .marque-name { color: #E89730; }
  .marque-card[data-brand="juri"]    .marque-name { color: #6A5ACD; }
  .marque-card[data-brand="taxe"]    .marque-name { color: #2F8B47; }
  .marque-card[data-brand="buro"]    .marque-name { color: #2E77A8; }
  .marque-card[data-brand="valo"]    .marque-name { color: #0F4C5C; }
  /* Partenaires (hors grille principale) */
  .marque-card[data-brand="cc60"]    .marque-name { color: #1B396B; }
  .marque-card[data-brand="relais"]  .marque-name { color: #6A5ACD; }

  /* ═════ EXPERTISES ═════════════════════════ */
  .expertises {
    padding: 120px 0;
    background: var(--gris-10);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .expertises-header {
    display: flex; align-items: baseline; gap: 24px;
    margin-bottom: 24px; flex-wrap: wrap;
  }
  .expertises h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
  }
  .expertises h2 em { font-style: italic; font-weight: 400; color: var(--bleu); }
  .expertises-intro {
    font-size: 18px;
    color: var(--gris-70);
    max-width: 680px;
    margin-bottom: 64px;
    line-height: 1.6;
  }
  .expertises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }
  .expertise {
    background: var(--blanc);
    padding: 36px 28px 32px;
    transition: all 0.25s;
    cursor: pointer;
    position: relative;
  }
  .expertise:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(10, 10, 10, 0.06);
    z-index: 2;
  }
  .expertise-num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 13px;
    color: var(--rouge);
    letter-spacing: 0.2em;
    margin-bottom: 22px;
    display: block;
  }
  .expertise h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--noir);
    letter-spacing: -0.01em;
  }
  .expertise p {
    font-size: 14px;
    color: var(--gris-70);
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .expertise-link {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: var(--bleu);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  /* ═════ ENGAGEMENT (3 modes) ═════════ */
  .dualite {
    padding: 120px 0;
    background: white;
  }
  .dualite-header {
    display: flex; align-items: baseline; gap: 24px;
    margin-bottom: 24px; flex-wrap: wrap;
  }
  .dualite h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: var(--noir);
  }
  .dualite h2 em {
    font-style: italic; font-weight: 400;
    color: var(--rouge);
  }
  .dualite-intro {
    font-size: 18px;
    color: var(--gris-70);
    max-width: 780px;
    margin-bottom: 64px;
    line-height: 1.6;
  }
  .dualite-intro strong { color: var(--noir); font-weight: 600; }
  .dualite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
  }
  @media (max-width: 1024px) {
    .dualite-grid { grid-template-columns: 1fr; }
  }
  .dualite-card {
    padding: 40px 32px;
    border: 3px solid var(--noir);
    position: relative;
    background: var(--blanc);
    display: flex;
    flex-direction: column;
  }
  .dualite-card-label {
    position: absolute;
    top: -12px; left: 24px;
    background: var(--noir);
    color: white;
    padding: 5px 14px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
  }
  .dualite-card[data-mode="abonnement"] .dualite-card-label {
    background: var(--rouge);
  }
  .dualite-card[data-mode="abonnement"] {
    border-color: var(--rouge);
  }
  .dualite-card[data-mode="conseil"] .dualite-card-label {
    background: var(--bleu);
  }
  .dualite-card[data-mode="conseil"] {
    border-color: var(--bleu);
  }
  .dualite-card h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: var(--noir);
  }
  .dualite-card-tagline {
    font-size: 15px;
    color: var(--gris-70);
    font-weight: 500;
    margin-bottom: 28px;
    line-height: 1.5;
  }
  .dualite-card ul {
    list-style: none;
    margin-bottom: 28px;
  }
  .dualite-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 15px;
    color: var(--gris-70);
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .dualite-card ul li:last-child { border-bottom: none; }
  .dualite-card ul li::before {
    content: "→";
    color: var(--rouge);
    font-weight: 700;
    flex-shrink: 0;
  }
  .dualite-card[data-mode="conseil"] ul li::before { color: var(--bleu); }

  /* Carnet d'heures — 3 niveaux */
  .carnet-intro {
    font-size: 15px;
    color: var(--gris-70);
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .carnet-intro strong {
    color: var(--noir);
    font-weight: 600;
  }
  .carnet-levels {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }
  .carnet-level {
    padding: 16px 18px;
    background: white;
    border: 1px solid var(--rule);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    transition: border-color 0.2s;
  }
  .carnet-level:hover { border-color: var(--bleu); }
  .carnet-level-tag {
    font-family: 'Archivo Black', sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    color: white;
    background: var(--noir);
    padding: 4px 8px;
    min-width: 96px;
    text-align: center;
  }
  .carnet-level[data-niveau="1"] .carnet-level-tag { background: var(--gris-70); }
  .carnet-level[data-niveau="2"] .carnet-level-tag { background: #1E5FBF; }
  .carnet-level[data-niveau="3"] .carnet-level-tag { background: var(--bleu-dark); }
  .carnet-level-body {
    font-size: 13px;
    color: var(--gris-70);
    line-height: 1.4;
  }
  .carnet-level-body strong {
    color: var(--noir);
    font-weight: 600;
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
  }
  .carnet-level-price {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--noir);
    text-align: right;
    line-height: 1.2;
    white-space: nowrap;
  }
  .carnet-level-price small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--gris-50);
    text-decoration: line-through;
    margin-top: 2px;
  }

  .dualite-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
    margin-top: auto;
    gap: 16px;
    flex-wrap: wrap;
  }
  .dualite-card-price {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--noir);
    letter-spacing: -0.01em;
  }
  .dualite-card-price small {
    display: block;
    font-size: 11px;
    color: var(--gris-50);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
  }

  /* Note en pied de section : mandat classique */
  .dualite-footnote {
    margin-top: 40px;
    padding: 20px 24px;
    background: var(--gris-10);
    border-left: 3px solid var(--gris-50);
    font-size: 14px;
    color: var(--gris-70);
    line-height: 1.6;
  }
  .dualite-footnote strong {
    color: var(--noir);
    font-weight: 600;
  }
  .dualite-footnote a {
    color: var(--bleu);
    font-weight: 600;
  }
  .dualite-footnote a:hover {
    color: var(--bleu-dark);
  }

  /* ═════ ÉQUIPE ═════════════════════════ */
  .equipe {
    padding: 120px 0;
    background: var(--noir);
    color: white;
  }
  .equipe-header {
    display: flex; align-items: baseline; gap: 24px;
    margin-bottom: 24px; flex-wrap: wrap;
  }
  .equipe h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: white;
  }
  .equipe h2 em { font-style: italic; font-weight: 400; color: var(--rouge); }
  .equipe-intro {
    font-size: 18px;
    color: var(--gris-50);
    max-width: 680px;
    margin-bottom: 64px;
    line-height: 1.6;
  }
  .equipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }
  .person-card {
    background: var(--gris-90);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 28px;
    transition: all 0.25s;
  }
  .person-card:hover {
    border-color: var(--rouge);
    background: #141414;
  }
  .person-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gris-70) 0%, var(--gris-90) 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.6);
  }
  .person-name {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: white;
    margin-bottom: 4px;
    letter-spacing: -0.005em;
  }
  .person-title {
    font-size: 13px;
    color: var(--rouge);
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
  }
  .person-expertise {
    font-size: 13px;
    color: var(--gris-50);
    line-height: 1.5;
  }
  .equipe-footer {
    text-align: center;
  }

  /* ═════ ÉQUIPE — sous-sections Conseil & Toute l'équipe ═════════════════════════ */
  .equipe-section-label {
    font-family: 'Archivo Black', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rouge);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .equipe-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
  }
  .conseil-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 72px;
  }
  .person-conseil img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    margin-bottom: 24px;
    transition: filter 0.3s ease;
  }
  .person-conseil:hover img {
    filter: brightness(1.05);
  }
  .person-conseil .person-name {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: white;
    margin-bottom: 4px;
    letter-spacing: -0.005em;
  }
  .person-conseil .person-title {
    font-size: 13px;
    color: var(--rouge);
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  /* ═════ ÉQUIPE — bloc fondateur ═════════════════════════ */
  .fondateur-bloc {
    display: grid;
    grid-template-columns: 160px max-content;
    justify-content: start;
    align-items: center;
    gap: 28px;
    margin-bottom: 72px;
  }
  .fondateur-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
  }
  .fondateur-bloc:hover .fondateur-photo {
    filter: brightness(1.05);
  }
  .fondateur-nom {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: white;
    margin-bottom: 6px;
  }
  .fondateur-fonction {
    font-size: 13px;
    color: var(--rouge);
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  @media (max-width: 768px) {
    .fondateur-bloc { grid-template-columns: 160px; gap: 20px; }
  }

  .equipe-panorama-placeholder {
    width: 100%;
    aspect-ratio: 4 / 1;
    background:
      repeating-linear-gradient(135deg,
        transparent 0,
        transparent 24px,
        rgba(255, 255, 255, 0.025) 24px,
        rgba(255, 255, 255, 0.025) 25px),
      linear-gradient(180deg, #141414 0%, #1c1c1c 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--gris-50);
    margin-bottom: 56px;
  }
  .panorama-icon {
    color: rgba(255, 255, 255, 0.35);
  }
  .panorama-text {
    font-size: 13px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
  }
  @media (max-width: 768px) {
    .conseil-grid { grid-template-columns: 1fr; gap: 40px; }
    .equipe-panorama-placeholder { aspect-ratio: 16 / 9; }
  }

  /* ═════ CTA FINAL ═════════════════════════ */
  .cta-final {
    padding: 120px 0;
    background: var(--blanc);
    position: relative;
  }
  .cta-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }
  .cta-final h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    color: var(--noir);
  }
  .cta-final h2 em { font-style: italic; font-weight: 400; color: var(--rouge); }
  .cta-final p {
    font-size: 18px;
    color: var(--gris-70);
    margin-bottom: 40px;
    line-height: 1.6;
  }
  .cta-final-actions {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
  }
  .cta-final-phone {
    padding: 15px 28px 15px 24px !important;
    display: inline-flex !important;
    gap: 14px;
    align-items: center;
    text-align: left;
  }
  .cta-phone-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.15;
  }
  .cta-phone-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.75;
  }
  .cta-phone-number {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .cta-final-hours {
    font-size: 13px;
    color: var(--gris-50);
    margin-top: 12px;
  }

  /* ═════ FOOTER ═════════════════════════ */
  
  
  
    
    

    
  
  
  
  .footer-contact a {
    color: var(--gris-50);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.2s;
  }
  .footer-contact a:hover { color: white; }
  footer h5 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: white;
    margin-bottom: 20px;
  }
  footer ul {
    list-style: none;
  }
  footer ul li {
    margin-bottom: 10px;
  }
  footer ul li a {
    color: var(--gris-50);
    font-size: 14px;
    transition: color 0.2s;
  }
  footer ul li a:hover { color: var(--rouge); }
  

  /* ═════ MODALE CONTACT ═════════════════════════ */
  .contact-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 20px;
    overflow-y: auto;
  }
  .contact-modal[aria-hidden="false"] { display: flex; }
  .contact-modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(4px);
    cursor: pointer;
    animation: modalFadeIn 0.25s;
  }
  .contact-modal-panel {
    position: relative;
    background: var(--blanc);
    max-width: 640px; width: 100%;
    padding: 48px 48px 40px;
    box-shadow: 0 20px 60px rgba(10, 10, 10, 0.3);
    border-top: 4px solid var(--rouge);
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }
  @keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .contact-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gris-50);
    transition: color 0.2s, background 0.2s;
  }
  .contact-modal-close:hover { color: var(--rouge); background: var(--rouge-light); }
  .contact-modal-eyebrow {
    font-family: 'Archivo Black', sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--rouge);
    margin-bottom: 12px;
  }
  .contact-modal-panel h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--noir);
    margin-bottom: 12px;
  }
  .contact-modal-intro {
    font-size: 15px;
    color: var(--gris-70);
    line-height: 1.55;
    margin-bottom: 28px;
  }
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .contact-field-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gris-70);
    letter-spacing: 0.02em;
  }
  .contact-field-label em {
    color: var(--rouge);
    font-style: normal;
  }
  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    padding: 12px 14px;
    background: white;
    border: 1px solid var(--rule);
    color: var(--noir);
    transition: all 0.15s;
    width: 100%;
  }
  .contact-field input:focus,
  .contact-field select:focus,
  .contact-field textarea:focus {
    outline: none;
    border-color: var(--rouge);
    box-shadow: 0 0 0 3px var(--rouge-light);
  }
  .contact-field textarea {
    resize: vertical;
    min-height: 100px;
  }
  .contact-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C5092F' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
  }
  .contact-form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
  .contact-form-note {
    font-size: 12px;
    color: var(--gris-50);
    text-align: center;
    margin-top: 8px;
  }
  body.modal-open { overflow: hidden; }

  /* ═════ RESPONSIVE ═════════════════════ */
  @media (max-width: 1000px) {
    .manifeste-claims { grid-template-columns: repeat(2, 1fr); }
    .marques-grid-8 { grid-template-columns: repeat(2, 1fr); }
    .cycle-labels { grid-template-columns: 1fr 2fr 1fr; }
    .cycle-segment-1 { width: 25%; }
    .cycle-segment-2 { width: 50%; }
    .cycle-segment-3 { width: 25%; }
    .expertises-grid { grid-template-columns: repeat(2, 1fr); }
    .dualite-grid { grid-template-columns: 1fr; }
    .equipe-grid { grid-template-columns: repeat(2, 1fr); }
    
    .footer-inner > div:first-child { grid-column: 1 / -1; margin-bottom: 8px; }

    /* Hamburger actif */
    .nav-burger { display: flex; }

    /* === DROPDOWN NAV (mobile) === */
    .nav-item-dropdown { width: 100%; }
    .nav-item-dropdown > .nav-toggle {
      width: 100%;
      justify-content: space-between;
      padding: 18px 0;
      font-size: 17px;
      color: var(--noir);
      font-weight: 600;
      border-bottom: 1px solid rgba(10, 10, 10, 0.08);
      line-height: 1.4;
    }
    .nav-item-dropdown.is-open > .nav-toggle {
      border-bottom-color: transparent;
      color: var(--rouge);
    }
    .nav-item-dropdown > .nav-toggle::after {
      width: 8px; height: 8px;
      border-width: 2px;
      margin-top: 0;
    }
    .nav-dropdown {
      position: static;
      transform: none;
      opacity: 1;
      visibility: visible;
      box-shadow: none;
      border: none;
      background: rgba(10, 10, 10, 0.03);
      padding: 0;
      min-width: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      border-radius: 0;
      margin: 0 -32px;
    }
    .nav-item-dropdown.is-open .nav-dropdown {
      max-height: 700px;
      border-bottom: 1px solid rgba(10, 10, 10, 0.08);
      padding: 4px 0 12px;
      transform: none;
    }
    .nav-dropdown a {
      padding: 11px 32px;
      font-size: 15px;
      color: var(--gris-70);
      font-weight: 500;
      border-bottom: none !important;
    }
    .nav-dropdown a:hover { background: rgba(197, 9, 47, 0.06); }
    .nav-dropdown-divider { margin: 4px 32px; }
    .nav-links {
      position: fixed;
      top: 0; right: 0; bottom: 0;
      width: min(320px, 85vw);
      background: var(--blanc);
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 96px 32px 32px;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 999;
      box-shadow: -8px 0 32px rgba(10, 10, 10, 0.15);
      overflow-y: auto;
    }
    .nav-links.is-open { transform: translateX(0); }
    .nav-links a {
      padding: 18px 0;
      font-size: 17px;
      border-bottom: 1px solid rgba(10, 10, 10, 0.08);
      color: var(--noir);
      font-weight: 600;
    }
    .nav-links a:last-child { border-bottom: none; }
    .nav-links .nav-cta {
      margin-top: 24px;
      text-align: center;
      padding: 16px 20px;
      border-bottom: none;
    }
    .nav-overlay.is-visible { display: block; }
    body.nav-open { overflow: hidden; }
  }

  @media (max-width: 600px) {
    .container { padding: 0 20px; }
    .hero { padding: 56px 0 64px; }
    .hero h1 { font-size: clamp(38px, 10vw, 54px); }
    .hero-lede { font-size: 16px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-ghost { justify-content: center; }
    .emblem-frame { padding: 32px 36px 24px; }
    .emblem-juri, .emblem-fidu { font-size: 54px; }
    .emblem-tag { font-size: 11px; }

    .manifeste, .marques, .expertises, .dualite, .equipe, .cta-final {
      padding: 72px 0;
    }
    .manifeste-claims { grid-template-columns: 1fr; }
    .marques-grid-8 { grid-template-columns: 1fr; }
    .cycle-line, .cycle-segments { display: none; }
    .cycle-labels { grid-template-columns: 1fr; gap: 6px; }
    .cycle-label { text-align: left; padding: 0; justify-self: start; }
    .expertises-grid { grid-template-columns: 1fr; }
    .equipe-grid { grid-template-columns: 1fr; }

    .dualite-card { padding: 32px 24px; }
    .dualite-card h3 { font-size: 26px; }
    .dualite-card-footer { flex-direction: column; gap: 16px; align-items: flex-start; }
    .carnet-level {
      grid-template-columns: 1fr auto;
      gap: 10px;
    }
    .carnet-level-tag {
      grid-column: 1 / -1;
      min-width: 0;
      justify-self: flex-start;
    }
    .dualite-footnote { padding: 16px 20px; font-size: 13px; }

    .cta-final-actions { flex-direction: column; width: 100%; }
    .cta-final-phone { justify-content: center; }

    
    
    .contact-modal-panel { padding: 36px 24px 28px; }
    .contact-form-row { grid-template-columns: 1fr; gap: 16px; }
  }


  /* ═══════════════════════════════════════════════════════
     FOOTER — responsive maîtrisé, mobile-first bas-up
     ═══════════════════════════════════════════════════════ */
  footer {
    background: var(--noir);
    color: var(--gris-50);
    padding: 48px 0 24px;
    font-size: 13px;
    /* Force le rouge JuriFidu dans le footer (override des couleurs de pont/formule) */
    --rouge: #C5092F;
    --rouge-dark: #A00725;
    --rouge-light: #FCE5E9;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  /* Logo + infos branding */
  .footer-brand {
    margin-bottom: 14px;
  }
  .footer-logo-img {
    width: 96px;
    height: auto;
    display: block;
    max-width: 100%;
  }

  .footer-address {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gris-50);
    margin-bottom: 16px;
  }
  .footer-contact {
    font-size: 14px;
    line-height: 1.7;
  }
  .footer-contact a {
    color: var(--gris-50);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-contact a:hover { color: white; }

  /* Listes des colonnes */
  .footer-inner h5 {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: white;
    margin: 0 0 16px;
  }
  .footer-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-inner ul li {
    padding: 4px 0;
  }
  .footer-inner ul a {
    color: var(--gris-50);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-inner ul a:hover { color: white; }

  /* Footer-bottom : copyright + liens légaux */
  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    color: var(--gris-50);
  }

  /* ─── Tablette paysage : 900-1199px ─── */
  @media (max-width: 1199px) {
    .footer-inner {
      grid-template-columns: 1.3fr 1fr 1fr 1fr;
      gap: 36px;
    }
    .footer-logo-img { width: 88px; }
  }

  /* ─── Tablette portrait : 720-1023px ─── */
  @media (max-width: 1023px) {
    footer { padding: 64px 0 28px; }
    .footer-inner {
      grid-template-columns: 1fr 1fr;
      gap: 40px 32px;
      margin-bottom: 48px;
    }
    /* Branding occupe toute la largeur en haut */
    .footer-inner > div:first-child {
      grid-column: 1 / 3;
      margin-bottom: 8px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-logo-img { width: 88px; }
  }

  /* ─── Phablette : 480-719px ─── */
  @media (max-width: 719px) {
    footer { padding: 56px 0 24px; }
    .footer-inner {
      grid-template-columns: 1fr 1fr;
      gap: 32px 24px;
      margin-bottom: 40px;
    }
    .footer-inner > div:first-child {
      grid-column: 1 / 3;
      padding-bottom: 28px;
    }
    .footer-logo-img { width: 120px; }
    .footer-inner h5 { font-size: 13px; margin-bottom: 12px; }
    .footer-inner ul a { font-size: 14px; }

    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      padding-top: 24px;
      font-size: 11px;
      line-height: 1.6;
    }
  }

  /* ─── Smartphone : < 480px ─── */
  @media (max-width: 479px) {
    footer { padding: 48px 0 20px; }
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 28px;
      margin-bottom: 32px;
    }
    .footer-inner > div:first-child {
      grid-column: 1;
      padding-bottom: 24px;
    }
    .footer-logo-img { width: 110px; }
    .footer-brand { margin-bottom: 16px; }
    .footer-address, .footer-contact { font-size: 13px; }
    .footer-inner h5 {
      font-size: 10px;
      letter-spacing: 0.14em;
      margin-bottom: 10px;
    }
    .footer-inner ul li { padding: 3px 0; }
    .footer-inner ul a { font-size: 13px; }

    .footer-bottom {
      padding-top: 20px;
      font-size: 10px;
      line-height: 1.5;
    }
  }

  
  /* ═════ PONTS (home — bloc inséré entre Marques et Tarifs) ═════════ */
  .ponts-section {
    padding: 100px 0;
    background: var(--blanc);
    border-top: 1px solid var(--rule);
  }
  .ponts-section h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: var(--noir);
  }
  .ponts-section h2 em {
    font-style: italic; font-weight: 400; color: var(--rouge);
  }
  .ponts-section-intro {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gris-70);
    max-width: 820px;
    margin-bottom: 56px;
  }
  .ponts-section-intro strong { color: var(--noir); font-weight: 600; }

  .ponts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
  }
  @media (max-width: 980px) {
    .ponts-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .ponts-grid { grid-template-columns: 1fr; }
  }

  /* Card pont avec mini-logo SVG (palette v6 — couleur déclinable par pont) */
  .pont-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background: var(--blanc-pur);
    border: 1px solid var(--rule);
    border-bottom: 4px solid var(--pont-color, var(--rouge));
    text-decoration: none;
    color: var(--noir);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    min-height: 230px;
    position: relative;
  }
  .pont-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .pont-card-logo {
    margin-bottom: 18px;
    line-height: 0;
  }
  .pont-card-logo svg {
    display: block;
  }
  .pont-card-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    color: var(--noir);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
    line-height: 1.1;
  }
  .pont-card-lang {
    font-size: 14px;
    color: var(--gris-70);
    margin-bottom: 18px;
    line-height: 1.4;
  }
  .pont-card-cta {
    margin-top: auto;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--pont-color, var(--rouge));
    letter-spacing: 0.01em;
  }

  .ponts-section-cta {
    text-align: center;
  }
  .ponts-section-cta .btn-primary {
    background: var(--noir);
    border-color: var(--noir);
  }
  .ponts-section-cta .btn-primary:hover {
    background: var(--rouge);
    border-color: var(--rouge);
  }


  /* Pavés métiers cliquables — comportement <a> */
  a.expertise { text-decoration: none; color: inherit; display: block; }
  a.expertise:hover { color: inherit; }
  .expertise-link { display: inline-block; }


  /* ════ Footer = couleurs JuriFidu (override des palettes locales) ═══ */
  footer {
    --rouge: #C5092F;
    --rouge-dark: #A00725;
    --rouge-light: #FCE5E9;
    --bleu: #0159AA;
    --bleu-dark: #014684;
    --bleu-light: #E5EEF7;
    --noir: #3A3A3A;
  }
  /* Compactage du footer */
  footer { padding: 56px 0 24px !important; }
  .footer-inner { gap: 36px !important; margin-bottom: 40px !important; }
  .footer-logo-img { width: 100px !important; }
  @media (max-width: 600px) {
    footer { padding: 48px 0 20px !important; }
    .footer-inner { gap: 32px !important; margin-bottom: 32px !important; }
    .footer-logo-img { width: 90px !important; }
  }

