/* ============================================================
   RMA CONSULTING — style.css v4
   DA : cabinet de conseil enterprise — McKinsey / Deloitte / BCG register
   Fonts : Sora (headings) + Inter (body) + JetBrains Mono (KPI)
   Palette : navy / teal / cyan sur blanc dominant
   Namespace : rma-* — palette navy/teal/cyan/white uniquement
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap');

/* ── Tokens V4 ──────────────────────────────────────────── */
:root {
  /* Palette corporate navy / teal / cyan */
  --rma-navy:          #0E2A3D;
  --rma-navy-deep:     #081A28;
  --rma-teal:          #1F4E5F;
  --rma-teal-deep:     #143540;
  --rma-cyan:          #1A9BD7;
  --rma-cyan-soft:     #E6F4FB;
  --rma-bg:            #FFFFFF;
  --rma-bg-alt:        #F7F9FB;
  --rma-bg-soft:       #EFF3F7;
  --rma-border:        #E1E7ED;
  --rma-border-strong: #C8D2DC;
  --rma-text:          #0E2A3D;
  --rma-text-mid:      #4A6275;
  --rma-text-soft:     #7A8A99;

  /* Radius corporate (sobre, pas SaaS pill) */
  --radius-xs:   2px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;

  /* Shadows sobres */
  --shadow-sm:   0 2px 8px rgba(14,42,61,.05);
  --shadow-md:   0 4px 20px rgba(14,42,61,.08);
  --shadow-lg:   0 8px 32px rgba(14,42,61,.11);
  --shadow-card: 0 8px 24px rgba(14,42,61,.08);

  --ease-ed: cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--rma-text);
  background: var(--rma-bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
:focus-visible { outline: 2px solid var(--rma-cyan); outline-offset: 3px; }

/* ── Typographie ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: var(--rma-navy);
  letter-spacing: -.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(34px, 4.2vw, 60px); line-height: 1.08; }
h2 { font-size: clamp(26px, 3.4vw, 42px); }
h3 { font-size: clamp(20px, 2.4vw, 28px); }
h4 { font-size: 18px; font-weight: 600; }
p { text-wrap: pretty; }

p { color: var(--rma-text-mid); line-height: 1.75; }

/* ── Layout helpers ─────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}
/* Convention rythme vertical corporate strict */
.rma-section { padding: 120px 0; }
.section     { padding: 120px 0; }
.section-sm  { padding: 64px 0; }
.section-lg  { padding: 128px 0; }

/* Section header rythme standard */
.section-header { margin-bottom: 64px; }
.section-header .eyebrow  { margin-bottom: 16px; }
.section-header .section-title { margin-bottom: 24px; }
.section-header .section-sub   { margin-bottom: 0; }
.text-center { text-align: center; }
.mx-auto     { margin-left: auto; margin-right: auto; }

/* Hairline rule entre sections */
.rma-hairline {
  border: none;
  border-top: 1px solid var(--rma-border);
  margin: 0;
}

/* ── Eyebrow ────────────────────────────────────────────── */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rma-teal);
  margin-bottom: 20px;
  display: block;
}
.eyebrow-cyan { color: var(--rma-cyan); }

/* ── Section header ─────────────────────────────────────── */
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--rma-navy);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.section-sub {
  font-size: 18px;
  color: var(--rma-text-mid);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ── Boutons corporate ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: all .22s var(--ease-ed);
  white-space: nowrap;
  line-height: 1;
}
/* Primaire : navy filled */
.btn-navy {
  background: var(--rma-navy);
  color: #FFFFFF;
  border: 1.5px solid var(--rma-navy);
}
.btn-navy:hover { background: var(--rma-navy-deep); border-color: var(--rma-navy-deep); }

/* Secondaire : outline navy */
.btn-outline-navy {
  background: transparent;
  color: var(--rma-navy);
  border: 1.5px solid var(--rma-navy);
}
.btn-outline-navy:hover { background: var(--rma-bg-alt); }

/* Accent cyan filled */
.btn-cyan {
  background: var(--rma-cyan);
  color: #FFFFFF;
  border: 1.5px solid var(--rma-cyan);
}
.btn-cyan:hover { background: #1589C0; border-color: #1589C0; }

/* Ghost white pour sections dark */
.btn-ghost-white {
  background: transparent;
  color: #FFFFFF;
  border: none;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding-left: 0; padding-right: 0;
  font-size: 15px;
}
.btn-ghost-white:hover { opacity: .75; }

.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* Lien CTA avec flèche */
.rma-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rma-cyan);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s, gap .2s;
}
.rma-link-cta:hover { border-bottom-color: var(--rma-cyan); gap: 10px; }

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(.16,1,.3,1),
              transform 0.55s cubic-bezier(.16,1,.3,1);
}
.reveal.from-left  { transform: translateX(-28px); opacity: 0; }
.reveal.from-right { transform: translateX(28px);  opacity: 0; }
.reveal.in-view    { opacity: 1; transform: none; }

.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.06s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.12s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.18s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.24s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.30s; }

/* ── Checkmark liste ────────────────────────────────────── */
.rma-check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
.rma-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--rma-text-mid);
  line-height: 1.5;
}
.rma-check-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%230E2A3D'/%3E%3Cpath d='M5 9l3 3 5-6' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ── Blockquote institutionnel ──────────────────────────── */
.rma-quote {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--rma-bg-soft);
  border-left: 4px solid var(--rma-navy);
  padding: 28px 32px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 40px 0;
}
.rma-quote-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rma-bg-alt);
  border: 2px solid var(--rma-border);
  flex-shrink: 0;
  overflow: hidden;
}
.rma-quote-body {}
.rma-quote-body p {
  font-size: 18px;
  font-weight: 500;
  color: var(--rma-navy);
  line-height: 1.55;
  margin: 0 0 12px;
}
.rma-quote-attr {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rma-teal);
}

