/* =========================================================================
   RGD Renova — sections modernisées
   Classes préfixées .rgdm- pour ne jamais entrer en conflit avec Elementor.
   Aucune font-family n'est forcée : les titres héritent de la typographie
   du site pour rester cohérents avec les sections d'origine.
   ========================================================================= */

.rgdm {
  --rgdm-orange: #FD7A2D;
  --rgdm-orange-dark: #E5651A;
  --rgdm-orange-soft: rgba(253, 122, 45, .1);
  --rgdm-ink: #212121;
  --rgdm-ink-soft: #5C5854;
  --rgdm-beige: #F5ECE3;
  --rgdm-creme: #FFF4EA;   /* orange tres clair */
  --rgdm-white: #fff;
  --rgdm-line: rgba(33, 33, 33, .1);
  --rgdm-radius: 20px;
  --rgdm-shadow: 0 20px 45px -26px rgba(33, 33, 33, .45);

  padding: clamp(3.5rem, 7vw, 6rem) 0;
  color: var(--rgdm-ink);
  font-size: 16px;
  line-height: 1.65;
}

.rgdm * { box-sizing: border-box; }
.rgdm img { max-width: 100%; display: block; }
.rgdm a { text-decoration: none; color: inherit; }

.rgdm__wrap {
  width: min(100% - 2.5rem, 1200px);
  margin-inline: auto;
}

/* ---------- En-tête de section ---------- */
.rgdm__head { max-width: 760px; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.rgdm__head--center { margin-inline: auto; text-align: center; }

.rgdm__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rgdm-orange);
  margin-bottom: .9rem;
}
.rgdm__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--rgdm-orange);
}
.rgdm__head--center .rgdm__eyebrow::before { display: none; }

.rgdm__title.rgdm__title {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 .6rem;
  color: #fff;
}
.rgdm__lead {
  font-size: 1.02rem;
  color: var(--rgdm-ink-soft);
  margin: 0;
}

/* ---------- Bouton ---------- */
.rgdm__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: 999px;
  background: var(--rgdm-orange);
  color: #fff !important;
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s ease, transform .2s ease;
}
.rgdm__btn:hover { background: var(--rgdm-orange-dark); transform: translateY(-2px); }
.rgdm__btn--ghost {
  background: transparent;
  color: var(--rgdm-ink) !important;
  border: 2px solid var(--rgdm-ink);
}
.rgdm__btn--ghost:hover { background: var(--rgdm-ink); color: #fff !important; }
/* Sur les sections a fond anthracite, le bouton fantome s'inverse.
   Les sections claires gardent le style par defaut (contour anthracite). */
.rgdm-metiers .rgdm__btn--ghost,
.rgdm-works .rgdm__btn--ghost,
.rgdm-zones .rgdm__btn--ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, .55);
}
.rgdm-metiers .rgdm__btn--ghost:hover,
.rgdm-works .rgdm__btn--ghost:hover,
.rgdm-zones .rgdm__btn--ghost:hover {
  background: #fff;
  color: var(--rgdm-ink) !important;
  border-color: #fff;
}
.rgdm__center { text-align: center; margin-top: 2.6rem; }

/* =========================================================================
   1. Les étapes de la rénovation — parcours en 4 temps
   ========================================================================= */
.rgdm-steps { background: var(--rgdm-creme); color: var(--rgdm-ink); }
.rgdm-steps .rgdm__title.rgdm__title { color: var(--rgdm-ink); }
.rgdm-steps .rgdm__lead { color: var(--rgdm-ink-soft); }
.rgdm-steps .rgdm__eyebrow::before { background: var(--rgdm-orange); }

.rgdm-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  position: relative;
}

/* Ligne de liaison entre les étapes */
.rgdm-steps__grid::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #FD7A2D 0 10px, transparent 10px 20px);
  opacity: .45;
  z-index: 0;
}

.rgdm-step {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid rgba(33, 33, 33, .1);
  border-radius: var(--rgdm-radius);
  padding: 1.6rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.rgdm-step:hover {
  transform: translateY(-8px);
  border-color: var(--rgdm-orange);
  box-shadow: 0 24px 50px -26px rgba(180, 100, 40, .5);
}

.rgdm-step__num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--rgdm-ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  transition: background .25s ease;
}
.rgdm-step:hover .rgdm-step__num { background: var(--rgdm-orange); }

.rgdm-step__title.rgdm-step__title {
  color: var(--rgdm-ink);
  font-size: 1.14rem;
  margin: 0 0 .35rem;
  line-height: 1.3;
  color: inherit;
}
.rgdm-step__punch {
  font-size: .93rem;
  font-weight: 600;
  color: #FFBC7D;
  margin: 0 0 .7rem;
}
.rgdm-step__text {
  font-size: .93rem;
  color: var(--rgdm-ink-soft);
  margin: 0 0 1.1rem;
  flex: 1;
}
.rgdm-step__goal {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--rgdm-ink);
  border-top: 1px solid rgba(33, 33, 33, .12);
  padding-top: .9rem;
  margin: 0;
}
.rgdm-step__goal svg { flex: none; color: var(--rgdm-orange); margin-top: 2px; }

/* =========================================================================
   2. Nos derniers conseils — cartes articles
   ========================================================================= */
.rgdm-posts { background: #fff; color: var(--rgdm-ink); }
.rgdm-posts .rgdm__title.rgdm__title { color: var(--rgdm-ink); }
.rgdm-posts .rgdm__lead { color: var(--rgdm-ink-soft); }

.rgdm-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.rgdm-post {
  display: flex;
  flex-direction: column;
  background: var(--rgdm-white);
  border: 1px solid rgba(33, 33, 33, .16);
  border-radius: var(--rgdm-radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.rgdm-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px -28px rgba(33, 33, 33, .45);
  border-color: var(--rgdm-orange);
}

.rgdm-post__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--rgdm-beige);
}
.rgdm-post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}
.rgdm-post:hover .rgdm-post__media img { transform: scale(1.06); }

.rgdm-post__date {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, .94);
  color: var(--rgdm-ink);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .38rem .8rem;
  border-radius: 999px;
}

.rgdm-post__body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.rgdm-post__title.rgdm-post__title {
  font-size: 1.06rem;
  line-height: 1.4;
  margin: 0 0 1.1rem;
  color: #212121;
  transition: color .25s ease;
}
.rgdm-post:hover .rgdm-post__title.rgdm-post__title { color: var(--rgdm-orange); }
.rgdm-post__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--rgdm-orange);
}
.rgdm-post__more svg { transition: transform .2s ease; }
.rgdm-post:hover .rgdm-post__more svg { transform: translateX(4px); }

/* =========================================================================
   3. Notre zone d'intervention — carte + départements
   ========================================================================= */
.rgdm-zones { background: var(--rgdm-ink); color: #fff; }
.rgdm-zones .rgdm__lead { color: rgba(255, 255, 255, .7); }

.rgdm-zones__layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.rgdm-zones__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
}

.rgdm-zone {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 1.05rem 1.1rem;
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
}
.rgdm-zone:hover {
  background: rgba(253, 122, 45, .14);
  border-color: var(--rgdm-orange);
  transform: translateY(-3px);
}

.rgdm-zone__code {
  position: absolute;
  right: 8px;
  top: -6px;
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, .07);
  pointer-events: none;
  transition: color .22s ease;
}
.rgdm-zone:hover .rgdm-zone__code { color: rgba(253, 122, 45, .22); }

.rgdm-zone__name {
  position: relative;
  font-size: .97rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .25rem;
}
.rgdm-zone__cities {
  position: relative;
  font-size: .82rem;
  color: rgba(255, 255, 255, .62);
  margin: 0;
  line-height: 1.5;
}

.rgdm-zones__map { display: grid; place-items: center; }
.rgdm-zones__map img {
  width: 100%;
  max-width: 640px;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .45));
}

.rgdm-zones__note {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .72);
}
.rgdm-zones__note svg { flex: none; color: var(--rgdm-orange); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1080px) {
  .rgdm-steps__grid { grid-template-columns: repeat(2, 1fr); }
  .rgdm-steps__grid::before { display: none; }
  .rgdm-posts__grid { grid-template-columns: repeat(2, 1fr); }
  .rgdm-zones__layout { grid-template-columns: 1fr; }
  .rgdm-zones__map { order: -1; }
  .rgdm-zones__map img { max-width: 520px; }
}

