/* ============================================================
   RIVAGE — Site statique
   Design system + layout + composants
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', 'DM Sans', system-ui, sans-serif;
  color: var(--rv-text);
  background: var(--rv-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; color: transparent; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Accessibilité focus — aligné sur Randojet */
*:focus,
*:focus:not(:focus-visible) { outline: none !important; box-shadow: none !important; }
*:focus-visible {
  outline: 2px solid var(--rv-cyan) !important;
  outline-offset: 3px;
  border-radius: 4px;
  box-shadow: 0 0 0 4px rgba(120,204,238,.2) !important;
}
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; outline: none; }

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Couleurs — alignées sur Randojet avec identité Rivage */
  --rv-navy:        #0e234c;   /* Même navy que Randojet */
  --rv-navy-rgb:    14, 35, 76;
  --rv-navy-800:    #0d3082;   /* Bleu secondaire Randojet */
  --rv-blue:        #0d3082;
  --rv-blue-400:    #3b82f6;
  --rv-cyan:        #78ccee;   /* Cyan Randojet — accent Rivage */
  --rv-cyan-light:  #b3e0f5;
  --rv-coral:       #F4C430;   /* Jaune CTA Randojet — cohérence groupe */
  --rv-gold:        #F0B429;
  --rv-white:       #ffffff;
  --rv-off-white:   #f8fafc;
  --rv-text:        #1e293b;
  --rv-text-muted:  #64748b;
  --rv-border:      #e2e8f0;

  /* Gradients — identiques à Randojet */
  --rv-gradient-brand: linear-gradient(135deg, var(--rv-navy) 0%, var(--rv-blue) 60%, var(--rv-cyan) 100%);
  --rv-gradient-ocean: linear-gradient(135deg, var(--rv-blue) 0%, var(--rv-cyan) 100%);
  --rv-gradient-dark:  linear-gradient(135deg, #0f172a 0%, var(--rv-navy) 100%);
  --rv-gradient-overlay: linear-gradient(180deg, rgba(14,35,76,0) 0%, rgba(14,35,76,.85) 100%);

  /* Espacements — échelle 4px identique à Randojet */
  --rv-space-1:  0.25rem;
  --rv-space-2:  0.5rem;
  --rv-space-3:  0.75rem;
  --rv-space-4:  1rem;
  --rv-space-5:  1.25rem;
  --rv-space-6:  1.5rem;
  --rv-space-8:  2rem;
  --rv-space-10: 2.5rem;
  --rv-space-12: 3rem;
  --rv-space-14: 3.5rem;
  --rv-space-16: 4rem;
  --rv-space-20: 5rem;
  --rv-space-24: 6rem;
  --rv-space-32: 8rem;

  /* Typographie */
  --rv-font-display: 'Montserrat', sans-serif;
  --rv-font-body:    'Inter', 'DM Sans', system-ui, sans-serif;
  --rv-font-sm:   0.875rem;
  --rv-font-base: 1rem;
  --rv-font-lg:   1.125rem;
  --rv-font-xl:   1.25rem;
  --rv-font-2xl:  1.5rem;
  --rv-font-3xl:  1.875rem;
  --rv-font-4xl:  2.25rem;
  --rv-font-5xl:  3rem;
  --rv-font-6xl:  3.75rem;

  /* Rayons — alignés sur Randojet */
  --rv-radius-sm:   6px;
  --rv-radius:      12px;
  --rv-radius-lg:   16px;
  --rv-radius-xl:   20px;
  --rv-radius-2xl:  24px;
  --rv-radius-3xl:  32px;
  --rv-radius-full: 9999px;

  /* Ombres — basées sur navy RGB comme Randojet */
  --rv-shadow-sm: 0 2px 8px  rgba(var(--rv-navy-rgb), .08);
  --rv-shadow:    0 4px 20px rgba(var(--rv-navy-rgb), .10);
  --rv-shadow-lg: 0 8px 32px rgba(var(--rv-navy-rgb), .14);
  --rv-shadow-xl: 0 16px 48px rgba(var(--rv-navy-rgb), .18);
  --rv-shadow-glow: 0 0 40px rgba(120,204,238,.3);

  /* Transitions — identiques à Randojet */
  --rv-ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --rv-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --rv-transition:  300ms cubic-bezier(0.4, 0, 0.2, 1);
  --rv-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --rv-transition-bounce: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Conteneurs */
  --rv-container-max: 1280px;
  --rv-container-md:  960px;
}

/* ── UTILITAIRES ──────────────────────────────────────────── */
.rv-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--rv-space-6);
}

.rv-container-md {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--rv-space-6);
}

.rv-section {
  padding: var(--rv-space-20) 0;
}

.rv-section-title {
  text-align: center;
  margin-bottom: var(--rv-space-12);
}

.rv-eyebrow {
  display: inline-block;
  font-size: var(--rv-font-sm);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rv-cyan);
  background: rgba(120,204,238,.12);
  padding: .25rem .75rem;
  border-radius: var(--rv-radius-full);
  margin-bottom: var(--rv-space-4);
}

.rv-section-title h2 {
  font-size: clamp(var(--rv-font-3xl), 4vw, var(--rv-font-5xl));
  font-weight: 800;
  color: var(--rv-navy);
  line-height: 1.15;
  margin-bottom: var(--rv-space-4);
}