/* ── Encadré "À retenir" ────────────────────────────────── */
.rma-insight-box {
  background: var(--rma-bg-soft);
  border-left: 4px solid var(--rma-teal);
  padding: 28px 32px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 36px 0;
}
.rma-insight-box-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rma-teal);
  margin-bottom: 16px;
  display: block;
}
.rma-insight-box ul {
  display: flex;
  flex-direction: column;
}
.rma-insight-box li {
  padding: 10px 0;
  border-bottom: 1px solid var(--rma-border);
  font-size: 14px;
  color: var(--rma-text-mid);
  line-height: 1.55;
}
.rma-insight-box li:last-child { border-bottom: none; padding-bottom: 0; }

/* ═══════════════════════════════════════════════════════════
   HEADER — corporate white, hairline au scroll
   ══════════════════════════════════════════════════════════ */
.rma-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 80px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-ed);
}
.rma-header.scrolled {
  border-bottom-color: var(--rma-border);
  box-shadow: 0 1px 0 var(--rma-border);
}
.rma-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.rma-logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  flex-shrink: 0;
  gap: 2px;
  line-height: 1;
}
.rma-logo-mark {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #0A0A0A;
  display: inline-flex;
  align-items: baseline;
}
.rma-logo-dot {
  color: var(--rma-cyan);
  margin-left: 1px;
}
.rma-logo-tag {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--rma-navy);
  border-top: 2px solid var(--rma-navy);
  padding-top: 3px;
  margin-top: 1px;
  width: 100%;
  text-align: center;
}
.rma-logo-link--footer .rma-logo-mark { font-size: 28px; }
.rma-logo-link--footer .rma-logo-tag { font-size: 9px; }
.rma-logo-link--small .rma-logo-mark { font-size: 24px; }
.rma-logo-link--small .rma-logo-tag { font-size: 8px; }
/* Variante claire pour fond dark (CTA section) */
.rma-logo-link--white .rma-logo-mark { color: #FFFFFF; }
.rma-logo-link--white .rma-logo-tag { color: rgba(255,255,255,0.85); border-top-color: rgba(255,255,255,0.6); }
.rma-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.rma-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--rma-navy);
  transition: color .2s;
  position: relative;
  padding-bottom: 3px;
}
.rma-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 2px;
  background: var(--rma-cyan);
  transition: right .22s var(--ease-ed);
}
.rma-nav a:hover { color: var(--rma-navy-deep); }
.rma-nav a:hover::after,
.rma-nav a.active::after { right: 0; }
.rma-nav a.active { color: var(--rma-navy); font-weight: 600; }
.rma-header-cta { display: flex; align-items: center; gap: 12px; }

/* Burger mobile */
.rma-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.rma-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--rma-navy);
  border-radius: 1px;
  transition: all .22s var(--ease-ed);
}
.rma-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rma-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.rma-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.rma-mobile-nav {
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--rma-bg);
  z-index: 190;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px 40px;
  transform: translateX(100%);
  transition: transform .3s var(--ease-ed);
  overflow-y: auto;
}
.rma-mobile-nav.open { transform: translateX(0); }
.rma-mobile-nav a {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--rma-navy);
  padding: 18px 0;
  border-bottom: 1px solid var(--rma-border);
  transition: color .2s;
}
.rma-mobile-nav a:hover { color: var(--rma-cyan); }
.rma-mobile-nav .btn { margin-top: 28px; align-self: flex-start; }

/* WhatsApp FAB */
.rma-whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(37,211,102,.26);
  text-decoration: none;
  transition: transform .22s var(--ease-ed);
}
.rma-whatsapp-fab:hover { transform: scale(1.08); }
.rma-whatsapp-fab svg { display: block; width: 22px; height: 22px; }

/* ═══════════════════════════════════════════════════════════
   HERO — institutionnel, split 2-col
   ══════════════════════════════════════════════════════════ */
.rma-hero {
  background: var(--rma-bg);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.rma-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 96px 0 88px;
}
.rma-hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--rma-teal);
  margin-bottom: 24px;
  display: block;
}
.rma-hero-h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  color: var(--rma-navy);
  line-height: 1.08;
  letter-spacing: -.025em;
  margin-bottom: 28px;
  max-width: 540px;
  text-wrap: balance;
  hyphens: manual;
}
.rma-nowrap { white-space: nowrap; }
.rma-hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--rma-text-mid);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 540px;
}
.rma-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Footer ligne du chart */
.rma-hero-chart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--rma-border);
}

/* Graphique data viz hero (SVG inline) */
.rma-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.rma-hero-chart-wrap {
  background: var(--rma-bg);
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-md);
}
.rma-hero-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.rma-hero-chart-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--rma-navy);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.rma-hero-chart-kpi {
  text-align: right;
}
.rma-hero-chart-kpi-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 600;
  color: var(--rma-navy);
  line-height: 1;
}
.rma-hero-chart-kpi-label {
  font-size: 10px;
  color: var(--rma-text-soft);
  font-weight: 500;
  margin-top: 3px;
}
.rma-hero-chart-legend {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}
.rma-hero-chart-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--rma-text-mid);
}
.rma-hero-chart-legend-dot {
  width: 8px; height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   SOUS-HERO — bandeau clients
   ══════════════════════════════════════════════════════════ */
.rma-clients-band {
  background: var(--rma-bg-alt);
  padding: 56px 0;
  border-top: 1px solid var(--rma-border);
}
.rma-clients-eyebrow {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rma-teal);
  margin-bottom: 36px;
  display: block;
}
.rma-clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.rma-client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  border-right: 1px solid var(--rma-border);
}
.rma-client-item:last-child { border-right: none; }
.rma-client-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--rma-text-soft);
  text-align: center;
  opacity: .55;
}

