/* ============================================================
     FONTS & RESET
     ============================================================ */
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,800;1,400;1,700&family=DM+Sans:wght@400;500;600;700&display=swap');

  .er-cs { all: initial; display: block; }
  .er-cs *, .er-cs *::before, .er-cs *::after { box-sizing: border-box; margin: 0; padding: 0; }

  .er-cs {
    --black: #000000;
    --dark: #1A1A1A;
    --dark-card: #232323;
    --dark-border: #2E2E2E;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F4F4F0;
    --gray-200: #E8E6DF;
    --gray-300: #C9C7BD;
    --gray-500: #7A7A75;
    --gray-700: #3A3A38;
    --gold: #C9A959;
    --gold-light: #D9C088;
    --gold-dark: #A88A3F;
    --green: #1A5632;
    --green-light: #2A7548;
    --green-banner: #134627;
    --text: #1A1A1A;
    --text-soft: #4A4A4A;
    --text-mute: #7A7A75;
    --red-alert: #DC2626;

    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }

  .er-cs img { max-width: 100%; height: auto; display: block; }
  .er-cs a { color: inherit; text-decoration: none; }
  .er-cs button { font-family: inherit; cursor: pointer; }

  /* ============================================================
     TYPOGRAPHY UTILITIES
     ============================================================ */
  .er-cs .eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--green);
    display: inline-block;
    padding-left: 16px;
    position: relative;
    margin-bottom: 20px;
  }
  .er-cs .eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 16px;
    background: var(--green);
  }
  .er-cs .eyebrow.on-dark { color: var(--gold); }
  .er-cs .eyebrow.on-dark::before { background: var(--gold); }

  .er-cs h1, .er-cs h2, .er-cs h3, .er-cs h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }
  .er-cs .gold-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
  }

  /* ============================================================
     LAYOUT
     ============================================================ */
  .er-cs .wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
  .er-cs .wrap-wide { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
  .er-cs .wrap-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

  /* ============================================================
     PILLS & BUTTONS
     ============================================================ */
  .er-cs .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px; font-weight: 500;
    background: rgba(201, 169, 89, 0.12);
    color: var(--gold);
    border: 1px solid rgba(201, 169, 89, 0.35);
    letter-spacing: 0.02em;
  }
  .er-cs .pill.light {
    background: var(--gray-100);
    color: var(--green);
    border: 1px solid var(--gray-200);
  }
  .er-cs .pill-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
  }
  .er-cs .pill-dot.green { background: #4ADE80; }
  .er-cs .pill-dot.red { background: var(--red-alert); }

  .er-cs .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 600;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 200ms ease;
    text-decoration: none;
    letter-spacing: 0.01em;
  }
  .er-cs .btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
  .er-cs .btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
  .er-cs .btn-gold-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
  .er-cs .btn-gold-outline:hover { background: var(--gold); color: var(--black); }
  .er-cs .btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
  .er-cs .btn-green:hover { background: var(--green-banner); border-color: var(--green-banner); }
  .er-cs .btn-arrow { display: inline-block; transition: transform 200ms ease; }
  .er-cs .btn:hover .btn-arrow { transform: translateX(4px); }

  /* ============================================================
     PHONE MOCKUP (réutilisable partout)
     ============================================================ */
  .er-cs .phone {
    position: relative;
    width: 300px;
    height: 600px;
    background: #0a0a0a;
    border-radius: 42px;
    padding: 12px;
    box-shadow:
      0 30px 60px rgba(0,0,0,0.5),
      0 12px 24px rgba(201, 169, 89, 0.15),
      inset 0 0 0 1.5px rgba(255,255,255,0.08);
    margin: 0 auto;
    flex-shrink: 0;
  }
  .er-cs .phone-screen {
    width: 100%; height: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .er-cs .phone-screen.dark { background: var(--dark); }

  /* Dynamic island */
  .er-cs .phone::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 26px;
    background: #000;
    border-radius: 99px;
    z-index: 10;
  }

  /* Status bar */
  .er-cs .phone-status {
    height: 44px;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    flex-shrink: 0;
  }
  .er-cs .phone-screen.dark .phone-status { color: var(--white); }
  .er-cs .phone-status-right {
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 10px;
  }
  .er-cs .phone-status-right span {
    display: inline-block;
    width: 4px; height: 4px;
    background: currentColor;
    border-radius: 50%;
  }

  /* App header */
  .er-cs .phone-header {
    padding: 8px 20px 12px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
  }
  .er-cs .phone-screen.dark .phone-header {
    background: var(--dark);
    border-bottom-color: var(--dark-border);
  }
  .er-cs .phone-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.05em;
  }
  .er-cs .phone-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
    margin-top: 4px;
  }
  .er-cs .phone-screen.dark .phone-title { color: var(--white); }
  .er-cs .phone-subtitle {
    font-size: 11px;
    color: var(--text-mute);
    margin-top: 2px;
  }

  /* App content scroll */
  .er-cs .phone-content {
    flex: 1;
    overflow: hidden;
    padding: 16px 14px;
    background: var(--gray-50);
  }
  .er-cs .phone-screen.dark .phone-content { background: var(--dark); }

  /* App card inside phone */
  .er-cs .phone-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 3px solid var(--green);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  }
  .er-cs .phone-screen.dark .phone-card {
    background: var(--dark-card);
    border-color: var(--dark-border);
    border-top-color: var(--gold);
  }
  .er-cs .phone-card-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
  }
  .er-cs .phone-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
  }
  .er-cs .phone-screen.dark .phone-card-title { color: var(--white); }
  .er-cs .phone-card-meta {
    font-size: 10.5px;
    color: var(--text-mute);
    margin-top: 3px;
    line-height: 1.4;
  }
  .er-cs .phone-card-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 99px;
    background: rgba(26, 86, 50, 0.1);
    color: var(--green);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .er-cs .phone-card-tag.gold { background: rgba(201, 169, 89, 0.15); color: var(--gold-dark); }
  .er-cs .phone-card-tag.red { background: rgba(220, 38, 38, 0.1); color: var(--red-alert); }
  .er-cs .phone-card-date {
    font-size: 10px;
    color: var(--text-mute);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding-left: 2px;
  }

  /* Bottom nav */
  .er-cs .phone-nav {
    border-top: 1px solid var(--gray-200);
    padding: 10px 0 16px;
    display: flex;
    justify-content: space-around;
    background: var(--white);
    flex-shrink: 0;
  }
  .er-cs .phone-screen.dark .phone-nav {
    background: var(--dark-card);
    border-top-color: var(--dark-border);
  }
  .er-cs .phone-nav-item {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-mute);
    text-align: center;
    padding: 4px 8px;
  }
  .er-cs .phone-nav-item.active { color: var(--green); }
  .er-cs .phone-screen.dark .phone-nav-item.active { color: var(--gold); }

  /* ============================================================
     PHOTO PLACEHOLDER (pour Leonardo AI)
     ============================================================ */
  .er-cs .photo-ph {
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-100) 100%);
    border: 1px dashed var(--gray-300);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: var(--text-mute);
    font-size: 11px;
    letter-spacing: 0.05em;
    overflow: hidden;
    position: relative;
  }
  .er-cs .photo-ph-label {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 6px;
    font-size: 10px;
    letter-spacing: 0.15em;
  }
  .er-cs .photo-ph-desc {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.4;
    max-width: 90%;
  }
  .er-cs .photo-ph-spec {
    margin-top: 8px;
    font-family: 'DM Sans', monospace;
    font-size: 9px;
    color: var(--text-mute);
    letter-spacing: 0.05em;
  }

  /* ============================================================
     1. HERO — Refonte enrichie V3.1
     ============================================================ */
  .er-cs .hero {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    min-height: 880px;
  }

  /* Background photo cavalier (placeholder Leonardo AI) */
  .er-cs .hero-bg-photo {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg,
        rgba(0,0,0,0.62) 0%,
        rgba(0,0,0,0.75) 60%,
        rgba(0,0,0,0.92) 100%),
      url(https://www.equirider.fr/wp-content/uploads/2026/05/lp-cs-v3-hero-bg-cavaliere-aube.jpg);
    background-size: cover;
    background-position: center center;
    z-index: 1;
  }
  /* Halo gold subtil derrière le texte */
  .er-cs .hero-bg-photo::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60%; height: 100%;
    background: radial-gradient(ellipse at 25% 50%, rgba(201, 169, 89, 0.15) 0%, transparent 55%);
    z-index: 1;
  }
  /* Ligne décorative or */
  .er-cs .hero-bg-photo::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 89, 0.4) 50%, transparent 100%);
    z-index: 1;
  }

  .er-cs .hero-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
  }
  .er-cs .hero-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 740px;
  }

  /* ─── HERO TEXT ─── */
  .er-cs .hero-text { text-align: left; position: relative; }
  .er-cs .hero-text .pill {
    margin-bottom: 32px;
    font-size: 12px;
    padding: 9px 20px;
    background: rgba(201, 169, 89, 0.1);
    border: 1px solid rgba(201, 169, 89, 0.4);
  }
  .er-cs .hero-text .pill strong {
    color: var(--gold);
    font-weight: 700;
  }

  .er-cs .hero h1 {
    font-size: clamp(40px, 5.2vw, 68px);
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -0.025em;
    line-height: 1.04;
    font-weight: 800;
  }
  .er-cs .hero h1 .h1-line-1 {
    display: block;
  }
  .er-cs .hero h1 .h1-line-accent {
    display: block;
    color: var(--gold);
  }
  .er-cs .hero .gold-italic {
    font-size: clamp(22px, 2.8vw, 32px);
    display: block;
    margin-bottom: 28px;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    font-weight: 400;
  }
  .er-cs .hero-lead {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.72);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.65;
  }
  .er-cs .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
  }
  .er-cs .hero-ctas .btn {
    padding: 18px 36px;
    font-size: 16px;
  }
  .er-cs .hero-ctas .btn-gold {
    box-shadow: 0 8px 24px rgba(201, 169, 89, 0.3);
  }

  /* Trust row enrichi 4 items + barre verticale or */
  .er-cs .hero-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .er-cs .hero-trust-item {
    padding: 0 16px 0 14px;
    border-left: 2px solid rgba(201, 169, 89, 0.4);
  }
  .er-cs .hero-trust-item:first-child { padding-left: 0; border-left: none; }
  .er-cs .hero-trust-num {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
  .er-cs .hero-trust-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
  }
  .er-cs .hero-stars {
    display: inline-block;
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 18px;
    margin-bottom: 2px;
    line-height: 1;
  }

  /* ─── HERO VISUAL : 2 phones overlappés ─── */
  .er-cs .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 720px;
  }
  .er-cs .hero-phones-stack {
    position: relative;
    width: 100%;
    max-width: 540px;
    height: 680px;
  }
  /* Phone arrière (chat Sasha) */
  .er-cs .hero-phone-back {
    position: absolute;
    top: 30px;
    right: 0;
    transform: rotate(6deg) scale(0.92);
    opacity: 0.85;
    z-index: 2;
    filter: brightness(0.85);
    transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  /* Phone avant (Aujourd'hui) */
  .er-cs .hero-phone-front {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-3deg);
    z-index: 3;
    transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .er-cs .hero-phones-stack:hover .hero-phone-back {
    transform: rotate(8deg) scale(0.92) translateX(20px);
    opacity: 1;
  }
  .er-cs .hero-phones-stack:hover .hero-phone-front {
    transform: rotate(-4deg) translateX(-10px);
  }
  .er-cs .hero-phone-front .phone {
    box-shadow:
      0 40px 80px rgba(0, 0, 0, 0.6),
      0 20px 40px rgba(201, 169, 89, 0.2),
      inset 0 0 0 1.5px rgba(255, 255, 255, 0.1);
  }

  /* ─── FLOATING BADGES (4 au total) ─── */
  .er-cs .hero-floating-badge {
    position: absolute;
    background: rgba(20, 20, 20, 0.92);
    border: 1px solid rgba(201, 169, 89, 0.35);
    border-radius: 14px;
    padding: 14px 18px;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    max-width: 220px;
    z-index: 5;
  }
  .er-cs .hero-floating-badge.alert {
    border-color: rgba(220, 38, 38, 0.4);
  }
  .er-cs .hero-floating-badge-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .er-cs .hero-floating-badge.alert .hero-floating-badge-title { color: var(--red-alert); }
  .er-cs .hero-floating-badge-title::before {
    content: '';
    width: 6px; height: 6px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor;
  }
  .er-cs .hero-floating-badge-text {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
  }
  .er-cs .hero-floating-badge-text strong { color: var(--white); font-weight: 600; }

  .er-cs .badge-1 { top: 20px; right: -60px; transform: rotate(2deg); }
  .er-cs .badge-2 { top: 220px; left: -80px; transform: rotate(-3deg); }
  .er-cs .badge-3 { bottom: 130px; right: -50px; transform: rotate(2deg); }
  .er-cs .badge-4 { bottom: 30px; left: -40px; transform: rotate(-2deg); }

  /* ─── BANDEAU PREUVES sous le hero (intégré dans .hero) ─── */
  .er-cs .hero-proof-strip {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    padding: 24px 24px;
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(201, 169, 89, 0.2);
    border-bottom: 1px solid rgba(201, 169, 89, 0.2);
    overflow: hidden;
  }
  .er-cs .hero-proof-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
  }
  .er-cs .hero-proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.02em;
  }
  .er-cs .hero-proof-item::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .er-cs .hero-proof-item strong { color: var(--gold); font-weight: 700; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    .er-cs .hero-split { grid-template-columns: 1.05fr 1fr; gap: 40px; }
    .er-cs .badge-1, .er-cs .badge-3 { right: -20px; }
    .er-cs .badge-2 { left: -30px; }
    .er-cs .badge-4 { left: -10px; }
  }
  @media (max-width: 980px) {
    .er-cs .hero { padding: 60px 0 40px; min-height: auto; }
    .er-cs .hero-split { grid-template-columns: 1fr; gap: 60px; min-height: auto; }
    .er-cs .hero-visual { min-height: 600px; }
    .er-cs .hero-phones-stack { max-width: 460px; height: 580px; transform: scale(0.85); }
    .er-cs .hero-text { text-align: center; }
    .er-cs .hero-text .pill { margin-left: auto; margin-right: auto; }
    .er-cs .hero-lead { margin-left: auto; margin-right: auto; }
    .er-cs .hero-ctas { justify-content: center; }
    .er-cs .hero-trust-row { gap: 12px; }
    .er-cs .badge-1, .er-cs .badge-2, .er-cs .badge-3, .er-cs .badge-4 { display: none; }
  }
  @media (max-width: 640px) {
    .er-cs .hero-trust-row { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
    .er-cs .hero-trust-num { font-size: 24px; }
    .er-cs .hero-phones-stack { transform: scale(0.7); max-width: 400px; }
    .er-cs .hero-visual { min-height: 480px; }
    .er-cs .hero-proof-row { gap: 16px; }
    .er-cs .hero-proof-item { font-size: 11.5px; }
  }
  @media (max-width: 440px) {
    .er-cs .hero-phones-stack { transform: scale(0.58); }
    .er-cs .hero-visual { min-height: 420px; }
  }

  /* ============================================================
     2. TRUST STRIP
     ============================================================ */
  .er-cs .trust-strip {
    background: var(--gray-100);
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-200);
  }
  .er-cs .trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .er-cs .trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .er-cs .trust-row span::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
  }

  /* ============================================================
     SECTION DEFAULTS
     ============================================================ */
  .er-cs section { padding: 100px 0; }
  .er-cs .section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
  .er-cs .section-head h2 {
    font-size: clamp(34px, 4.5vw, 52px);
    color: var(--text);
    margin-bottom: 14px;
  }
  .er-cs .section-head .gold-italic {
    font-size: clamp(24px, 3.5vw, 36px);
    display: block;
    margin-bottom: 20px;
  }
  .er-cs .section-head p {
    font-size: 17px;
    color: var(--text-soft);
    max-width: 580px;
    margin: 0 auto;
  }
  .er-cs section.dark { background: var(--dark); color: var(--white); }
  .er-cs section.dark .section-head h2 { color: var(--white); }
  .er-cs section.dark .section-head p { color: rgba(255, 255, 255, 0.7); }
  .er-cs section.light-bg { background: var(--gray-50); }

  /* ============================================================
     3. PROBLEM
     ============================================================ */
  .er-cs .problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .er-cs .problem-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 4px solid var(--green);
    border-radius: 12px;
    padding: 32px 28px;
  }
  .er-cs .problem-card .num {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
  }
  .er-cs .problem-card h3 { font-size: 21px; margin-bottom: 12px; color: var(--text); }
  .er-cs .problem-card .quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.6;
  }
  @media (max-width: 720px) { .er-cs .problem-grid { grid-template-columns: 1fr; } }

  /* ============================================================
     4. PILLARS
     ============================================================ */
  .er-cs .pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
  .er-cs .pillar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 4px solid var(--green);
    border-radius: 12px;
    padding: 36px 28px;
  }
  .er-cs .pillar .pillar-num {
    font-family: 'Playfair Display', serif;
    font-size: 14px; font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 18px;
    display: block;
  }
  .er-cs .pillar h3 { font-size: 24px; margin-bottom: 14px; }
  .er-cs .pillar p { color: var(--text-soft); font-size: 15px; line-height: 1.65; }
  @media (max-width: 900px) { .er-cs .pillars { grid-template-columns: 1fr; } }

  /* ============================================================
     5. SASHA SECTION
     ============================================================ */
  .er-cs .sasha-section { background: var(--dark); color: var(--white); }
  .er-cs .sasha-section .pill {
    background: rgba(201, 169, 89, 0.12);
    border-color: rgba(201, 169, 89, 0.35);
  }
  .er-cs .sasha-section .section-head h2 {
    color: var(--white);
    font-size: clamp(36px, 5vw, 56px);
  }
  .er-cs .sasha-section .section-head .gold-italic { color: var(--gold); }

  .er-cs .sasha-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 80px;
  }
  .er-cs .sasha-chat-demo {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-top: 4px solid var(--gold);
    border-radius: 16px;
    padding: 32px 28px;
  }
  .er-cs .sasha-chat-header {
    display: flex; align-items: center; gap: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dark-border);
    margin-bottom: 24px;
  }
  .er-cs .sasha-chat-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 18px;
  }
  .er-cs .sasha-chat-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 18px;
    color: var(--white);
  }
  .er-cs .sasha-chat-status {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
    display: flex; align-items: center; gap: 6px;
  }
  .er-cs .sasha-chat-status::before {
    content: '';
    width: 6px; height: 6px;
    background: #4ADE80;
    border-radius: 50%;
  }
  .er-cs .chat-bubble {
    padding: 14px 18px;
    border-radius: 16px;
    margin-bottom: 14px;
    max-width: 88%;
    font-size: 14px;
    line-height: 1.55;
  }
  .er-cs .chat-user {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    margin-left: auto;
    border-bottom-right-radius: 4px;
  }
  .er-cs .chat-sasha {
    background: rgba(201, 169, 89, 0.12);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(201, 169, 89, 0.2);
    border-bottom-left-radius: 4px;
  }
  .er-cs .chat-sasha strong { color: var(--gold); font-weight: 600; }

  .er-cs .sasha-levels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .er-cs .sasha-level {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-top: 4px solid var(--gold);
    border-radius: 12px;
    padding: 28px 22px;
  }
  .er-cs .sasha-level-tier {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 8px;
  }
  .er-cs .sasha-level h4 { font-size: 19px; color: var(--gold); margin-bottom: 12px; }
  .er-cs .sasha-level p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
  }
  @media (max-width: 900px) {
    .er-cs .sasha-split { grid-template-columns: 1fr; gap: 40px; }
    .er-cs .sasha-levels { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 520px) { .er-cs .sasha-levels { grid-template-columns: 1fr; } }

  .er-cs .powered-by {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .er-cs .powered-by .pill {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.75);
  }
  .er-cs .powered-by .pill-dot { background: #FF8866; }

  /* ============================================================
     6. MODULES (alternating with phone mockups)
     ============================================================ */
  .er-cs .modules { display: flex; flex-direction: column; gap: 100px; }
  .er-cs .module-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .er-cs .module-row.reverse .module-text { order: 2; }
  .er-cs .module-row.reverse .module-visual { order: 1; }

  .er-cs .module-text h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text);
  }
  .er-cs .module-text > p {
    color: var(--text-soft);
    font-size: 16px;
    margin-bottom: 24px;
  }
  .er-cs .module-list { list-style: none; padding: 0; margin: 0; }
  .er-cs .module-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 15px;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .er-cs .module-list li:last-child { border-bottom: none; }
  .er-cs .module-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 9px;
  }
  .er-cs .module-list strong { font-weight: 600; }
  .er-cs .module-list .badge-soon {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: rgba(201, 169, 89, 0.2);
    color: var(--gold-dark);
    border-radius: 999px;
    text-transform: uppercase;
    vertical-align: middle;
  }
  .er-cs .module-list .badge-live {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: rgba(26, 86, 50, 0.12);
    color: var(--green);
    border-radius: 999px;
    text-transform: uppercase;
    vertical-align: middle;
  }

  .er-cs .module-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 620px;
  }

  @media (max-width: 880px) {
    .er-cs .module-row { grid-template-columns: 1fr; gap: 40px; }
    .er-cs .module-row.reverse .module-text { order: 1; }
    .er-cs .module-row.reverse .module-visual { order: 2; }
  }

  /* ============================================================
     6.5 GALLERY — Showcase captures écran (multi-phones)
     ============================================================ */
  .er-cs .gallery-section {
    background: var(--dark);
    color: var(--white);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
  }
  .er-cs .gallery-section .section-head h2 { color: var(--white); }
  .er-cs .gallery-section .section-head .gold-italic { color: var(--gold); }
  .er-cs .gallery-section .section-head p { color: rgba(255, 255, 255, 0.7); }
  .er-cs .gallery-section .section-head .pill {
    background: rgba(201, 169, 89, 0.1);
    border: 1px solid rgba(201, 169, 89, 0.35);
  }

  .er-cs .gallery-stage {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }
  /* Halo radial subtil derrière la galerie */
  .er-cs .gallery-stage::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(201, 169, 89, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
  }

  .er-cs .gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    align-items: end;
    position: relative;
    z-index: 1;
  }
  .er-cs .gallery-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .er-cs .gallery-item:hover { transform: translateY(-8px); }

  /* Phones plus petits dans la galerie */
  .er-cs .gallery-item .phone {
    width: 220px;
    height: 460px;
    border-radius: 32px;
    padding: 9px;
    box-shadow:
      0 24px 48px rgba(0, 0, 0, 0.5),
      0 8px 16px rgba(201, 169, 89, 0.12);
  }
  .er-cs .gallery-item .phone::before {
    width: 70px;
    height: 20px;
    top: 14px;
  }
  .er-cs .gallery-item .phone-screen {
    border-radius: 24px;
  }
  .er-cs .gallery-item .phone-status {
    height: 36px;
    padding: 0 20px;
    font-size: 10px;
  }
  .er-cs .gallery-item .phone-status-right span {
    width: 3px; height: 3px;
  }
  .er-cs .gallery-item .phone-header {
    padding: 6px 14px 10px;
  }
  .er-cs .gallery-item .phone-logo { font-size: 11px; }
  .er-cs .gallery-item .phone-title { font-size: 15px; }
  .er-cs .gallery-item .phone-subtitle { font-size: 9.5px; }
  .er-cs .gallery-item .phone-content {
    padding: 10px 10px;
  }
  .er-cs .gallery-item .phone-card {
    padding: 8px 10px;
    margin-bottom: 7px;
    border-radius: 8px;
  }
  .er-cs .gallery-item .phone-card-title { font-size: 11px; }
  .er-cs .gallery-item .phone-card-meta { font-size: 9px; }
  .er-cs .gallery-item .phone-card-tag {
    font-size: 7.5px;
    padding: 2px 6px;
  }
  .er-cs .gallery-item .phone-card-date {
    font-size: 8.5px;
    margin-bottom: 6px;
  }
  .er-cs .gallery-item .phone-nav {
    padding: 7px 0 12px;
  }
  .er-cs .gallery-item .phone-nav-item { font-size: 7.5px; padding: 3px 6px; }

  /* Position alterning : décalage léger pour effet vague */
  .er-cs .gallery-item:nth-child(1) { transform: translateY(20px); }
  .er-cs .gallery-item:nth-child(2) { transform: translateY(0); }
  .er-cs .gallery-item:nth-child(3) { transform: translateY(-12px); }
  .er-cs .gallery-item:nth-child(4) { transform: translateY(0); }
  .er-cs .gallery-item:nth-child(5) { transform: translateY(20px); }
  .er-cs .gallery-item:nth-child(1):hover { transform: translateY(12px); }
  .er-cs .gallery-item:nth-child(2):hover { transform: translateY(-8px); }
  .er-cs .gallery-item:nth-child(3):hover { transform: translateY(-20px); }
  .er-cs .gallery-item:nth-child(4):hover { transform: translateY(-8px); }
  .er-cs .gallery-item:nth-child(5):hover { transform: translateY(12px); }

  .er-cs .gallery-caption {
    margin-top: 24px;
    text-align: center;
    max-width: 220px;
  }
  .er-cs .gallery-caption-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
  }
  .er-cs .gallery-caption-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
  }

  @media (max-width: 1100px) {
    .er-cs .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .er-cs .gallery-item:nth-child(4), .er-cs .gallery-item:nth-child(5) {
      display: none;
    }
    .er-cs .gallery-item:nth-child(1),
    .er-cs .gallery-item:nth-child(2),
    .er-cs .gallery-item:nth-child(3) { transform: none; }
  }
  @media (max-width: 720px) {
    .er-cs .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .er-cs .gallery-item:nth-child(3) { display: none; }
  }
  @media (max-width: 460px) {
    .er-cs .gallery-grid { grid-template-columns: 1fr; gap: 40px; }
    .er-cs .gallery-item .phone { width: 240px; height: 500px; }
  }

  /* ============================================================
     7. TOOLS GRID
     ============================================================ */
  .er-cs .tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
  }
  .er-cs .tool-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 4px solid var(--green);
    border-radius: 12px;
    padding: 28px 24px;
    position: relative;
  }
  .er-cs .tool-card.soon { border-top-color: var(--gold); }
  .er-cs .tool-card .tool-num {
    font-family: 'Playfair Display', serif;
    font-size: 14px; font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
  }
  .er-cs .tool-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
  }
  .er-cs .tool-card h4 .badge-soon {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(201, 169, 89, 0.2);
    color: var(--gold-dark);
    padding: 3px 8px;
    border-radius: 999px;
    flex-shrink: 0;
  }
  .er-cs .tool-card p { font-size: 14px; color: var(--text-soft); line-height: 1.55; }
  @media (max-width: 880px) { .er-cs .tools-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 520px) { .er-cs .tools-grid { grid-template-columns: 1fr; } }

  /* ============================================================
     8. DIFFÉRENCIATEURS FR (dark + phone mockup)
     ============================================================ */
  .er-cs .fr-diff { background: var(--dark); color: var(--white); }
  .er-cs .fr-diff .section-head h2 { color: var(--white); }
  .er-cs .fr-diff .section-head .gold-italic { color: var(--gold); }
  .er-cs .fr-diff .section-head p { color: rgba(255, 255, 255, 0.7); }

  .er-cs .fr-feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
  }
  .er-cs .fr-feature-block:last-child { margin-bottom: 0; }
  .er-cs .fr-feature-block.reverse .fr-feature-text { order: 2; }
  .er-cs .fr-feature-block.reverse .fr-feature-visual { order: 1; }

  .er-cs .fr-feature-text .fr-tag {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .er-cs .fr-feature-text h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 8px;
  }
  .er-cs .fr-feature-text .fr-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 20px;
    display: block;
  }
  .er-cs .fr-feature-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .er-cs .fr-feature-text .fr-example {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--gold-light);
    padding: 14px 18px;
    background: rgba(201, 169, 89, 0.06);
    border-top: 2px solid rgba(201, 169, 89, 0.3);
    border-radius: 8px;
  }
  .er-cs .fr-feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  @media (max-width: 880px) {
    .er-cs .fr-feature-block { grid-template-columns: 1fr; gap: 40px; }
    .er-cs .fr-feature-block.reverse .fr-feature-text { order: 1; }
    .er-cs .fr-feature-block.reverse .fr-feature-visual { order: 2; }
  }

  /* Compact grid for the other 2 FR features */
  .er-cs .fr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 80px auto 0;
  }
  .er-cs .fr-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-top: 4px solid var(--gold);
    border-radius: 12px;
    padding: 32px 28px;
  }
  .er-cs .fr-card .fr-tag {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .er-cs .fr-card h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 4px;
  }
  .er-cs .fr-card .fr-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 14px;
    display: block;
  }
  .er-cs .fr-card p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
  }
  .er-cs .fr-card .badge-soon-inline {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: rgba(201, 169, 89, 0.2);
    color: var(--gold-light);
    border-radius: 999px;
    text-transform: uppercase;
    vertical-align: middle;
  }
  @media (max-width: 720px) { .er-cs .fr-grid { grid-template-columns: 1fr; } }

  /* ============================================================
     9. COMPARISON
     ============================================================ */
  .er-cs .compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
  }
  .er-cs .compare-col {
    padding: 36px 28px;
    border-right: 1px solid var(--gray-200);
  }
  .er-cs .compare-col:last-child { border-right: none; }
  .er-cs .compare-col.winner {
    background: var(--gray-100);
    border-top: 4px solid var(--green);
    margin-top: -4px;
  }
  .er-cs .compare-col h4 { font-size: 22px; margin-bottom: 8px; color: var(--text); }
  .er-cs .compare-col .compare-sub {
    font-size: 13px;
    color: var(--text-mute);
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
  }
  .er-cs .compare-col ul { list-style: none; padding: 0; margin: 0; }
  .er-cs .compare-col li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-soft);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--gray-200);
  }
  .er-cs .compare-col li:last-child { border-bottom: none; }
  .er-cs .compare-col.loser li::before {
    content: '—';
    color: var(--gray-500);
    font-weight: 600;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
  }
  .er-cs .compare-col.winner li::before {
    content: '+';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
  }
  .er-cs .compare-col.winner li { color: var(--text); }
  .er-cs .compare-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 12px;
  }
  .er-cs .compare-tag.bad { background: rgba(150, 150, 150, 0.15); color: var(--gray-500); }
  .er-cs .compare-tag.good { background: rgba(26, 86, 50, 0.12); color: var(--green); }
  @media (max-width: 880px) {
    .er-cs .compare-grid { grid-template-columns: 1fr; }
    .er-cs .compare-col { border-right: none; border-bottom: 1px solid var(--gray-200); }
    .er-cs .compare-col:last-child { border-bottom: none; }
  }

  /* ============================================================
     10. PERSONAS — with rider photos
     ============================================================ */
  .er-cs .personas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .er-cs .persona-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 4px solid var(--green);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .er-cs .persona-photo {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-100) 100%);
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-mute);
    overflow: hidden;
  }
  .er-cs .persona-photo .photo-ph-label {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 6px;
    font-size: 10px;
    letter-spacing: 0.15em;
  }
  .er-cs .persona-photo .photo-ph-desc {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.4;
    max-width: 80%;
    padding: 0 16px;
  }
  .er-cs .persona-body {
    padding: 28px 28px 32px;
  }
  .er-cs .persona-tag {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .er-cs .persona-card h3 { font-size: 22px; margin-bottom: 12px; color: var(--text); }
  .er-cs .persona-card .persona-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 14px;
    border-left: 2px solid var(--gold);
  }
  .er-cs .persona-fit {
    font-size: 13px;
    color: var(--text-mute);
    font-weight: 500;
  }
  .er-cs .persona-fit strong { color: var(--green); font-weight: 700; }
  @media (max-width: 720px) { .er-cs .personas-grid { grid-template-columns: 1fr; } }

  /* ============================================================
     11. TRUST BADGES
     ============================================================ */
  .er-cs .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
  }
  .er-cs .trust-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 4px solid var(--green);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
  }
  .er-cs .trust-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 8px;
  }
  .er-cs .trust-card h4 { font-size: 15px; margin-bottom: 6px; color: var(--text); }
  .er-cs .trust-card p { font-size: 13px; color: var(--text-soft); line-height: 1.5; }
  @media (max-width: 880px) { .er-cs .trust-grid { grid-template-columns: repeat(2, 1fr); } }

  /* ============================================================
     12. PRICING — Toggle + 4 unified plans
     ============================================================ */
  .er-cs .billing-toggle {
    display: inline-flex;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    padding: 4px;
    margin: 0 auto 48px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  }
  .er-cs .toggle-btn {
    padding: 10px 24px;
    border-radius: 999px;
    border: none;
    background: transparent;
    font-size: 14px; font-weight: 600;
    color: var(--text-soft);
    transition: all 200ms ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .er-cs .toggle-btn.active { background: var(--green); color: var(--white); }
  .er-cs .toggle-btn .save-tag {
    background: var(--gold);
    color: var(--black);
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.05em;
  }
  .er-cs .billing-toggle-wrap { text-align: center; }

  .er-cs .pricing-teaser {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
  }
  .er-cs .price-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 4px solid var(--green);
    border-radius: 12px;
    padding: 32px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .er-cs .price-card.featured {
    border-top-color: var(--gold);
    background: var(--gray-50);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(201, 169, 89, 0.15);
  }
  .er-cs .price-card .price-tag {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .er-cs .price-card h3 { font-size: 22px; margin-bottom: 8px; }
  .er-cs .price-card .price-desc {
    font-size: 13px;
    color: var(--text-mute);
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    min-height: 36px;
  }
  .er-cs .price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 36px; font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1;
  }
  .er-cs .price-amount .price-period {
    font-size: 16px;
    color: var(--text-mute);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
  }
  .er-cs .price-amount-sub {
    font-size: 12px;
    color: var(--text-mute);
    margin-bottom: 20px;
    min-height: 18px;
  }
  .er-cs .price-card .price-yearly { display: none; }
  .er-cs .pricing-teaser[data-period="yearly"] .price-monthly { display: none; }
  .er-cs .pricing-teaser[data-period="yearly"] .price-yearly { display: block; }
  /* Boutons CTA : preserver le layout inline-flex (les btn .price-monthly/.price-yearly sont des <a>) */
  .er-cs .pricing-teaser[data-period="yearly"] a.btn.price-yearly,
  .er-cs .pricing-teaser:not([data-period="yearly"]) a.btn.price-monthly { display: inline-flex; }

  .er-cs .price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
  }
  .er-cs .price-card li {
    padding: 7px 0;
    font-size: 13.5px;
    color: var(--text-soft);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
  }
  .er-cs .price-card li::before {
    content: '+';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
  }
  .er-cs .price-card li.dash::before { content: '—'; color: var(--gray-300); }
  .er-cs .price-card li.dash {
    color: var(--gray-500);
    opacity: 0.7;
  }
  .er-cs .price-card li.dash strong { color: var(--gray-500); font-weight: 500; }
  .er-cs .price-card li.price-section {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-mute);
    padding: 16px 0 6px;
    margin-top: 8px;
    border-top: 1px solid var(--gray-200);
    opacity: 1;
    display: block;
  }
  .er-cs .price-card.featured li.price-section { border-top-color: var(--gray-300); }
  .er-cs .price-card li.price-section:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
  .er-cs .price-card li.price-section::before { display: none; }
  .er-cs .price-card .soon-inline {
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    background: rgba(201, 169, 89, 0.2);
    color: var(--gold-dark);
    padding: 1px 6px;
    border-radius: 999px;
    margin-left: 4px;
    vertical-align: middle;
  }
  .er-cs .price-card .btn { width: 100%; padding: 14px 20px; font-size: 14px; }
  .er-cs .pricing-cta { text-align: center; margin-top: 48px; }

  @media (max-width: 1024px) {
    .er-cs .pricing-teaser { grid-template-columns: repeat(2, 1fr); }
    .er-cs .price-card.featured { transform: none; }
  }
  @media (max-width: 560px) {
    .er-cs .pricing-teaser { grid-template-columns: 1fr; }
  }

  /* ============================================================
     13. FAQ
     ============================================================ */
  .er-cs .faq-list { max-width: 800px; margin: 0 auto; }
  .er-cs .faq-item {
    border-top: 1px solid var(--gray-200);
    padding: 24px 0;
  }
  .er-cs .faq-item:last-child { border-bottom: 1px solid var(--gray-200); }
  .er-cs .faq-q {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .er-cs .faq-a {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.65;
  }
  .er-cs .faq-a strong { color: var(--text); font-weight: 600; }

  /* ============================================================
     14. FINAL CTA — avec photo cavalier
     ============================================================ */
  .er-cs .final-cta {
    background: var(--green-banner);
    color: var(--white);
    padding: 100px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .er-cs .final-cta-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(19,70,39,0.85) 0%, rgba(10,40,22,0.93) 100%),
      url(https://www.equirider.fr/wp-content/uploads/2026/05/lp-cs-v3-final-cta-cavalier-crepuscule.jpg);
    background-size: cover;
    background-position: center bottom;
    z-index: 0;
  }
  .er-cs .final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(201, 169, 89, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
  }
  .er-cs .final-cta .wrap { position: relative; z-index: 2; }
  .er-cs .final-cta h2 {
    font-size: clamp(36px, 5vw, 54px);
    color: var(--white);
    margin-bottom: 14px;
  }
  .er-cs .final-cta .gold-italic {
    font-size: clamp(24px, 3.5vw, 36px);
    display: block;
    margin-bottom: 32px;
  }
  .er-cs .final-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    max-width: 540px;
    margin: 0 auto 40px;
  }
  .er-cs .final-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .er-cs .final-cta-buttons .btn-gold {
    box-shadow: 0 8px 24px rgba(201, 169, 89, 0.3);
  }
  .er-cs .final-cta-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 900px;
    margin: 0 auto;
  }
  .er-cs .final-cta-trust span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.02em;
  }
  @media (max-width: 720px) {
    .er-cs .final-cta-trust { gap: 16px; }
    .er-cs .final-cta-trust span { font-size: 12px; }
  }