.rv-section-title p {
  font-size: var(--rv-font-lg);
  color: var(--rv-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── BOUTONS ──────────────────────────────────────────────── */
.rv-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--rv-radius-full);
  font-size: var(--rv-font-base);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--rv-transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.rv-btn-primary {
  background: var(--rv-coral);
  color: var(--rv-navy);
  border-color: var(--rv-coral);
  font-family: var(--rv-font-display);
  font-weight: 700;
}
.rv-btn-primary:hover {
  background: var(--rv-gold);
  border-color: var(--rv-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,196,48,.4);
}

.rv-btn-secondary {
  background: transparent;
  color: var(--rv-white);
  border-color: rgba(255,255,255,.6);
}
.rv-btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--rv-white);
}

.rv-btn-outline {
  background: transparent;
  color: var(--rv-blue);
  border-color: var(--rv-blue);
}
.rv-btn-outline:hover {
  background: var(--rv-blue);
  color: var(--rv-white);
}

.rv-btn-lg {
  padding: 1rem 2.5rem;
  font-size: var(--rv-font-lg);
}

.rv-btn-xl {
  padding: 1.125rem 3rem;
  font-size: var(--rv-font-xl);
}

/* ── HEADER / NAV ─────────────────────────────────────────── */
.rv-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition:
    background 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Au scroll : verre dépoli blanc — identique à Randojet */
.rv-header.scrolled {
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border-bottom: 1px solid rgba(14,35,76,.08);
  box-shadow: 0 2px 40px rgba(14,35,76,.06);
}

/* Pages internes : header toujours solide */
body.header-solid .rv-header,
body.header-solid .rv-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(14,35,76,.08);
  box-shadow: 0 2px 24px rgba(14,35,76,.07);
}

.rv-header-inner {
  max-width: var(--rv-container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: var(--rv-space-4);
}

/* Logo */
.rv-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: opacity 150ms ease;
  line-height: 0;
}
.rv-logo:hover { opacity: .82; }

/* Images logo — switch blanc ↔ couleur selon état du header */
.rv-logo-img {
  display: block;
  width: auto;
  height: 80px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.18));
}

/* Header transparent (homepage) : logo blanc visible, couleur caché */
.rv-logo-light { display: block; }
.rv-logo-dark  { display: none; }

/* Header scrollé ou pages internes : logo couleur visible, blanc caché */
.rv-header.scrolled .rv-logo-light,
body.header-solid .rv-header .rv-logo-light { display: none; }

.rv-header.scrolled .rv-logo-dark,
body.header-solid .rv-header .rv-logo-dark  { display: block; }

/* Nav — liens centrés, CTA à droite */
.rv-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  gap: var(--rv-space-1);
}

.rv-nav a {
  font-family: var(--rv-font-display);
  font-size: var(--rv-font-base);
  font-weight: 600;
  color: rgba(255,255,255,.90);
  padding: var(--rv-space-2) var(--rv-space-3);
  border-radius: var(--rv-radius-sm);
  letter-spacing: .2px;
  transition: color 300ms ease, background 300ms ease;
  white-space: nowrap;
}

.rv-nav a:hover {
  color: var(--rv-white);
  background: rgba(255,255,255,.12);
}

/* Lien actif — header transparent (homepage hero) */
.rv-nav a[aria-current="page"] {
  color: var(--rv-cyan);
  background: rgba(120,204,238,.15);
  border-bottom: 2px solid var(--rv-cyan);
}

/* Au scroll : liens en navy */
.rv-header.scrolled .rv-nav a,
body.header-solid .rv-header .rv-nav a {
  color: var(--rv-navy);
}
.rv-header.scrolled .rv-nav a:hover,
body.header-solid .rv-header .rv-nav a:hover {
  color: var(--rv-blue);
  background: rgba(14,35,76,.08);
}

/* Lien actif — header scrollé ou pages internes */
.rv-header.scrolled .rv-nav a[aria-current="page"],
body.header-solid .rv-header .rv-nav a[aria-current="page"] {
  color: var(--rv-blue);
  background: rgba(13,48,130,.10);
  border-bottom: 2px solid var(--rv-blue);
  font-weight: 700;
}

/* CTA Réserver */
.rv-nav-cta {
  padding: .5rem 1.25rem !important;
  background: var(--rv-coral) !important;
  color: var(--rv-navy) !important;
  border-radius: var(--rv-radius-full) !important;
  font-weight: 700 !important;
  margin-left: var(--rv-space-2);
  flex-shrink: 0;
}
.rv-nav-cta:hover {
  background: var(--rv-gold) !important;
  color: var(--rv-navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(244,196,48,.4) !important;
}
/* CTA toujours jaune même au scroll */
.rv-header.scrolled .rv-nav-cta,
body.header-solid .rv-header .rv-nav-cta {
  color: var(--rv-navy) !important;
  background: var(--rv-coral) !important;
}

/* Bouton fermer menu — caché par défaut, visible uniquement en mobile */
.rv-nav-close { display: none; }

/* Hamburger */
.rv-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: var(--rv-space-2) var(--rv-space-3);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--rv-radius);
  width: 44px;
  height: 44px;
  transition: background 150ms ease, border-color 150ms ease;
}
.rv-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--rv-white);
  border-radius: var(--rv-radius-full);
  transition: all 300ms ease;
  transform-origin: center;
}
/* Hamburger au scroll : navy */
.rv-header.scrolled .rv-hamburger,
body.header-solid .rv-header .rv-hamburger {
  background: rgba(14,35,76,.06);
  border-color: rgba(14,35,76,.18);
}
.rv-header.scrolled .rv-hamburger span,
body.header-solid .rv-header .rv-hamburger span { background: var(--rv-navy); }