/* ═══════════════════════════════════════════════════════════
   SECTION EXPERTISE — 3 colonnes services
   ══════════════════════════════════════════════════════════ */
.rma-expertise { background: var(--rma-bg); }
.rma-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 56px;
}
.rma-expertise-card {
  padding: 44px 40px;
  border-right: 1px solid var(--rma-border);
  transition: background .22s var(--ease-ed);
  position: relative;
}
.rma-expertise-card:last-child { border-right: none; }
.rma-expertise-card:hover { background: var(--rma-bg-alt); }
.rma-expertise-icon {
  width: 40px; height: 40px;
  margin-bottom: 24px;
  color: var(--rma-navy);
}
.rma-expertise-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--rma-navy);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.rma-expertise-card p {
  font-size: 15px;
  color: var(--rma-text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════
   SECTION INDUSTRIES — 6 tiles
   ══════════════════════════════════════════════════════════ */
.rma-industries { background: var(--rma-bg-alt); }
.rma-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.rma-industry-tile {
  background: var(--rma-bg);
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all .22s var(--ease-ed);
  cursor: default;
}
.rma-industry-tile:hover {
  border-color: var(--rma-navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.rma-industry-tile-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rma-teal);
  margin-bottom: 10px;
  display: block;
}
.rma-industry-tile h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--rma-navy);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.rma-industry-tile p {
  font-size: 13px;
  color: var(--rma-text-mid);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   SECTION METHODOLOGIE — timeline horizontale 4 étapes
   ══════════════════════════════════════════════════════════ */
.rma-methode { background: var(--rma-bg); }
.rma-methode-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
/* Connecteur horizontal */
.rma-methode-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: var(--rma-border-strong);
  z-index: 0;
}
.rma-methode-step {
  padding: 0 28px 0 0;
  position: relative;
  z-index: 1;
}
.rma-methode-step:last-child { padding-right: 0; }
.rma-methode-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--rma-navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.rma-methode-num span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: .02em;
}
.rma-methode-duration {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--rma-teal);
  margin-bottom: 10px;
  display: block;
}
.rma-methode-step h3 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--rma-navy);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.rma-methode-step p {
  font-size: 13px;
  color: var(--rma-text-mid);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   SECTION PLATEFORME — split 50/50
   ══════════════════════════════════════════════════════════ */
.rma-plateforme { background: var(--rma-bg-alt); }
.rma-plateforme-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.rma-plateforme-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mockup app épuré */
.rma-app-frame {
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 480px;
}
.rma-app-chrome {
  background: var(--rma-navy);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rma-app-chrome-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.rma-app-chrome-bar {
  flex: 1;
  background: rgba(255,255,255,.07);
  border-radius: 3px;
  padding: 4px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,.25);
  text-align: center;
}
.rma-app-body {
  background: var(--rma-bg-soft);
  padding: 20px;
  min-height: 300px;
}
.rma-app-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.rma-app-kpi {
  background: var(--rma-bg);
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
}
.rma-app-kpi-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--rma-text-soft);
  margin-bottom: 5px;
}
.rma-app-kpi-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 600;
  color: var(--rma-navy);
  line-height: 1;
}
.rma-app-chart {
  background: var(--rma-bg);
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 10px;
}
.rma-app-chart-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--rma-text-soft);
  margin-bottom: 10px;
}
.rma-app-bars { display: flex; flex-direction: column; gap: 7px; }
.rma-app-bar-row {
  display: grid;
  grid-template-columns: 56px 1fr 36px;
  align-items: center;
  gap: 8px;
}
.rma-app-bar-row span {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  color: var(--rma-text-mid);
}
.rma-app-bar-track {
  height: 5px;
  background: var(--rma-bg-alt);
  border-radius: 3px;
  overflow: hidden;
}
.rma-app-bar-track div { height: 100%; border-radius: 3px; }

/* ═══════════════════════════════════════════════════════════
   SECTION CAS — cards case study
   ══════════════════════════════════════════════════════════ */
.rma-cas { background: var(--rma-bg); }
.rma-cas-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 56px;
}
.rma-cas-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .22s var(--ease-ed);
}
.rma-cas-card:hover {
  border-color: var(--rma-navy);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.rma-cas-img {
  background: var(--rma-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: var(--rma-text-soft);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--rma-border);
}
.rma-cas-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.rma-cas-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rma-teal);
}
.rma-cas-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--rma-navy);
  letter-spacing: -.015em;
}
.rma-cas-kpi {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 600;
  color: var(--rma-navy);
  line-height: 1;
}
.rma-cas-kpi-label {
  font-size: 11px;
  color: var(--rma-text-soft);
  font-weight: 500;
  margin-top: 4px;
}
.rma-cas-body p {
  font-size: 14px;
  color: var(--rma-text-mid);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   SECTION PARTENARIAT RMA x Kabaun
   ══════════════════════════════════════════════════════════ */
.rma-partenariat { background: var(--rma-bg-alt); }
.rma-partenariat-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}
.rma-partenariat-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.rma-partenariat-x {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--rma-text-soft);
}
.rma-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rma-cyan-soft);
  color: var(--rma-teal);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(31,78,95,.15);
  margin-bottom: 28px;
  display: block;
  width: fit-content;
}
.rma-partenariat-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rma-partenariat-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--rma-navy);
}
.rma-partenariat-benefit::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--rma-cyan);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   SECTION CONFORMITE — tableau enterprise
   ══════════════════════════════════════════════════════════ */
