/*
  File     : style/index-home.css
  Page     : Index / Accueil — Refonte 2025
  Note     : Ce fichier est chargé UNIQUEMENT par index.html
             Il surcharge et complète style.css sans le modifier.
  Préfixe  : .rt- pour éviter tout conflit avec les classes existantes
*/

/* ===========================
   VARIABLES GLOBALES
=========================== */
:root {
  --c-primary:   #003051;
  --c-accent:    #FDB704;
  --c-secondary: #3B6789;
  --c-white:     #FFFFFF;
  --c-gray:      #F5F5F5;
  --c-text:      #444444;
  --font-body:   'Lato', Arial, sans-serif;
  --font-title:  'Lato', Arial, sans-serif;
  --shadow:      0 4px 20px rgba(0,0,0,0.09);
  --radius:      8px;
  --tr:          0.3s ease;
}

/* ===========================
   RESET MINIMAL HOMEPAGE
=========================== */
.rt-section { padding: 80px 0; }
.rt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.rt-section-title {
  font-family: var(--font-title);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--c-primary);
  text-align: center;
  margin: 0 0 12px;
  line-height: 1.2;
}
.rt-section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--c-accent);
  margin: 14px auto 0;
  border-radius: 2px;
}
.rt-section-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: #666;
  text-align: center;
  margin: 0 0 48px;
  line-height: 1.6;
}

/* --- Boutons génériques --- */
.rt-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: var(--tr);
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
  min-height: 44px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rt-btn-primary {
  background: var(--c-accent);
  color: var(--c-primary);
}
.rt-btn-primary:hover {
  background: #e8a900;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253,183,4,.35);
  color: var(--c-primary);
}
.rt-btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.75);
}
.rt-btn-outline-white:hover {
  background: #fff;
  color: var(--c-primary);
  border-color: #fff;
}
.rt-btn-dark {
  background: var(--c-primary);
  color: #fff;
  font-size: 17px;
  padding: 16px 44px;
  box-shadow: 0 4px 16px rgba(0,48,81,.25);
}
.rt-btn-dark:hover {
  background: #001f35;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,48,81,.35);
  color: #fff;
}

/* ===========================
   HEADER
=========================== */
.rt-header-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--c-primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

/* --- Barre supérieure --- */
.rt-topbar {
  background: rgba(0,0,0,.18);
  padding: 7px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,.75);
  font-family: var(--font-body);
}
.rt-topbar a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: var(--tr);
}
.rt-topbar a:hover { color: var(--c-accent); text-decoration: none; }
.rt-topbar-left { display: flex; gap: 20px; align-items: center; }
.rt-topbar-right { display: flex; gap: 16px; align-items: center; }
.rt-topbar-social { display: flex; gap: 10px; align-items: center; }
.rt-topbar-social a {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  font-size: 13px;
  transition: var(--tr);
}
.rt-topbar-social a:hover { background: var(--c-accent); color: var(--c-primary); text-decoration: none; }

/* --- Zone principale du header --- */
.rt-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
  gap: 20px;
}
.rt-logo { flex-shrink: 0; line-height: 0; }
.rt-logo img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--tr);
}
.rt-logo img:hover { opacity: .85; }

/* --- Navigation principale --- */
.rt-nav { display: flex; align-items: center; flex: 1; justify-content: center; }
.rt-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 0;
}
.rt-nav ul li a {
  display: block;
  color: rgba(255,255,255,.88);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 0 14px;
  line-height: 68px;
  text-decoration: none;
  transition: color var(--tr);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.rt-nav ul li a:hover,
.rt-nav ul li.active a {
  color: var(--c-accent);
  border-bottom-color: var(--c-accent);
  text-decoration: none;
}

/* --- CTA header droite --- */
.rt-header-ctas {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.rt-cta-franchise {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 18px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
  white-space: nowrap;
  letter-spacing: .3px;
}
.rt-cta-franchise:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  text-decoration: none;
}
.rt-cta-contact-header {
  background: linear-gradient(135deg, var(--c-accent) 0%, #e8a900 100%);
  color: var(--c-primary);
  padding: 9px 22px;
  border-radius: 6px;
  border: none;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease;
  white-space: nowrap;
  letter-spacing: .3px;
  box-shadow: 0 2px 8px rgba(253,183,4,.25);
  cursor: pointer;
}
.rt-cta-contact-header:hover {
  background: linear-gradient(135deg, #e8a900 0%, #d49a00 100%);
  text-decoration: none;
  color: var(--c-primary);
  box-shadow: 0 4px 16px rgba(253,183,4,.35);
  transform: translateY(-1px);
}

/* --- Burger mobile --- */
.rt-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.rt-burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--tr);
}

/* --- Menu mobile déroulant --- */
.rt-mobile-nav {
  display: none;
  background: #002340;
  border-top: 1px solid rgba(255,255,255,.08);
}
.rt-mobile-nav.is-open { display: block; }
.rt-mobile-nav ul {
  list-style: none; margin: 0; padding: 0 24px;
}
.rt-mobile-nav ul li a {
  display: block;
  color: rgba(255,255,255,.88);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
}
.rt-mobile-nav ul li a:hover { color: var(--c-accent); text-decoration: none; }
.rt-mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 24px 20px;
}

/* ===========================
   HERO
=========================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.rt-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/slider/image_03.jpg');
  background-image: image-set(
    url('../images/slider/image_03.webp') type('image/webp'),
    url('../images/slider/image_03.jpg')  type('image/jpeg')
  );
  background-size: cover;
  background-position: center center;
  animation: heroZoom 1.4s cubic-bezier(.16,1,.3,1) forwards;
  will-change: transform, filter;
}
@keyframes heroZoom {
  from { transform: scale(1.18); filter: brightness(.85) blur(10px); }
  to   { transform: scale(1);    filter: brightness(1.1)  blur(0px); }
}
/* Overlay directionnel : sombre à gauche (lisibilité texte) → transparent à droite (photo visible) */
.rt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0,48,81,.70) 0%,
    rgba(0,48,81,.38) 52%,
    rgba(0,30,60,.06) 100%
  );
}

/* ── ANIMATIONS D'ENTRÉE HERO (effet wahou) ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroLineGrow {
  from { width: 0; }
  to   { width: 72px; }
}

.rt-anim-1 { animation: heroFadeUp .6s ease-out both; animation-delay: .25s; }
.rt-anim-2 { animation: heroFadeUp .7s ease-out both; animation-delay: .50s; }
.rt-anim-3 { animation: heroFadeUp .7s ease-out both; animation-delay: .72s; }
.rt-anim-4 { animation: heroFadeUp .6s ease-out both; animation-delay: .92s; }
.rt-anim-5 { animation: heroFadeIn  .8s ease-out both; animation-delay: 1.05s; }

/* Trait doré animé sous le H1 */
#hero h1::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: var(--c-accent);
  border-radius: 2px;
  margin-top: 14px;
  animation: heroLineGrow .7s ease-out both;
  animation-delay: 1.1s;
}
.rt-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 110px; /* compense header fixe */
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.rt-hero-text { max-width: 680px; }
.rt-hero-eyebrow {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 7px 16px;
  border-radius: 3px;
  margin-bottom: 20px;
}
#hero h1 {
  font-family: var(--font-title);
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 700;
  color: #fff !important;
  line-height: 1.15;
  margin: 0 0 20px;
  text-shadow: 0 3px 16px rgba(0,0,0,.4);
}
.rt-hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.9);
  margin: 0 0 36px;
  line-height: 1.6;
}
.rt-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Zone droite : CTA chiffrage + note Google */
.rt-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
}
.rt-google-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 10px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  text-decoration: none;
  transition: var(--tr);
  white-space: nowrap;
}
.rt-google-rating:hover {
  background: rgba(255,255,255,.18);
  text-decoration: none;
  color: #fff;
}
.rt-google-rating .rt-stars { color: var(--c-accent); font-size: 20px; letter-spacing: 2px; }
.rt-google-rating .rt-score { font-weight: 700; font-size: 20px; }
.rt-google-rating .rt-count { color: rgba(255,255,255,.85); font-size: 15px; }

