/* ============================================================
   Ma Redevance de Marque — Design system (noir & blanc)
   ============================================================ */

:root {
  --black: #0a0a0a;
  --ink: #111214;
  --gray-900: #1c1c1e;
  --gray-700: #3a3a3c;
  --gray-500: #6b6b70;
  --gray-400: #8e8e93;
  --gray-300: #c7c7cc;
  --gray-200: #e5e5ea;
  --gray-100: #f2f2f4;
  --paper: #f7f7f5;
  --tint: #edefff;        /* accent lavande léger, utilisé ponctuellement en fond */
  --tint-border: #dfe3fb;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.05), 0 1px 3px rgba(0,0,0,.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.14);

  --maxw: 1140px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; color: var(--black); }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.15rem; }
p  { color: var(--gray-700); }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------------- Buttons ---------------- */
.btn {
  --btn-py: 11px; --btn-px: 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--btn-py) var(--btn-px);
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { --btn-py: 15px; --btn-px: 28px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--gray-900); box-shadow: var(--shadow-md); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; }

.btn-outline { background: transparent; color: var(--black); border-color: var(--gray-300); }
.btn-outline:hover { border-color: var(--black); background: var(--black); color: var(--white); }

.btn-ghost { background: transparent; color: var(--gray-700); }
.btn-ghost:hover { color: var(--black); }

/* Variantes sur fond sombre */
.btn-light { background: var(--white); color: var(--black); }
.btn-light:hover { background: var(--tint); box-shadow: var(--shadow-md); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.32); }
.btn-outline-light:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--gray-200);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--black); flex: none; }
.brand-logo { height: 21px; width: auto; display: block; }
.brand-footer .brand-logo { height: 20px; }
.brand-mark { color: var(--black); display: inline-flex; flex: none; }
.brand-text { font-weight: 700; font-size: 1.06rem; letter-spacing: -0.02em; white-space: nowrap; }
.brand-text em { font-style: normal; color: var(--gray-500); font-weight: 500; }

.main-nav { display: flex; gap: 26px; margin: 0 auto; }
.main-nav a { font-size: .93rem; font-weight: 500; color: var(--gray-700); white-space: nowrap; transition: color .2s; }
.main-nav a:hover { color: var(--black); }

.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: .25s; }

.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 22px; border-bottom: 1px solid var(--gray-200); background: var(--white); }
.mobile-nav a { padding: 12px 4px; font-weight: 500; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.mobile-nav a:last-child { border: 0; margin-top: 10px; }

/* ---------------- Hero ---------------- */
.hero { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 80px); background: var(--white); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-illustration {
  position: absolute; z-index: 0; pointer-events: none;
  right: -60px; top: 50%; transform: translateY(-50%);
  width: min(73%, 1015px); height: auto;
  opacity: .85;
}

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gray-500); padding: 6px 12px; border: 1px solid var(--gray-200); border-radius: 999px; margin-bottom: 22px; background: var(--white);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tint); border: 1px solid var(--tint-border);
  color: var(--black); font-weight: 600; font-size: .85rem;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero-badge svg { flex: none; }
.hero-copy h1 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); line-height: 1.1; margin-bottom: 20px; }
.hero-lead { font-size: 1.1rem; color: var(--gray-700); max-width: 46ch; margin-bottom: 30px; }
.hero-lead strong { color: var(--black); font-weight: 700; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; align-items: center; gap: 9px; margin: -14px 0 26px; font-size: .95rem; color: var(--gray-700); }
.hero-trust strong { color: var(--black); font-weight: 700; }
.hero-shield { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--tint); color: var(--black); font-size: .78rem; flex: none; }
.hero-points { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hero-points li { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--gray-700); }
.hero-points .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--black); flex: none; }

.hero-origin {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: end; justify-self: end;
  margin-top: 48px;
  padding: 8px 14px;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 999px;
  color: var(--gray-700); font-size: .85rem; font-weight: 500;
  box-shadow: var(--shadow-sm);
}

/* ---------------- Sections ---------------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-alt { background: var(--tint); }
.section-eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 14px; }
.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub { font-size: 1.08rem; color: var(--gray-500); margin-top: 14px; }

/* Principe */
.principe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.principe-text h2 { margin-bottom: 20px; }
.principe-text p { margin-bottom: 16px; }
.link-arrow { display: inline-block; margin-top: 8px; font-weight: 600; color: var(--black); border-bottom: 2px solid var(--black); padding-bottom: 2px; }
.link-arrow:hover { opacity: .65; }

.flow-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-md); }
.flow-step { display: flex; gap: 18px; align-items: flex-start; }
.flow-num { flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--black); color: var(--white); font-weight: 700; font-size: .9rem; }
.flow-step h3 { margin-bottom: 4px; }
.flow-step p { font-size: .92rem; color: var(--gray-500); }
.flow-arrow { width: 40px; text-align: center; color: var(--gray-300); font-size: 1.3rem; margin: 10px 0; line-height: 1; }