.rma-conformite { background: var(--rma-bg); }
.rma-conformite-table-wrap {
  margin-top: 56px;
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.rma-conformite-table {
  width: 100%;
  border-collapse: collapse;
}
.rma-conformite-table thead th {
  background: var(--rma-navy);
  color: #FFFFFF;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 16px 20px;
  text-align: left;
}
.rma-conformite-table tbody tr {
  border-bottom: 1px solid var(--rma-border);
}
.rma-conformite-table tbody tr:last-child { border-bottom: none; }
.rma-conformite-table tbody tr:nth-child(even) { background: var(--rma-bg-alt); }
.rma-conformite-table tbody td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--rma-text-mid);
  vertical-align: middle;
}
.rma-conformite-table tbody td:first-child {
  font-weight: 600;
  color: var(--rma-navy);
}
.rma-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--rma-navy);
  border-radius: 50%;
  flex-shrink: 0;
}
.rma-check-icon::after {
  content: '';
  display: block;
  width: 10px; height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

/* Badge échéance */
.rma-badge-urgent {
  display: inline-block;
  background: rgba(26,155,215,.12);
  color: var(--rma-teal);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════════════
   SECTION INSIGHTS — 4 cards articles
   ══════════════════════════════════════════════════════════ */
.rma-insights { background: var(--rma-bg-alt); }
.rma-insights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.rma-insight-card {
  background: var(--rma-bg);
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .22s var(--ease-ed);
  display: flex;
  flex-direction: column;
}
.rma-insight-card:hover {
  border-color: var(--rma-navy);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.rma-insight-card-img {
  height: 140px;
  background: var(--rma-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--rma-text-soft);
  border-bottom: 1px solid var(--rma-border);
}
.rma-insight-card-body {
  padding: 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rma-insight-card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rma-teal);
  margin-bottom: 12px;
}
.rma-insight-card-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--rma-navy);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.rma-insight-card-body p {
  font-size: 13px;
  color: var(--rma-text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION — seule section dark du site
   ══════════════════════════════════════════════════════════ */
.rma-cta-section {
  background: var(--rma-navy-deep);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.rma-cta-section-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.rma-cta-section h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.rma-cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 40px;
}
.rma-cta-section-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.rma-cta-section-phone {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color .2s;
}
.rma-cta-section-phone:hover { color: #FFFFFF; }
/* Logo filigrane bas-droite */
.rma-cta-logo-watermark {
  position: absolute;
  bottom: 40px; right: 40px;
  width: 140px;
  opacity: .06;
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════════════════════
   KPI BLOCKS — 4 colonnes
   ══════════════════════════════════════════════════════════ */
.rma-kpi-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.rma-kpi-item {
  padding: 40px 32px;
  border-right: 1px solid var(--rma-border);
}
.rma-kpi-item:last-child { border-right: none; }
.rma-kpi-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rma-teal);
  margin-bottom: 12px;
  display: block;
}
.rma-kpi-val {
  font-family: 'Sora', sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  color: var(--rma-navy);
  line-height: 1;
  letter-spacing: -.03em;
}
/* Variante monospace pour KPI numériques / valeurs techniques */
.rma-kpi-val--mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600;
  color: var(--rma-navy);
  line-height: 1;
  letter-spacing: -.02em;
}
/* Cellule td de numéro d'étape (01, 02…) */
.rma-td-step {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: var(--rma-teal);
}
/* Numéro de module produit (01–06 dans les module-cards) */
.rma-module-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--rma-teal);
  letter-spacing: .06em;
  margin-bottom: 16px;
}
/* Label certification dans les cert-cards */
.rma-cert-label {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--rma-navy);
  margin-bottom: 8px;
}
.rma-kpi-label {
  font-size: 13px;
  color: var(--rma-text-mid);
  margin-top: 8px;
  font-weight: 400;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — white sur bg-alt
   ══════════════════════════════════════════════════════════ */
.rma-footer {
  background: var(--rma-bg-alt);
  border-top: 1px solid var(--rma-border);
  padding: 72px 0 40px;
}
.rma-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rma-border);
}
.rma-footer-brand {}
.rma-footer-brand-desc {
  font-size: 14px;
  color: var(--rma-text-mid);
  line-height: 1.7;
  margin: 20px 0 24px;
  max-width: 280px;
}
.rma-footer-partner-mention {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rma-teal);
}
.rma-footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rma-navy);
  margin-bottom: 20px;
}
.rma-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rma-footer-links a {
  font-size: 14px;
  color: var(--rma-text-mid);
  transition: color .18s;
}
.rma-footer-links a:hover { color: var(--rma-navy); }
.rma-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.rma-footer-legal {
  font-size: 12px;
  color: var(--rma-text-soft);
}
.rma-footer-legal a {
  color: var(--rma-text-soft);
  transition: color .18s;
}
.rma-footer-legal a:hover { color: var(--rma-navy); }
.rma-footer-social {
  display: flex;
  gap: 12px;
}
.rma-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-sm);
  color: var(--rma-text-mid);
  transition: all .18s;
}
.rma-footer-social a:hover {
  border-color: var(--rma-navy);
  color: var(--rma-navy);
}