/* Scroll indicator */
.rt-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.rt-hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.3);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50%       { opacity: 1;  transform: scaleY(1); }
}

/* ===========================
   OPTIONS A/B — Bandeau temporaire de sélection
=========================== */
.rt-opt-section { position: relative; padding-top: 100px; }
.rt-opt-section--dark { background: #EEF4F8; }
.rt-opt-banner {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
}
.rt-opt-banner--a {
  background: #1a7a4a;
  color: #fff;
}
.rt-opt-banner--b {
  background: #7a1a1a;
  color: #fff;
}

/* ===========================
   OPTION A — TIMELINE 4 étapes
=========================== */
#methode { background: #fff; }
.rt-tl-heading { margin-top: 12px; }
.rt-tl-intro {
  text-align: center;
  color: #666;
  font-size: 17px;
  margin: 0 auto 56px;
  max-width: 600px;
  line-height: 1.6;
}
/* Grille 4 colonnes */
.rt-tl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Ligne de connexion entre les étapes */
.rt-tl-grid::before {
  content: '';
  position: absolute;
  top: 36px; /* centre du dot */
  left: calc(12.5%);
  width: calc(75%);
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--c-accent) 0px, var(--c-accent) 8px,
    transparent 8px, transparent 16px
  );
  z-index: 0;
}
.rt-tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
/* Cercle numéroté */
.rt-tl-dot {
  width: 72px;
  height: 72px;
  background: var(--c-primary);
  color: var(--c-accent);
  border-radius: 50%;
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 4px solid var(--c-accent);
  box-shadow: 0 4px 18px rgba(0,48,81,.18);
  flex-shrink: 0;
}
/* Icône sous le numéro */
.rt-tl-icon {
  width: 44px;
  height: 44px;
  background: #EEF4F8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.rt-tl-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--c-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rt-tl-title {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-primary);
  margin: 0 0 10px;
}
.rt-tl-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}
.rt-tl-cta {
  text-align: center;
  margin-top: 52px;
}

/* ===========================
   OPTION B — COMPARAISON
=========================== */
#methode-option-b { background: #EEF4F8; }
.rt-cmp-heading { margin-top: 12px; }
.rt-cmp-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,48,81,.12);
  margin-top: 40px;
}
/* Colonne gauche — galères */
.rt-cmp-col--bad {
  background: #fff;
  padding: 36px 36px 40px;
  border-right: 1px solid #e5e5e5;
}
/* Colonne droite — Rénov'Tout */
.rt-cmp-col--good {
  background: var(--c-primary);
  padding: 36px 36px 40px;
}
/* Séparateur VS */
.rt-cmp-vs {
  background: var(--c-accent);
  color: var(--c-primary);
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  writing-mode: vertical-rl;
  letter-spacing: 4px;
}
/* En-tête de colonne */
.rt-cmp-col-header {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 2px solid rgba(0,0,0,.07);
}
.rt-cmp-col--good .rt-cmp-col-header {
  border-bottom-color: rgba(255,255,255,.15);
}
.rt-cmp-emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}
.rt-cmp-col-header h3 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--c-primary);
}
.rt-cmp-col--good .rt-cmp-col-header h3 { color: #fff; }
.rt-cmp-col-header p {
  font-size: 13px;
  color: #888;
  margin: 0;
}
.rt-cmp-col--good .rt-cmp-col-header p { color: rgba(255,255,255,.6); }
/* Liste de comparaison */
.rt-cmp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rt-cmp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}
.rt-cmp-col--good .rt-cmp-list li { color: rgba(255,255,255,.9); }
.rt-cmp-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.rt-cmp-col--bad .rt-cmp-icon {
  background: #ffe0e0;
  color: #c0392b;
}
.rt-cmp-col--good .rt-cmp-icon {
  background: var(--c-accent);
  color: var(--c-primary);
}
.rt-cmp-cta { text-align: center; margin-top: 44px; }

/* ===========================
   MISSION — Layout 2 colonnes (style Illico Travaux)
=========================== */
#mission { background: #EEF4F8; }
.rt-mission-wrap {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: start;
}
/* Colonne gauche : texte éditorial */
.rt-mission-editorial {
  position: sticky;
  top: 100px;
}
.rt-mission-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-primary);
  border-bottom: 2px solid var(--c-accent);
  padding-bottom: 4px;
  margin-bottom: 22px;
}
.rt-mission-editorial h2 {
  font-family: var(--font-title);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 400;
  color: var(--c-primary);
  line-height: 1.3;
  margin: 0 0 22px;
}
.rt-mission-editorial h2 strong {
  font-weight: 700;
  display: block;
}
.rt-mission-intro {
  font-family: var(--font-body);
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin: 0 0 14px;
  padding: 0;
}
.rt-mission-tagline {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-primary);
  margin: 0 0 32px;
  padding: 0;
}
/* Colonne droite : grille de 5 cartes */
.rt-mission-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rt-mission-cards-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rt-mission-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 0 30px -10px rgba(0,48,81,.18);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow var(--tr);
}
.rt-mission-card:hover {
  box-shadow: 0 8px 32px rgba(0,48,81,.22);
}
.rt-mission-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
}
.rt-mission-icon svg {
  width: 44px; height: 44px;
  fill: none;
  stroke: var(--c-primary);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rt-mission-card-body { flex: 1; }
.rt-mission-card-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-primary);
  margin: 0 0 6px;
  line-height: 1.3;
  padding: 0;
}
.rt-mission-card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* ===========================
   CHIFFRES CLÉS
=========================== */
#chiffres { background: var(--c-primary); padding: 72px 0; }
.rt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.rt-stat-item {
  text-align: center;
  padding: 20px 10px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.rt-stat-item:last-child { border-right: none; }
.rt-stat-number {
  font-family: var(--font-title);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--c-accent);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.rt-stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,.92);
  line-height: 1.45;
}

/* ===========================
   PROFILS VISITEURS
=========================== */
#profils { background: #fff; }
.rt-profils-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.rt-profil-card {
  border: 2px solid #eaeaea;
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  text-decoration: none !important;
  display: block;
  transition: var(--tr);
  background: #fff;
  position: relative;
  overflow: hidden;
}
.rt-profil-card:hover {
  border-color: var(--c-accent);
  box-shadow: 0 8px 32px rgba(253,183,4,.15);
  transform: translateY(-5px);
}
.rt-profil-icon {
  font-size: 52px;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.rt-profil-card h3 {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-primary);
  margin: 0 0 10px;
}
.rt-profil-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: #555;
  margin: 0 0 24px;
  padding: 0;
  line-height: 1.55;
}
.rt-profil-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-primary);
  background: var(--c-accent);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 10px 20px;
  border-radius: 4px;
  transition: var(--tr);
  text-decoration: none;
}
.rt-profil-card:hover .rt-profil-cta-link {
  background: var(--c-primary);
  color: #fff;
}