@media (max-width: 780px) {
  .rgdm-zones__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .rgdm-steps__grid { grid-template-columns: 1fr; }
  .rgdm-posts__grid { grid-template-columns: 1fr; }
  .rgdm-zones__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .rgdm * { transition: none !important; }
}

/* Apparition au défilement */
.rgdm-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.rgdm-reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================================
   4. Nos engagements — grille de promesses sur fond orange très clair,
   introduite par une vague reprise de la page d'accueil.
   ========================================================================= */
.rgdm-commit {
  position: relative;
  background: var(--rgdm-creme);
  color: var(--rgdm-ink);
  overflow: hidden;
  padding-top: clamp(2.6rem, 5vw, 4.2rem);   /* place pour la vague */
}

/* Vague de raccord, réutilisable en tête de n'importe quelle section claire */
.rgdm-vague,
.rgdm-commit__vague {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 1;
}
.rgdm-vague svg,
.rgdm-commit__vague svg {
  display: block;
  width: 100%;
  height: clamp(24px, 2.6vw, 35px);
}
.rgdm-vague path,
.rgdm-commit__vague path { fill: var(--rgdm-ink); }

/* Halos discrets, adoucis pour un fond clair */
.rgdm-commit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(253, 122, 45, .12), transparent 45%),
    radial-gradient(circle at 88% 92%, rgba(253, 122, 45, .1), transparent 42%);
  pointer-events: none;
}
.rgdm-commit > .rgdm__wrap { position: relative; z-index: 2; }
.rgdm-commit .rgdm__title.rgdm__title { color: var(--rgdm-ink); }
.rgdm-commit .rgdm__lead { color: var(--rgdm-ink-soft); }

.rgdm-commit__intro {
  max-width: 860px;
  margin: 0 auto clamp(2.4rem, 4vw, 3.4rem);
  text-align: center;
}
.rgdm-commit__intro .rgdm__lead { font-size: 1.06rem; }

.rgdm-commit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.rgdm-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(33, 33, 33, .1);
  border-radius: var(--rgdm-radius);
  padding: 2rem 1.6rem 1.8rem;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2, .7, .3, 1), background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
/* Numérotation en filigrane, révélée au survol */
.rgdm-card__index {
  position: absolute;
  right: 14px;
  top: 2px;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(33, 33, 33, .07);
  pointer-events: none;
  transition: color .3s ease, transform .3s ease;
}
.rgdm-card:hover .rgdm-card__index {
  color: rgba(253, 122, 45, .3);
  transform: translateY(-4px);
}
.rgdm-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--rgdm-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.rgdm-card:hover {
  transform: translateY(-9px);
  border-color: var(--rgdm-orange);
  box-shadow: 0 28px 60px -28px rgba(180, 100, 40, .55);
}
.rgdm-card:hover::after { transform: scaleX(1); }

.rgdm-card__icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(253, 122, 45, .14);
  color: var(--rgdm-orange);
  margin-bottom: 1.2rem;
  transition: background .3s ease, color .3s ease, transform .45s cubic-bezier(.2, .7, .3, 1);
}
.rgdm-card:hover .rgdm-card__icon {
  background: var(--rgdm-orange);
  color: #fff;
  transform: translateY(-3px) rotate(-6deg) scale(1.06);
}

.rgdm-card__title.rgdm-card__title {
  color: var(--rgdm-ink);
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 0 0 .6rem;
}
.rgdm-card__text {
  font-size: .94rem;
  color: var(--rgdm-ink-soft);
  margin: 0;
}

/* Bandeau de rappel sous la grille */
.rgdm-commit__banner {
  position: relative;
  z-index: 2;
  margin-top: clamp(2.4rem, 4vw, 3.4rem);
  background: linear-gradient(120deg, rgba(253, 122, 45, .95), rgba(229, 101, 26, .95));
  border-radius: var(--rgdm-radius);
  padding: clamp(2rem, 4vw, 2.8rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
  box-shadow: 0 24px 50px -26px rgba(180, 100, 40, .8);
}
.rgdm-commit__banner h3 {
  color: #fff;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin: 0 0 .3rem;
  line-height: 1.25;
}
.rgdm-commit__banner p { color: rgba(255, 255, 255, .9); margin: 0; font-size: .96rem; }
.rgdm-commit__banner .rgdm__btn { background: #fff; color: var(--rgdm-ink) !important; }
.rgdm-commit__banner .rgdm__btn:hover { background: var(--rgdm-ink); color: #fff !important; }

@media (max-width: 1080px) { .rgdm-commit__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .rgdm-commit__grid { grid-template-columns: 1fr; } }

/* =========================================================================
   5. Curseur avant / après (remplace le widget LA-Studio)
   ========================================================================= */
.rgd-ba {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  background: #EDE6DE;
  box-shadow: 0 18px 45px -26px rgba(33, 33, 33, .55);
  line-height: 0;
}
.rgd-ba--vertical { cursor: ns-resize; }

/* L'image « apres » reste dans le flux : c'est elle qui donne sa hauteur au bloc.
   L'image « avant » est superposee en absolu dans le volet decoupe par le curseur. */
.rgd-ba .rgd-ba__img {
  display: block;
  width: 100%;
  margin: 0;
  pointer-events: none;
  user-select: none;
  max-width: none;
}
.rgd-ba .rgd-ba__img--apres { position: relative; height: auto; z-index: 1; }
.rgd-ba__volet .rgd-ba__img--avant {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rgd-ba__volet {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  will-change: clip-path;
}
.rgd-ba:not(.is-dragging) .rgd-ba__volet { transition: clip-path .12s linear; }

/* Poignée */
.rgd-ba__poignee {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: #fff;
  z-index: 4;
  cursor: ew-resize;
  box-shadow: 0 0 12px rgba(0, 0, 0, .35);
}
.rgd-ba:not(.is-dragging) .rgd-ba__poignee { transition: left .12s linear, top .12s linear; }
.rgd-ba__poignee:focus-visible { outline: 3px solid #FD7A2D; outline-offset: 3px; }

.rgd-ba--vertical .rgd-ba__poignee {
  left: 0;
  right: 0;
  top: 50%;
  bottom: auto;
  width: auto;
  height: 3px;
  margin: -1.5px 0 0;
  cursor: ns-resize;
}

.rgd-ba__bouton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FD7A2D;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
  transition: transform .2s ease, background .2s ease;
}
.rgd-ba__bouton svg { width: 22px; height: 22px; }
.rgd-ba:hover .rgd-ba__bouton { transform: translate(-50%, -50%) scale(1.08); }
.rgd-ba.is-dragging .rgd-ba__bouton { background: #E5651A; }
.rgd-ba--vertical .rgd-ba__bouton { transform: translate(-50%, -50%) rotate(90deg); }

/* Étiquettes */
.rgd-ba__label {
  position: absolute;
  bottom: 16px;
  z-index: 3;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1;
  padding: .5rem .85rem;
  border-radius: 999px;
  background: rgba(20, 18, 16, .72);
  color: #fff;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.rgd-ba__label--avant { left: 16px; }
.rgd-ba__label--apres { right: 16px; background: rgba(253, 122, 45, .92); }

@media (max-width: 640px) {
  .rgd-ba__bouton { width: 40px; height: 40px; }
  .rgd-ba__bouton svg { width: 18px; height: 18px; }
  .rgd-ba__label { font-size: .65rem; padding: .4rem .7rem; bottom: 12px; }
  .rgd-ba__label--avant { left: 12px; }
  .rgd-ba__label--apres { right: 12px; }
}

/* =========================================================================
   6. Nos prestations — un domaine par rangée, texte + curseur alignés
   ========================================================================= */
.rgdm-presta { background: var(--rgdm-white); padding-top: clamp(2.5rem, 5vw, 4rem); }
.rgdm-presta:nth-of-type(even) { background: var(--rgdm-beige); }

.rgdm-presta__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
/* Une rangée sur deux inverse texte et image */
.rgdm-presta--inverse .rgdm-presta__row { direction: rtl; }
.rgdm-presta--inverse .rgdm-presta__row > * { direction: ltr; }

.rgdm-presta__num {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--rgdm-orange);
  margin-bottom: .7rem;
}
.rgdm-presta__title.rgdm-presta__title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: inherit;
}
.rgdm-presta__text {
  font-size: 1rem;
  color: var(--rgdm-ink-soft);
  margin: 0 0 1.6rem;
}
.rgdm-presta__hint {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .84rem;
  color: var(--rgdm-ink-soft);
  margin-top: 1.2rem;
}
.rgdm-presta__hint svg { flex: none; color: var(--rgdm-orange); }

/* Le curseur prend le format natif des visuels (940 x 788) */
.rgdm-presta .rgd-ba {
  aspect-ratio: 940 / 788;
  width: 100%;
}
.rgdm-presta .rgd-ba .rgd-ba__img--apres {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .rgdm-presta__row { grid-template-columns: 1fr; gap: 1.8rem; }
  .rgdm-presta--inverse .rgdm-presta__row { direction: ltr; }
  .rgdm-presta__media { order: -1; }
}

/* =========================================================================
   7. Nos dernières réalisations — carrousel à panneaux extensibles
   ========================================================================= */
.rgdm-works { background: var(--rgdm-ink); color: #fff; }
.rgdm-works .rgdm__lead { color: rgba(255, 255, 255, .68); }

/* La piste déborde volontairement de la colonne pour occuper toute la largeur */
.rgdm-works__piste {
  display: flex;
  gap: .5rem;
  height: 540px;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
}
.rgdm-work { border-radius: 0; }

.rgdm-work {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: flex-grow .55s cubic-bezier(.2, .7, .3, 1);
}
/* Le panneau survolé ou actif occupe une part nettement plus grande */
.rgdm-works__piste:hover .rgdm-work { flex-grow: .7; }
.rgdm-works__piste .rgdm-work.is-active,
.rgdm-works__piste:hover .rgdm-work:hover { flex-grow: 3.2; }

.rgdm-work img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .3, 1), filter .45s ease;
  filter: saturate(.75) brightness(.72);
}
.rgdm-work.is-active img,
.rgdm-work:hover img { filter: none; transform: scale(1.04); }

.rgdm-work::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 14, 13, .92) 0%, rgba(15, 14, 13, .35) 45%, transparent 75%);
}