/* ═══════════════════════════════════════════════════════════
   PAGES SECONDAIRES — hero court corporate
   ══════════════════════════════════════════════════════════ */
.rma-page-hero {
  background: var(--rma-bg);
  padding-top: 80px;
  padding-bottom: 0;
}
.rma-page-hero-inner {
  padding: 80px 0 64px;
  max-width: 760px;
}
.rma-page-hero-inner .eyebrow {
  margin-bottom: 16px;
}
.rma-page-hero-inner h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--rma-navy);
  line-height: 1.07;
  letter-spacing: -.025em;
  margin-bottom: 20px;
}
.rma-page-hero-inner p {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--rma-text-mid);
  line-height: 1.65;
  max-width: 640px;
}
.rma-page-hero-rule {
  border: none;
  border-top: 1px solid var(--rma-border);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   ARTICLES — corporate report typesetting
   ══════════════════════════════════════════════════════════ */
.rma-article-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
  padding: 64px 0 100px;
}

/* ToC sticky */
.rma-toc {
  position: sticky;
  top: 100px;
}
.rma-toc-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rma-text-soft);
  margin-bottom: 16px;
  display: block;
}
.rma-toc-list { display: flex; flex-direction: column; gap: 0; }
.rma-toc-list a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--rma-text-mid);
  padding: 8px 0 8px 14px;
  border-left: 2px solid var(--rma-border);
  transition: all .18s;
  line-height: 1.4;
}
.rma-toc-list a:hover,
.rma-toc-list a.active {
  color: var(--rma-navy);
  border-left-color: var(--rma-cyan);
}

/* Corps de l'article */
.rma-article-body {
  max-width: 720px;
}
.rma-article-body h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--rma-navy);
  margin: 56px 0 20px;
  letter-spacing: -.02em;
  padding-top: 32px;
  border-top: 1px solid var(--rma-border);
}
.rma-article-body h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.rma-article-h2-num {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rma-teal);
  display: block;
  margin-bottom: 8px;
}
.rma-article-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--rma-navy);
  margin: 36px 0 14px;
  letter-spacing: -.015em;
}
.rma-article-body p {
  font-size: 16px;
  color: var(--rma-text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.rma-article-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.rma-article-body ul li {
  font-size: 15px;
  color: var(--rma-text-mid);
  line-height: 1.75;
  margin-bottom: 8px;
  padding-left: 6px;
}
.rma-article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.rma-article-body thead th {
  background: var(--rma-navy);
  color: #FFFFFF;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 14px 16px;
  text-align: left;
}
.rma-article-body tbody tr {
  border-bottom: 1px solid var(--rma-border);
}
.rma-article-body tbody tr:nth-child(even) { background: var(--rma-bg-alt); }
.rma-article-body tbody td {
  padding: 13px 16px;
  font-size: 14px;
  color: var(--rma-text-mid);
  line-height: 1.5;
}
.rma-article-body blockquote {
  border-left: 4px solid var(--rma-navy);
  background: var(--rma-cyan-soft);
  padding: 28px 32px;
  margin: 40px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.rma-article-body blockquote p {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--rma-navy);
  font-style: normal;
  line-height: 1.5;
  margin: 0 0 12px;
}
.rma-article-body blockquote cite {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rma-teal);
}

/* CTA fin d'article */
.rma-article-cta {
  background: var(--rma-navy-deep);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  margin: 56px 0;
}
.rma-article-cta h3 {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.rma-article-cta p {
  color: rgba(255,255,255,.65);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════════════════════ */
.rma-faq-list { display: flex; flex-direction: column; }
.rma-faq-item {
  border-top: 1px solid var(--rma-border);
}
.rma-faq-item:last-child { border-bottom: 1px solid var(--rma-border); }
.rma-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.rma-faq-q-text {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--rma-navy);
  letter-spacing: -.01em;
}
.rma-faq-icon {
  width: 22px; height: 22px;
  border: 1.5px solid var(--rma-border-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 300;
  color: var(--rma-text-mid);
  transition: all .22s var(--ease-ed);
  line-height: 1;
}
.rma-faq-item.open .rma-faq-icon {
  transform: rotate(45deg);
  border-color: var(--rma-navy);
  color: var(--rma-navy);
}
.rma-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-ed), padding .35s var(--ease-ed);
}
.rma-faq-item.open .rma-faq-a {
  max-height: 600px;
}
.rma-faq-a-inner {
  padding-bottom: 24px;
}
.rma-faq-a p {
  font-size: 15px;
  color: var(--rma-text-mid);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   FORMULAIRE CONTACT
   ══════════════════════════════════════════════════════════ */
.rma-form { display: flex; flex-direction: column; gap: 20px; }
.rma-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.rma-form-field { display: flex; flex-direction: column; gap: 8px; }
.rma-form-field label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--rma-navy);
}
.rma-form-field input,
.rma-form-field select,
.rma-form-field textarea {
  padding: 12px 16px;
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--rma-navy);
  background: var(--rma-bg);
  transition: border-color .2s;
  outline: none;
}
.rma-form-field input:focus,
.rma-form-field select:focus,
.rma-form-field textarea:focus {
  border-color: var(--rma-navy);
}
.rma-form-field textarea { resize: vertical; min-height: 120px; }

/* ═══════════════════════════════════════════════════════════
   PRICING — Grille 4 plans corporate
   ══════════════════════════════════════════════════════════ */