/* ============================================================
   Ligne chevaux : puce ronde verte (pas le + qui suggere "ou plus")
   ============================================================ */
.er-cs .price-card li.horse-line {
  font-size: 15px;
  padding: 10px 0;
  color: var(--text);
  align-items: center;
}
.er-cs .price-card li.horse-line::before {
  content: '' !important;
  width: 9px !important;
  height: 9px !important;
  background: var(--green) !important;
  color: transparent !important;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0;
}
.er-cs .price-card li.horse-line strong {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--green);
  font-weight: 700;
}

/* ============================================================
   BANDEAU EXPLICATION SASHA (sous les cards de pricing)
   ============================================================ */
.er-cs .sasha-explain-banner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 900px;
  margin: 48px auto 0;
  padding: 26px 30px;
  background: linear-gradient(135deg, #1A1A1A 0%, #232323 100%);
  border: 1px solid #2E2E2E;
  border-top: 4px solid var(--gold);
  border-radius: 14px;
}
.er-cs .sasha-explain-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(201, 169, 89, 0.3);
}
.er-cs .sasha-explain-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  line-height: 1.3;
}
.er-cs .sasha-explain-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}
@media (max-width: 720px) {
  .er-cs .sasha-explain-banner { flex-direction: column; gap: 14px; padding: 22px; text-align: center; }
  .er-cs .sasha-explain-icon { margin: 0 auto; }
}