/* ===========================
   PRESTATIONS — FLIP CARDS
=========================== */
#prestations { background: var(--c-gray); }
.rt-prestations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.rt-flip-card {
  height: 290px;
  perspective: 1000px;
}
.rt-flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}
.rt-flip-card:hover .rt-flip-card-inner { transform: rotateY(180deg); }
.rt-flip-card-front,
.rt-flip-card-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
/* Face avant : photo + titre */
.rt-flip-card-front {
  background-size: cover;
  background-position: center;
}
.rt-flip-card-front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,48,81,.05) 0%, rgba(0,48,81,.82) 100%);
}
.rt-flip-card-front-title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 20px 18px;
  color: #fff;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.rt-flip-card-front-title small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  margin-top: 3px;
}
/* Face arrière : fond bleu + texte */
.rt-flip-card-back {
  background: var(--c-primary);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 22px;
}
.rt-flip-card-back h3 {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  color: #fff !important;
  margin: 0 0 10px;
}
.rt-flip-card-back p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  padding: 0;
  margin: 0 0 18px;
  flex: 1;
}
.rt-flip-card-back a {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-primary);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--tr);
  align-self: flex-start;
}
.rt-flip-card-back a:hover { background: #e8a900; text-decoration: none; }
.rt-prestations-cta { text-align: center; margin-top: 50px; }

/* ===========================
   TÉMOIGNAGES — Marquee infini
=========================== */
#temoignages { background: var(--c-primary); padding: 80px 0; overflow-x: clip; overflow-y: visible; }
#temoignages .rt-section-title { color: #fff !important; }
#temoignages .rt-section-title::after { background: var(--c-accent); }
#temoignages .rt-section-subtitle { color: rgba(255,255,255,.88); }

/* Wrapper masquant le débordement */
.rt-temo-stage {
  overflow-x: clip;
  overflow-y: visible;
  margin-top: 50px;
  padding-top: 10px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
/* Track animé en continu */
.rt-temo-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: temoMarquee 55s linear infinite;
}
.rt-temo-track:hover { animation-play-state: paused; }
@keyframes temoMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Carte individuelle */
.rt-temoignage-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 30px 26px 24px;
  position: relative;
  transition: border-color var(--tr), background var(--tr), box-shadow var(--tr), transform var(--tr);
  width: 340px;
  flex-shrink: 0;
}
.rt-temoignage-card:hover {
  border: 2px solid var(--c-accent);
  box-shadow: 0 8px 32px rgba(0,48,81,.28);
  transform: translateY(-4px) scale(1.02);
}
.rt-temoignage-card::before {
  content: '"';
  position: absolute;
  top: 10px; left: 20px;
  font-size: 72px;
  font-family: Georgia, serif;
  color: var(--c-accent);
  line-height: 1;
  opacity: .35;
  pointer-events: none;
}
.rt-temoignage-stars {
  color: var(--c-accent);
  font-size: 15px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}
.rt-temoignage-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,.93) !important;
  line-height: 1.7;
  padding: 0;
  margin: 0 0 18px;
  font-style: italic;
}
.rt-temoignage-author {
  font-family: var(--font-body);
  font-weight: 700;
  color: #fff !important;
  font-size: 14.5px;
  display: block;
}
.rt-temoignage-location {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,.72) !important;
  display: block;
  margin-top: 3px;
}
/* Hint hover */
.rt-temo-hint {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,.65);
  letter-spacing: .5px;
}

/* ===========================
   PROJETS RÉCENTS
=========================== */
#projets { background: var(--c-gray); }
.rt-projets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.rt-projet-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none !important;
  box-shadow: var(--shadow);
  transition: box-shadow var(--tr);
}
.rt-projet-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.16); }
.rt-projet-img-wrap { overflow: hidden; position: relative; }
.rt-projet-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
  loading: lazy;
}
.rt-projet-card:hover img { transform: scale(1.07); }
.rt-projet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,48,81,.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}
.rt-projet-overlay h3 {
  font-family: var(--font-title);
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.rt-projet-info { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.rt-projet-prix {
  background: var(--c-accent);
  color: var(--c-primary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
}
.rt-projet-surface {
  color: rgba(255,255,255,.75);
  font-family: var(--font-body);
  font-size: 12px;
}
.rt-projets-cta { text-align: center; margin-top: 50px; }

/* ===========================
   BANDEAU CTA — Compact horizontal
=========================== */
#cta-bandeau {
  background: var(--c-primary);
  padding: 60px 0;
  text-align: center;
}
#cta-bandeau .rt-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.rt-cta-bandeau-text { flex: 1; min-width: 200px; }
.rt-cta-bandeau-title {
  font-family: var(--font-title);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
/* Bouton CTA accent (jaune sur fond navy) */
.rt-btn-cta-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-accent);
  color: var(--c-primary);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 19px;
  padding: 20px 56px;
  border-radius: 4px;
  text-decoration: none !important;
  letter-spacing: 0.2px;
  transition: var(--tr);
  box-shadow: 0 6px 28px rgba(253,183,4,.4);
}
.rt-btn-cta-accent:hover {
  background: #e8a900;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(253,183,4,.5);
  color: var(--c-primary);
}

/* ===========================
   ACTUALITÉS
=========================== */
#actualites { background: #fff; }
.rt-actualites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.rt-actu-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: block;
  text-decoration: none !important;
  transition: var(--tr);
  background: #fff;
}
.rt-actu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,.14);
}
.rt-actu-img-wrap { overflow: hidden; }
.rt-actu-img {
  width: 100%; height: 195px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.rt-actu-card:hover .rt-actu-img { transform: scale(1.05); }
.rt-actu-body { padding: 22px 22px 26px; }
.rt-actu-date {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--c-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  display: block;
  margin-bottom: 8px;
}
.rt-actu-body h3 {
  font-family: var(--font-title);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.4;
  margin: 0 0 10px;
}
.rt-actu-body p {
  font-family: var(--font-body);
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  padding: 0; margin: 0;
}
.rt-actualites-cta { text-align: center; margin-top: 50px; }

/* ===========================
   PARTENAIRES
=========================== */
#partenaires {
  background: #fff;
  border-top: 1px solid #ebebeb;
  padding: 60px 0 64px;
}
#partenaires .rt-section-title { font-size: 28px; }
/* ── CAROUSEL PARTENAIRES ── */
.rt-partenaires-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}
.rt-partenaires-stage {
  flex: 1;
  overflow: hidden;
}
.rt-partenaires-track {
  display: flex;
  gap: 16px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.rt-partenaire-item {
  flex: 0 0 25%; /* 4 visibles par défaut */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  transition: var(--tr);
  text-decoration: none;
  box-sizing: border-box;
  background: #fff;
}
.rt-partenaire-item:hover {
  border-color: var(--c-accent);
  box-shadow: 0 4px 14px rgba(253,183,4,.18);
  text-decoration: none;
}
.rt-partenaire-item img {
  max-height: 52px;
  max-width: 130px;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .65;
  transition: var(--tr);
}
.rt-partenaire-item:hover img { filter: grayscale(0); opacity: 1; }

/* Flèches de navigation */
.rt-part-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background: #fff;
  color: var(--c-primary);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr);
  padding: 0;
}
.rt-part-arrow:hover:not(:disabled) {
  border-color: var(--c-accent);
  background: var(--c-accent);
  color: var(--c-primary);
}
.rt-part-arrow:disabled { opacity: .3; cursor: not-allowed; }

/* Points de navigation */
.rt-part-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.rt-part-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: #d0d0d0;
  cursor: pointer;
  padding: 0;
  transition: var(--tr);
}
.rt-part-dot.active { background: var(--c-accent); transform: scale(1.25); }

/* Responsive carousel — la largeur est gérée par le JS (getVisible),
   on force la largeur initiale ici en attendant le calcul JS */
@media (max-width: 1024px) {
  .rt-partenaire-item { flex: 0 0 calc(33.333% - 11px); }
}
@media (max-width: 768px) {
  .rt-partenaire-item { flex: 0 0 calc(50% - 8px); }
}
@media (max-width: 480px) {
  .rt-partenaire-item { flex: 0 0 100%; }
  .rt-part-arrow { width: 36px; height: 36px; font-size: 20px; }
}