.rma-pricing { background: var(--rma-bg); }
.rma-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 56px;
}
.rma-plan {
  background: var(--rma-bg);
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow .25s var(--ease-ed), border-color .25s var(--ease-ed);
  display: flex;
  flex-direction: column;
}
.rma-plan:hover { box-shadow: var(--shadow-card); border-color: var(--rma-border-strong); }
.rma-plan.featured {
  background: var(--rma-navy-deep);
  border-color: var(--rma-navy-deep);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.rma-plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--rma-cyan);
  color: var(--rma-bg);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rma-plan-name {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--rma-navy);
  letter-spacing: -.01em;
}
.rma-plan.featured .rma-plan-name { color: #FFFFFF; }
.rma-plan-target {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--rma-text-mid);
  margin-bottom: 24px;
  line-height: 1.5;
}
.rma-plan.featured .rma-plan-target { color: rgba(255,255,255,.6); }
.rma-plan-price {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--rma-navy);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.02em;
}
.rma-plan-price-from {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rma-teal);
  margin-bottom: 6px;
}
.rma-plan.featured .rma-plan-price { color: var(--rma-cyan); }
.rma-plan.featured .rma-plan-price-from { color: rgba(255,255,255,.6); }
.rma-plan-period {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--rma-text-soft);
  margin-bottom: 28px;
}
.rma-plan.featured .rma-plan-period { color: rgba(255,255,255,.55); }
.rma-plan-divider {
  border: none;
  border-top: 1px solid var(--rma-border);
  margin: 0 0 24px 0;
}
.rma-plan.featured .rma-plan-divider { border-color: rgba(255,255,255,.14); }
.rma-plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.rma-plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--rma-text);
  line-height: 1.5;
}
.rma-plan.featured .rma-plan-feature { color: rgba(255,255,255,.85); }
.rma-plan-check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--rma-cyan-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.rma-plan.featured .rma-plan-check { background: rgba(26,155,215,.22); }
.rma-plan-check svg { width: 10px; height: 10px; }
.rma-plan .btn { width: 100%; justify-content: center; text-align: center; }
.rma-pricing-note {
  text-align: center;
  margin-top: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--rma-text-mid);
  background: var(--rma-bg-alt);
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .rma-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .rma-hero-right { display: none; }
  .rma-expertise-grid { grid-template-columns: 1fr; }
  .rma-expertise-card { border-right: none; border-bottom: 1px solid var(--rma-border); }
  .rma-expertise-card:last-child { border-bottom: none; }
  .rma-industries-grid { grid-template-columns: repeat(2, 1fr); }
  .rma-methode-timeline { grid-template-columns: 1fr 1fr; }
  .rma-methode-timeline::before { display: none; }
  .rma-plateforme-inner { grid-template-columns: 1fr; }
  .rma-plateforme-right { display: none; }
  .rma-partenariat-inner { grid-template-columns: 1fr; gap: 40px; }
  .rma-cas-card { grid-template-columns: 1fr; }
  .rma-cas-img { min-height: 160px; border-right: none; border-bottom: 1px solid var(--rma-border); }
  .rma-insights-grid { grid-template-columns: repeat(2, 1fr); }
  .rma-kpi-block { grid-template-columns: repeat(2, 1fr); }
  .rma-kpi-item:nth-child(2) { border-right: none; }
  .rma-kpi-item:nth-child(3) { border-top: 1px solid var(--rma-border); }
  .rma-kpi-item:nth-child(4) { border-right: none; border-top: 1px solid var(--rma-border); }
  .rma-footer-grid { grid-template-columns: 1fr 1fr; }
  .rma-clients-grid { grid-template-columns: repeat(3, 1fr); }
  .rma-client-item:nth-child(3) { border-right: none; }
  .rma-client-item:nth-child(4),
  .rma-client-item:nth-child(5),
  .rma-client-item:nth-child(6) { border-top: 1px solid var(--rma-border); }
  .rma-article-layout { grid-template-columns: 1fr; }
  .rma-toc { display: none; }
  .rma-conformite-table-wrap { overflow-x: auto; }
  .rma-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .rma-plan.featured { transform: scale(1); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .section-lg { padding: 88px 0; }
  .rma-nav { display: none; }
  .rma-header-cta .btn { display: none; }
  .rma-burger { display: flex; }
  .rma-industries-grid { grid-template-columns: 1fr; }
  .rma-methode-timeline { grid-template-columns: 1fr; }
  .rma-pricing-grid { grid-template-columns: 1fr; }
  .rma-insights-grid { grid-template-columns: 1fr; }
  .rma-kpi-block { grid-template-columns: 1fr 1fr; }
  .rma-footer-grid { grid-template-columns: 1fr; }
  .rma-footer-bottom { flex-direction: column; align-items: flex-start; }
  .rma-clients-grid { grid-template-columns: repeat(2, 1fr); }
  .rma-client-item { border-right: none; border-bottom: 1px solid var(--rma-border); }
  .rma-form-row { grid-template-columns: 1fr; }
  .rma-cta-section { padding: 80px 0; }
  .rma-cta-logo-watermark { display: none; }
  .rma-hero-inner { padding: 64px 0 56px; }
  .rma-page-hero-inner { padding: 56px 0 48px; }
  .section { padding: 72px 0; }
  .rma-section { padding: 72px 0; }
  .rma-cta-section { padding: 72px 0; }
  .rma-cas-card { grid-template-columns: 1fr; }
  .rma-cas-img { min-height: 140px; border-right: none; border-bottom: 1px solid var(--rma-border); }
  .rma-contact-grid { grid-template-columns: 1fr; }
  .rma-about-grid { grid-template-columns: 1fr; }
  .rma-nl-grid { grid-template-columns: 1fr !important; }
  .rma-val-grid { grid-template-columns: 1fr !important; }
}