/* ============================================================
   COMPETITOR COMPARE TABLE (V3 PM 18/05/2026)
   ============================================================ */
.er-cs .competitor-compare-section { background: var(--dark); color: var(--white); padding: 100px 0; }
.er-cs .competitor-compare-section .section-head h2 { color: var(--white); }
.er-cs .competitor-compare-section .section-head .gold-italic { color: var(--gold); }
.er-cs .competitor-compare-section .section-head p { color: rgba(255,255,255,0.7); }
.er-cs .competitor-compare-section .pill {
  background: rgba(201,169,89,0.12); border-color: rgba(201,169,89,0.35); color: var(--gold);
}
.er-cs .competitor-compare {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  overflow: hidden;
}
.er-cs .competitor-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.er-cs .competitor-table thead th {
  padding: 18px 16px;
  background: #0f0f0f;
  color: var(--white);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  text-align: left;
  border-bottom: 2px solid var(--dark-border);
}
.er-cs .competitor-table thead th.feat-col { width: 30%; color: var(--gold); }
.er-cs .competitor-table thead th.er-col {
  background: rgba(26,86,50,0.18);
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
.er-cs .competitor-table .badge-fr,
.er-cs .competitor-table .badge-de,
.er-cs .competitor-table .badge-fr-light {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-left: 6px;
  font-family: 'DM Sans', sans-serif;
}
.er-cs .competitor-table .badge-fr { background: var(--gold); color: var(--black); }
.er-cs .competitor-table .badge-de { background: #6b6b66; color: var(--white); }
.er-cs .competitor-table .badge-fr-light { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.er-cs .competitor-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: middle;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.er-cs .competitor-table tbody td:first-child { color: var(--white); font-weight: 500; }
.er-cs .competitor-table tbody tr:nth-child(even) td { background: rgba(255,255,255,0.015); }
.er-cs .competitor-table tbody tr:hover td { background: rgba(201,169,89,0.04); }
.er-cs .competitor-table tr.row-section td {
  background: #0a0a0a !important;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gold);
}
.er-cs .competitor-table .cell-yes,
.er-cs .competitor-table .cell-no,
.er-cs .competitor-table .cell-partial { position: relative; padding-left: 32px !important; }
.er-cs .competitor-table .cell-yes::before {
  content: ''; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 12px; height: 12px; background: #4ADE80; border-radius: 50%;
  box-shadow: 0 0 8px rgba(74,222,128,0.4);
}
.er-cs .competitor-table .cell-no { color: rgba(255,255,255,0.4); }
.er-cs .competitor-table .cell-no::before {
  content: ''; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 2px; background: rgba(255,255,255,0.3);
}
.er-cs .competitor-table .cell-partial { color: rgba(255,255,255,0.75); }
.er-cs .competitor-table .cell-partial::before {
  content: ''; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 12px; height: 12px; background: var(--gold); border-radius: 50%; opacity: 0.7;
}
.er-cs .competitor-table .price { font-family: 'Playfair Display', serif; font-weight: 600; }
.er-cs .competitor-table .cell-yes.price strong { color: var(--gold); }
.er-cs .competitor-legend {
  display: flex; gap: 28px; justify-content: center; padding: 20px;
  background: #0a0a0a; border-top: 1px solid var(--dark-border); flex-wrap: wrap;
}
.er-cs .competitor-legend .legend-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 0.02em;
}
.er-cs .competitor-legend .dot { width: 10px; height: 10px; border-radius: 50%; }
.er-cs .competitor-legend .dot-yes { background: #4ADE80; }
.er-cs .competitor-legend .dot-no { background: rgba(255,255,255,0.3); }
.er-cs .competitor-legend .dot-partial { background: var(--gold); opacity: 0.7; }
.er-cs .competitor-note {
  text-align: center; font-size: 12px; color: rgba(255,255,255,0.45);
  margin-top: 16px; padding: 16px 24px 0;
  font-style: italic; font-family: 'Playfair Display', serif;
}
@media (max-width: 880px) {
  .er-cs .competitor-table { font-size: 12px; }
  .er-cs .competitor-table thead th,
  .er-cs .competitor-table tbody td { padding: 10px 8px; }
  .er-cs .competitor-table .cell-yes,
  .er-cs .competitor-table .cell-no,
  .er-cs .competitor-table .cell-partial { padding-left: 24px !important; }
  .er-cs .competitor-table .cell-yes::before,
  .er-cs .competitor-table .cell-no::before,
  .er-cs .competitor-table .cell-partial::before { left: 8px; width: 10px; height: 10px; }
}
@media (max-width: 640px) {
  .er-cs .competitor-compare { overflow-x: auto; }
  .er-cs .competitor-table { min-width: 580px; }
}


/* ============================================================
   LOGO CLAUDE/ANTHROPIC inline (mentions IA)
   ============================================================ */
.er-cs .claude-logo-inline {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  vertical-align: text-bottom;
  margin: 0 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.er-cs .claude-logo-inline.claude-logo-dark {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
}