/* Hamburger actif → croix */
.rv-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.rv-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.rv-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ── HERO ─────────────────────────────────────────────────── */
.rv-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.rv-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rv-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rv-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(14,35,76,.78) 0%,
    rgba(14,35,76,.48) 60%,
    rgba(120,204,238,.18) 100%
  );
}

.rv-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.rv-hero-eyebrow {
  font-size: var(--rv-font-sm);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rv-cyan-light);
  margin-bottom: var(--rv-space-4);
}

.rv-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--rv-white);
  line-height: 1.1;
  margin-bottom: var(--rv-space-6);
}

.rv-hero-subtitle {
  font-size: var(--rv-font-lg);
  color: rgba(255,255,255,.8);
  margin-bottom: var(--rv-space-8);
  line-height: 1.7;
}

.rv-hero-buttons {
  display: flex;
  gap: var(--rv-space-4);
  flex-wrap: wrap;
}

/* ── STATS BAR ────────────────────────────────────────────── */
.rv-stats-bar {
  background: var(--rv-navy);
  padding: var(--rv-space-8) 0;
}

.rv-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--rv-space-4);
}

.rv-stat-item {
  text-align: center;
  padding: var(--rv-space-4);
  border-right: 1px solid rgba(255,255,255,.1);
}

.rv-stat-item:last-child { border-right: none; }

.rv-stat-num {
  display: block;
  font-family: var(--rv-font-display);
  font-size: var(--rv-font-4xl);
  font-weight: 900;
  color: var(--rv-cyan);
  line-height: 1;
  margin-bottom: .25rem;
}

.rv-stat-label {
  font-size: var(--rv-font-sm);
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

/* ── ACTIVITÉS ────────────────────────────────────────────── */
.rv-activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--rv-space-6);
}

.rv-activity-card {
  position: relative;
  border-radius: var(--rv-radius-xl);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow:
    0 4px 24px rgba(14,35,76,.12),
    0 1px 4px rgba(14,35,76,.08);
  transition: transform .4s cubic-bezier(0.22,1,0.36,1), box-shadow .4s ease;
}

.rv-activity-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(14,35,76,.22),
    0 4px 16px rgba(14,35,76,.12);
}

/* Trait coloré en bas de carte — accentuation premium */
.rv-activity-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rv-cyan), var(--rv-blue));
  z-index: 3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(0.22,1,0.36,1);
}
.rv-activity-card:hover::after { transform: scaleX(1); }

.rv-activity-card-bg {
  position: absolute;
  inset: 0;
}

.rv-activity-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(0.22,1,0.36,1);
}

.rv-activity-card:hover .rv-activity-card-bg img {
  transform: scale(1.07);
}

/* Overlay en deux couches : ambiance + lisibilité texte */
.rv-activity-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(8,20,50,.92) 0%,
      rgba(14,35,76,.55) 40%,
      rgba(14,35,76,.10) 70%,
      transparent 100%
    );
  transition: opacity .4s ease;
}
.rv-activity-card:hover .rv-activity-card-overlay {
  opacity: .88;
}

.rv-activity-card-content {
  position: relative;
  z-index: 2;
  padding: var(--rv-space-8) var(--rv-space-8) calc(var(--rv-space-8) + 4px);
  color: var(--rv-white);
}

/* Petite ligne cyan avant le titre */
.rv-activity-card-content h3 {
  font-size: var(--rv-font-3xl);
  font-weight: 800;
  margin-bottom: var(--rv-space-3);
  letter-spacing: -.02em;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.rv-activity-card-content h3::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--rv-cyan);
  border-radius: 2px;
  margin-bottom: var(--rv-space-3);
}

.rv-activity-card-content p {
  color: rgba(255,255,255,.82);
  margin-bottom: var(--rv-space-5);
  font-size: var(--rv-font-base);
  line-height: 1.7;
  max-width: 42ch;
}

/* ── BADGES ───────────────────────────────────────────────── */
.rv-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: var(--rv-space-6);
}

.rv-badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: var(--rv-radius-full);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.rv-badge-cyan   { background: rgba(120,204,238,.2); color: #7dd3fc; border: 1px solid rgba(120,204,238,.35); }
.rv-badge-coral  { background: rgba(244,196,48,.2);  color: #fde68a; border: 1px solid rgba(244,196,48,.35); }
.rv-badge-blue   { background: rgba(13,48,130,.25);  color: #93c5fd; border: 1px solid rgba(59,130,246,.3); }
.rv-badge-navy   { background: rgba(14,35,76,.4);    color: #bfdbfe; border: 1px solid rgba(255,255,255,.15); }
.rv-badge-gold   { background: rgba(240,180,41,.2);  color: #fde68a; border: 1px solid rgba(240,180,41,.35); }

/* ── FEATURES ─────────────────────────────────────────────── */
/* ── SECTION POURQUOI RIVAGE ──────────────────────────────── */
.rv-features-section {
  background:
    linear-gradient(
      160deg,
      var(--rv-navy) 0%,
      #0a1f4e 55%,
      #0d2d6b 100%
    );
  position: relative;
  overflow: hidden;
}

/* Texture de fond subtile */
.rv-features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(120,204,238,.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(13,48,130,.25) 0%, transparent 60%);
  pointer-events: none;
}

/* Titre en blanc sur fond sombre */
.rv-features-section .rv-section-title h2 { color: var(--rv-white); }
.rv-features-section .rv-section-title p  { color: rgba(255,255,255,.65); }
.rv-features-section .rv-eyebrow {
  background: rgba(120,204,238,.15);
  color: var(--rv-cyan);
  border: 1px solid rgba(120,204,238,.25);
}

.rv-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rv-space-5);
  position: relative;
  z-index: 1;
}

.rv-feature-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--rv-radius-xl);
  padding: var(--rv-space-8);
  transition: all .35s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  overflow: hidden;
}