.rgdm-work__contenu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.4rem 1.3rem;
}
.rgdm-work__tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--rgdm-orange);
  padding: .3rem .65rem;
  border-radius: 999px;
  margin-bottom: .6rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease .1s, transform .35s ease .1s;
}
.rgdm-work__titre.rgdm-work__titre {
  font-size: 1.12rem;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 .25rem;
  /* Titre vertical tant que le panneau est replié */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rgdm-work__lieu {
  font-size: .85rem;
  color: rgba(255, 255, 255, .72);
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease .15s, transform .35s ease .15s;
}
.rgdm-work.is-active .rgdm-work__tag,
.rgdm-work:hover .rgdm-work__tag,
.rgdm-work.is-active .rgdm-work__lieu,
.rgdm-work:hover .rgdm-work__lieu { opacity: 1; transform: none; }

.rgdm-works__pieds {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.rgdm-works__hint {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
}
.rgdm-works__hint svg { flex: none; color: var(--rgdm-orange); }

@media (max-width: 900px) {
  .rgdm-works__piste {
    height: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .6rem;
  }
  .rgdm-work {
    flex: 0 0 78%;
    height: 340px;
    scroll-snap-align: center;
  }
  .rgdm-works__piste:hover .rgdm-work,
  .rgdm-works__piste .rgdm-work.is-active { flex-grow: 0; }
  .rgdm-work img { filter: none; }
  .rgdm-work__tag, .rgdm-work__lieu { opacity: 1; transform: none; }
  .rgdm-work__titre.rgdm-work__titre { white-space: normal; }
}

/* =========================================================================
   8. Formulaire de demande de devis — étapes, progression, états
   ========================================================================= */
.rgdf-etape { display: none; }
.rgdf-etape.is-active { display: block; animation: rgdf-entree .35s ease; }

@keyframes rgdf-entree {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.rgdf-progress {
  display: flex;
  gap: .6rem;
  width: 100%;
  margin-bottom: 1.8rem;
}
.rgdf-progress__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem .9rem;
  border-radius: 12px;
  background: rgba(33, 33, 33, .05);
  border: 1px solid rgba(33, 33, 33, .1);
  transition: background .25s ease, border-color .25s ease;
}
.rgdf-progress__item.is-active { background: rgba(253, 122, 45, .12); border-color: #FD7A2D; }
.rgdf-progress__item.is-done { background: rgba(253, 122, 45, .06); border-color: rgba(253, 122, 45, .4); }

.rgdf-progress__num {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .82rem;
  font-weight: 700;
  background: rgba(33, 33, 33, .12);
  color: #212121;
  transition: background .25s ease, color .25s ease;
}
.rgdf-progress__item.is-active .rgdf-progress__num,
.rgdf-progress__item.is-done .rgdf-progress__num { background: #FD7A2D; color: #fff; }
.rgdf-progress__item.is-done .rgdf-progress__num { font-size: 0; }
.rgdf-progress__item.is-done .rgdf-progress__num::after { content: "✓"; font-size: .86rem; }

.rgdf-progress__label { font-size: .88rem; font-weight: 600; }

.rgdf-nav { display: flex; gap: .8rem; margin-top: 1.4rem; }
.rgdf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  background: #FD7A2D;
  color: #fff;
  font-weight: 600;
  font-size: .96rem;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.rgdf-btn:hover { background: #E5651A; transform: translateY(-2px); }
.rgdf-btn--ghost { background: transparent; color: #212121; border-color: rgba(33, 33, 33, .3); }
.rgdf-btn--ghost:hover { background: rgba(33, 33, 33, .06); color: #212121; }

/* Champ en erreur */
.rgdf-erreur input,
.rgdf-erreur select,
.rgdf-erreur textarea {
  border-color: #E74C3C !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, .12);
}
.rgdf-erreur > label { color: #E74C3C; }

.rgdf-message {
  margin: 1rem 0 0;
  font-size: .92rem;
  min-height: 1.2em;
}
.rgdf-message.is-error {
  color: #C0392B;
  background: rgba(231, 76, 60, .08);
  border-left: 3px solid #E74C3C;
  padding: .7rem .9rem;
  border-radius: 8px;
}

@media (max-width: 640px) {
  .rgdf-progress { flex-direction: column; gap: .4rem; }
  .rgdf-nav { flex-direction: column-reverse; }
  .rgdf-btn { width: 100%; }
}

/* =========================================================================
   9. Nos domaines d'intervention — cartes métier sur fond anthracite
   ========================================================================= */
.rgdm-metiers { background: var(--rgdm-ink); color: #fff; }
.rgdm-metiers .rgdm__lead { color: rgba(255, 255, 255, .7); }

.rgdm-metiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.rgdm-metier {
  position: relative;
  display: block;
  min-height: 320px;
  border-radius: var(--rgdm-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: transform .3s cubic-bezier(.2, .7, .3, 1), border-color .3s ease, box-shadow .3s ease;
}
.rgdm-metier:hover {
  transform: translateY(-8px);
  border-color: var(--rgdm-orange);
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .95);
}

.rgdm-metier img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .3, 1), filter .4s ease;
  filter: brightness(.62) saturate(.85);
}
.rgdm-metier:hover img { transform: scale(1.07); filter: brightness(.72) saturate(1); }

.rgdm-metier::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 14, 13, .94) 5%, rgba(15, 14, 13, .35) 50%, transparent 80%);
}

.rgdm-metier__corps {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.5rem 1.4rem;
}
.rgdm-metier__titre.rgdm-metier__titre {
  font-size: 1.2rem;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 .4rem;
}
.rgdm-metier__desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .74);
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s ease, margin .4s ease;
}
.rgdm-metier:hover .rgdm-metier__desc { max-height: 7rem; opacity: 1; margin: 0 0 .9rem; }

.rgdm-metier__plus {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .86rem;
  font-weight: 600;
  color: #FFBC7D;
}
.rgdm-metier__plus svg { transition: transform .25s ease; }
.rgdm-metier:hover .rgdm-metier__plus svg { transform: translateX(5px); }

/* =========================================================================
   10. Quelques chiffres — même grammaire de titre que les autres sections
   ========================================================================= */
.rgdm-chiffres { background: var(--rgdm-beige); }
.rgdm-chiffres__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.rgdm-chiffre {
  position: relative;
  text-align: center;
  padding: 2.4rem 1.4rem 2rem;
  background: #fff;
  border: 1px solid var(--rgdm-line);
  border-radius: var(--rgdm-radius);
  transition: transform .3s cubic-bezier(.2, .7, .3, 1), box-shadow .3s ease, border-color .3s ease;
}
.rgdm-chiffre:hover {
  transform: translateY(-6px);
  border-color: var(--rgdm-orange);
  box-shadow: var(--rgdm-shadow);
}
.rgdm-chiffre__valeur.rgdm-chiffre__valeur {
  display: block;
  font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  line-height: 1;
  font-weight: 700;
  color: var(--rgdm-orange);
}
.rgdm-chiffre__valeur.rgdm-chiffre__valeur small { font-size: .45em; font-weight: 600; margin-left: .12em; }
.rgdm-chiffre__label {
  display: block;
  margin-top: .8rem;
  font-size: .95rem;
  color: var(--rgdm-ink-soft);
}
.rgdm-chiffre__trait {
  width: 40px;
  height: 3px;
  background: var(--rgdm-orange);
  border-radius: 2px;
  margin: 1rem auto 0;
  opacity: .35;
  transition: width .35s ease, opacity .35s ease;
}
.rgdm-chiffre:hover .rgdm-chiffre__trait { width: 70px; opacity: 1; }

/* =========================================================================
   11. Le retour de nos clients — avis Google en pleine largeur
   ========================================================================= */
.rgdm-avis { background: #fff; color: var(--rgdm-ink); }
.rgdm-avis .rgdm__title.rgdm__title { color: var(--rgdm-ink); }
.rgdm-avis .rgdm__lead { color: var(--rgdm-ink-soft); }
.rgdm-avis__cadre {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}
.rgdm-avis__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
  font-size: .95rem;
  color: var(--rgdm-ink-soft);
}
.rgdm-avis__etoiles { color: #F5A623; letter-spacing: .12em; font-size: 1.1rem; }
.rgdm-avis__score { font-weight: 700; color: var(--rgdm-ink); font-size: 1.15rem; }

@media (max-width: 1080px) {
  .rgdm-metiers__grid { grid-template-columns: repeat(2, 1fr); }
  .rgdm-chiffres__grid { grid-template-columns: repeat(3, 1fr); gap: .8rem; }
}
@media (max-width: 780px) {
  .rgdm-chiffres__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .rgdm-metiers__grid { grid-template-columns: 1fr; }
  .rgdm-metier__desc { max-height: 7rem; opacity: 1; margin: 0 0 .9rem; }
}

/* =========================================================================
   12. Hero — colonne centrale (les colonnes images ne sont pas touchées)
   Le site a un fond #212121 : les textes du hero sont donc clairs.
   ========================================================================= */
.rgdm-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.2rem, 2.5vw, 2rem);
  color: #fff;
}

.rgdm-hero > * { width: 100%; }

.rgdm-hero__eyebrow {
  width: auto;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  background: #FD7A2D;
  border: 0;
  padding: .5rem 1.15rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
  box-shadow: 0 8px 22px -10px rgba(253, 122, 45, .8);
}

.rgdm-hero__titre.rgdm-hero__titre {
  font-size: clamp(1.7rem, 2.7vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 .9rem;
  color: #fff;
  letter-spacing: -.01em;
}
.rgdm-hero__titre em { font-style: normal; color: #FD7A2D; display: block; }

.rgdm-hero__trait {
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: #FD7A2D;
  margin: 0 auto 1.3rem;
}

.rgdm-hero__soustitre.rgdm-hero__soustitre {
  font-size: 1.02rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.45;
}

.rgdm-hero__texte {
  font-size: .95rem;
  color: rgba(255, 255, 255, .72);
  margin: 0 0 1.8rem;
  line-height: 1.65;
}

.rgdm-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Bouton d'appel à l'action : plus grand, plus contrasté, légèrement animé */
.rgdm-hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1.1rem 2.4rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #FF9A4D, #FD7A2D 55%, #E5651A);
  color: #fff !important;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .01em;
  box-shadow: 0 14px 34px -12px rgba(253, 122, 45, .95);
  transition: transform .22s cubic-bezier(.2, .7, .3, 1), box-shadow .22s ease;
  animation: rgdm-pulse 2.8s ease-in-out infinite;
}
.rgdm-hero__cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 42px -12px rgba(253, 122, 45, 1);
  animation-play-state: paused;
}
.rgdm-hero__cta:active { transform: translateY(-1px) scale(1.01); }
.rgdm-hero__cta svg { transition: transform .22s ease; }
.rgdm-hero__cta:hover svg { transform: translateX(4px); }

/* Halo qui se diffuse pour attirer l'oeil */
.rgdm-hero__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(253, 122, 45, .6);
  animation: rgdm-onde 2.8s ease-out infinite;
  pointer-events: none;
}