/* ===========================
   FOOTER
=========================== */
.rt-footer {
  background: var(--c-primary);
  color: rgba(255,255,255,.75);
}
.rt-footer-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
}
.rt-footer-logo img {
  height: 42px;
  filter: brightness(0) invert(1);
  display: block;
  margin-bottom: 16px;
}
.rt-footer-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin: 0 0 20px; padding: 0;
}
.rt-footer h5 {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 18px;
}
.rt-footer-address {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  margin: 0 0 14px; padding: 0;
}
.rt-footer-address a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
}
.rt-footer-address a:hover { color: var(--c-accent); text-decoration: none; }
/* Social footer */
.rt-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.rt-footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  transition: var(--tr);
  text-decoration: none;
}
.rt-footer-social-link:hover {
  background: var(--c-accent);
  color: var(--c-primary);
  text-decoration: none;
}
.rt-footer-nav ul {
  list-style: none; padding: 0; margin: 0;
}
.rt-footer-nav ul li { margin-bottom: 9px; }
.rt-footer-nav ul li a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transition: color var(--tr);
}
.rt-footer-nav ul li a:hover { color: var(--c-accent); text-decoration: none; }
.rt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 24px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255,255,255,.58);
  max-width: 1200px;
  margin: 0 auto;
}
.rt-footer-bottom a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
}
.rt-footer-bottom a:hover { color: var(--c-accent); text-decoration: none; }

/* ===========================
   SCROLL TO TOP
=========================== */
.rt-scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--c-accent);
  color: var(--c-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  text-decoration: none;
}
.rt-scroll-top.visible { opacity: 1; pointer-events: all; }
.rt-scroll-top:hover { transform: translateY(-3px); color: var(--c-primary); text-decoration: none; }

/* ===========================
   OPTIONS A/B — RESPONSIVE
=========================== */
@media (max-width: 860px) {
  /* Option A : empiler les étapes en 2 colonnes */
  .rt-tl-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .rt-tl-grid::before { display: none; }
  /* Option B : empiler les colonnes */
  .rt-cmp-grid { grid-template-columns: 1fr; }
  .rt-cmp-vs { writing-mode: horizontal-tb; width: auto; padding: 14px; font-size: 18px; }
  .rt-cmp-col--bad, .rt-cmp-col--good { border-right: none; }
}
@media (max-width: 560px) {
  /* Option A : 1 colonne */
  .rt-tl-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===========================
   RESPONSIVE — TABLETTE (≤ 1024px)
=========================== */
@media (max-width: 1024px) {
  .rt-nav { display: none; }
  .rt-burger { display: flex; }
  .rt-header-ctas { display: none; }

  .rt-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 130px;
    padding-bottom: 60px;
  }
  .rt-hero-right {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Mission 2 colonnes → 1 colonne */
  .rt-mission-wrap { grid-template-columns: 1fr; gap: 40px; }
  .rt-mission-editorial { position: static; }
  .rt-mission-cards { grid-template-columns: 1fr 1fr; }

  .rt-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .rt-stat-item:nth-child(2) { border-right: none; }
  .rt-stat-item { border-right: 1px solid rgba(255,255,255,.1); }
  .rt-stat-item:last-child, .rt-stat-item:nth-child(2) { border-right: none; }

  .rt-profils-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .rt-prestations-grid { grid-template-columns: repeat(2, 1fr); }
  .rt-projets-grid { grid-template-columns: repeat(2, 1fr); }
  .rt-actualites-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; margin-top: 50px; }

  #cta-bandeau .rt-container { flex-direction: column; text-align: center; }

  .rt-footer-body { grid-template-columns: 1fr 1fr; }
}

/* ===========================
   RESPONSIVE — MOBILE (≤ 768px)
=========================== */
@media (max-width: 768px) {
  .rt-section { padding: 56px 0; }
  .rt-topbar { display: none; }

  #hero { height: 100svh; max-height: none; }
  .rt-hero-inner { padding-top: 90px; padding-bottom: 40px; }
  .rt-hero-right { margin-top: 0; }
  .rt-hero-ctas { flex-direction: column; }
  .rt-btn { width: 100%; text-align: center; justify-content: center; }

  /* Mission mobile */
  .rt-mission-cards { grid-template-columns: 1fr; }

  .rt-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .rt-stat-item { border-right: none; }
  .rt-profils-grid { max-width: none; }
  .rt-prestations-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .rt-flip-card { height: 250px; }
  .rt-projets-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .rt-actualites-grid { max-width: none; }

  /* Témoignages : cartes plus étroites sur mobile */
  .rt-temoignage-card { width: 280px; }

  .rt-footer-body { grid-template-columns: 1fr; gap: 32px; padding: 44px 24px 32px; }
  .rt-partenaire-item img { max-height: 38px; max-width: 100px; }

  #cta-bandeau { padding: 24px 0; }
}

@media (max-width: 480px) {
  .rt-prestations-grid { grid-template-columns: 1fr; }
  .rt-flip-card { height: 240px; }
}

/* ===========================
   MODAL — FORMULAIRE PROJET
=========================== */
.rt-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.rt-modal[hidden] { display: none; }

.rt-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,20,40,.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.rt-modal-panel {
  position: relative;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 660px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  z-index: 1;
  scroll-behavior: smooth;
}

/* En-tête */
.rt-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  border-radius: 16px 16px 0 0;
}

/* Progress */
.rt-modal-progress {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.rt-modal-prog-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.rt-modal-prog-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e5e9ed;
  color: #888;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, color .25s;
}
.rt-modal-prog-label {
  font-size: 11px;
  color: #aaa;
  white-space: nowrap;
  transition: color .25s;
}
.rt-modal-prog-step.active .rt-modal-prog-num {
  background: var(--c-primary);
  color: var(--c-accent);
}
.rt-modal-prog-step.active .rt-modal-prog-label { color: var(--c-primary); font-weight: 600; }
.rt-modal-prog-step.done .rt-modal-prog-num {
  background: var(--c-accent);
  color: var(--c-primary);
}
.rt-modal-prog-step.done .rt-modal-prog-label { color: #555; }

.rt-modal-prog-line {
  flex: 1;
  height: 2px;
  background: #e5e9ed;
  margin: 0 8px;
  margin-bottom: 14px;
  transition: background .25s;
}
.rt-modal-prog-line.done { background: var(--c-accent); }

/* Bouton fermer */
.rt-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f0f2f4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: background .2s;
  flex-shrink: 0;
}
.rt-modal-close:hover { background: #e0e4e8; }
.rt-modal-close svg { width: 16px; height: 16px; color: #555; }

/* Contenu des étapes */
.rt-modal-step { padding: 28px 28px 32px; }
.rt-modal-step-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-primary);
  margin: 0 0 6px;
}
.rt-modal-step-hint {
  font-size: 14px;
  color: #888;
  margin: 0 0 24px;
}

/* Bouton retour */
.rt-modal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
  transition: color .2s;
}
.rt-modal-back:hover { color: var(--c-primary); }
.rt-modal-back svg { width: 16px; height: 16px; }