/* Trait cyan en haut de chaque carte */
.rv-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rv-cyan), var(--rv-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(0.22,1,0.36,1);
}

.rv-feature-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(120,204,238,.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.rv-feature-card:hover::before { transform: scaleX(1); }

/* Numéro — grand, lumineux, en arrière-plan */
.rv-feature-num {
  display: block;
  font-family: var(--rv-font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--rv-space-4);
  background: linear-gradient(135deg, var(--rv-cyan) 0%, rgba(120,204,238,.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.04em;
}

.rv-feature-card h3 {
  font-size: var(--rv-font-lg);
  font-weight: 700;
  color: var(--rv-white);
  margin-bottom: var(--rv-space-3);
  line-height: 1.3;
}

.rv-feature-card p {
  color: rgba(255,255,255,.62);
  font-size: var(--rv-font-sm);
  line-height: 1.75;
}

/* ── ÉTAPES ───────────────────────────────────────────────── */
.rv-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.rv-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--rv-cyan), var(--rv-blue));
  opacity: .3;
}

.rv-step {
  display: flex;
  gap: var(--rv-space-6);
  padding: var(--rv-space-6) 0;
  position: relative;
}

.rv-step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rv-cyan), var(--rv-blue));
  color: var(--rv-white);
  font-size: var(--rv-font-xl);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(120,204,238,.35);
}

.rv-step-content h3 {
  font-size: var(--rv-font-xl);
  font-weight: 700;
  color: var(--rv-navy);
  margin-bottom: var(--rv-space-2);
  padding-top: .75rem;
}

.rv-step-content p {
  color: var(--rv-text-muted);
  line-height: 1.7;
}

/* ── ZONE GÉO ─────────────────────────────────────────────── */
.rv-geo-section { background: var(--rv-white); }

.rv-geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rv-space-12);
  align-items: center;
}

.rv-geo-text h3 {
  font-size: var(--rv-font-2xl);
  font-weight: 800;
  color: var(--rv-navy);
  margin-bottom: var(--rv-space-4);
}

.rv-geo-text p {
  color: var(--rv-text-muted);
  margin-bottom: var(--rv-space-4);
  line-height: 1.7;
}

.rv-cities {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: var(--rv-space-6);
}

.rv-city-tag {
  background: var(--rv-white);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-full);
  padding: .25rem .75rem;
  font-size: var(--rv-font-sm);
  color: var(--rv-text-muted);
}

.rv-geo-map iframe {
  width: 100%;
  height: 400px;
  border-radius: var(--rv-radius-xl);
  border: none;
}

/* ── SECTION RANDOJET ─────────────────────────────────────── */
/* ── SECTION RANDOJET — plein écran, même pattern que rj-rivage-hero ── */
.rv-randojet-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rv-randojet-hero-bg {
  position: absolute;
  inset: 0;
}
.rv-randojet-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.rv-randojet-hero:hover .rv-randojet-hero-bg img {
  transform: scale(1);
}

.rv-randojet-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(8, 20, 50, 0.88) 0%,
      rgba(14, 35, 76, 0.70) 50%,
      rgba(0, 80, 160, 0.50) 100%
    );
}

.rv-randojet-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--rv-space-20) var(--rv-space-6);
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--rv-space-5);
}

.rv-randojet-hero-eyebrow {
  font-family: var(--rv-font-display);
  font-size: var(--rv-font-xs);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rv-cyan);
  background: rgba(120, 204, 238, .12);
  border: 1px solid rgba(120, 204, 238, .25);
  padding: .35rem 1rem;
  border-radius: var(--rv-radius-full);
}

.rv-randojet-hero-logo {
  width: 200px;
  height: 200px;
  filter: drop-shadow(0 6px 28px rgba(0,0,0,.45));
}

.rv-randojet-hero-title {
  font-family: var(--rv-font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  color: var(--rv-white);
  line-height: 1.1;
  letter-spacing: -.03em;
  text-shadow: 0 4px 24px rgba(0,0,0,.4);
  margin: 0;
}

.rv-randojet-hero-desc {
  color: rgba(255,255,255,.78);
  font-size: var(--rv-font-lg);
  line-height: 1.65;
  max-width: 52ch;
  margin: 0;
}

.rv-randojet-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}
.rv-randojet-pill {
  font-size: var(--rv-font-xs);
  font-weight: 600;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: .35rem .9rem;
  border-radius: var(--rv-radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.rv-randojet-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--rv-cyan);
  color: var(--rv-navy);
  font-family: var(--rv-font-display);
  font-size: var(--rv-font-base);
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: var(--rv-radius-full);
  transition: background var(--rv-transition), transform var(--rv-transition), box-shadow var(--rv-transition);
  box-shadow: 0 4px 20px rgba(120,204,238,.35);
  margin-top: var(--rv-space-2);
}
.rv-randojet-hero-btn:hover {
  background: var(--rv-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(120,204,238,.45);
}

/* ── COMMENT ÇA MARCHE — fond off-white doux ─────────────── */
.rv-steps-section {
  background: var(--rv-off-white);
}

/* ── TÉMOIGNAGES — fond bleu marine ──────────────────────── */
.rv-testimonials-section {
  background: linear-gradient(160deg, #0a1f4e 0%, var(--rv-navy) 60%, #0d2d6b 100%);
  position: relative;
  overflow: hidden;
}
.rv-testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 70% 50% at 80% 20%, rgba(120,204,238,.07) 0%, transparent 60%);
  pointer-events: none;
}
.rv-testimonials-section .rv-section-title h2 { color: var(--rv-white); }
.rv-testimonials-section .rv-section-title p  { color: rgba(255,255,255,.6); }
.rv-testimonials-section .rv-eyebrow {
  background: rgba(120,204,238,.12);
  color: var(--rv-cyan);
  border: 1px solid rgba(120,204,238,.2);
}