/* Cards grids */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.feature { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px 24px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.feature-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--black); color: var(--white); display: grid; place-items: center; font-size: 1.25rem; font-weight: 700; margin-bottom: 18px; }
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: .93rem; color: var(--gray-500); }

/* Steps */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: none; }
.step { position: relative; padding: 30px 24px; border: 1px solid var(--gray-200); border-radius: var(--radius); background: var(--white); }
.step-index { display: inline-block; font-size: 2rem; font-weight: 800; color: var(--gray-200); letter-spacing: -0.03em; margin-bottom: 12px; }
.step h3 { margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--gray-500); }


/* Cas clients */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; gap: 12px; transition: transform .2s, box-shadow .2s; }
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case-tag { align-self: flex-start; font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--gray-500); background: var(--gray-100); border-radius: 999px; padding: 5px 12px; }
.case-amount { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.03em; color: var(--black); }
.case-amount small { display: block; font-size: .8rem; font-weight: 500; color: var(--gray-500); letter-spacing: 0; }
.case-card p { font-size: .92rem; color: var(--gray-500); }
.case-meta { font-size: .88rem; color: var(--gray-500); padding: 12px 0; margin: 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.case-meta b { color: var(--ink); font-weight: 700; }

/* Simulateur */
.sim { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: stretch; }
.sim-controls { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; gap: 30px; box-shadow: var(--shadow-sm); }
.sim-field { display: flex; flex-direction: column; gap: 10px; }
.sim-label-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.sim-label-row label { font-weight: 600; color: var(--black); font-size: .98rem; }
.sim-label-row output { font-weight: 800; color: var(--black); font-size: 1.15rem; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.sim-scale { display: flex; justify-content: space-between; font-size: .78rem; color: var(--gray-400); }
.sim-hint { font-size: .82rem; color: var(--gray-500); margin-top: 2px; }

.sim-field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: .96rem; font-family: inherit; background: var(--white); color: var(--ink); cursor: pointer; transition: border-color .2s;
}
.sim-field select:focus { outline: none; border-color: var(--black); }

/* Range sliders */
.sim-field input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; margin: 4px 0;
  background: linear-gradient(90deg, var(--black) 0 var(--fill, 50%), var(--gray-200) var(--fill, 50%) 100%);
  cursor: pointer;
}
.sim-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--black); border: 3px solid var(--white); box-shadow: var(--shadow-md); cursor: pointer; transition: transform .15s;
}
.sim-field input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
.sim-field input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--black); border: 3px solid var(--white); box-shadow: var(--shadow-md); cursor: pointer;
}
.sim-field input[type="range"]:focus-visible { outline: 2px solid var(--black); outline-offset: 6px; border-radius: 999px; }

/* Result card */
.sim-result { background: var(--black); color: var(--white); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.sim-result-label { font-size: .85rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; }
.sim-amount { display: flex; align-items: baseline; gap: 8px; margin: 8px 0 24px; }
.sim-amount span { font-size: clamp(2.4rem, 4.5vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; color: var(--white); font-variant-numeric: tabular-nums; }
.sim-amount small { font-size: 1rem; color: var(--gray-400); font-weight: 500; }
.sim-breakdown { list-style: none; display: flex; flex-direction: column; margin-bottom: 24px; }
.sim-breakdown li { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-top: 1px solid var(--gray-900); font-size: .95rem; }
.sim-breakdown li span { color: var(--gray-400); }
.sim-breakdown li b { color: var(--white); font-weight: 700; font-variant-numeric: tabular-nums; }
.sim-result .btn-dark { background: var(--white); color: var(--black); margin-top: auto; }
.sim-result .btn-dark:hover { background: var(--gray-200); }
.sim-disclaimer { font-size: .76rem; color: var(--gray-500); text-align: center; margin-top: 14px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq-intro { position: sticky; top: 100px; }
.faq-intro h2 { margin: 6px 0 14px; }
.faq-intro .btn { margin-top: 22px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: border-color .2s; }
.faq-item[open] { border-color: var(--gray-400); }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 24px; font-weight: 600; color: var(--black); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--gray-400); transition: transform .2s; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 24px 22px; font-size: .95rem; color: var(--gray-600, var(--gray-700)); }

/* CTA */
.cta {
  position: relative; overflow: hidden;
  padding: clamp(64px, 9vw, 110px) 0;
  background: var(--tint);
}
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("assets/cta-texture.png") center/cover no-repeat;
  opacity: .28;
  pointer-events: none;
}
.cta > .container { position: relative; z-index: 1; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: clamp(32px, 5vw, 56px); box-shadow: var(--shadow-md); }
.cta-copy h2 { margin-bottom: 14px; }
.cta-copy p { font-size: 1.06rem; margin-bottom: 22px; }
.cta-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cta-list li { font-size: .96rem; color: var(--gray-700); }