/* ─── Responsive 1024px ─────────────────────────────────── */
@media (max-width: 1024px) {
  .section { padding: 96px 0; }
  .rma-section { padding: 96px 0; }
}

/* ═══════════════════════════════════════════════════════════
   CLASSES UTILITAIRES COULEUR — remplacent les style= inline
   ══════════════════════════════════════════════════════════ */
.rma-text-cyan  { color: var(--rma-cyan) !important; }
.rma-text-teal  { color: var(--rma-teal) !important; }
.rma-text-navy  { color: var(--rma-navy) !important; }
.rma-text-mid   { color: var(--rma-text-mid) !important; }
.rma-text-soft  { color: var(--rma-text-soft) !important; }
.rma-text-white { color: #FFFFFF !important; }
.rma-mono       { font-family: 'JetBrains Mono', monospace !important; }
.rma-display    { font-family: 'Sora', sans-serif !important; }
.rma-body-font  { font-family: 'Inter', sans-serif !important; }

/* ═══════════════════════════════════════════════════════════
   HERO H1 / SUB — max-width pour lecture 2-3 lignes propres
   ══════════════════════════════════════════════════════════ */
.rma-hero-h1   { max-width: 720px; }
.rma-hero-sub  { max-width: 580px; }

/* ═══════════════════════════════════════════════════════════
   BOUTONS — hauteur 48px fixe, padding normalisé
   ══════════════════════════════════════════════════════════ */
.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  min-height: 48px;
}
.btn {
  min-height: 44px;
}

/* ═══════════════════════════════════════════════════════════
   CLIENT BAND — polish formal logo placeholders
   ══════════════════════════════════════════════════════════ */
.rma-client-item {
  min-height: 64px;
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-sm);
  background: var(--rma-bg);
  margin: 4px;
  transition: opacity 200ms var(--ease-ed);
}
.rma-client-item:hover .rma-client-name { opacity: 1; }
.rma-client-name {
  font-size: 12px;
  letter-spacing: .08em;
  opacity: .55;
  transition: opacity 200ms var(--ease-ed);
}
/* Annule le border-right natif — border est maintenant sur item */
.rma-clients-grid .rma-client-item { border-right: 1px solid var(--rma-border); }
.rma-clients-grid { gap: 8px; }

/* ═══════════════════════════════════════════════════════════
   INDUSTRIES — icônes line + hover polish
   ══════════════════════════════════════════════════════════ */
.rma-industry-icon {
  width: 40px; height: 40px;
  margin-bottom: 16px;
  color: var(--rma-navy);
  flex-shrink: 0;
}
.rma-industry-tile:hover {
  border-color: var(--rma-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  background: var(--rma-bg);
}

/* ═══════════════════════════════════════════════════════════
   CONFORMITE TABLE — hover ligne + padding généreux
   ══════════════════════════════════════════════════════════ */
.rma-conformite-table tbody td {
  padding: 18px 24px;
}
.rma-conformite-table thead th {
  padding: 16px 24px;
}
.rma-conformite-table tbody tr:hover td {
  background: var(--rma-cyan-soft);
}

/* ═══════════════════════════════════════════════════════════
   INSIGHTS CARDS — image placeholder SVG
   ══════════════════════════════════════════════════════════ */
.rma-insight-card-img {
  height: 160px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT — grid 2 colonnes
   ══════════════════════════════════════════════════════════ */
.rma-contact-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}
.rma-contact-info h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--rma-navy);
  margin-bottom: 12px;
}
.rma-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rma-border);
}
.rma-contact-item:last-of-type { border-bottom: none; }
.rma-contact-item-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--rma-cyan-soft);
  border: 1px solid rgba(26,155,215,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rma-contact-item-body {
  font-size: 14px;
  color: var(--rma-text-mid);
  line-height: 1.6;
}
.rma-contact-item-body strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--rma-navy);
  margin-bottom: 2px;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT — 2 colonnes
   ══════════════════════════════════════════════════════════ */
.rma-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.rma-values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rma-value-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rma-border);
}
.rma-value-item:last-child { border-bottom: none; }
.rma-value-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--rma-text-soft);
  letter-spacing: .06em;
  padding-top: 3px;
  flex-shrink: 0;
  width: 24px;
}
.rma-value-body h4 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--rma-navy);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.rma-value-body p {
  font-size: 14px;
  color: var(--rma-text-mid);
  line-height: 1.7;
}
.rma-partner-badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rma-teal);
}

/* ═══════════════════════════════════════════════════════════
   RESSOURCES PAGE — cards & stats band
   ══════════════════════════════════════════════════════════ */
.rma-stats-band {
  background: var(--rma-bg-alt);
  border-top: 1px solid var(--rma-border);
  border-bottom: 1px solid var(--rma-border);
  padding: 48px 0;
}
.rma-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.rma-stats-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--rma-border);
}
.rma-stats-strip-item:last-child { border-right: none; }
.rma-stats-strip-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 600;
  color: var(--rma-navy);
  line-height: 1;
  margin-bottom: 6px;
}
.rma-stats-strip-label {
  font-size: 12px;
  color: var(--rma-text-soft);
  font-weight: 500;
  text-align: center;
}
.rma-ressources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.rma-res-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px 40px;
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-md);
  background: var(--rma-bg);
  transition: all .22s var(--ease-ed);
  color: var(--rma-navy);
}
.rma-res-card:hover {
  border-color: var(--rma-navy);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.rma-res-meta {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rma-teal);
}
.rma-res-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--rma-navy);
  line-height: 1.25;
  letter-spacing: -.015em;
  margin: 0;
}
.rma-res-card p {
  font-size: 14px;
  color: var(--rma-text-mid);
  line-height: 1.7;
  flex: 1;
}
.rma-res-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--rma-cyan);
  border-bottom: 1px solid transparent;
  transition: border-color .18s;
  align-self: flex-start;
}
.rma-res-card:hover .rma-res-link { border-bottom-color: var(--rma-cyan); }