.rv-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rv-space-6);
  position: relative;
  z-index: 1;
}

.rv-testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--rv-radius-xl);
  padding: var(--rv-space-8);
  transition: all var(--rv-transition);
}

.rv-testimonial-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(120,204,238,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.rv-testimonial-rating {
  color: var(--rv-gold);
  font-size: var(--rv-font-lg);
  margin-bottom: var(--rv-space-4);
}

.rv-testimonial-text {
  color: rgba(255,255,255,.8);
  font-size: var(--rv-font-base);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--rv-space-4);
}

.rv-testimonial-author {
  font-weight: 700;
  color: var(--rv-white);
  font-size: var(--rv-font-sm);
}

.rv-testimonial-author span {
  font-weight: 400;
  color: rgba(255,255,255,.5);
}

/* ── FAQ — fond off-white ─────────────────────────────────── */
.rv-faq-section {
  background: var(--rv-off-white);
}

/* ── CTA SECTION ──────────────────────────────────────────── */
.rv-cta-section {
  background: linear-gradient(135deg, var(--rv-blue) 0%, var(--rv-navy) 100%);
  padding: var(--rv-space-20) 0;
  text-align: center;
}

.rv-cta-section h2 {
  font-size: clamp(var(--rv-font-3xl), 4vw, var(--rv-font-5xl));
  font-weight: 900;
  color: var(--rv-white);
  margin-bottom: var(--rv-space-4);
}

.rv-cta-section p {
  font-size: var(--rv-font-lg);
  color: rgba(255,255,255,.8);
  margin-bottom: var(--rv-space-8);
}

.rv-cta-actions {
  display: flex;
  gap: var(--rv-space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BANDEAU CROSS-SITE RANDOJET ──────────────────────────── */
.rv-cross-site-banner {
  background: linear-gradient(90deg, var(--rv-navy) 0%, #0d3082 50%, var(--rv-navy) 100%);
  border-top: 1px solid rgba(120,204,238,.2);
  border-bottom: 1px solid rgba(120,204,238,.2);
  padding: var(--rv-space-4) 0;
}

.rv-cross-site-inner {
  display: flex;
  align-items: center;
  gap: var(--rv-space-4);
  flex-wrap: wrap;
}

.rv-cross-site-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.rv-cross-site-icon img {
  height: 36px;
  width: auto;
  display: block;
}

.rv-cross-site-text {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.rv-cross-site-text strong {
  color: var(--rv-white);
  font-size: var(--rv-font-base);
  font-weight: 700;
}

.rv-cross-site-text span {
  color: rgba(255,255,255,.65);
  font-size: var(--rv-font-sm);
}

.rv-cross-site-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--rv-cyan);
  color: var(--rv-navy) !important;
  font-weight: 700;
  font-size: var(--rv-font-sm);
  padding: .55rem 1.25rem;
  border-radius: var(--rv-radius-full);
  transition: background var(--rv-transition-base), transform var(--rv-transition-base);
  white-space: nowrap;
}

.rv-cross-site-link:hover {
  background: var(--rv-gold);
  transform: translateY(-1px);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.rv-footer {
  background: var(--rv-navy);
  color: rgba(255,255,255,.7);
  padding: var(--rv-space-16) 0 var(--rv-space-8);
}

.rv-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--rv-space-8);
  margin-bottom: var(--rv-space-12);
}

.rv-footer-brand a {
  display: inline-block;
  margin-bottom: var(--rv-space-5);
  opacity: .9;
  transition: opacity 150ms ease;
}
.rv-footer-brand a:hover { opacity: 1; }
.rv-footer-brand img {
  display: block;
  height: 52px;
  width: auto;
}

.rv-footer-brand p {
  font-size: var(--rv-font-sm);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--rv-space-5);
}

/* Icônes sociales */
.rv-footer-social {
  display: flex;
  gap: var(--rv-space-3);
  margin-top: var(--rv-space-2);
}

.rv-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--rv-radius-full);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  transition: background var(--rv-transition-base), color var(--rv-transition-base), transform var(--rv-transition-base);
  flex-shrink: 0;
}

.rv-footer-social a:hover {
  background: var(--rv-cyan);
  color: var(--rv-navy);
  border-color: var(--rv-cyan);
  transform: translateY(-2px);
}

.rv-footer-social svg {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

.rv-footer-col h4 {
  color: var(--rv-white);
  font-size: var(--rv-font-sm);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: var(--rv-space-4);
}

.rv-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.rv-footer-col li {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: var(--rv-font-sm);
}

.rv-footer-col li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: .6;
}