/* Grille étape 1 — 4 colonnes */
.rt-modal-travaux-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* Cartes photo — image en fond, label en overlay bas */
.rt-travaux-card {
  position: relative;
  height: 110px;
  border-radius: 10px;
  border: 3px solid transparent;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .2s, transform .15s, box-shadow .2s;
  display: flex;
  align-items: flex-end;
  padding: 0;
}
/* Dégradé sombre en bas pour lisibilité du texte */
.rt-travaux-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.05) 0%, rgba(0,0,0,.6) 100%);
  transition: background .2s;
}
.rt-travaux-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,48,81,.25);
}
.rt-travaux-card:hover::before {
  background: linear-gradient(to bottom, rgba(0,48,81,.2) 0%, rgba(0,48,81,.75) 100%);
}
.rt-travaux-card.selected {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 2px var(--c-accent), 0 8px 24px rgba(0,48,81,.3);
}
.rt-travaux-card.selected::before {
  background: linear-gradient(to bottom, rgba(253,183,4,.15) 0%, rgba(0,48,81,.8) 100%);
}
/* Coche sélection */
.rt-travaux-card.selected::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  background: var(--c-accent);
  color: var(--c-primary);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 22px;
  text-align: center;
}
.rt-travaux-label {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 8px 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

/* Grille étape 2 — 2×2 */
.rt-modal-bien-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 420px;
  margin: 0 auto;
}

.rt-bien-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 20px;
  border-radius: 12px;
  border: 2px solid #e5e9ed;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  text-align: center;
}
.rt-bien-card:hover {
  border-color: var(--c-primary);
  background: #f4f7fa;
  transform: translateY(-2px);
}
.rt-bien-card.selected {
  border-color: var(--c-accent);
  background: #fffae8;
}
.rt-bien-icon {
  width: 56px;
  height: 56px;
  background: #EEF4F8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.rt-bien-card:hover .rt-bien-icon,
.rt-bien-card.selected .rt-bien-icon { background: var(--c-primary); }
.rt-bien-icon svg { width: 28px; height: 28px; stroke: var(--c-primary); transition: stroke .2s; }
.rt-bien-card:hover .rt-bien-icon svg,
.rt-bien-card.selected .rt-bien-icon svg { stroke: var(--c-accent); }
.rt-bien-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #222;
}

/* Tags sélectionnés (étape 3) */
.rt-modal-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.rt-modal-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--c-primary);
  color: var(--c-accent);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-body);
}

/* Formulaire étape 3 */
.rt-modal-form { display: flex; flex-direction: column; gap: 14px; }
.rt-mf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rt-mf { display: flex; flex-direction: column; gap: 5px; }
.rt-mf--full { grid-column: 1 / -1; }
.rt-mf--sm { max-width: 160px; }
.rt-mf label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #444;
}
.rt-mf label span { color: var(--c-primary); }
.rt-mf input,
.rt-mf textarea {
  padding: 10px 14px;
  border: 1.5px solid #d8dee4;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #222;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  box-sizing: border-box;
}
.rt-mf input:focus,
.rt-mf textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(0,48,81,.1);
  outline: none;
}
.rt-mf textarea { resize: vertical; min-height: 88px; }

.rt-modal-submit {
  margin-top: 8px;
  padding: 14px 28px;
  background: var(--c-primary);
  color: var(--c-accent);
  border: none;
  border-radius: 8px;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
  width: 100%;
}
.rt-modal-submit:hover {
  background: #004a7a;
  transform: translateY(-1px);
}
/* Message de succès après envoi */
.rt-modal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  gap: 16px;
  min-height: 300px;
}
.rt-modal-success svg {
  width: 64px;
  height: 64px;
  stroke: #1a7a4a;
}
.rt-modal-success h2 {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--c-primary);
  margin: 0;
}
.rt-modal-success p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.rt-modal-legal {
  font-size: 11.5px;
  color: #aaa;
  text-align: center;
  margin: 4px 0 0;
}

/* Responsive modal */
@media (max-width: 600px) {
  .rt-modal-travaux-grid { grid-template-columns: repeat(2, 1fr); }
  .rt-modal-bien-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .rt-mf-row { grid-template-columns: 1fr; }
  .rt-modal-step { padding: 20px 18px 28px; }
  .rt-modal-header { padding: 16px 18px 14px; }
  .rt-modal-prog-label { display: none; }
  .rt-mf--sm { max-width: 100%; }
}


/* ============================================================
   PAGES PRESTATIONS — Layout domaines-inspired + nouvelle charte
   ============================================================ */

/* --- Bandeau page --- */
.rt-page-banner {
  background: linear-gradient(135deg, #003051 0%, #1a4d6e 100%);
  padding: 22px 0 20px;
  margin-top: 70px;
  border-bottom: 3px solid #FDB704;
}
.rt-page-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.rt-page-banner h1 {
  font-family: Arial, sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}
.rt-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  font-family: 'Lato', Arial, sans-serif;
}
.rt-breadcrumb a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
}
.rt-breadcrumb a:hover { color: #FDB704; }
.rt-breadcrumb-sep { color: rgba(255,255,255,.35); }
.rt-breadcrumb-current { color: #FDB704; font-weight: 600; }

/* --- Layout deux colonnes --- */
.rt-prestation-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

/* --- Sidebar --- */
.rt-prestation-sidebar {
  width: 248px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,48,81,.18);
  scrollbar-width: none;
}
.rt-prestation-sidebar::-webkit-scrollbar { display: none; }

.rt-sidebar-head {
  background: #003051;
  padding: 18px 20px 14px;
  border-radius: 8px 8px 0 0;
}
.rt-sidebar-head-title {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #FDB704;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 2px;
}
.rt-sidebar-head-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  margin: 0;
  font-family: 'Lato', Arial, sans-serif;
}

.rt-sidebar-nav {
  background: #002643;
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.rt-sidebar-nav li { margin: 0; }
.rt-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px 11px 24px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all .2s;
  line-height: 1.3;
}
.rt-sidebar-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.05);
  border-left-color: rgba(253,183,4,.4);
}
.rt-sidebar-nav a.active {
  color: #FDB704;
  font-weight: 700;
  background: rgba(253,183,4,.08);
  border-left-color: #FDB704;
}
.rt-sidebar-nav .rt-nav-icon {
  font-size: 16px;
  flex-shrink: 0;
  opacity: .8;
}
.rt-sidebar-nav a.active .rt-nav-icon { opacity: 1; }

.rt-sidebar-cta {
  background: linear-gradient(135deg, #001f35 0%, #003051 100%);
  padding: 20px;
  border-radius: 0 0 8px 8px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.rt-sidebar-cta-label {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin: 0 0 12px;
  line-height: 1.4;
}
.rt-sidebar-cta-btn {
  display: block;
  width: 100%;
  background: #FDB704;
  color: #003051;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  text-align: center;
  padding: 11px 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
  margin-bottom: 8px;
  line-height: 1.3;
}
.rt-sidebar-cta-btn:hover {
  background: #e8a900;
  transform: translateY(-1px);
}
.rt-sidebar-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  padding: 8px;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.rt-sidebar-tel:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}

/* --- Contenu principal --- */
.rt-prestation-main {
  flex: 1;
  min-width: 0;
}

/* Hero photo */
.rt-prest-hero {
  position: relative;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 24px;
}
.rt-prest-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.rt-prest-hero:hover .rt-prest-hero-bg { transform: scale(1.04); }
.rt-prest-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,30,60,.82) 0%, rgba(0,48,81,.2) 55%, transparent 100%);
}
.rt-prest-hero-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #FDB704;
  color: #003051;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.rt-prest-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
}
.rt-prest-hero-content h2 {
  font-family: Arial, sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}
.rt-prest-hero-content p {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  margin: 0;
  max-width: 480px;
}

/* Sections contenu */
.rt-prest-section {
  padding: 36px 0;
  border-bottom: 1px solid rgba(0,48,81,.07);
}
.rt-prest-section:last-child { border-bottom: none; }
.rt-prest-section-title {
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #003051;
  margin: 0 0 18px;
  padding-left: 14px;
  border-left: 4px solid #FDB704;
  line-height: 1.3;
}

/* Intro 2 colonnes */
.rt-prest-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}
.rt-prest-intro-text p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 15.5px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 16px;
}
.rt-prest-intro-text p:last-child { margin-bottom: 0; }