.cta-form { display: flex; flex-direction: column; gap: 16px; }
.form-note { font-size: .78rem; color: var(--gray-400); text-align: center; }

/* Legal pages */
.legal { max-width: 780px; }
.legal h1 { font-size: clamp(2rem, 3.4vw, 2.6rem); margin-bottom: 8px; }
.legal-updated { color: var(--gray-500); font-size: .9rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.25rem; margin: 36px 0 12px; }
.legal p { margin-bottom: 14px; }
.legal a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }

/* Footer */
.site-footer { background: var(--black); color: var(--gray-300); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--gray-900); }
.brand-footer .brand-mark, .brand-footer .brand-text { color: var(--white); }
.brand-footer .brand-text em { color: var(--gray-400); }
.footer-tagline { margin-top: 16px; max-width: 32ch; color: var(--gray-400); font-size: .93rem; }
.flag-fr { display: inline-flex; flex: none; line-height: 0; border-radius: 3px; overflow: hidden; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.flag-fr svg { display: block; }
.footer-col h4 { color: var(--white); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--gray-400); font-size: .93rem; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-col a.muted { color: var(--gray-500); font-style: italic; }
.footer-line { color: var(--gray-400); font-size: .93rem; padding: 6px 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: var(--gray-500); font-size: .86rem; }
.legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.legal-links a { color: var(--gray-500); font-size: .86rem; transition: color .2s; }
.legal-links a:hover { color: var(--white); }

/* ============================================================
   Mouvement, profondeur & micro-interactions
   ============================================================ */

/* Apparition au scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Micro-interactions : liseré animé + icône vivante sur les cartes */
.feature, .case-card { position: relative; overflow: hidden; }
.feature::after, .case-card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--black), var(--tint-border));
  transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.feature:hover::after, .case-card:hover::after { transform: scaleX(1); }
.feature { transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s, border-color .25s; }
.feature-icon { transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .3s; }
.feature:hover .feature-icon { transform: rotate(-6deg) scale(1.08); }
.case-card { transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s; }

/* Flow steps : anneau lavande au survol de la carte */
.flow-num { transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s; }
.flow-card:hover .flow-num { box-shadow: 0 0 0 6px var(--tint); }

/* Boutons : léger enfoncement au clic + accent au survol */
.btn:active { transform: translateY(0) scale(.98); }
.btn-primary, .btn-dark { position: relative; overflow: hidden; }

/* CTA : blob décoratif dans la carte */
.cta-inner { position: relative; overflow: hidden; }
.cta-inner::before {
  content: ""; position: absolute; z-index: 0; width: 320px; height: 320px; border-radius: 50%;
  background: var(--tint); filter: blur(60px); opacity: .8; top: -120px; right: -80px;
}
.cta-copy, .cta-form { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1080px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav:not([hidden]) { display: flex; }
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-illustration { display: none; }
  .hero-copy { max-width: none; }
  .principe-grid, .faq-grid, .cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .faq-intro { position: static; }
  .cards-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .cases, .sim { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .brand-logo { height: 17px; }
  .cards-4, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Page Rendez-vous
   Colonne unique et étroite : c'est une page de tâche, pas une
   page marketing. Un seul fond continu, une seule grammaire
   d'encart, un rythme vertical constant (20 px / 40 px).
   ============================================================ */

.rdv-page {
  padding: clamp(34px, 5vw, 60px) 0 clamp(56px, 7vw, 88px);
  background:
    linear-gradient(180deg, var(--tint) 0%, rgba(237, 239, 255, 0) 400px),
    var(--paper);
}
.rdv-shell { width: 100%; max-width: 840px; margin: 0 auto; padding: 0 20px; }

/* Rythme vertical : 20 px entre deux encarts, 40 px avant un nouveau groupe. */
.rdv-stack { display: grid; gap: 20px; }
.rdv-stack > .rdv-group { margin-top: 20px; }

/* ---------------- Hero ---------------- */
.rdv-hero { text-align: center; padding-bottom: clamp(26px, 4vw, 38px); }
.rdv-hero h1 {
  margin-top: 16px;
  font-size: clamp(1.85rem, 4.4vw, 2.55rem);
  font-weight: 800;
}
.rdv-lead {
  max-width: 52ch; margin: 14px auto 0;
  font-size: 1.02rem; color: var(--gray-700);
}

.rdv-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  list-style: none; margin: 22px 0 0; padding: 0;
}
.rdv-chips li {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--tint-border);
  font-size: .84rem; font-weight: 600; color: var(--black);
  box-shadow: var(--shadow-sm);
}
.rdv-chips svg { width: 15px; height: 15px; color: var(--gray-500); flex: none; }