.rv-footer-col a {
  color: rgba(255,255,255,.6);
  font-size: var(--rv-font-sm);
  transition: color var(--rv-transition-base);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.rv-footer-col a:hover { color: var(--rv-white); }

.rv-footer-seo {
  font-size: var(--rv-font-xs);
  color: rgba(255,255,255,.3);
  line-height: 1.6;
  margin-bottom: var(--rv-space-6);
  padding-top: var(--rv-space-6);
  border-top: 1px solid rgba(255,255,255,.06);
}

.rv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--rv-space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--rv-font-sm);
  flex-wrap: wrap;
  gap: var(--rv-space-4);
}

.rv-footer-bottom nav {
  display: flex;
  gap: var(--rv-space-5);
}

.rv-footer-bottom nav a {
  color: rgba(255,255,255,.45);
  font-size: var(--rv-font-xs);
  transition: color var(--rv-transition-base);
}

.rv-footer-bottom nav a:hover { color: var(--rv-white); }

/* ── PAGE HERO (pages internes) ───────────────────────────── */
.rv-page-hero {
  background: linear-gradient(135deg, var(--rv-navy) 0%, var(--rv-navy-800) 100%);
  padding: calc(var(--rv-space-20) + 80px) 0 var(--rv-space-16);
  text-align: center;
}

.rv-page-hero h1 {
  font-size: clamp(var(--rv-font-3xl), 5vw, var(--rv-font-5xl));
  font-weight: 900;
  color: var(--rv-white);
  margin-bottom: var(--rv-space-4);
}

.rv-page-hero p {
  font-size: var(--rv-font-lg);
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin: 0 auto;
}

/* ── FORMULAIRE ───────────────────────────────────────────── */
.rv-form-section { background: var(--rv-off-white); }

.rv-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rv-space-12);
  align-items: start;
}

.rv-form-info h2 {
  font-size: var(--rv-font-3xl);
  font-weight: 800;
  color: var(--rv-navy);
  margin-bottom: var(--rv-space-4);
}

.rv-form-info p {
  color: var(--rv-text-muted);
  line-height: 1.7;
  margin-bottom: var(--rv-space-6);
}

.rv-contact-item {
  display: flex;
  align-items: center;
  gap: var(--rv-space-4);
  margin-bottom: var(--rv-space-4);
}

.rv-contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(120,204,238,.12);
  border-radius: var(--rv-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.rv-contact-item strong {
  display: block;
  font-weight: 700;
  color: var(--rv-navy);
  font-size: var(--rv-font-sm);
}

.rv-contact-item span {
  color: var(--rv-text-muted);
  font-size: var(--rv-font-sm);
}

.rv-form {
  background: var(--rv-white);
  border-radius: var(--rv-radius-xl);
  padding: var(--rv-space-10);
  box-shadow: var(--rv-shadow);
}

.rv-form-group {
  margin-bottom: var(--rv-space-6);
}

.rv-form-group label {
  display: block;
  font-size: var(--rv-font-sm);
  font-weight: 600;
  color: var(--rv-navy);
  margin-bottom: .5rem;
}

.rv-form-group input,
.rv-form-group select,
.rv-form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--rv-border);
  border-radius: var(--rv-radius);
  font-size: var(--rv-font-base);
  color: var(--rv-text);
  background: var(--rv-white);
  transition: border-color var(--rv-transition);
  font-family: inherit;
  outline: none;
}

.rv-form-group input:focus,
.rv-form-group select:focus,
.rv-form-group textarea:focus {
  border-color: var(--rv-cyan);
  box-shadow: 0 0 0 3px rgba(120,204,238,.15);
}

.rv-form-group textarea { resize: vertical; min-height: 120px; }

.rv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rv-space-4);
}

.rv-form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--rv-coral);
  color: var(--rv-navy);
  border: none;
  border-radius: var(--rv-radius-full);
  font-family: var(--rv-font-display);
  font-size: var(--rv-font-lg);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--rv-transition);
}

.rv-form-submit:hover {
  background: var(--rv-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,196,48,.4);
}

.rv-form-success {
  display: none;
  text-align: center;
  padding: var(--rv-space-8);
  color: #16a34a;
  font-weight: 600;
}

/* ── TARIFS ───────────────────────────────────────────────── */
.rv-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--rv-space-6);
}

.rv-pricing-card {
  background: var(--rv-white);
  border: 2px solid var(--rv-border);
  border-radius: var(--rv-radius-xl);
  padding: var(--rv-space-8);
  text-align: center;
  transition: all var(--rv-transition);
}

.rv-pricing-card.featured {
  border-color: var(--rv-cyan);
  box-shadow: 0 0 0 4px rgba(120,204,238,.15);
}

.rv-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rv-shadow-lg);
}