/* Bloc stats */
.rt-prest-stats-box {
  background: linear-gradient(135deg, #003051 0%, #1a4d6e 100%);
  border-radius: 8px;
  padding: 24px;
}
.rt-prest-stats-box-intro {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin: 0 0 18px;
  font-style: italic;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 14px;
}
.rt-prest-stats-row {
  display: flex;
  gap: 0;
}
.rt-prest-stat-item {
  text-align: center;
  flex: 1;
  padding: 0 8px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.rt-prest-stat-item:last-child { border-right: none; }
.rt-prest-stat-num {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #FDB704;
  line-height: 1;
}
.rt-prest-stat-label {
  display: block;
  font-size: 10.5px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-top: 5px;
  line-height: 1.3;
}

/* Services inclus */
.rt-prest-services-bg {
  background: #EEF4F8;
  border-radius: 8px;
  padding: 24px 24px 20px;
}
.rt-prest-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  margin-top: 4px;
}
.rt-prest-service-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.4;
  padding: 5px 0;
}
.rt-prest-service-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #003051;
  color: #FDB704;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Processus 4 étapes */
.rt-prest-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.rt-prest-process::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(to right, #FDB704, rgba(253,183,4,.25));
  z-index: 0;
}
.rt-prest-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.rt-prest-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #003051;
  color: #FDB704;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(0,48,81,.25);
  border: 3px solid #fff;
  outline: 2px solid #FDB704;
}
.rt-prest-step h4 {
  font-family: Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #003051;
  margin: 0 0 7px;
}
.rt-prest-step p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.55;
  margin: 0;
}

/* Avantages cards */
.rt-prest-advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.rt-prest-adv-card {
  background: #fff;
  border: 1px solid rgba(0,48,81,.08);
  border-radius: 8px;
  padding: 18px 18px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform .2s, box-shadow .2s;
}
.rt-prest-adv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,48,81,.13);
}
.rt-prest-adv-icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
}
.rt-prest-adv-card h4 {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #003051;
  margin: 0 0 5px;
}
.rt-prest-adv-card p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Bandeau CTA final */
.rt-prest-cta-band {
  background: linear-gradient(135deg, #003051 0%, #1a4d6e 100%);
  border-radius: 8px;
  padding: 36px 32px;
  text-align: center;
  margin-top: 8px;
}
.rt-prest-cta-band h3 {
  font-family: Arial, sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 10px;
}
.rt-prest-cta-band p {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  margin: 0 0 24px;
  font-family: 'Lato', Arial, sans-serif;
}
.rt-prest-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .rt-prestation-layout { flex-direction: column; padding-bottom: 48px; }
  .rt-prestation-sidebar { width: 100%; position: static; max-height: none; }
  .rt-sidebar-nav { display: grid; grid-template-columns: repeat(2, 1fr); }
  .rt-prest-hero { height: 280px; }
  .rt-prest-hero-content { padding: 20px; }
  .rt-prest-intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .rt-prest-process { grid-template-columns: repeat(2, 1fr); }
  .rt-prest-process::before { display: none; }
  .rt-prest-advantages { grid-template-columns: 1fr; }
  .rt-prest-services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .rt-sidebar-nav { grid-template-columns: 1fr; }
  .rt-prest-hero { height: 220px; margin-top: 16px; }
  .rt-prest-process { grid-template-columns: 1fr; gap: 12px; }
  .rt-prest-cta-band { padding: 28px 20px; }
  .rt-page-banner { padding: 16px 0 14px; }
  .rt-prest-stats-row { flex-direction: column; gap: 12px; }
  .rt-prest-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 12px; }
  .rt-prest-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .rt-prest-photo-duo { grid-template-columns: 1fr; }
  .rt-prest-photo-item img { height: 200px; }
  .rt-prest-quick-facts { grid-template-columns: repeat(2, 1fr); }
  .rt-prest-process-v { gap: 0; }
  .rt-prest-process-step { padding: 18px 14px 18px 64px; }
}

/* ===========================
   PRESTATION — LAYOUT ÉDITORIAL (v2)
   Inspiré domaines.html : photos inline + flow article
=========================== */

/* Phrase d'accroche en intro */
.rt-prest-lead {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #003051;
  font-style: italic;
  border-left: 4px solid #FDB704;
  padding: 4px 0 4px 18px;
  margin: 28px 0 28px;
  font-weight: 400;
}

/* Duo photos côte à côte (comme domaines.html) */
.rt-prest-photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.rt-prest-photo-item {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #dde6ee;
  line-height: 0;
}
.rt-prest-photo-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 6px;
}
.rt-prest-photo-item:hover img { transform: scale(1.05); }

/* Bloc texte intro sous les photos */
.rt-prest-body-text p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 15.5px;
  color: #555;
  line-height: 1.85;
  margin: 0 0 16px;
}
.rt-prest-body-text p:last-child { margin-bottom: 0; }

/* Chiffres clés inline (bande horizontale) */
.rt-prest-quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #003051;
  border-radius: 8px;
  margin: 0 0 0;
  overflow: hidden;
}
.rt-prest-qf-item {
  text-align: center;
  padding: 20px 10px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.rt-prest-qf-item:last-child { border-right: none; }
.rt-prest-qf-num {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #FDB704;
  line-height: 1;
}
.rt-prest-qf-label {
  display: block;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 10.5px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-top: 5px;
  line-height: 1.3;
}

/* Timeline verticale (processus v2) */
.rt-prest-process-v {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.rt-prest-process-step {
  position: relative;
  padding: 20px 24px 20px 72px;
  border-left: 2px solid rgba(0,48,81,.1);
  margin-left: 24px;
  transition: background .2s;
}
.rt-prest-process-step:last-child { border-left: 2px solid transparent; }
.rt-prest-process-step:hover { background: rgba(0,48,81,.02); border-radius: 0 8px 8px 0; }
.rt-prest-ps-num {
  position: absolute;
  left: -24px;
  top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #003051;
  color: #FDB704;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,48,81,.25);
  border: 3px solid #fff;
  outline: 2px solid #FDB704;
  z-index: 1;
}
.rt-prest-process-step h4 {
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #003051;
  margin: 0 0 5px;
}
.rt-prest-process-step p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .rt-prest-quick-facts { grid-template-columns: repeat(2, 1fr); }
  .rt-prest-photo-duo { gap: 8px; }
}

/* =========================================
   PAGES PRESTATIONS — Layout + Nav secondaire
   ========================================= */

/* ── Barre de navigation secondaire (8 prestations) ── */
.rt-prest-navbar {
  background: #fff;
  border-bottom: 3px solid var(--c-accent);
  position: sticky;
  top: 68px;
  z-index: 900;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.rt-prest-navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  gap: 0;
}
.rt-prest-nav-item {
  position: relative;
  flex: 1;
}
.rt-prest-nav-item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  color: var(--c-primary);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  white-space: normal;
  line-height: 1.3;
  transition: color var(--tr), background var(--tr);
  border-right: 1px solid rgba(0,48,81,.08);
  min-height: 44px;
}
/* Pas de flèche — supprimée */
.rt-prest-nav-item > a::after { display: none; }

.rt-prest-nav-item:hover > a {
  color: var(--c-primary);
  background: rgba(0,48,81,.05);
}
.rt-prest-nav-item.active > a {
  color: var(--c-primary);
  font-weight: 900;
  background: rgba(253,183,4,.13);
}

/* Dropdown */
.rt-prest-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-top: 3px solid var(--c-accent);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  border-radius: 0 0 8px 8px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 999;
}
.rt-prest-nav-item:hover .rt-prest-dropdown { display: block; }
.rt-prest-dropdown li a {
  display: block;
  padding: 10px 20px;
  color: #003051;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--tr), color var(--tr), padding var(--tr);
  border-left: 3px solid transparent;
}
.rt-prest-dropdown li a:hover {
  background: #f5f8fb;
  color: var(--c-accent);
  padding-left: 26px;
  border-left-color: var(--c-accent);
  text-decoration: none;
}