/* ---------------- Encart générique ---------------- */
.rdv-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3.2vw, 30px);
  box-shadow: var(--shadow-sm);
}
.rdv-card-muted { background: var(--paper); box-shadow: none; }

.rdv-eyebrow {
  display: block; margin-bottom: 9px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gray-400);
}
.rdv-card h2 { font-size: clamp(1.15rem, 2.4vw, 1.35rem); }
.rdv-card > p { margin-top: 14px; font-size: .94rem; color: var(--gray-700); }
.rdv-card-title { font-size: 1rem; }

/* ---------------- Repères méthode ---------------- */
.rdv-preuves {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px; list-style: none; margin: 0; padding: 0;
}
.rdv-preuve {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 16px 16px 17px;
}
.rdv-preuve b {
  display: block; font-size: 1.06rem; font-weight: 800;
  letter-spacing: -.02em; color: var(--black);
}
.rdv-preuve span {
  display: block; margin-top: 5px;
  font-size: .76rem; line-height: 1.45; color: var(--gray-500);
}

/* ---------------- Agenda ---------------- */
.rdv-embed { padding: 0; overflow: hidden; box-shadow: var(--shadow-md); }
/* La hauteur ne sert que de réserve pendant le chargement de Cal : sans elle,
   l'encart s'effondre puis se déplie brutalement. Une fois l'agenda monté
   (loading="done"), on rend la main à la hauteur que Cal calcule lui-même,
   sinon l'encart traîne une centaine de pixels de vide en bas. */
.rdv-cal { width: 100%; min-height: 620px; }
.rdv-cal:has(cal-inline[loading="done"]) { min-height: 0; }

.rdv-noscript { padding: 48px 24px; text-align: center; }
.rdv-noscript p { margin-bottom: 18px; }

.rdv-fallback {
  margin: -6px 0 0; text-align: center;
  font-size: .82rem; color: var(--gray-500);
}
.rdv-fallback a {
  color: var(--gray-700); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
}
.rdv-fallback a:hover { color: var(--black); }

/* ---------------- Déroulé ---------------- */
.rdv-etapes { margin-top: 18px; }
.rdv-etape {
  display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 14px;
  padding: 17px 0; border-top: 1px solid var(--gray-100);
}
.rdv-etape:first-child { border-top: 0; padding-top: 0; }
.rdv-etape:last-child { padding-bottom: 0; }
.rdv-etape-num {
  padding-top: 2px;
  font-size: .74rem; font-weight: 700; letter-spacing: .08em; color: var(--gray-400);
}
.rdv-etape h3 { font-size: 1rem; }
.rdv-etape p { margin-top: 6px; font-size: .9rem; color: var(--gray-500); }

/* ---------------- Listes ---------------- */
.rdv-liste { list-style: none; margin: 16px 0 0; padding: 0; }
.rdv-liste li {
  position: relative; padding: 11px 0 11px 26px;
  border-top: 1px solid var(--gray-100);
  font-size: .93rem; color: var(--gray-700);
}
.rdv-liste li:first-child { border-top: 0; }
.rdv-liste li::before {
  content: ''; position: absolute; left: 5px; top: 20px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--black);
}

.rdv-check, .rdv-croix { list-style: none; margin: 14px 0 0; padding: 0; }
.rdv-check li, .rdv-croix li {
  position: relative; padding: 7px 0 7px 26px;
  font-size: .9rem; color: var(--gray-700);
}
.rdv-check li::before, .rdv-croix li::before {
  position: absolute; left: 0; top: 6px; font-weight: 700; font-size: .95rem;
}
.rdv-check li::before { content: '✓'; color: #1c7a4f; }
.rdv-croix li::before { content: '—'; color: var(--gray-400); }

.rdv-note {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--gray-200);
  font-size: .82rem; color: var(--gray-500);
}

/* ---------------- Duo pour qui / pas encore ---------------- */
.rdv-duo {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px; align-items: start;
}

/* ---------------- Encart de clôture ---------------- */
.rdv-final { background: var(--black); border-color: var(--black); }
.rdv-final h2 { color: var(--white); }
.rdv-final > p { color: rgba(255, 255, 255, .68); }
.rdv-final .rdv-eyebrow { color: rgba(255, 255, 255, .42); }
.rdv-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

@media (max-width: 720px) {
  .rdv-preuves { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rdv-duo { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 560px) {
  .rdv-cal { min-height: 520px; }
  .rdv-chips { gap: 7px; }
  .rdv-chips li { padding: 6px 12px; font-size: .8rem; }
}