.rv-pricing-duration {
  font-size: var(--rv-font-sm);
  font-weight: 600;
  color: var(--rv-text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: var(--rv-space-2);
}

.rv-pricing-price {
  font-family: var(--rv-font-display);
  font-size: var(--rv-font-4xl);
  font-weight: 900;
  color: var(--rv-navy);
  line-height: 1;
  margin-bottom: var(--rv-space-2);
}

.rv-pricing-price sup {
  font-size: var(--rv-font-xl);
  vertical-align: super;
}

.rv-pricing-note {
  font-size: var(--rv-font-sm);
  color: var(--rv-text-muted);
  margin-bottom: var(--rv-space-6);
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
[data-rv-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-rv-reveal="left"]  { transform: translateX(-24px); }
[data-rv-reveal="right"] { transform: translateX(24px); }

[data-rv-reveal].rv-visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

/* ── Tablette (≤ 1024px) ──────────────────────────────────── */
@media (max-width: 1024px) {
  .rv-features-grid    { grid-template-columns: repeat(2, 1fr); }
  .rv-footer-grid      { grid-template-columns: 1fr 1fr; }
  .rv-randojet-hero-title { font-size: 2rem; }
  .rv-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile (≤ 768px) ─────────────────────────────────────── */
@media (max-width: 768px) {

  /* ── Header ── */
  .rv-header-inner { height: 64px; padding: 0 1rem; }
  .rv-hamburger    { display: flex; }

  /* Overlay sombre derrière le menu */
  .rv-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 498;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    animation: fadeIn .25s ease;
  }
  .rv-nav-backdrop.open { display: block; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  /* Bouton fermer dans le panneau */
  .rv-nav-close {
    display: flex;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--rv-radius-full);
    color: var(--rv-white);
    cursor: pointer;
    transition: background 150ms ease;
    flex-shrink: 0;
  }
  .rv-nav-close:hover { background: rgba(255,255,255,.2); }

  /* Panneau menu latéral */
  .rv-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 90vw);
    height: 100dvh;
    background: var(--rv-navy) !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0 0 var(--rv-space-8);
    gap: 0;
    z-index: 501;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-left: 1px solid rgba(255,255,255,.08);
    box-shadow: -8px 0 40px rgba(0,0,0,.45);
  }
  .rv-nav.open { right: 0; }

  /* En-tête du panneau avec bouton fermer */
  .rv-nav::before {
    content: '';
    display: block;
    height: 64px;
    flex-shrink: 0;
  }

  .rv-nav a {
    color: rgba(255,255,255,.88) !important;
    font-size: 1rem;
    padding: .9rem 1.25rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: none !important;
    display: block;
  }
  .rv-nav a:hover {
    color: var(--rv-white) !important;
    background: rgba(255,255,255,.07) !important;
  }
  .rv-nav a[aria-current="page"] {
    color: var(--rv-cyan) !important;
    background: rgba(120,204,238,.1) !important;
    border-left: 3px solid var(--rv-cyan);
    font-weight: 700;
  }
  .rv-nav-cta {
    margin: var(--rv-space-5) 1.25rem 0 !important;
    text-align: center;
    border-bottom: none !important;
    border-radius: var(--rv-radius-full) !important;
  }

  /* ── Hero ── */
  .rv-hero { min-height: 100svh; }
  .rv-hero-content { padding: 0 1.25rem; }
  .rv-hero h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .rv-hero-subtitle { font-size: 1rem; }
  .rv-hero-buttons { flex-direction: column; gap: .75rem; }
  .rv-hero-buttons .rv-btn { width: 100%; text-align: center; justify-content: center; }

  /* ── Stats bar ── */
  .rv-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .rv-stat-item {
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: var(--rv-space-5) var(--rv-space-3);
  }
  .rv-stat-item:nth-child(2n) { border-right: none; }
  .rv-stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .rv-stat-num { font-size: 1.75rem; }
  .rv-stat-label { font-size: .7rem; }

  /* ── Cartes bateaux ── */
  .rv-activities-grid { grid-template-columns: 1fr; }
  .rv-activity-card { min-height: 380px; }

  /* ── Section Randojet ── */
  .rv-randojet-hero { min-height: auto; padding: 4rem 0; }
  .rv-randojet-hero-content { padding: 2rem 1.25rem; gap: 1rem; }
  .rv-randojet-hero-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .rv-randojet-hero-logo { width: 100px; height: 100px; }
  .rv-randojet-hero-desc { font-size: .95rem; }
  .rv-randojet-hero-pills { gap: .35rem; }
  .rv-randojet-pill { font-size: .7rem; padding: .25rem .7rem; }

  /* ── Pourquoi Rivage ── */
  .rv-features-grid { grid-template-columns: 1fr; }
  .rv-feature-card { padding: var(--rv-space-6); }

  /* ── Comment ça marche ── */
  .rv-steps::before { left: 20px; }
  .rv-step-number { width: 40px; height: 40px; font-size: 1rem; flex-shrink: 0; }

  /* ── Géo ── */
  .rv-geo-grid { grid-template-columns: 1fr; }
  .rv-geo-map { height: 280px; }
  .rv-geo-map iframe { height: 280px; }
  .rv-cities { gap: .4rem; }

  /* ── Témoignages ── */
  .rv-testimonials-grid { grid-template-columns: 1fr; }

  /* ── FAQ ── */
  .rv-faq-item summary { padding: var(--rv-space-4) var(--rv-space-4); font-size: .95rem; }
  .rv-faq-item > p, .rv-faq-item > ul { padding: var(--rv-space-4); }

  /* ── CTA final ── */
  .rv-cta-section { padding: var(--rv-space-16) 0; }
  .rv-cta-section h2 { font-size: clamp(1.5rem, 6vw, 2.25rem); }
  .rv-cta-actions { flex-direction: column; align-items: stretch; gap: .75rem; }
  .rv-cta-actions .rv-btn { width: 100%; text-align: center; justify-content: center; }

  /* ── Footer ── */
  .rv-footer-grid { grid-template-columns: 1fr; gap: var(--rv-space-8); }
  .rv-footer-bottom { flex-direction: column; gap: var(--rv-space-3); text-align: center; }
  .rv-footer-bottom nav { flex-wrap: wrap; justify-content: center; gap: .5rem; }
  .rv-cross-site-inner { flex-direction: column; text-align: center; gap: var(--rv-space-4); }
  .rv-cross-site-text { align-items: center; }

  /* ── Formulaires ── */
  .rv-form-grid { grid-template-columns: 1fr; }
  .rv-form-row  { grid-template-columns: 1fr; }
  .rv-form      { padding: var(--rv-space-6); }

  /* ── Sections générales ── */
  .rv-section { padding: var(--rv-space-16) 0; }
  .rv-features-section { padding: var(--rv-space-16) 0; }
  .rv-steps-section { padding: var(--rv-space-16) 0; }
  .rv-testimonials-section { padding: var(--rv-space-16) 0; }
  .rv-faq-section { padding: var(--rv-space-16) 0; }
  .rv-geo-section { padding: var(--rv-space-16) 0; }
  .rv-section-title { margin-bottom: var(--rv-space-10); }
  .rv-section-title h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ── Très petit mobile (≤ 380px) ─────────────────────────── */
@media (max-width: 380px) {
  .rv-header-inner { padding: 0 .75rem; }
  .rv-logo-img { height: 52px; }
  .rv-stats-inner { grid-template-columns: 1fr 1fr; }
  .rv-stat-num { font-size: 1.5rem; }
  .rv-randojet-hero-logo { width: 72px; height: 72px; }
  .rv-btn { padding: .7rem 1.25rem; font-size: .9rem; }
}

/* ── FAQ ─────────────────────────────────────────────── */
.rv-faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--rv-space-2);
}

