/* CSS extrait de marque-droit-direct.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;
  }

  
  /* === SUBNAV CONTEXTUELLE FLOTTANTE =========== */
  .subnav {
    position: sticky;
    top: 87px; /* hauteur nav principale */
    z-index: 90;
    background: #F4F0E8; /* teinte parchemin */
    border-bottom: 1px solid rgba(10,10,10,0.12);
    box-shadow: 0 2px 6px rgba(10,10,10,0.05);
  }
  .subnav-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
  }
  .subnav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .subnav-list li { display: flex; align-items: center; }
  .subnav-list a {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0A0A0A;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    line-height: 1.2;
  }
  .subnav-list a:hover { color: var(--brand, #C5092F); }
  .subnav-list a.is-current {
    color: var(--brand, #C5092F);
    border-bottom-color: var(--brand, #C5092F);
    font-weight: 700;
  }
  .subnav-all {
    font-weight: 700 !important;
    font-style: italic;
    color: #0A0A0A !important;
  }
  .subnav-all:hover { color: #0A0A0A !important; text-decoration: underline; }
  .subnav-divider {
    width: 1px;
    height: 18px;
    background: rgba(10,10,10,0.15);
    margin: 0 6px;
  }
  .subnav-cta {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    background: #0A0A0A;
    color: #FAFAFA;
    border-radius: 999px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s;
    flex-shrink: 0;
  }
  .subnav-cta:hover { background: #C5092F; }
  .subnav-list .lbl-short { display: none; }
  @media (max-width: 1180px) {
    .subnav-list .lbl-long { display: none; }
    .subnav-list .lbl-short { display: inline; }
  }
  @media (max-width: 768px) {
    .subnav { display: none; }
  }
  .subnav-sentinel { height: 1px; width: 1px; }
  @media (min-width: 769px) {
    body:has(.subnav) .nav-cta { display: none; }
  }
  /* Couleurs des formules (data-brand) */
  .subnav-list a[data-brand="startup"] { --brand: #EC4899; }
  .subnav-list a[data-brand="droit"]   { --brand: #D4212D; }
  .subnav-list a[data-brand="huma"]    { --brand: #8B6F47; }
  .subnav-list a[data-brand="conta"]   { --brand: #E89730; }
  .subnav-list a[data-brand="juri"]    { --brand: #6A5ACD; }
  .subnav-list a[data-brand="taxe"]    { --brand: #2F8B47; }
  .subnav-list a[data-brand="buro"]    { --brand: #2E77A8; }
  .subnav-list a[data-brand="valo"]    { --brand: #0F4C5C; }
  .subnav-list a[data-brand="cc60"]    { --brand: #1B396B; }
  /* Métiers et ponts (couleurs maison) */
  .subnav-list a[data-cat="metier"] { --brand: #C5092F; }
  .subnav-list a[data-cat="pont"]   { --brand: #0159AA; }


  /* === 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: var(--blanc);
    position: relative;
    overflow: hidden;
  }
  .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: 13px;
    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: 13px;
    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="conta"] .marque-name { color: #E89730; }
  .marque-card[data-brand="taxe"] .marque-name { color: #2F8B47; }
  .marque-card[data-brand="buro"] .marque-name { color: #2E77A8; }
  .marque-card[data-brand="central"] .marque-name { color: #650D0D; }
  .marque-card[data-brand="cc60"] .marque-name { color: #3FA1A1; }
  .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;
  }

  /* ═════ DUALITÉ (2 modes de travail) ═════════ */
  .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: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }
  .dualite-card {
    padding: 48px 44px;
    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: 13px;
    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;
  }

  /* ═════ 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: 13px;
    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: 14px; }

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

  
  /* Bandeau "Ligne directe" — affiché juste après breadcrumb */
  .ligne-directe-bandeau {
    background: rgba(212, 33, 45, 0.35);
    border-top: 2px solid rgba(212, 33, 45, 0.7);
    border-bottom: 2px solid rgba(212, 33, 45, 0.7);
    padding: 14px 0;
    margin-bottom: 0;
  }
  .ligne-directe-bandeau .container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #4A4A4A;
    flex-wrap: wrap;
  }
  .ligne-directe-bandeau .ld-label { color: #6B6B6B; }
  .ligne-directe-bandeau .ld-formule { color: #262626; font-weight: 700; }
  .ligne-directe-bandeau .ld-numero {
    color: var(--dd-rouge);
    font-weight: 700;
    font-size: 16px;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    letter-spacing: 0.02em;
  }
  .ligne-directe-bandeau .ld-numero:hover { text-decoration: underline; }
  .ligne-directe-bandeau .ld-icon { width: 16px; height: 16px; color: var(--dd-rouge); flex-shrink: 0; }
  @media (max-width: 600px) {
    .ligne-directe-bandeau { padding: 10px 0; }
    .ligne-directe-bandeau .container { font-size: 13px; gap: 8px; }
    .ligne-directe-bandeau .ld-numero { font-size: 15px; }
  }


  /* Bloc CTA/contact dédié — affiché juste avant le footer */
  .formule-contact-block {
    background: #FAFAFA;
    border-top: 1px solid #E5E5E5;
    padding: 80px 0 96px;
  }
  .formule-contact-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 56px 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  }
  .formule-contact-eyebrow {
    font-family: 'Archivo Black', sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--dd-rouge);
    margin-bottom: 16px;
  }
  .formule-contact-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 32px;
    line-height: 1.2;
    color: var(--noir);
    margin-bottom: 12px;
  }
  .formule-contact-intro {
    font-size: 16px;
    color: var(--gris-70);
    margin-bottom: 36px;
    line-height: 1.6;
  }
  .formule-contact-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .formule-contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--dd-rouge);
    color: white;
    padding: 18px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    border: 2px solid var(--dd-rouge);
    box-shadow: 0 2px 8px rgba(212, 33, 45, 0.20);
    min-height: 64px;
    box-sizing: border-box;
  }
  .formule-contact-phone:hover {
    background: #A91823;
    border-color: #A91823;
    box-shadow: 0 4px 14px rgba(212, 33, 45, 0.30);
    transform: translateY(-1px);
  }
  .formule-contact-phone .fcp-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
  .formule-contact-phone .fcp-text {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  .formule-contact-phone .fcp-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
  }
  .formule-contact-phone .fcp-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 18px;
    letter-spacing: 0.02em;
  }
  .formule-contact-or {
    font-size: 14px;
    color: var(--gris-50);
    font-style: italic;
  }
  .formule-contact-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    background: var(--dd-rouge);
    border: 2px solid var(--dd-rouge);
    padding: 18px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(212, 33, 45, 0.20);
    min-height: 64px;
    box-sizing: border-box;
  }
  .formule-contact-form-btn .fcf-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
  .formule-contact-form-btn .fcf-text {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  .formule-contact-form-btn .fcf-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
    color: inherit;
  }
  .formule-contact-form-btn .fcf-action {
    font-family: 'Archivo Black', sans-serif;
    font-size: 16px;
    letter-spacing: 0.02em;
    color: inherit;
  }
  .formule-contact-form-btn:hover {
    background: #A91823;
    border-color: #A91823;
    color: white;
    box-shadow: 0 4px 14px rgba(212, 33, 45, 0.30);
    transform: translateY(-1px);
  }
  @media (max-width: 600px) {
    .formule-contact-block { padding: 56px 0 64px; }
    .formule-contact-card { padding: 40px 24px; }
    .formule-contact-title { font-size: 24px; }
    .formule-contact-actions { flex-direction: column; gap: 16px; }
    .formule-contact-or { display: block; }
  }


  /* Footer-bottom distinctif sur pages de formules */
  .footer-bottom-formule {
    background: #3A3A3A;
    margin: 32px -9999px 0;
    padding: 24px 9999px;
    border-top: 2px solid var(--rouge);
  }
  .footer-bottom-formule .footer-bottom {
    border-top: none;
    padding-top: 0;
  }
  .footer-bottom-formule-note {
    text-align: center;
    font-size: 12px;
    color: var(--gris-30);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 1.6;
  }
  .footer-bottom-formule-note strong {
    color: white;
    font-weight: 600;
  }


  /* ════ 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; }
  }

/* ═════ PAGES /metiers/* — STYLES COMMUNS ═════════════════════════ */

  /* Breadcrumb */

  /* Hero */
  .page-hero {
    padding: 120px 0 72px;
    background: white;
    border-bottom: 1px solid var(--rule);
  }
  .page-hero-eyebrow {
    font-family: 'Archivo Black', sans-serif;
    font-size: 13px;
    letter-spacing: 0.22em;
    color: var(--rouge);
    margin-bottom: 20px;
  }
  .page-hero h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 5.5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--noir);
    max-width: 920px;
  }
  .page-hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--rouge);
  }
  .page-hero-lede {
    font-size: 19px;
    line-height: 1.55;
    color: var(--gris-70);
    max-width: 820px;
  }
  .page-hero-lede strong { color: var(--noir); font-weight: 600; }

  /* TOC sobre, sans numéros */
  .page-toc {
    padding: 22px 0;
    background: white;
    border-bottom: 1px solid var(--rule);
  }
  .page-toc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: baseline;
  }
  .page-toc-list li {
    font-family: 'Archivo', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    color: var(--gris-50);
    display: flex;
    align-items: baseline;
  }
  .page-toc-list li:not(:last-child)::after {
    content: "·";
    margin: 0 14px;
    color: var(--gris-30);
    font-style: normal;
    font-weight: 400;
  }
  .page-toc-list a {
    color: var(--gris-70);
    padding: 2px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
  }
  .page-toc-list a:hover {
    color: var(--rouge);
    border-bottom-color: var(--rouge);
  }

  /* Sections */
  .page-section {
    padding: 88px 0;
    background: white;
    scroll-margin-top: 80px;
  }
  .page-section + .page-section { border-top: 1px solid var(--rule); }
  .page-section-alt { background: var(--blanc); }
  .page-section h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: clamp(30px, 3.5vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
    color: var(--noir);
    max-width: 900px;
  }
  .page-section h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--rouge);
  }
  .page-section h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--noir);
    margin-bottom: 14px;
    margin-top: 32px;
  }
  .page-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gris-70);
    max-width: 820px;
    margin-bottom: 20px;
  }
  .page-section p strong { color: var(--noir); font-weight: 600; }
  .page-section p a { color: var(--rouge); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
  .page-section p a:hover { border-bottom-color: var(--rouge); }

  /* Grille à 2 ou 3 colonnes pour champs d'intervention */
  .perimeter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
  }
  .perimeter-card {
    padding: 28px 28px;
    background: var(--blanc);
    border-left: 3px solid var(--rouge);
  }
  .perimeter-card:nth-child(even) { border-left-color: var(--bleu); }
  .perimeter-card-eyebrow {
    font-family: 'Archivo Black', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--gris-50);
    margin-bottom: 10px;
  }
  .perimeter-card h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 19px;
    line-height: 1.2;
    color: var(--noir);
    letter-spacing: -0.015em;
    margin: 0 0 12px;
  }
  .perimeter-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gris-70);
    margin: 0 0 12px;
    max-width: none;
  }
  .perimeter-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .perimeter-card li {
    font-size: 13px;
    line-height: 1.5;
    color: var(--gris-70);
    padding: 4px 0 4px 14px;
    position: relative;
  }
  .perimeter-card li::before {
    content: "·";
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--rouge);
    font-weight: 700;
  }

  /* Pour qui — profils clients */
  .audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
  }
  .audience-card {
    padding: 28px 24px;
    background: var(--blanc);
    border-top: 3px solid var(--rouge);
  }
  .audience-card:nth-child(2) { border-top-color: var(--bleu); }
  .audience-card:nth-child(3) { border-top-color: var(--gris-70); }
  .audience-card h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--noir);
    margin: 0 0 12px;
  }
  .audience-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gris-70);
    margin: 0 0 12px;
    max-width: none;
  }
  .audience-card p:last-child { margin-bottom: 0; }

  /* Cas d'usage — liste narrative */
  .cases-list {
    max-width: 880px;
    margin-top: 24px;
  }
  .case-item {
    padding: 28px 0;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 24px;
    align-items: start;
  }
  .case-item:last-child { border-bottom: 1px solid var(--rule); }
  .case-num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--rouge);
    padding-top: 4px;
  }
  .case-body h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--noir);
    margin: 0 0 8px;
  }
  .case-body p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--gris-70);
    margin: 0 0 8px;
    max-width: none;
  }
  .case-body p:last-child { margin-bottom: 0; }
  .case-body p strong { color: var(--noir); font-weight: 600; }
  .case-ampleur {
    display: inline-block;
    font-family: 'Archivo Black', sans-serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    background: var(--gris-10);
    color: var(--gris-70);
    padding: 3px 10px;
    margin-top: 8px;
  }

  /* Bloc "accès aux autres métiers" — articulation court */
  .articulation {
    background: var(--noir);
    color: white;
    padding: 56px 48px;
    margin-top: 24px;
  }
  .articulation-eyebrow {
    font-family: 'Archivo Black', sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--rouge);
    filter: brightness(1.4);
    margin-bottom: 14px;
  }
  .articulation h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: white;
    margin: 0 0 14px;
  }
  .articulation h3 em { font-style: italic; font-weight: 400; color: var(--bleu-light); }
  .articulation p {
    font-size: 15px;
    line-height: 1.65;
    color: #CFCFCF;
    margin: 0 0 16px;
    max-width: 720px;
  }
  .articulation p strong { color: white; font-weight: 600; }
  .articulation-link {
    display: inline-block;
    margin-top: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: white;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
  }

  /* Engagement synthétique */
  .engagement-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
  }
  .engagement-summary-row {
    padding: 22px 24px;
    background: var(--blanc);
    border-top: 2px solid var(--rouge);
  }
  .engagement-summary-row[data-mode="carnet"] { border-top-color: var(--bleu); }
  .engagement-summary-row[data-mode="mandat"] { border-top-color: var(--gris-70); }
  .engagement-summary-label {
    font-family: 'Archivo Black', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--rouge);
    margin-bottom: 10px;
  }
  .engagement-summary-row[data-mode="carnet"] .engagement-summary-label { color: var(--bleu); }
  .engagement-summary-row[data-mode="mandat"] .engagement-summary-label { color: var(--gris-70); }
  .engagement-summary-row h4 {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--noir);
    margin: 0 0 8px;
  }
  .engagement-summary-row p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--gris-70);
    margin: 0;
    max-width: none;
  }
  .engagement-see-more {
    margin-top: 20px;
    font-size: 14px;
  }
  .engagement-see-more a {
    color: var(--rouge);
    border-bottom: 1px solid transparent;
    margin-right: 16px;
  }
  .engagement-see-more a:hover { border-bottom-color: var(--rouge); }

  /* Équipe placeholder */
  .equipe-placeholder {
    margin-top: 24px;
    padding: 32px 36px;
    background: var(--blanc);
    border: 1px dashed var(--gris-30);
    max-width: 820px;
  }
  .equipe-placeholder p { margin: 0 0 8px; font-size: 15px; }
  .equipe-placeholder a { color: var(--rouge); font-weight: 600; }

  /* FAQ */
  .faq-list {
    max-width: 880px;
    margin-top: 8px;
  }
  .faq-item { border-bottom: 1px solid var(--rule); }
  .faq-item:first-child { border-top: 1px solid var(--rule); }
  .faq-item summary {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.01em;
    color: var(--noir);
    padding: 22px 40px 22px 0;
    cursor: pointer;
    position: relative;
    list-style: none;
    transition: color 0.2s;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover { color: var(--rouge); }
  .faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Archivo', sans-serif;
    font-weight: 300;
    font-size: 28px;
    color: var(--rouge);
    line-height: 1;
    transition: transform 0.2s;
  }
  .faq-item[open] summary::after { content: "−"; }
  .faq-item-body {
    padding: 0 60px 22px 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--gris-70);
  }
  .faq-item-body strong { color: var(--noir); font-weight: 600; }
  .faq-item-body a { color: var(--rouge); }
  .faq-item-body a:hover { text-decoration: underline; }
  .faq-item-body p + p { margin-top: 12px; }

  /* CTA final */
  .page-cta {
    background: var(--noir);
    color: white;
    padding: 96px 0;
    text-align: center;
  }
  .page-cta h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: white;
    margin-bottom: 20px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-cta h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--rouge);
    filter: brightness(1.4);
  }
  .page-cta-lede {
    font-size: 17px;
    line-height: 1.6;
    color: #B8B8B8;
    max-width: 620px;
    margin: 0 auto 40px;
  }
  .page-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .page-cta .btn-primary { background: var(--rouge); border-color: var(--rouge); }
  .page-cta .btn-primary:hover { background: var(--rouge-dark); border-color: var(--rouge-dark); }
  .page-cta .btn-ghost { color: white; border-color: white; }
  .page-cta .btn-ghost:hover { background: white; color: var(--noir); }

  /* Responsive */
  @media (max-width: 1000px) {
    .perimeter-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .engagement-summary { grid-template-columns: 1fr; }
    .articulation { padding: 40px 32px; }
  }
  @media (max-width: 600px) {
    .page-hero { padding: 72px 0 56px; }
    .page-section { padding: 56px 0; }
    .perimeter-card, .audience-card { padding: 22px 20px; }
    .case-item { grid-template-columns: 1fr; gap: 8px; }
    .articulation { padding: 32px 24px; }
    .articulation h3 { font-size: 22px; }
    .equipe-placeholder { padding: 24px 20px; }
    .page-cta-actions { flex-direction: column; }
    .page-cta-actions .btn-primary, .page-cta-actions .btn-ghost { width: 100%; justify-content: center; }
  }