/* ── Layout deux colonnes ── */
.rt-prest-layout {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100vh - 200px);
}

/* ── Sidebar gauche ── */
.rt-prest-sidebar {
  width: 280px;
  flex-shrink: 0;
  background: #fff;
  border-right: none;
  padding: 40px 0 40px;
  position: sticky;
  top: 112px;   /* 68px header + 44px nav barre ≈ 112px */
  height: fit-content;
  align-self: flex-start;
}
.rt-prest-sidebar-title {
  display: flex;
  align-items: center;            /* centrage vertical du texte */
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--c-secondary);
  padding: 13px 24px;            /* padding égal haut/bas → centré */
  border-bottom: 1px solid #e8edf2;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color var(--tr), background var(--tr), border-color var(--tr);
  min-height: 46px;              /* hauteur minimale pour l'espace visuel */
}
a.rt-prest-sidebar-title:hover {
  color: var(--c-primary);
  text-decoration: none;
}
/* Titre actif (page principale courante) */
a.rt-prest-sidebar-title--active {
  color: var(--c-primary);
  font-weight: 900;
  background: rgba(253,183,4,.09);
  border-left: 3px solid var(--c-accent);
  padding-left: 21px;            /* compense la bordure gauche 3px */
  border-bottom: 1px solid rgba(253,183,4,.2);
}
.rt-prest-sidebar-nav { list-style: none; padding: 0; margin: 0; }
.rt-prest-sidebar-nav li a {
  display: block;
  padding: 11px 24px;
  color: #444;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all var(--tr);
  line-height: 1.4;
}
.rt-prest-sidebar-nav li a:hover {
  color: var(--c-primary);
  background: #f5f8fb;
  border-left-color: var(--c-accent);
  padding-left: 28px;
  text-decoration: none;
}
.rt-prest-sidebar-nav li.active a {
  color: var(--c-primary);
  font-weight: 700;
  border-left-color: var(--c-accent);
  background: rgba(253,183,4,.07);
}
.rt-prest-sidebar-cta {
  margin: 32px 20px 0;
  background: var(--c-primary);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}
.rt-prest-sidebar-cta p {
  color: rgba(255,255,255,.8);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 14px;
}
.rt-prest-sidebar-cta a.rt-btn {
  width: 100%;
  font-size: 13px;
  padding: 11px 16px;
}
.rt-prest-sidebar-phone {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.7);
  font-family: var(--font-body);
  font-size: 13px;
  text-decoration: none;
  transition: color var(--tr);
}
.rt-prest-sidebar-phone:hover { color: var(--c-accent); }

/* ── Zone de contenu principale ── */
.rt-prest-content {
  flex: 1;
  min-width: 0;
  padding: 0;
}

/* Breadcrumb */
.rt-breadcrumb {
  padding: 14px 40px;
  background: #f5f8fb;
  border-bottom: 1px solid #e8edf2;
  font-family: var(--font-body);
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rt-breadcrumb a { color: var(--c-primary); text-decoration: none; font-weight: 600; }
.rt-breadcrumb a:hover { color: var(--c-accent); }
.rt-breadcrumb-sep { color: #ccc; }
.rt-breadcrumb-current { color: var(--c-primary); font-weight: 700; }

/* Hero de section */
.rt-prest-hero {
  position: relative;
  height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.rt-prest-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,48,81,.80) 0%, rgba(0,48,81,.50) 60%, rgba(253,183,4,.15) 100%);
}
.rt-prest-hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 40px;
  width: 100%;
}
.rt-prest-hero-tag {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-primary);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.rt-prest-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.rt-prest-hero p {
  color: rgba(255,255,255,.88);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

/* Sections de contenu */
.rt-prest-section {
  padding: 48px 40px;
  border-bottom: 1px solid #e8edf2;
}
.rt-prest-section:last-child { border-bottom: none; }
.rt-prest-section-alt { background: #f5f8fb; }

.rt-prest-section h2 {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 900;
  color: var(--c-primary);
  margin: 0 0 8px;
  position: relative;
  padding-bottom: 12px;
}
.rt-prest-section h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--c-accent);
  border-radius: 2px;
}
.rt-prest-section p {
  font-family: var(--font-body);
  color: #555;
  font-size: 15px;
  line-height: 1.75;
  margin: 16px 0;
}

/* Grille avantages */
.rt-prest-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.rt-prest-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: var(--radius);
  padding: 18px;
  transition: box-shadow var(--tr), border-color var(--tr);
}
.rt-prest-benefit-item:hover {
  box-shadow: var(--shadow);
  border-color: rgba(253,183,4,.4);
}
.rt-prest-benefit-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(253,183,4,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--c-accent);
}
.rt-prest-benefit-item h4,
.rt-prest-benefit-item strong {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-primary);
  margin: 0 0 4px;
  display: block;
}
.rt-prest-benefit-item p {
  font-family: var(--font-body);
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin: 0;
}

/* Etapes processus */
.rt-prest-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
  position: relative;
}
.rt-prest-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--c-accent), rgba(253,183,4,.3));
}
.rt-prest-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.rt-prest-step-num {
  width: 48px; height: 48px;
  background: var(--c-primary);
  color: var(--c-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 900;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--c-accent);
  flex-shrink: 0;
}
.rt-prest-step h4,
.rt-prest-step strong {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-primary);
  margin: 0 0 8px;
  letter-spacing: 0.1px;
  display: block;
}
.rt-prest-step p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* CTA section — fond or pour se démarquer du footer navy */
.rt-prest-cta-section {
  background: linear-gradient(135deg, #fffbee 0%, #fff9e0 100%);
  border-top: 4px solid var(--c-accent);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rt-prest-cta-section::before {
  display: none;
}
.rt-prest-cta-section h2 {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 900;
  color: var(--c-primary);
  margin: 0 0 12px;
}
.rt-prest-cta-section p {
  color: rgba(0,48,81,.75);
  font-family: var(--font-body);
  font-size: 15px;
  margin: 0 0 28px;
  line-height: 1.6;
}
.rt-prest-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Boutons dans le CTA gold — inversés pour contraste */
.rt-prest-cta-section .rt-btn-primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,48,81,.3);
}
.rt-prest-cta-section .rt-btn-primary:hover {
  background: #001f35;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,48,81,.4);
}
.rt-prest-cta-section .rt-btn-outline-white {
  border-color: rgba(0,48,81,.5);
  color: var(--c-primary);
}
.rt-prest-cta-section .rt-btn-outline-white:hover {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

/* Sous-page stub */
.rt-stub-hero {
  background: var(--c-primary);
  padding: 60px 40px;
  text-align: center;
  border-bottom: 4px solid var(--c-accent);
}
.rt-stub-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px;
}
.rt-stub-hero p {
  color: rgba(255,255,255,.75);
  font-family: var(--font-body);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.rt-stub-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(253,183,4,.15);
  border: 1px solid rgba(253,183,4,.4);
  border-radius: 30px;
  padding: 8px 20px;
  color: var(--c-accent);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
}