/* Form group (contact page) */
.rma-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.rma-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.rma-form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--rma-navy);
}
.rma-form-group input,
.rma-form-group select,
.rma-form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--rma-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--rma-navy);
  background: var(--rma-bg);
  transition: border-color .2s;
  outline: none;
}
.rma-form-group input:focus,
.rma-form-group select:focus,
.rma-form-group textarea:focus {
  border-color: var(--rma-navy);
}
.rma-form-group textarea { resize: vertical; min-height: 120px; }
.rma-form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
}
.rma-form-success h3 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--rma-navy);
  margin-bottom: 8px;
}
.rma-form-success p {
  font-size: 15px;
  color: var(--rma-text-mid);
}
.rma-form-success.visible { display: block; }

/* ═══════════════════════════════════════════════════════════
   PAGES LÉGALES — hero court + typesetting corporate report
   ══════════════════════════════════════════════════════════ */
.rma-legal-hero {
  background: var(--rma-bg);
  padding-top: 80px;
  border-bottom: 1px solid var(--rma-border);
}
.rma-legal-hero .container {
  padding-top: 56px;
  padding-bottom: 48px;
}
.rma-legal-breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--rma-text-soft);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.rma-legal-breadcrumb a { color: var(--rma-text-soft); }
.rma-legal-breadcrumb a:hover { color: var(--rma-navy); }
.rma-legal-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--rma-navy);
  letter-spacing: -.025em;
  line-height: 1.07;
  margin-bottom: 12px;
}
.rma-legal-date {
  font-size: 12px;
  color: var(--rma-text-soft);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.rma-legal-content { background: var(--rma-bg); }
.rma-legal-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rma-border);
}
.rma-legal-block:last-child { border-bottom: none; margin-bottom: 0; }
.rma-legal-block h2 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--rma-navy);
  margin-bottom: 16px;
  letter-spacing: -.015em;
  border-top: none !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.rma-legal-block h3 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--rma-navy);
  margin: 24px 0 10px;
}
.rma-legal-block p {
  font-size: 15px;
  color: var(--rma-text-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}
.rma-legal-block a { color: var(--rma-cyan); }
.rma-legal-block a:hover { text-decoration: underline; }
/* Tableau cookies */
.rma-cookie-table {
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 20px 0;
}
.rma-cookie-row {
  display: grid;
  grid-template-columns: 160px 100px 1fr;
  border-bottom: 1px solid var(--rma-border);
  font-size: 13px;
}
.rma-cookie-row:last-child { border-bottom: none; }
.rma-cookie-row.rma-cookie-header {
  background: var(--rma-navy);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.rma-cookie-row.rma-cookie-header span { color: #FFFFFF; }
.rma-cookie-row span {
  padding: 12px 16px;
  color: var(--rma-text-mid);
  border-right: 1px solid var(--rma-border);
}
.rma-cookie-row span:last-child { border-right: none; }
.rma-cookie-row:nth-child(even) { background: var(--rma-bg-alt); }

.rma-legal-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 0 100px;
}
.rma-legal-body h2 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--rma-navy);
  margin: 48px 0 16px;
  letter-spacing: -.015em;
  padding-top: 48px;
  border-top: 1px solid var(--rma-border);
}
.rma-legal-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.rma-legal-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--rma-navy);
  margin: 28px 0 10px;
}
.rma-legal-body p {
  font-size: 15px;
  color: var(--rma-text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.rma-legal-body ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.rma-legal-body ul li {
  font-size: 14px;
  color: var(--rma-text-mid);
  line-height: 1.75;
  margin-bottom: 6px;
  list-style: disc;
}
.rma-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border: 1px solid var(--rma-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.rma-legal-table thead th {
  background: var(--rma-navy);
  color: #FFFFFF;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 14px 18px;
  text-align: left;
}
.rma-legal-table tbody td {
  padding: 12px 18px;
  font-size: 13px;
  color: var(--rma-text-mid);
  border-bottom: 1px solid var(--rma-border);
}
.rma-legal-table tbody tr:last-child td { border-bottom: none; }
.rma-legal-table tbody tr:nth-child(even) { background: var(--rma-bg-alt); }

/* ═══════════════════════════════════════════════════════════
   PREFERS-REDUCED-MOTION — désactive animations longues
   ══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   ACCESSIBILITY — focus rings uniformes
   ══════════════════════════════════════════════════════════ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--rma-cyan);
  outline-offset: 3px;
}

/* Mobile touch targets */
@media (max-width: 768px) {
  .btn, .rma-nav a, .rma-mobile-nav a,
  .rma-faq-q, .rma-whatsapp-fab {
    min-height: 44px;
  }
  .rma-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .rma-stats-strip-item:nth-child(2) { border-right: none; }
  .rma-stats-strip-item:nth-child(3),
  .rma-stats-strip-item:nth-child(4) { border-top: 1px solid var(--rma-border); }
  .rma-ressources-grid { grid-template-columns: 1fr; }
  .rma-form-grid { grid-template-columns: 1fr; }
  .rma-about-grid { grid-template-columns: 1fr; }
}