/* ═════ PAGES /marques/* — EXTRAS ═════════════════════════ */

  /* Hub : grille de 8 cards marques (ordre cycle de vie) */
  .marques-hub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
  }
  .marque-hub-card {
    padding: 28px 26px 24px;
    background: white;
    border: 1px solid var(--rule);
    border-top: 4px solid var(--marque-color, var(--noir));
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .marque-hub-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10, 10, 10, 0.08);
  }
  .marque-hub-card-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: var(--noir);
    margin-bottom: 6px;
  }
  .marque-hub-card-pitch {
    font-family: 'Archivo', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    color: var(--gris-70);
    line-height: 1.4;
    margin-bottom: 16px;
    min-height: 54px;
  }
  .marque-hub-card-uses {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }
  .marque-hub-card-uses li {
    padding: 6px 0 6px 14px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--gris-70);
    position: relative;
  }
  .marque-hub-card-uses li::before {
    content: "·";
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--marque-color, var(--rouge));
    font-weight: 700;
  }
  .marque-hub-card-price {
    padding-top: 14px;
    border-top: 1px solid var(--rule);
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--noir);
    margin-top: auto;
  }
  .marque-hub-card-price small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--gris-50);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
  }
  .marque-hub-card-links {
    margin-top: 14px;
    font-size: 12px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .marque-hub-card-links a {
    color: var(--marque-color, var(--rouge));
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
  }
  .marque-hub-card-links a:hover { border-bottom-color: currentColor; }

  /* Aide à la décision */
  .decision-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    font-size: 15px;
    background: white;
  }
  .decision-table thead {
    background: var(--noir);
    color: white;
  }
  .decision-table th {
    padding: 14px 20px;
    text-align: left;
    font-family: 'Archivo Black', sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    font-weight: normal;
  }
  .decision-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--rule);
    color: var(--gris-70);
    vertical-align: top;
  }
  .decision-table tr:last-child td { border-bottom: none; }
  .decision-table tr:hover td { background: var(--blanc); }
  .decision-table td:first-child {
    color: var(--noir);
    font-weight: 500;
    width: 40%;
  }
  .decision-table td:last-child {
    font-family: 'Archivo Black', sans-serif;
    font-size: 12px;
    letter-spacing: 0.02em;
    text-align: right;
  }
  .decision-table td a {
    color: var(--rouge);
    border-bottom: 1px solid transparent;
  }
  .decision-table td a:hover { border-bottom-color: currentColor; }

  /* Page teaser marque : hero avec signature couleur */
  .marque-hero {
    padding: 120px 0 72px;
    background: white;
    border-bottom: 1px solid var(--rule);
    position: relative;
  }
  .marque-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--marque-color, var(--rouge));
  }
  .marque-hero-eyebrow {
    font-family: 'Archivo Black', sans-serif;
    font-size: 13px;
    letter-spacing: 0.22em;
    color: var(--marque-color, var(--rouge));
    margin-bottom: 20px;
  }
  .marque-hero-wordmark {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(56px, 8vw, 96px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--marque-color, var(--noir));
    margin-bottom: 20px;
  }
  .marque-hero-tagline {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--noir);
    margin-bottom: 24px;
    max-width: 720px;
  }
  .marque-hero-lede {
    font-size: 17px;
    line-height: 1.6;
    color: var(--gris-70);
    max-width: 780px;
    margin-bottom: 28px;
  }
  .marque-hero-lede strong { color: var(--noir); font-weight: 600; }
  .marque-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: var(--marque-color, var(--rouge));
    color: white;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    border: 2px solid var(--marque-color, var(--rouge));
    transition: filter 0.2s;
  }
  .marque-hero-cta:hover { filter: brightness(1.1); }

  /* Tableau formules */
  .formules-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    font-size: 15px;
    background: white;
  }
  .formules-table thead {
    background: var(--noir);
    color: white;
  }
  .formules-table th {
    padding: 14px 20px;
    text-align: left;
    font-family: 'Archivo Black', sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    font-weight: normal;
  }
  .formules-table th:nth-child(2) { text-align: right; }
  .formules-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--rule);
    color: var(--gris-70);
    vertical-align: middle;
  }
  .formules-table tr:last-child td { border-bottom: none; }
  .formules-table tr:hover td { background: var(--blanc); }
  .formules-table td:first-child {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    color: var(--noir);
  }
  .formules-table td:nth-child(2) {
    text-align: right;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    color: var(--noir);
    white-space: nowrap;
  }

  /* Bloc ressources avec liens externes */
  .resources-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    max-width: 820px;
  }
  .resources-list li {
    padding: 14px 0 14px 22px;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid var(--rule);
    position: relative;
  }
  .resources-list li:last-child { border-bottom: none; }
  .resources-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--marque-color, var(--rouge));
    font-weight: 700;
  }
  .resources-list a {
    color: var(--noir);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
  }
  .resources-list a:hover {
    color: var(--marque-color, var(--rouge));
    border-bottom-color: currentColor;
  }

  /* Responsive */
  @media (max-width: 1000px) {
    .marques-hub-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .marques-hub-grid { grid-template-columns: 1fr; }
    .marque-hero-wordmark { font-size: clamp(44px, 12vw, 72px); }
    .marque-hero-tagline { font-size: 20px; }
    .decision-table { font-size: 14px; }
    .decision-table th, .decision-table td { padding: 10px 14px; }
    .formules-table th, .formules-table td { padding: 12px 14px; font-size: 13px; }
  }