/* ── Responsive prestation ── */
@media (max-width: 1100px) {
  .rt-prest-navbar-inner { overflow-x: auto; }
  .rt-prest-nav-item > a { font-size: 10.5px; padding: 9px 6px; min-width: 90px; }
}
@media (max-width: 900px) {
  .rt-prest-layout { flex-direction: column; }
  .rt-prest-sidebar {
    width: 100%;
    position: static;
    border-right: none;
    border-bottom: 1px solid #e8edf2;
    padding: 20px 0;
  }
  .rt-prest-sidebar-nav { display: flex; flex-wrap: wrap; padding: 0 16px; gap: 8px; }
  .rt-prest-sidebar-nav li a { border-left: none; border-radius: 20px; padding: 8px 16px; font-size: 13px; border: 1px solid #e8edf2; }
  .rt-prest-sidebar-nav li a:hover { padding-left: 16px; border-radius: 20px; }
  .rt-prest-sidebar-nav li.active a { border-left: none; background: var(--c-primary); color: #fff; }
  .rt-prest-sidebar-cta { display: none; }
  .rt-prest-hero { height: 240px; }
  .rt-prest-section { padding: 32px 20px; }
  .rt-prest-benefits { grid-template-columns: 1fr; }
  .rt-prest-steps { grid-template-columns: repeat(2, 1fr); }
  .rt-prest-steps::before { display: none; }
  .rt-breadcrumb { padding: 12px 20px; }
  .rt-prest-hero-content { padding: 24px 20px; }
  .rt-prest-cta-section { padding: 40px 20px; }
  .rt-stub-hero { padding: 40px 20px; }
}
@media (max-width: 600px) {
  .rt-prest-navbar { top: 68px; }
  .rt-prest-steps { grid-template-columns: 1fr; }
  .rt-prest-nav-item > a { font-size: 10px; padding: 8px 5px; min-width: 80px; }
}

/* =========================================
   SOUS-PAGES RICHES — Éléments complémentaires
   ========================================= */

/* Bandeau stats sous le hero */
.rt-sub-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-bottom: 3px solid var(--c-accent);
}
.rt-sub-stat {
  padding: 24px 20px 20px;
  text-align: center;
  border-right: 1px solid #e8edf2;
  position: relative;
}
.rt-sub-stat:last-child { border-right: none; }
.rt-sub-stat-num {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 900;
  color: var(--c-accent);
  display: block;
  line-height: 1;
  letter-spacing: -0.5px;
}
.rt-sub-stat-label {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #555;
  display: block;
  margin-top: 7px;
  line-height: 1.4;
}

/* Grille services couverts */
.rt-sub-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.rt-sub-service-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f8fb;
  border: 1px solid #e8edf2;
  border-radius: 6px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--c-primary);
  font-weight: 500;
  transition: border-color var(--tr), background var(--tr);
}
.rt-sub-service-tag:hover {
  border-color: rgba(253,183,4,.5);
  background: rgba(253,183,4,.06);
}
.rt-sub-service-tag .rt-sub-svc-icon { font-size: 16px; flex-shrink: 0; }

/* Aides financières */
.rt-sub-aids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.rt-sub-aid-card {
  background: #fff;
  border: 1px solid #e8edf2;
  border-top: 3px solid var(--c-accent);
  border-radius: 8px;
  padding: 20px;
}
.rt-sub-aid-card h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-primary);
  margin: 0 0 8px;
}
.rt-sub-aid-card p {
  font-family: var(--font-body);
  font-size: 13px;
  color: #666;
  line-height: 1.55;
  margin: 0;
}
.rt-sub-aid-badge {
  display: inline-block;
  margin-top: 10px;
  background: rgba(253,183,4,.12);
  color: #7a5c00;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

/* FAQ accordion */
.rt-sub-faq {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rt-sub-faq-item {
  border: 1px solid #e8edf2;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--tr);
}
.rt-sub-faq-item.open { border-color: rgba(0,48,81,.2); }
.rt-sub-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-primary);
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  transition: background var(--tr);
  gap: 16px;
}
.rt-sub-faq-q:hover { background: #f5f8fb; }
.rt-sub-faq-q .rt-faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(253,183,4,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: var(--c-primary);
  transition: transform var(--tr), background var(--tr);
}
.rt-sub-faq-item.open .rt-faq-icon {
  transform: rotate(45deg);
  background: var(--c-accent);
}
.rt-sub-faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.rt-sub-faq-item.open .rt-sub-faq-a {
  max-height: 500px;
  padding: 0 20px 18px;
}
.rt-sub-faq-a p {
  font-family: var(--font-body);
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin: 0;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}

/* CTA warm (gold tint — distinct du footer navy) */
.rt-sub-cta {
  background: linear-gradient(135deg, #fffbee 0%, #fff9e0 100%);
  border-top: 4px solid var(--c-accent);
  padding: 56px 40px;
  text-align: center;
}
.rt-sub-cta h2 {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 900;
  color: var(--c-primary);
  margin: 0 0 12px;
}
.rt-sub-cta p {
  color: #555;
  font-family: var(--font-body);
  font-size: 15px;
  margin: 0 0 28px;
  line-height: 1.6;
}
.rt-sub-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.rt-sub-cta .rt-btn-outline-dark {
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--tr);
  display: inline-flex; align-items: center; gap: 8px;
}
.rt-sub-cta .rt-btn-outline-dark:hover {
  background: var(--c-primary);
  color: #fff;
}

/* === BARÈME MPRPA — Tableaux accompagnateur-renov === */
.rt-mar-table-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-primary);
  margin: 32px 0 6px;
}
.rt-mar-table-title:first-of-type { margin-top: 8px; }
.rt-mar-table-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  color: #777;
  margin: 0 0 12px;
  font-style: italic;
}
.rt-mar-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid #e0e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.rt-mar-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 13.5px;
  min-width: 540px;
}
.rt-mar-table thead tr { background: var(--c-primary); color: #fff; }
.rt-mar-table thead th {
  padding: 12px 14px;
  text-align: center;
  font-weight: 700;
  font-size: 12.5px;
  border-right: 1px solid rgba(255,255,255,.15);
  white-space: nowrap;
}
.rt-mar-table thead th:first-child { text-align: left; }
.rt-mar-table thead th.tmo { background: #1a6e36; }
.rt-mar-table thead th.mo  { background: #2e7d4f; }
.rt-mar-table thead th.int { background: #c97a00; }
.rt-mar-table thead th.sup { background: #9b3c2c; }
.rt-mar-table tbody tr:nth-child(even) { background: #f5f8fb; }
.rt-mar-table tbody tr:hover { background: #edf2f7; }
.rt-mar-table tbody td {
  padding: 10px 14px;
  text-align: center;
  border-bottom: 1px solid #e8edf2;
  border-right: 1px solid #e8edf2;
  color: #333;
  white-space: nowrap;
}
.rt-mar-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--c-primary);
  white-space: normal;
}
.rt-mar-table tbody td small {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 2px;
  font-weight: 400;
}
.rt-mar-row-ecret td { background: rgba(0,48,81,.04); font-size: 12.5px; }
.rt-mar-row-mar td   { background: rgba(253,183,4,.10); font-size: 12.5px; }
.rt-mar-row-ecret td:first-child,
.rt-mar-row-mar td:first-child { font-style: italic; }
.rt-mar-alert {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff8e1;
  border: 1px solid #ffc107;
  border-left: 4px solid #e6a800;
  border-radius: 8px;
  padding: 16px 18px;
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #5a4000;
  line-height: 1.65;
}
.rt-mar-alert-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.rt-mar-table-source {
  font-family: var(--font-body);
  font-size: 11px;
  color: #bbb;
  margin: 10px 0 0;
  text-align: right;
}

/* Responsive sous-pages */
@media (max-width: 900px) {
  .rt-sub-stats { grid-template-columns: repeat(3, 1fr); }
  .rt-sub-services { grid-template-columns: repeat(2, 1fr); }
  .rt-sub-aids { grid-template-columns: 1fr; }
  .rt-sub-cta { padding: 40px 20px; }
}
@media (max-width: 600px) {
  .rt-sub-stats { grid-template-columns: 1fr; }
  .rt-sub-services { grid-template-columns: 1fr; }
}