@keyframes rgdm-pulse {
  0%, 100% { box-shadow: 0 14px 34px -12px rgba(253, 122, 45, .95); }
  50%      { box-shadow: 0 18px 44px -12px rgba(253, 122, 45, 1); }
}
@keyframes rgdm-onde {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.14); opacity: 0; }
  100% { transform: scale(1.14); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .rgdm-hero__cta, .rgdm-hero__cta::after { animation: none; }
}
.rgdm-hero__tel {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  transition: color .2s ease;
}
.rgdm-hero__tel svg { color: #FD7A2D; }
.rgdm-hero__tel:hover { color: #FFBC7D; }

/* Bande d'arguments : bandeau à part entière, placé sous le hero.
   Elle ne recouvre plus les visuels, qui restent entiers. */
.rgdm-arguments {
  width: 100%;
  padding: 1.15rem clamp(1rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .8rem clamp(1.5rem, 5vw, 4.5rem);
  list-style: none;
  margin: 0;
  background: #1A1817;
  border-top: 2px solid #FD7A2D;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: .97rem;
  font-weight: 600;
  color: #fff;
}
.rgdm-arguments li {
  display: flex;
  align-items: center;
  gap: .55rem;
  white-space: nowrap;
}
.rgdm-arguments svg { flex: none; color: #FD7A2D; width: 19px; height: 19px; }

@media (max-width: 700px) {
  .rgdm-arguments { font-size: .86rem; gap: .6rem 1.3rem; padding: 1rem; }
  .rgdm-arguments li { white-space: normal; }
}

/* =========================================================================
   13. Avis clients — cartes maison (le widget Trustindex est retiré)
   ========================================================================= */
.rgdm-avis__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
  padding: 1.1rem 1.6rem;
  background: var(--rgdm-creme);
  border: 1px solid rgba(253, 122, 45, .3);
  border-radius: 999px;
  width: fit-content;
  margin-inline: auto;
}
.rgdm-avis__score {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--rgdm-ink);
  line-height: 1;
}
.rgdm-avis__score small { font-size: .95rem; font-weight: 500; color: var(--rgdm-ink-soft); }
.rgdm-avis__etoiles { display: flex; gap: .18rem; }
.rgdm-avis__etoiles svg { width: 19px; height: 19px; color: #F5A623; }
.rgdm-avis__source {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .88rem;
  color: var(--rgdm-ink-soft);
}
.rgdm-avis__source img { width: 17px; height: 17px; }

/* Piste défilante */
.rgdm-avis__piste {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .3rem .3rem 1.4rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(33, 33, 33, .25) transparent;
}
.rgdm-avis__piste::-webkit-scrollbar { height: 6px; }
.rgdm-avis__piste::-webkit-scrollbar-thumb { background: rgba(33, 33, 33, .25); border-radius: 3px; }

.rgdm-avis-carte {
  flex: 0 0 clamp(280px, 30%, 400px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: linear-gradient(155deg, #FFE0C4, #FFC79E);
  border: 1px solid rgba(253, 122, 45, .35);
  border-radius: var(--rgdm-radius);
  padding: 1.6rem 1.5rem 1.4rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.rgdm-avis-carte:hover {
  transform: translateY(-6px);
  border-color: var(--rgdm-orange);
  box-shadow: 0 26px 55px -26px rgba(253, 122, 45, .75);
}

.rgdm-avis-carte__haut {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .9rem;
}
.rgdm-avis-carte__initiale {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #212121;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}
.rgdm-avis-carte__nom { font-weight: 700; color: #212121; font-size: .98rem; line-height: 1.2; }
.rgdm-avis-carte__date { font-size: .8rem; color: rgba(33, 33, 33, .6); }
.rgdm-avis-carte__etoiles { display: flex; gap: .15rem; margin-bottom: .8rem; }
.rgdm-avis-carte__etoiles svg { width: 16px; height: 16px; color: #D9820F; }

.rgdm-avis-carte__texte {
  font-size: .92rem;
  line-height: 1.65;
  color: rgba(33, 33, 33, .82);
  margin: 0 0 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rgdm-avis-carte.is-open .rgdm-avis-carte__texte { -webkit-line-clamp: unset; overflow: visible; }

.rgdm-avis-carte__plus {
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: .85rem;
  font-weight: 700;
  color: #C4560F;
  cursor: pointer;
}
.rgdm-avis-carte__plus:hover { text-decoration: underline; }

.rgdm-avis__pied {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.6rem;
  font-size: .86rem;
  color: var(--rgdm-ink-soft);
}
.rgdm-avis__pied svg { color: var(--rgdm-orange); }

@media (max-width: 640px) {
  .rgdm-avis-carte { flex: 0 0 86%; }
  .rgdm-avis__note { gap: .9rem; padding: .9rem 1.2rem; }
}

/* =========================================================================
   14. Ajustements demandés
   ========================================================================= */

/* ---- Bandeau d'arguments : posé en avant-plan sous les visuels du hero --- */
/* Bandeau détaché : il commence sous les visuels et déborde franchement
   sur la section suivante, comme une carte posée à cheval. */
.rgdm-arguments {
  position: relative;
  z-index: 12;
  margin: 0 auto -52px;
  width: fit-content;
  max-width: calc(100% - 3rem);
  border-radius: 18px;
  padding: 1.35rem clamp(1rem, 4vw, 3rem);
  background: #FFF4EA;
  border: 0;
  border-top: 4px solid #FD7A2D;
  box-shadow: 0 30px 60px -22px rgba(0, 0, 0, .9);
  color: #212121;
}
.rgdm-arguments li { color: #212121; }
.rgdm-arguments svg { color: #FD7A2D; }

/* ---- Quelques chiffres : tout recentré, chiffres animés ------------------ */
[data-id="4a78770"] .elementor-widget-counter,
[data-id="4a78770"] .elementor-widget-divider { text-align: center; }

[data-id="4a78770"] .e-con-inner > .e-con,
[data-id="4a78770"] .e-con-inner > .elementor-element {
  margin-inline: auto;
}

/* Les trois blocs occupent des parts egales et restent centres */
[data-id="ffaf47e"] {
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  /* Assez pour dégager la vague blanche du bas, sans creuser la section */
  margin-bottom: clamp(4.5rem, 8vw, 7rem);
}
[data-id="ffaf47e"] > .e-con { flex: 1 1 0; min-width: 0; }

[data-id="4a78770"] .elementor-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
[data-id="4a78770"] .elementor-counter-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .1rem;
  transition: transform .35s cubic-bezier(.2, .7, .3, 1);
}
[data-id="4a78770"] .elementor-counter-title { text-align: center; }

/* Le trait se dilate quand le chiffre entre en scène */
[data-id="4a78770"] .elementor-divider-separator {
  margin-inline: auto;
  border-top-color: #fff !important;
  transition: width .6s cubic-bezier(.2, .7, .3, 1);
}

/* Blocs de chiffres : réaction au survol */
[data-id="4a78770"] .elementor-widget-counter {
  transition: transform .3s cubic-bezier(.2, .7, .3, 1);
}
[data-id="4a78770"] .elementor-widget-counter:hover { transform: translateY(-6px); }
[data-id="4a78770"] .elementor-widget-counter:hover .elementor-counter-number-wrapper {
  transform: scale(1.06);
}

/* Séparation du bas en blanc */
[data-id="4a78770"] .elementor-shape-bottom svg .elementor-shape-fill { fill: #fff !important; }

/* ---- Avis : encadrés sur fond anthracite -------------------------------- */
.rgdm-avis-carte {
  background: #212121 !important;
  border-color: rgba(255, 255, 255, .12);
}
.rgdm-avis-carte:hover {
  border-color: var(--rgdm-orange);
  box-shadow: 0 26px 55px -28px rgba(33, 33, 33, .7);
}
.rgdm-avis-carte__initiale { background: var(--rgdm-orange); color: #fff; }
.rgdm-avis-carte__nom { color: #fff; }
.rgdm-avis-carte__date { color: rgba(255, 255, 255, .55); }
.rgdm-avis-carte__texte { color: rgba(255, 255, 255, .78); }
.rgdm-avis-carte__etoiles svg { color: #F5A623; }
.rgdm-avis-carte__plus { color: #FFBC7D; }

/* ---- Réalisations : voile seulement derrière le texte ------------------- */
.rgdm-work img { filter: none; }
.rgdm-work:hover img { filter: none; }
.rgdm-work::after {
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(to top, rgba(15, 14, 13, .94) 0%, rgba(15, 14, 13, .72) 45%, transparent 100%);
}

/* ---- Zone d'intervention : la carte file jusqu'au bord de la page ------- */
/* La colonne de droite s'étire jusqu'au bord de la page : on prolonge la
   grille de la marge qui sépare le contenu du bord de fenêtre. */
.rgdm-zones { overflow-x: clip; }
.rgdm-zones__layout {
  align-items: center;
  margin-right: calc((100vw - 100%) / -2);
}
.rgdm-zones__map { justify-items: end; margin-right: 0; }
.rgdm-zones__map img { width: 100%; max-width: none; }

@media (max-width: 1080px) {
  .rgdm-zones__map { margin-right: 0; justify-items: center; }
  .rgdm-zones__map img { width: 100%; max-width: 560px; }
}
@media (max-width: 700px) {
  .rgdm-arguments { margin-top: 0; border-radius: 0; width: 100%; }
}

/* =========================================================================
   15. Quelques chiffres — habillage typographique
   Le décor d'origine (fond sombre, formes en haut et en bas) est conservé ;
   seul le traitement du texte change.
   ========================================================================= */
[data-id="4a78770"] .elementor-counter-number-wrapper {
  font-family: inherit;
  line-height: 1;
}

/* Le nombre : très grand, dégradé chaud, légèrement resserré */
[data-id="4a78770"] .elementor-counter-number,
[data-id="4a78770"] .elementor-counter-number-prefix,
[data-id="4a78770"] .elementor-counter-number-suffix {
  font-size: clamp(2.9rem, 5.2vw, 4.4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -.03em !important;
  line-height: 1 !important;
  /* Orange clair : sur le fond anthracite il ressort bien mieux que
     l'orange de marque, qui s'y éteint. */
  color: #FFBC7D !important;
}

/* Le dégradé sur texte est neutralisé par une règle du thème : on garde une
   couleur pleine, plus sûre, et on met le relief sur le bloc lui-même. */
[data-id="4a78770"] .elementor-counter-number-wrapper {
  text-shadow: 0 0 34px rgba(253, 122, 45, .55), 0 6px 24px rgba(0, 0, 0, .45);
}

/* Le suffixe reste plus discret que le nombre */
[data-id="4a78770"] .elementor-counter-number-suffix {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem) !important;
  font-weight: 700 !important;
  color: #FD7A2D !important;
  align-self: flex-end;
  margin-bottom: .45em;
  margin-left: .18em;
}

/* Le libellé : petites capitales espacées, sobre */
[data-id="4a78770"] .elementor-counter-title {
  font-size: .82rem !important;
  font-weight: 600 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, .68) !important;
  margin: 0 0 .35rem !important;
  line-height: 1.4;
}

/* Chaque bloc devient une pastille qui réagit */
[data-id="4a78770"] .elementor-widget-counter {
  position: relative;
  padding: .6rem .8rem 1rem;
  border-radius: 20px;
  transition: background .3s ease, transform .3s cubic-bezier(.2, .7, .3, 1);
}
[data-id="4a78770"] .elementor-widget-counter::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(253, 122, 45, .16), transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
[data-id="4a78770"] .elementor-widget-counter:hover::before { opacity: 1; }
[data-id="4a78770"] .elementor-widget-counter:hover {
  background: rgba(255, 255, 255, .04);
  transform: translateY(-8px);
}

/* Le trait blanc s'étire au survol */
[data-id="4a78770"] .elementor-widget-divider .elementor-divider-separator {
  transition: width .45s cubic-bezier(.2, .7, .3, 1), border-color .3s ease;
}
[data-id="4a78770"] .e-con:hover .elementor-divider-separator {
  width: 110px !important;
  border-top-color: #FD7A2D !important;
}

/* =========================================================================
   16. Page Nos prestations — raccords de sections
   ========================================================================= */

/* La première prestation s'ouvre sur une vague anthracite, comme ailleurs */
.rgdm-presta--premiere {
  position: relative;
  padding-top: clamp(2.4rem, 4.6vw, 4rem);
}

/* Le CTA de bas de page reprend la couleur de la section qui le précède */
[data-id="74c6de0"] .elementor-shape-top svg .elementor-shape-fill {
  fill: #F5ECE3 !important;
}

/* =========================================================================
   17. Page Nos engagements — raccords du bloc « Vous souhaitez réaliser… »
   Les vagues se posent sur le bloc qui porte la photo d'outils, au-dessus
   d'elle : vague haute couleur de la section du dessus (crème), vague basse
   couleur de ce qui suit (le pied de page, anthracite).
   ========================================================================= */

[data-id="2724e3c"] { position: relative; }
[data-id="2724e3c"] > * { position: relative; z-index: 2; }

[data-id="2724e3c"]::before,
[data-id="2724e3c"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(24px, 2.6vw, 35px);
  pointer-events: none;
  z-index: 1;
  /* La forme sert de masque : la couleur reste une valeur CSS lisible */
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22none%22%20viewBox%3D%220%200%201573%20122%22%3E%3Cpath%20d%3D%22M367%2037.133C67.217%2090.125%206%20106%200%20122V0h1573v65.5c-129.5-10.223-182-49.367-522-49.366-237.019%200-349-38.218-684%2020.999Z%22%2F%3E%3C%2Fsvg%3E") no-repeat;
          mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22none%22%20viewBox%3D%220%200%201573%20122%22%3E%3Cpath%20d%3D%22M367%2037.133C67.217%2090.125%206%20106%200%20122V0h1573v65.5c-129.5-10.223-182-49.367-522-49.366-237.019%200-349-38.218-684%2020.999Z%22%2F%3E%3C%2Fsvg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
[data-id="2724e3c"]::before {
  top: -1px;
  background-color: var(--rgdm-creme, #FFF4EA);
}
[data-id="2724e3c"]::after {
  bottom: -1px;
  transform: scaleY(-1);
  background-color: #212121;
}

/* =========================================================================
   18. Page Nos conseils — grille d'articles
   ========================================================================= */
.rgdm-conseils {
  position: relative;
  background: #fff;
  color: var(--rgdm-ink);
  padding-top: clamp(2.6rem, 5vw, 4.2rem);
}
.rgdm-conseils .rgdm__title.rgdm__title { color: var(--rgdm-ink); }
.rgdm-conseils .rgdm__lead { color: var(--rgdm-ink-soft); }
.rgdm-conseils .rgdm__head { max-width: 820px; }

.rgdm-conseils__grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1080px) { .rgdm-conseils__grille { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .rgdm-conseils__grille { grid-template-columns: 1fr; } }

/* =========================================================================
   19. Page Notre histoire — récit fondateur
   ========================================================================= */
.rgdm-histoire {
  position: relative;
  background: var(--rgdm-creme);
  color: var(--rgdm-ink);
  padding-top: clamp(2.6rem, 5vw, 4.2rem);
}
.rgdm-histoire .rgdm__title.rgdm__title { color: var(--rgdm-ink); }
.rgdm-histoire .rgdm__lead { color: var(--rgdm-ink-soft); }

/* Bandeau d'ouverture : portrait + accroche */
.rgdm-histoire__ouverture {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.rgdm-histoire__portrait {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 26px 55px -28px rgba(120, 70, 30, .6);
}
.rgdm-histoire__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rgdm-histoire__signature {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 1.2rem .9rem;
  background: linear-gradient(to top, rgba(20, 18, 16, .9), transparent);
  color: #fff;
}
.rgdm-histoire__signature strong { display: block; font-size: 1.05rem; }
.rgdm-histoire__signature span { font-size: .85rem; color: rgba(255, 255, 255, .78); }

.rgdm-histoire__accroche {
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  line-height: 1.55;
  color: var(--rgdm-ink);
  margin: 0 0 1rem;
}
.rgdm-histoire__accroche em { font-style: normal; color: var(--rgdm-orange); font-weight: 600; }

/* Le récit, en colonne lisible */
.rgdm-recit {
  max-width: 760px;
  margin-inline: auto;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--rgdm-ink-soft);
}
.rgdm-recit p { margin: 0 0 1.15rem; }
.rgdm-recit strong { color: var(--rgdm-ink); }

/* Étape marquante du récit */
.rgdm-recit__jalon {
  position: relative;
  margin: 2rem 0;
  padding: 1.3rem 1.5rem 1.3rem 3.4rem;
  background: #fff;
  border-radius: 16px;
  border-left: 3px solid var(--rgdm-orange);
  box-shadow: 0 16px 40px -28px rgba(120, 70, 30, .7);
  font-size: 1rem;
  color: var(--rgdm-ink);
}
.rgdm-recit__jalon::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 1.65rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rgdm-orange);
  box-shadow: 0 0 0 5px rgba(253, 122, 45, .18);
}

/* La phrase pivot */
.rgdm-recit__declic {
  margin: 2.4rem 0;
  padding: 1.8rem 2rem;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(253, 122, 45, .95), rgba(229, 101, 26, .95));
  color: #fff;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.5;
  font-weight: 600;
  box-shadow: 0 24px 50px -26px rgba(180, 100, 40, .85);
}

/* Les promesses */
.rgdm-promesses {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  list-style: none;
  padding: 0;
}
.rgdm-promesse {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  background: #fff;
  border: 1px solid rgba(33, 33, 33, .1);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  font-size: .95rem;
  color: var(--rgdm-ink);
  transition: transform .25s cubic-bezier(.2, .7, .3, 1), border-color .25s ease, box-shadow .25s ease;
}
.rgdm-promesse:hover {
  transform: translateY(-6px);
  border-color: var(--rgdm-orange);
  box-shadow: 0 22px 45px -26px rgba(120, 70, 30, .65);
}
.rgdm-promesse svg { color: var(--rgdm-orange); flex: none; }

@media (max-width: 1080px) { .rgdm-promesses { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) {
  .rgdm-histoire__ouverture { grid-template-columns: 1fr; }
  .rgdm-histoire__portrait { max-width: 320px; margin-inline: auto; }
}
@media (max-width: 560px) { .rgdm-promesses { grid-template-columns: 1fr; } }

/* =========================================================================
   20. Pied de page — largeur du logo
   Sur certaines pages, aucune règle ne contraint le logo : il s'affichait à
   sa taille native (733 px), ce qui gonflait le pied de page.
   ========================================================================= */
[data-id="f0e09f9"] .tl-site-logo img,
[data-id="f0e09f9"] .elementor-widget-tl-site-logo img,
[data-id="5efef00"] img {
  width: min(100%, 266px);
  height: auto;
}

/* Page Nos conseils : le bloc « Vous souhaitez réaliser… » s'ouvre sur la
   section blanche qui le précède. */
[data-id="34ee1e1"] .elementor-shape-top svg .elementor-shape-fill {
  fill: #fff !important;
}

/* =========================================================================
   21. Page FAQ — questions dépliables
   ========================================================================= */
.rgdm-faq {
  position: relative;
  background: var(--rgdm-creme);
  color: var(--rgdm-ink);
  padding-top: clamp(2.6rem, 5vw, 4.2rem);
}
.rgdm-faq .rgdm__title.rgdm__title { color: var(--rgdm-ink); }
.rgdm-faq .rgdm__lead { color: var(--rgdm-ink-soft); }

.rgdm-faq__liste {
  max-width: 860px;
  margin-inline: auto;
  display: grid;
  gap: .8rem;
}

.rgdm-q {
  background: #fff;
  border: 1px solid rgba(33, 33, 33, .1);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.rgdm-q[open] {
  border-color: var(--rgdm-orange);
  box-shadow: 0 20px 45px -28px rgba(120, 70, 30, .65);
}

.rgdm-q > summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--rgdm-ink);
  list-style: none;
  transition: color .2s ease;
}
.rgdm-q > summary::-webkit-details-marker { display: none; }
.rgdm-q > summary:hover { color: var(--rgdm-orange); }
.rgdm-q > summary:focus-visible { outline: 3px solid var(--rgdm-orange); outline-offset: -3px; }

.rgdm-q__signe {
  flex: none;
  margin-left: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(253, 122, 45, .14);
  color: var(--rgdm-orange);
  transition: background .25s ease, color .25s ease, transform .3s ease;
}
.rgdm-q[open] .rgdm-q__signe {
  background: var(--rgdm-orange);
  color: #fff;
  transform: rotate(135deg);
}

.rgdm-q__corps {
  padding: 0 1.4rem 1.35rem;
  font-size: .96rem;
  line-height: 1.7;
  color: var(--rgdm-ink-soft);
}
.rgdm-q__corps p { margin: 0 0 .8rem; }
.rgdm-q__corps p:last-child { margin-bottom: 0; }

/* =========================================================================
   22. Page Partenariat
   ========================================================================= */
.rgdm-partenaire {
  position: relative;
  background: #fff;
  color: var(--rgdm-ink);
  padding-top: clamp(2.6rem, 5vw, 4.2rem);
}
.rgdm-partenaire .rgdm__title.rgdm__title { color: var(--rgdm-ink); }
.rgdm-partenaire .rgdm__lead { color: var(--rgdm-ink-soft); }

.rgdm-partenaire__cibles {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.rgdm-partenaire__cibles li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: var(--rgdm-creme);
  border: 1px solid rgba(253, 122, 45, .3);
  font-size: .9rem;
  font-weight: 600;
  color: var(--rgdm-ink);
}
.rgdm-partenaire__cibles svg { color: var(--rgdm-orange); }

.rgdm-atouts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
  list-style: none;
  padding: 0;
}
.rgdm-atout {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1.6rem 1.4rem;
  background: var(--rgdm-creme);
  border: 1px solid rgba(33, 33, 33, .08);
  border-radius: 18px;
  transition: transform .25s cubic-bezier(.2, .7, .3, 1), border-color .25s ease, box-shadow .25s ease;
}
.rgdm-atout:hover {
  transform: translateY(-6px);
  border-color: var(--rgdm-orange);
  box-shadow: 0 22px 48px -28px rgba(120, 70, 30, .6);
}
.rgdm-atout__icone {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(253, 122, 45, .14);
  color: var(--rgdm-orange);
  transition: background .25s ease, color .25s ease;
}
.rgdm-atout:hover .rgdm-atout__icone { background: var(--rgdm-orange); color: #fff; }
.rgdm-atout strong { font-size: 1rem; line-height: 1.35; }
.rgdm-atout span { font-size: .92rem; color: var(--rgdm-ink-soft); line-height: 1.6; }

/* Le déroulé, en trois temps */
.rgdm-deroule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: clamp(2.2rem, 4vw, 3rem);
  counter-reset: etape;
  list-style: none;
  padding: 0;
}
.rgdm-deroule li {
  position: relative;
  padding: 1.5rem 1.3rem 1.3rem;
  background: #fff;
  border: 1px solid rgba(33, 33, 33, .1);
  border-radius: 18px;
  font-size: .95rem;
  color: var(--rgdm-ink-soft);
  line-height: 1.6;
}
.rgdm-deroule li::before {
  counter-increment: etape;
  content: counter(etape);
  position: absolute;
  top: -16px;
  left: 1.3rem;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--rgdm-ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .92rem;
}
.rgdm-deroule strong { display: block; color: var(--rgdm-ink); margin-bottom: .3rem; }

@media (max-width: 1080px) { .rgdm-atouts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px)  { .rgdm-deroule { grid-template-columns: 1fr; gap: 1.6rem; } }
@media (max-width: 560px)  { .rgdm-atouts { grid-template-columns: 1fr; } }

/* Page FAQ : le bloc « Vous souhaitez réaliser… » est encadré de deux vagues,
   à la couleur des sections qui le touchent (crème au-dessus, pied de page
   anthracite en dessous). */

[data-id="4c2eb5b"] { position: relative; }
[data-id="4c2eb5b"] > * { position: relative; z-index: 2; }

[data-id="4c2eb5b"]::before,
[data-id="4c2eb5b"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(24px, 2.6vw, 35px);
  pointer-events: none;
  z-index: 1;
  /* La forme sert de masque : la couleur reste une valeur CSS lisible */
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22none%22%20viewBox%3D%220%200%201573%20122%22%3E%3Cpath%20d%3D%22M367%2037.133C67.217%2090.125%206%20106%200%20122V0h1573v65.5c-129.5-10.223-182-49.367-522-49.366-237.019%200-349-38.218-684%2020.999Z%22%2F%3E%3C%2Fsvg%3E") no-repeat;
          mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22none%22%20viewBox%3D%220%200%201573%20122%22%3E%3Cpath%20d%3D%22M367%2037.133C67.217%2090.125%206%20106%200%20122V0h1573v65.5c-129.5-10.223-182-49.367-522-49.366-237.019%200-349-38.218-684%2020.999Z%22%2F%3E%3C%2Fsvg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
[data-id="4c2eb5b"]::before {
  top: -1px;
  background-color: var(--rgdm-creme, #FFF4EA);
}
[data-id="4c2eb5b"]::after {
  bottom: -1px;
  transform: scaleY(-1);
  background-color: #212121;
}

/* Page FAQ : le bloc « Vous souhaitez réaliser… » est encadré de deux vagues,
   à la couleur des sections qui le touchent (crème au-dessus, pied de page
   anthracite en dessous). */

/* =========================================================================
   23. Formulaires — habillage et interactions
   Les champs, leur ordre et leurs libellés ne changent pas : seul le confort
   d'usage est repris (états visibles, choix cliquables, aide à la saisie).
   ========================================================================= */

/* ---- Champs texte, e-mail, téléphone, date, select, zone de texte ------- */
.rgdf-ui.rgdf-ui .elementor-field-group .elementor-field-textual.elementor-field-textual {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid rgba(33, 33, 33, .18) !important;
  border-radius: 12px;
  background: #fff;
  font-size: 1rem;
  line-height: 1.4;
  color: #212121;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.rgdf-ui.rgdf-ui .elementor-field-group .elementor-field-textual::placeholder { color: rgba(33, 33, 33, .4); }
.rgdf-ui.rgdf-ui .elementor-field-group .elementor-field-textual.elementor-field-textual:hover { border-color: rgba(33, 33, 33, .32) !important; }
.rgdf-ui.rgdf-ui .elementor-field-group .elementor-field-textual.elementor-field-textual:focus {
  outline: none;
  border-color: #FD7A2D !important;
  box-shadow: 0 0 0 4px rgba(253, 122, 45, .16) !important;
}
.rgdf-ui.rgdf-ui .elementor-field-group textarea.elementor-field-textual.elementor-field-textual { min-height: 130px; resize: vertical; }

.rgdf-ui.rgdf-ui .elementor-field-group select.elementor-field-textual.elementor-field-textual {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23212121' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  cursor: pointer;
}

/* ---- Libellés ----------------------------------------------------------- */
.rgdf-ui.rgdf-ui .elementor-field-group > .elementor-field-label.elementor-field-label {
  display: block;
  margin-bottom: .45rem;
  font-size: .92rem;
  font-weight: 600;
  color: #212121;
}
.rgdf-ui .elementor-field-group.rgdf-requis > .elementor-field-label::after {
  content: " *";
  color: #FD7A2D;
}

/* ---- Espacement entre les groupes --------------------------------------- */
.rgdf-ui .elementor-field-group { margin-bottom: 1.15rem; }

/* ---- Cases à cocher et boutons radio, en pastilles cliquables ----------- */
.rgdf-ui .elementor-field-subgroup {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.rgdf-ui .elementor-field-option,
.rgdf-ui .elementor-field-subgroup .elementor-field-option {
  position: relative;
  margin: 0;
}
.rgdf-ui .elementor-field-subgroup input[type="checkbox"],
.rgdf-ui .elementor-field-subgroup input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.rgdf-ui .elementor-field-subgroup input[type="checkbox"] + label,
.rgdf-ui .elementor-field-subgroup input[type="radio"] + label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .6rem 1rem;
  border: 1.5px solid rgba(33, 33, 33, .18);
  border-radius: 999px;
  background: #fff;
  font-size: .92rem;
  font-weight: 500;
  color: #212121;
  cursor: pointer;
  user-select: none;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}
.rgdf-ui .elementor-field-subgroup input + label:hover {
  border-color: #FD7A2D;
  transform: translateY(-1px);
}
.rgdf-ui .elementor-field-subgroup input:checked + label {
  border-color: #FD7A2D;
  background: rgba(253, 122, 45, .12);
  color: #C4560F;
  font-weight: 600;
}
.rgdf-ui .elementor-field-subgroup input:checked + label::before {
  content: "✓";
  font-weight: 700;
  color: #FD7A2D;
}
.rgdf-ui .elementor-field-subgroup input:focus-visible + label {
  outline: 3px solid rgba(253, 122, 45, .5);
  outline-offset: 2px;
}

/* La case d'acceptation reste une case simple, pas une pastille */
.rgdf-ui .elementor-field-type-acceptance .elementor-field-subgroup input + label {
  border: 0;
  background: none;
  border-radius: 0;
  padding: 0 0 0 1.9rem;
  font-size: .9rem;
  color: rgba(33, 33, 33, .78);
}
.rgdf-ui .elementor-field-type-acceptance .elementor-field-subgroup input + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(33, 33, 33, .3);
  border-radius: 6px;
  background: #fff;
  transition: background .18s ease, border-color .18s ease;
}
.rgdf-ui .elementor-field-type-acceptance .elementor-field-subgroup input:checked + label::before {
  content: "✓";
  display: grid;
  place-items: center;
  background: #FD7A2D;
  border-color: #FD7A2D;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
}

/* ---- États de validation ------------------------------------------------ */
.rgdf-ui.rgdf-ui .rgdf-groupe--valide .elementor-field-textual.elementor-field-textual {
  border-color: rgba(46, 160, 90, .55) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232EA05A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 15px;
  padding-right: 2.6rem;
}
.rgdf-ui.rgdf-ui .rgdf-groupe--valide select.elementor-field-textual.elementor-field-textual {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232EA05A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23212121' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 2.5rem center, right 1rem center;
  background-size: 15px, 16px;
  padding-right: 4rem;
}

.rgdf-aide {
  display: block;
  margin-top: .4rem;
  font-size: .82rem;
  color: rgba(33, 33, 33, .58);
}
.rgdf-aide--erreur { color: #C0392B; font-weight: 600; }

/* Compteur de caractères des zones de texte */
.rgdf-compteur {
  display: block;
  margin-top: .35rem;
  font-size: .8rem;
  color: rgba(33, 33, 33, .5);
  text-align: right;
}

/* ---- Récapitulatif de l'étape en cours ---------------------------------- */
.rgdf-etape__titre {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin: 0 0 1.3rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #212121;
}
.rgdf-etape__titre small {
  font-size: .82rem;
  font-weight: 600;
  color: #FD7A2D;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* La barre de progression devient cliquable : on neutralise l'allure bouton */
.rgdf-progress__item {
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.rgdf-progress__item:disabled { cursor: default; }

/* =========================================================================
   24. Carte animée des départements desservis
   Contours administratifs réels. Les départements se dessinent un par un à
   l'arrivée dans l'écran ; la carte et la liste se répondent au survol.
   ========================================================================= */
.rgdc { width: 100%; height: auto; overflow: visible; }

/* ---- Départements ------------------------------------------------------- */
.rgdc-zone { cursor: pointer; outline: none; }
.rgdc-forme {
  fill: rgba(255, 255, 255, .07);
  stroke: rgba(255, 255, 255, .34);
  stroke-width: 1.6;
  stroke-linejoin: round;
  transition: fill .28s ease, stroke .28s ease, filter .28s ease;
  /* le tracé se dessine au premier passage (pathLength=1 : même rythme partout) */
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.rgdm-zones.is-vue .rgdc-forme {
  animation: rgdc-tracer 1.5s ease forwards;
  animation-delay: inherit;
}
@keyframes rgdc-tracer {
  to { stroke-dashoffset: 0; }
}
.rgdc-zone { animation-delay: inherit; }

.rgdc-zone:hover .rgdc-forme,
.rgdc-zone:focus-visible .rgdc-forme,
.rgdc-zone.is-actif .rgdc-forme {
  fill: rgba(253, 122, 45, .85);
  stroke: #FFBC7D;
  stroke-width: 2.2;
  filter: drop-shadow(0 0 12px rgba(253, 122, 45, .8));
}

/* Le département du siège reste allumé */
.rgdc-zone--siege .rgdc-forme {
  fill: rgba(253, 122, 45, .38);
  stroke: #FD7A2D;
  stroke-width: 2;
}
.rgdc-zone--siege:hover .rgdc-forme,
.rgdc-zone--siege.is-actif .rgdc-forme { fill: rgba(253, 122, 45, .9); }

/* ---- Étiquettes --------------------------------------------------------- */
.rgdc-etiquette {
  opacity: 0;
  pointer-events: none;
}
.rgdm-zones.is-vue .rgdc-etiquette { animation: rgdc-apparait .6s ease forwards; }
@keyframes rgdc-apparait { to { opacity: 1; } }

.rgdc-code {
  fill: #fff;
  font-size: 19px;
  font-weight: 800;
  text-anchor: middle;
  paint-order: stroke;
  stroke: rgba(20, 18, 16, .75);
  stroke-width: 3.5;
  stroke-linejoin: round;
}
.rgdc-nom {
  fill: rgba(255, 255, 255, .78);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .03em;
  text-anchor: middle;
  paint-order: stroke;
  stroke: rgba(20, 18, 16, .75);
  stroke-width: 3;
  stroke-linejoin: round;
  transition: fill .25s ease;
}
/* Les départements exigus de la couronne portent une étiquette réduite,
   avec un nom replié sur deux lignes et un contour plus fin pour rester net */
.rgdc-etiquette--petit .rgdc-code { font-size: 13px; stroke-width: 2.6; }
.rgdc-etiquette--petit .rgdc-nom { font-size: 7px; letter-spacing: 0; stroke-width: 2.2; }

.rgdc-zone.is-actif ~ .rgdc-etiquettes .rgdc-etiquette.is-actif .rgdc-nom { fill: #fff; }
.rgdc-etiquette.is-actif .rgdc-code { fill: #fff; }
.rgdc-etiquette.is-actif .rgdc-nom { fill: #fff; }

/* ---- Siège -------------------------------------------------------------- */
.rgdc-point {
  fill: #fff;
  stroke: #FD7A2D;
  stroke-width: 3;
}
.rgdc-siege-nom {
  fill: #fff;
  font-size: 11.5px;
  font-weight: 700;
  text-anchor: middle;
  paint-order: stroke;
  stroke: rgba(20, 18, 16, .8);
  stroke-width: 3.5;
  stroke-linejoin: round;
}
/* ---- Écho dans la liste ------------------------------------------------- */
.rgdm-zone { cursor: pointer; }
.rgdm-zone.is-actif {
  background: rgba(253, 122, 45, .16);
  border-color: var(--rgdm-orange);
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  .rgdc-forme { stroke-dasharray: none; stroke-dashoffset: 0; animation: none !important; }
  .rgdc-etiquette { opacity: 1; animation: none !important; }
}