:root { --marque-color: #D4212D; }

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,300;1,400;1,500&display=swap');

  .dd-page {
    --dd-rouge: #D4212D;
    --dd-noir: #262626;
    --dd-blanc: #FAF8F5;
    --dd-blanc-pur: #FFFFFF;
    --dd-gris-70: #4A4A4A;
    --dd-gris-50: #7A7A7A;
    --dd-gris-30: #C8C6C2;
    --dd-rule: #E8E6E2;

    --dd-t-display: clamp(48px, 6vw, 80px);
    --dd-t-headline: clamp(32px, 3.6vw, 48px);
    --dd-t-title: clamp(22px, 2.2vw, 28px);
    --dd-t-pitch: clamp(19px, 1.7vw, 23px);
    --dd-t-body: 16px;
    --dd-t-small: 14px;
    --dd-t-micro: 11px;
    --dd-t-price: clamp(64px, 8vw, 112px);
    --dd-t-price-eco: clamp(32px, 4vw, 56px);
    /* Italique narratif — toujours +1 à +2px vs pitch/body équivalent */
    --dd-t-italic-xl: clamp(22px, 2.2vw, 28px);   /* eco-intro, guarantee-headline */
    --dd-t-italic-l: clamp(20px, 1.9vw, 24px);    /* pitch, ledes, price-mens */
    --dd-t-italic-m: 17px;                         /* upgrades-lede, faq-summary */
    --dd-t-italic-s: 15px;                         /* conclusion-label, cta-secondary */

    --dd-sp-xs: 8px;
    --dd-sp-s: 16px;
    --dd-sp-m: 24px;
    --dd-sp-l: 40px;
    --dd-sp-xl: 64px;
    --dd-sp-2xl: 96px;

    font-family: 'Archivo', -apple-system, sans-serif;
    font-size: var(--dd-t-body);
    line-height: 1.6;
    color: var(--dd-noir);
    background: var(--dd-blanc);
  }

  /* Grille 12 colonnes */
  .dd-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }
  @media (max-width: 1024px) { .dd-grid { padding: 0 32px; gap: 20px; } }
  @media (max-width: 768px) { .dd-grid { padding: 0 24px; gap: 16px; grid-template-columns: repeat(6, 1fr); } }
  @media (max-width: 480px) { .dd-grid { padding: 0 20px; grid-template-columns: repeat(4, 1fr); } }

  /* Breadcrumb */
  .dd-breadcrumb {
    grid-column: 1 / 13;
    padding: 24px 0 0;
    font-size: var(--dd-t-small);
    color: var(--dd-gris-50);
  }
  .dd-breadcrumb a { color: var(--dd-gris-70); text-decoration: none; }
  .dd-breadcrumb a:hover { color: var(--dd-rouge); }
  .dd-breadcrumb span { margin: 0 8px; color: var(--dd-gris-30); }
  @media (max-width: 768px) { .dd-breadcrumb { grid-column: 1 / 7; } }
  @media (max-width: 480px) { .dd-breadcrumb { grid-column: 1 / 5; } }

  /* HERO */
  .dd-hero {
    padding: 96px 0 80px;
    background: var(--dd-blanc);
    position: relative;
  }
  .dd-hero::before {
    content: ""; position: absolute; top: 0; left: 0;
    width: 100%; height: 4px; background: var(--dd-rouge);
  }
  .dd-hero-markname {
    grid-column: 1 / 13;
    font-family: 'Archivo', sans-serif;
    font-weight: 500; font-size: var(--dd-t-micro);
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--dd-gris-50);
    margin-bottom: var(--dd-sp-xl);
  }
  .dd-hero-markname-dot { color: var(--dd-rouge); }
  .dd-hero-logo-col { grid-column: 1 / 4; padding-top: 16px; }
  .dd-hero-logo-img { width: 100%; height: auto; max-width: 220px; }
  .dd-hero-title-col { grid-column: 4 / 13; }
  .dd-hero-title { margin: 0 0 var(--dd-sp-l); }
  .dd-hero-line1 {
    display: block;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 900; font-size: clamp(28px, 3.6vw, 48px);
    line-height: 1.05; letter-spacing: -0.02em;
    color: var(--dd-noir);
  }
  .dd-hero-line2 {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 400;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.15; letter-spacing: -0.01em;
    color: var(--dd-rouge); margin-top: 0.25em;
  }
  .dd-hero-pitch {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 300;
    font-size: var(--dd-t-italic-l); line-height: 1.45;
    color: var(--dd-noir); max-width: 640px; margin: 0;
  }
  .dd-hero-pitch strong {
    font-family: 'Archivo', sans-serif;
    font-style: normal; font-weight: 600; color: var(--dd-noir);
  }
  @media (max-width: 768px) {
    .dd-hero { padding: 72px 0 56px; }
    .dd-hero-markname { grid-column: 1 / 7; margin-bottom: var(--dd-sp-l); }
    .dd-hero-logo-col { grid-column: 1 / 7; padding-top: 0; margin-bottom: var(--dd-sp-l); }
    .dd-hero-logo-img { max-width: 180px; }
    .dd-hero-title-col { grid-column: 1 / 7; }
  }
  @media (max-width: 480px) {
    .dd-hero-markname { grid-column: 1 / 5; }
    .dd-hero-logo-col { grid-column: 1 / 5; }
    .dd-hero-logo-img { max-width: 140px; }
    .dd-hero-title-col { grid-column: 1 / 5; }
  }

  .dd-signature-band { height: 6px; background: var(--dd-rouge); width: 100%; }

  /* SECTION PRIX + ÉCONOMIE */
  .dd-price-section { padding: 96px 0; background: var(--dd-noir); color: white; }
  .dd-price-col { grid-column: 1 / 7; padding-right: 40px; }
  .dd-eco-col { grid-column: 8 / 13; }
  .dd-price-eyebrow, .dd-eco-eyebrow {
    font-family: 'Archivo', sans-serif;
    font-weight: 500; font-size: var(--dd-t-micro);
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255, 184, 184, 0.85);
    margin-bottom: var(--dd-sp-m);
  }
  .dd-price-big {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 900; font-size: var(--dd-t-price);
    line-height: 0.9; letter-spacing: -0.045em;
    color: white; margin-bottom: var(--dd-sp-s);
  }
  .dd-price-big-unit {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 300;
    font-size: 0.22em; letter-spacing: 0;
    color: rgba(255,255,255,0.7);
    margin-left: 0.12em; vertical-align: 0.45em; white-space: nowrap;
  }
  .dd-price-mens {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 300;
    font-size: var(--dd-t-italic-l); line-height: 1.45;
    color: rgba(255,255,255,0.7); max-width: 460px;
    padding-top: var(--dd-sp-m); margin-top: var(--dd-sp-m);
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .dd-price-mens strong {
    font-family: 'Archivo', sans-serif;
    font-style: normal; font-weight: 600; color: white;
  }
  .dd-eco-intro {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 400;
    font-size: var(--dd-t-italic-xl); line-height: 1.35;
    color: white; margin: 0 0 var(--dd-sp-l); max-width: 460px;
  }
  .dd-eco-intro strong {
    font-family: 'Archivo Black', sans-serif;
    font-style: normal; font-weight: 900; color: var(--dd-rouge);
  }
  .dd-eco-breakdown { margin-bottom: var(--dd-sp-l); }
  .dd-eco-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: var(--dd-t-small);
  }
  .dd-eco-row:first-child { padding-top: 0; }
  .dd-eco-row-label { color: rgba(255,255,255,0.7); }
  .dd-eco-row-value {
    font-weight: 500; color: white; white-space: nowrap;
    margin-left: var(--dd-sp-s);
  }
  .dd-eco-row-total {
    padding-top: var(--dd-sp-s); margin-top: 4px;
    border-bottom: none; border-top: 2px solid rgba(255,255,255,0.25);
  }
  .dd-eco-row-total .dd-eco-row-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 400;
    color: rgba(255,255,255,0.9); font-size: 17px;
  }
  .dd-eco-row-total .dd-eco-row-value {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 900; color: white; font-size: 16px;
  }
  .dd-eco-conclusion {
    padding-top: var(--dd-sp-m);
    display: flex; align-items: baseline; gap: var(--dd-sp-m);
  }
  .dd-eco-conclusion-value {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 900; font-size: var(--dd-t-price-eco);
    line-height: 1; letter-spacing: -0.04em; color: var(--dd-rouge);
  }
  .dd-eco-conclusion-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 300;
    font-size: var(--dd-t-italic-s); line-height: 1.5;
    color: rgba(255,255,255,0.75); max-width: 220px;
  }
  @media (max-width: 768px) {
    .dd-price-section { padding: 72px 0; }
    .dd-price-col {
      grid-column: 1 / 7; padding-right: 0;
      padding-bottom: var(--dd-sp-xl); margin-bottom: var(--dd-sp-xl);
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .dd-eco-col { grid-column: 1 / 7; }
  }
  @media (max-width: 480px) {
    .dd-price-col { grid-column: 1 / 5; }
    .dd-eco-col { grid-column: 1 / 5; }
  }

  /* SECTIONS GÉNÉRIQUES */
  .dd-section { padding: 96px 0; background: var(--dd-blanc); }
  .dd-section-alt { background: var(--dd-blanc-pur); }
  .dd-section-intro { grid-column: 1 / 13; margin-bottom: var(--dd-sp-xl); }
  .dd-section-eyebrow {
    font-family: 'Archivo', sans-serif;
    font-weight: 500; font-size: var(--dd-t-micro);
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--dd-rouge); margin-bottom: var(--dd-sp-m);
  }
  .dd-section-h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 500; font-size: var(--dd-t-headline);
    line-height: 1.08; letter-spacing: -0.025em;
    color: var(--dd-noir); margin: 0 0 var(--dd-sp-m); max-width: 860px;
  }
  .dd-section-h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 400; color: var(--dd-rouge);
  }
  .dd-section-lede {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 300;
    font-size: var(--dd-t-italic-l); line-height: 1.5;
    color: var(--dd-gris-70); max-width: 760px; margin: 0;
  }
  .dd-section-lede strong {
    font-family: 'Archivo', sans-serif;
    font-style: normal; font-weight: 600; color: var(--dd-noir);
  }
  @media (max-width: 768px) {
    .dd-section { padding: 72px 0; }
    .dd-section-intro { grid-column: 1 / 7; margin-bottom: var(--dd-sp-l); }
  }
  @media (max-width: 480px) {
    .dd-section-intro { grid-column: 1 / 5; }
  }

  /* CE QUI EST INCLUS */
  .dd-inclus-cards {
    grid-column: 1 / 13;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .dd-inclus-card {
    padding: 28px 26px; background: var(--dd-blanc-pur);
    border-top: 3px solid var(--dd-rouge);
  }
  .dd-inclus-card-num {
    font-family: 'Archivo', sans-serif;
    font-weight: 500; font-size: var(--dd-t-micro);
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--dd-rouge); margin-bottom: var(--dd-sp-s);
  }
  .dd-inclus-card-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 600; font-size: var(--dd-t-title);
    line-height: 1.2; color: var(--dd-noir);
    margin: 0 0 var(--dd-sp-s); letter-spacing: -0.01em;
  }
  .dd-inclus-card-text {
    font-size: var(--dd-t-small); line-height: 1.55;
    color: var(--dd-gris-70); margin: 0;
  }
  .dd-inclus-card-text strong { color: var(--dd-noir); font-weight: 600; }
  @media (max-width: 1024px) { .dd-inclus-cards { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 768px) { .dd-inclus-cards { grid-column: 1 / 7; grid-template-columns: 1fr; } }
  @media (max-width: 480px) { .dd-inclus-cards { grid-column: 1 / 5; } }

  /* POUR QUI / PAS POUR QUI */
  .dd-fit-yes { grid-column: 1 / 7; padding: 32px 32px 32px 0; }
  .dd-fit-no { grid-column: 7 / 13; padding: 32px 0 32px 32px; border-left: 1px solid var(--dd-rule); }
  .dd-fit-label {
    font-family: 'Archivo', sans-serif;
    font-weight: 500; font-size: var(--dd-t-micro);
    letter-spacing: 0.22em; text-transform: uppercase;
    margin-bottom: var(--dd-sp-m);
  }
  .dd-fit-yes .dd-fit-label { color: var(--dd-rouge); }
  .dd-fit-no .dd-fit-label { color: var(--dd-gris-50); }
  .dd-fit-list { list-style: none; padding: 0; margin: 0; }
  .dd-fit-list li {
    position: relative; padding: 10px 0 10px 28px;
    font-size: var(--dd-t-body); line-height: 1.5;
    color: var(--dd-gris-70); border-bottom: 1px dashed var(--dd-rule);
  }
  .dd-fit-list li:last-child { border-bottom: none; }
  .dd-fit-yes .dd-fit-list li::before {
    content: "✓"; position: absolute; left: 0; top: 10px;
    color: var(--dd-rouge); font-weight: 700; font-size: 14px;
  }
  .dd-fit-no .dd-fit-list li::before {
    content: "—"; position: absolute; left: 0; top: 10px;
    color: var(--dd-gris-50); font-weight: 700;
  }
  .dd-fit-list li strong { color: var(--dd-noir); font-weight: 600; }
  @media (max-width: 768px) {
    .dd-fit-yes {
      grid-column: 1 / 7; padding: 0 0 var(--dd-sp-l);
      border-bottom: 1px solid var(--dd-rule); margin-bottom: var(--dd-sp-l);
    }
    .dd-fit-no { grid-column: 1 / 7; padding: 0; border-left: none; }
  }
  @media (max-width: 480px) {
    .dd-fit-yes, .dd-fit-no { grid-column: 1 / 5; }
  }

  /* UPGRADES */
  .dd-upgrades-block {
    grid-column: 1 / 13; padding: 32px 36px;
    background: var(--dd-blanc-pur); margin-bottom: var(--dd-sp-m);
  }
  .dd-upgrades-block--delta { border-left: 4px solid var(--dd-rouge); }
  .dd-upgrades-block--add { border-left: 4px solid var(--dd-gris-50); }
  .dd-upgrades-block-label {
    font-family: 'Archivo', sans-serif;
    font-weight: 500; font-size: var(--dd-t-micro);
    letter-spacing: 0.22em; text-transform: uppercase;
    margin-bottom: var(--dd-sp-s);
  }
  .dd-upgrades-block--delta .dd-upgrades-block-label { color: var(--dd-rouge); }
  .dd-upgrades-block--add .dd-upgrades-block-label { color: var(--dd-gris-70); }
  .dd-upgrades-block-lede {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 300;
    font-size: var(--dd-t-italic-m); line-height: 1.5;
    color: var(--dd-gris-70); margin: 0 0 var(--dd-sp-m); max-width: 820px;
  }
  .dd-upgrades-block-lede strong {
    font-family: 'Archivo', sans-serif;
    font-style: normal; font-weight: 600; color: var(--dd-noir);
  }
  .dd-upgrades-list { list-style: none; padding: 0; margin: 0; }
  .dd-upgrades-list li {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 24px; padding: 14px 0;
    border-bottom: 1px solid var(--dd-rule); font-size: var(--dd-t-body);
  }
  .dd-upgrades-list li:last-child { border-bottom: none; }
  .dd-upgrades-list-label { color: var(--dd-noir); font-weight: 500; flex: 1; }
  .dd-upgrades-list-desc {
    font-weight: 400; color: var(--dd-gris-50);
    font-size: var(--dd-t-small); margin-top: 4px; display: block;
  }
  .dd-upgrades-list-price {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 900; color: var(--dd-noir);
    white-space: nowrap; font-size: 15px;
  }
  @media (max-width: 768px) {
    .dd-upgrades-block { grid-column: 1 / 7; padding: 24px 24px; }
    .dd-upgrades-list li {
      flex-direction: column; gap: 4px; align-items: flex-start;
    }
  }
  @media (max-width: 480px) {
    .dd-upgrades-block { grid-column: 1 / 5; padding: 20px 20px; }
  }

  /* AJUSTEMENTS */
  .dd-adjust-content { grid-column: 1 / 13; }
  .dd-adjust-item {
    padding: 20px 0; border-bottom: 1px solid var(--dd-rule);
    display: grid; grid-template-columns: 240px 1fr;
    gap: 40px; align-items: baseline;
  }
  .dd-adjust-item:last-child { border-bottom: none; }
  .dd-adjust-item-trigger {
    font-family: 'Archivo', sans-serif;
    font-weight: 600; color: var(--dd-noir); font-size: var(--dd-t-body);
  }
  .dd-adjust-item-desc {
    font-size: var(--dd-t-body); line-height: 1.5; color: var(--dd-gris-70);
  }
  .dd-adjust-item-desc strong { color: var(--dd-noir); font-weight: 600; }
  @media (max-width: 768px) {
    .dd-adjust-content { grid-column: 1 / 7; }
    .dd-adjust-item { grid-template-columns: 1fr; gap: 8px; }
  }
  @media (max-width: 480px) {
    .dd-adjust-content { grid-column: 1 / 5; }
  }

  /* FAQ */
  .dd-faq-list { grid-column: 1 / 10; }
  .dd-faq-item { border-top: 1px solid var(--dd-rule); }
  .dd-faq-item:last-child { border-bottom: 1px solid var(--dd-rule); }
  .dd-faq-item summary {
    font-family: 'Archivo', sans-serif;
    font-weight: 500; font-size: var(--dd-t-pitch);
    color: var(--dd-noir);
    padding: 24px 40px 24px 0; cursor: pointer;
    position: relative; list-style: none; line-height: 1.35;
  }
  .dd-faq-item summary::-webkit-details-marker { display: none; }
  .dd-faq-item summary:hover { color: var(--dd-rouge); }
  .dd-faq-item summary::after {
    content: "+"; position: absolute; right: 0; top: 50%;
    transform: translateY(-50%); font-family: 'Archivo', sans-serif;
    font-weight: 300; font-size: 24px; color: var(--dd-rouge); line-height: 1;
  }
  .dd-faq-item[open] summary::after { content: "−"; }
  .dd-faq-item-body {
    padding: 0 60px 24px 0; font-size: var(--dd-t-body);
    line-height: 1.65; color: var(--dd-gris-70);
  }
  .dd-faq-item-body strong { color: var(--dd-noir); font-weight: 600; }
  .dd-faq-item-body p + p { margin-top: 12px; }
  @media (max-width: 768px) { .dd-faq-list { grid-column: 1 / 7; } }
  @media (max-width: 480px) { .dd-faq-list { grid-column: 1 / 5; } }

  /* CTA */
  .dd-cta { padding: 112px 0; background: var(--dd-noir); color: white; }
  .dd-cta-content { grid-column: 1 / 10; }
  .dd-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 400;
    font-size: var(--dd-t-headline); line-height: 1.1;
    color: white; margin: 0 0 var(--dd-sp-xl); max-width: 720px;
  }
  .dd-cta-title em {
    font-family: 'Archivo Black', sans-serif;
    font-style: normal; font-weight: 900; text-transform: uppercase;
    color: var(--dd-rouge); font-size: 0.82em; letter-spacing: -0.01em;
  }
  .dd-cta-button {
    display: inline-flex; align-items: center; gap: 20px;
    padding: 22px 40px; background: var(--dd-rouge); color: white;
    font-family: 'Archivo', sans-serif;
    font-weight: 600; font-size: var(--dd-t-small);
    letter-spacing: 0.06em; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.2s ease;
  }
  .dd-cta-button:hover { background: white; color: var(--dd-noir); }
  .dd-cta-button .arrow {
    font-size: 20px; line-height: 1;
    transition: transform 0.25s ease;
  }
  .dd-cta-button:hover .arrow { transform: translateX(6px); }
  .dd-cta-secondary {
    margin-top: var(--dd-sp-m);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 300;
    font-size: var(--dd-t-italic-s); color: rgba(255,255,255,0.7);
  }
  .dd-cta-secondary a {
    color: white; text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: border-color 0.2s;
  }
  .dd-cta-secondary a:hover { border-color: var(--dd-rouge); }
  @media (max-width: 768px) {
    .dd-cta { padding: 88px 0; }
    .dd-cta-content { grid-column: 1 / 7; }
  }
  @media (max-width: 480px) {
    .dd-cta-content { grid-column: 1 / 5; }
    .dd-cta-button { padding: 18px 28px; font-size: 12px; }
  }