.rv-faq-item {
  background: var(--rv-white);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-xl);
  overflow: hidden;
  transition: box-shadow var(--rv-transition-base), border-color var(--rv-transition-base);
}

.rv-faq-item:hover {
  box-shadow: var(--rv-shadow);
  border-color: rgba(13,48,130,.15);
}

.rv-faq-item[open] {
  border-color: rgba(13,48,130,.2);
  box-shadow: var(--rv-shadow);
}

.rv-faq-item summary {
  padding: var(--rv-space-5) var(--rv-space-6);
  font-family: var(--rv-font-display);
  font-weight: 600;
  font-size: var(--rv-font-base);
  color: var(--rv-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--rv-space-4);
  user-select: none;
}

.rv-faq-item summary::-webkit-details-marker { display: none; }

.rv-faq-item summary::after {
  content: '';
  width: 28px;
  height: 28px;
  border-radius: var(--rv-radius-full);
  background: rgba(13,48,130,.07);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230d3082'%3E%3Cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  flex-shrink: 0;
  transition: background-color var(--rv-transition-base), transform var(--rv-transition-base);
}

.rv-faq-item[open] summary::after {
  background-color: var(--rv-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M19 13H5v-2h14v2z'/%3E%3C/svg%3E");
  transform: rotate(0deg);
}

.rv-faq-item[open] summary {
  color: var(--rv-blue);
  border-bottom: 1px solid rgba(13,48,130,.08);
}

.rv-faq-item > p,
.rv-faq-item > ul {
  padding: var(--rv-space-5) var(--rv-space-6);
  color: var(--rv-text-muted);
  line-height: 1.75;
  margin: 0;
  font-size: var(--rv-font-base);
}

.rv-faq-item > ul {
  padding-left: calc(var(--rv-space-6) + var(--rv-space-4));
}

.rv-faq-item > ul li {
  margin-bottom: .4rem;
}

.rv-faq-item a {
  color: var(--rv-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── CARD LINK (pages géo) ───────────────────────────── */
a.rv-card-link {
  text-decoration: none;
  display: block;
  transition: transform var(--rv-transition-base), box-shadow var(--rv-transition-base);
}

a.rv-card-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--rv-shadow-lg);
}

a.rv-card-link .rv-card-body h3 {
  color: var(--rv-blue);
  text-align: center;
  margin: 0;
}

/* ── CITY TAG LINK ───────────────────────────────────── */
a.rv-city-tag {
  text-decoration: none;
  transition: background var(--rv-transition-base), color var(--rv-transition-base);
}

a.rv-city-tag:hover {
  background: var(--rv-blue);
  color: var(--rv-white);
  border-color: var(--rv-blue);
}

/* ── PAGES LÉGALES ────────────────────────────────────────────── */
.rv-legal-content {
  color: var(--rv-text);
  line-height: 1.8;
}
.rv-legal-content h2 {
  font-family: var(--rv-font-display);
  font-size: var(--rv-font-xl);
  font-weight: 700;
  color: var(--rv-navy);
  margin: var(--rv-space-10) 0 var(--rv-space-3);
  padding-bottom: var(--rv-space-2);
  border-bottom: 2px solid var(--rv-cyan);
  display: inline-block;
}
.rv-legal-content p { margin-bottom: var(--rv-space-4); }
.rv-legal-content ul {
  margin: var(--rv-space-3) 0 var(--rv-space-4) var(--rv-space-6);
  list-style: disc;
}
.rv-legal-content ul li { margin-bottom: var(--rv-space-2); }
.rv-legal-content a { color: var(--rv-blue); text-decoration: underline; }
.rv-legal-content a:hover { color: var(--rv-cyan); }
