/* V42. Stabilisation responsive et netteté des médias. */
html,
body,
#root {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

html body img,
html body video {
  max-width: 100%;
}

html body .rdy-grid > *,
html body .rdy-hero-grid > *,
html body .rdy-contact > *,
html body .rdy-method-hero > *,
html body .rdy-offers-intro > *,
html body .rdy-nav-inner > * {
  min-width: 0;
}

/* Les sources diamant restent à leur définition utile, sans zoom logiciel. */
html body .rdy-gem-video {
  width: min(100%, 560px) !important;
  height: auto !important;
  max-width: 560px !important;
  max-height: 560px !important;
  transform: none !important;
  object-fit: contain !important;
}

html body .rdy-contact-intro-diamond-video,
html body .rdy-contact-audit-diamond-video {
  transform: none !important;
  object-fit: contain !important;
  image-rendering: auto;
}

html body .rdy-about-diamond-video {
  transform: none !important;
  object-fit: cover !important;
}

html body .rdy-hero-cinema-video,
html body .rdy-segments-video {
  image-rendering: auto;
  backface-visibility: hidden;
}

html body .rdy-trust-statement,
html body .rdy-trust-phrase {
  min-width: 0;
}

html body .rdy-trust-phrase {
  flex: 0 1 auto !important;
  max-width: min(100%, 1160px) !important;
}

/* Portable 13 pouces et fenêtres de largeur intermédiaire. */
@media (max-width: 1280px) {
  html body .rdy-nav-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 28px !important;
    gap: 18px !important;
  }

  html body .rdy-nav .rdy-logo {
    flex: 0 1 300px !important;
    width: min(300px, 42vw) !important;
    min-width: 0 !important;
    height: 58px !important;
  }

  html body .rdy-tabs,
  html body .rdy-cta-desktop {
    display: none !important;
  }

  html body .rdy-nav-actions {
    display: flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 0 !important;
  }

  html body .rdy-mobile-toggle {
    display: grid !important;
    place-items: center !important;
    flex: 0 0 46px !important;
    width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
  }

  html body main.rdy-shell,
  html body .rdy-shell {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 34px !important;
  }

  html body .rdy-grid-3,
  html body .rdy-pricing.rdy-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body .rdy-method-hero {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 820px) {
  html body .rdy-nav-inner {
    padding-inline: 18px !important;
  }

  html body .rdy-nav .rdy-logo {
    width: min(245px, 58vw) !important;
    height: 48px !important;
  }

  html body main.rdy-shell,
  html body .rdy-shell {
    padding-inline: 18px !important;
  }

  html body .rdy-grid-3,
  html body .rdy-pricing.rdy-grid-4,
  html body .rdy-hero-grid,
  html body .rdy-contact,
  html body .rdy-offers-intro {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  html body .rdy-trust-line {
    display: none !important;
  }

  html body .rdy-trust-statement {
    display: block !important;
  }
}

/* V48. Page Offres en trois parcours clairement interactifs. */
html body .rdy-offers-v48-instruction {
  width: fit-content;
  margin: -24px auto 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(232, 224, 244, .76);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

html body .rdy-offers-v48-instruction span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 184, 255, .34);
  color: #ddbaff;
  animation: rdyOffersHint 1.8s ease-in-out infinite;
}

html body .rdy-offers-v48-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

html body .rdy-offers-v48-tabs > button {
  position: relative;
  min-height: 190px;
  padding: 26px 26px 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto 1fr;
  column-gap: 16px;
  text-align: left;
  border: 1px solid rgba(218, 206, 236, .18);
  background: linear-gradient(145deg, rgba(25, 19, 40, .84), rgba(6, 5, 11, .96));
  box-shadow: 0 18px 46px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

html body .rdy-offers-v48-tabs > button::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d6b3ff, #ed2da6, transparent);
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .28s ease, transform .28s ease;
}

html body .rdy-offers-v48-tabs > button:hover,
html body .rdy-offers-v48-tabs > button:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(215, 184, 255, .48);
  box-shadow: 0 26px 64px rgba(0, 0, 0, .34), 0 0 30px rgba(168, 85, 247, .10), inset 0 1px 0 rgba(255, 255, 255, .08);
  outline: none;
}

html body .rdy-offers-v48-tabs > button.is-active {
  border-color: rgba(232, 205, 255, .70);
  background: radial-gradient(circle at 16% 0, rgba(168, 85, 247, .20), transparent 46%), linear-gradient(145deg, rgba(28, 20, 46, .95), rgba(7, 6, 12, .98));
  box-shadow: 0 30px 74px rgba(0, 0, 0, .38), 0 0 38px rgba(168, 85, 247, .15), inset 0 1px 0 rgba(255, 255, 255, .10);
}

html body .rdy-offers-v48-tabs > button.is-active::after { opacity: 1; transform: scaleX(1); }
html body .rdy-offers-v48-tab-num { grid-row: 1 / 3; color: rgba(220, 203, 238, .45); font-size: 12px; letter-spacing: .12em; }
html body .rdy-offers-v48-tab-icon { color: #d7b8ff; font-size: 24px; line-height: 1; justify-self: end; }
html body .rdy-offers-v48-tabs strong { grid-column: 1 / -1; margin-top: 22px; color: #fff; font-size: clamp(19px, 1.45vw, 24px); font-weight: 450; }
html body .rdy-offers-v48-tabs small { grid-column: 1 / -1; margin-top: 7px; color: rgba(228, 222, 238, .68); font-size: 13px; }
html body .rdy-offers-v48-tabs em { grid-column: 1 / -1; align-self: end; margin-top: 20px; color: #d7b8ff; font-size: 11px; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }

html body .rdy-offers-v48-panel {
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid rgba(218, 206, 236, .20);
  background: linear-gradient(145deg, rgba(15, 12, 24, .95), rgba(5, 5, 10, .98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .33), inset 0 1px 0 rgba(255, 255, 255, .06);
}

html body .rdy-offers-v48-panel-head {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: end;
  padding-bottom: 28px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

html body .rdy-offers-v48-panel-head > div { display: flex; align-items: baseline; gap: 16px; }
html body .rdy-offers-v48-panel-head span { color: rgba(215, 184, 255, .58); font-size: 12px; letter-spacing: .14em; }
html body .rdy-offers-v48-panel-head h3 { color: #fff; font-size: clamp(26px, 2.4vw, 39px); font-weight: 430; line-height: 1.12; }
html body .rdy-offers-v48-panel-head p { color: rgba(232, 226, 241, .76); font-size: 15.5px; line-height: 1.75; }

html body .rdy-offers-v48-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: start; }
html body .rdy-offers-v48-card { border: 1px solid rgba(218, 206, 236, .16); background: rgba(255, 255, 255, .018); transition: border-color .25s ease, background .25s ease, box-shadow .25s ease; }
html body .rdy-offers-v48-card.is-active { border-color: rgba(215, 184, 255, .47); background: rgba(168, 85, 247, .055); box-shadow: 0 20px 48px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255, 255, 255, .05); }
html body .rdy-offers-v48-card-toggle { width: 100%; min-height: 275px; padding: 24px; display: flex; flex-direction: column; align-items: stretch; text-align: left; }
html body .rdy-offers-v48-tag { width: fit-content; margin-bottom: 17px; color: #d7b8ff; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
html body .rdy-offers-v48-card h4 { color: #fff; font-size: 21px; font-weight: 440; line-height: 1.25; }
html body .rdy-offers-v48-card p { margin-top: 13px; color: rgba(228, 222, 238, .70); font-size: 14px; line-height: 1.7; }
html body .rdy-offers-v48-card-foot { margin-top: auto; padding-top: 24px; display: flex; justify-content: space-between; gap: 14px; align-items: end; border-top: 1px solid rgba(255, 255, 255, .08); }
html body .rdy-offers-v48-card-foot strong { color: #f5f1fb; font-size: 14px; font-weight: 430; }
html body .rdy-offers-v48-card-foot span { color: #d7b8ff; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
html body .rdy-offers-v48-card-detail { max-height: 0; padding: 0 24px; opacity: 0; overflow: hidden; transition: max-height .38s ease, padding .32s ease, opacity .25s ease; }
html body .rdy-offers-v48-card-detail > * { min-height: 0; }
html body .rdy-offers-v48-card.is-active .rdy-offers-v48-card-detail { max-height: 460px; padding: 0 24px 24px; opacity: 1; }
html body .rdy-offers-v48-card-detail ul { list-style: none; display: grid; gap: 10px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .08); }
html body .rdy-offers-v48-card-detail li { display: flex; gap: 9px; color: rgba(232, 226, 241, .78); font-size: 13px; line-height: 1.55; }
html body .rdy-offers-v48-card-detail li span { color: #c99dff; }
html body .rdy-offers-v48-card-detail .rdy-btn { width: 100%; margin-top: 20px; }
html body .rdy-offers-v48-note { margin: 24px 0 0; padding: 17px 19px; border-left: 2px solid rgba(215, 184, 255, .54); background: rgba(168, 85, 247, .045); color: rgba(230, 224, 239, .72); font-size: 13px; line-height: 1.7; }

html body .rdy-offers-v48-final {
  margin-top: 28px;
  padding: 27px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(218, 206, 236, .18);
  background: linear-gradient(100deg, rgba(168, 85, 247, .08), rgba(255, 255, 255, .025));
}
html body .rdy-offers-v48-final h3 { color: #fff; font-size: 20px; font-weight: 440; }
html body .rdy-offers-v48-final p { max-width: 780px; margin-top: 6px; color: rgba(230, 224, 239, .70); font-size: 13.5px; line-height: 1.65; }

@keyframes rdyOffersHint { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

@media (max-width: 1050px) {
  html body .rdy-offers-v48-tabs { grid-template-columns: 1fr; }
  html body .rdy-offers-v48-tabs > button { min-height: 150px; }
  html body .rdy-offers-v48-grid { grid-template-columns: 1fr; }
  html body .rdy-offers-v48-card-toggle { min-height: 220px; }
}

@media (max-width: 720px) {
  html body .rdy-offers-v48-instruction { margin-top: -12px; font-size: 10px; text-align: center; }
  html body .rdy-offers-v48-panel { padding: 20px; }
  html body .rdy-offers-v48-panel-head { grid-template-columns: 1fr; gap: 14px; }
  html body .rdy-offers-v48-final { align-items: stretch; flex-direction: column; }
  html body .rdy-offers-v48-final .rdy-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html body .rdy-offers-v48-instruction span { animation: none; }
}

/* V49. Lecture allégée, orientation distincte et sélection rhodium. */
html body .rdy-offers-v49-guide {
  max-width: 720px;
  margin: -16px auto 48px;
  padding: 24px 30px 26px;
  text-align: center;
  border: 1px solid rgba(214, 217, 224, .28);
  background: linear-gradient(112deg, rgba(255, 255, 255, .055), rgba(122, 126, 137, .10) 28%, rgba(18, 16, 24, .92) 61%, rgba(255, 255, 255, .035)), #09090d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 20px 54px rgba(0, 0, 0, .25);
}
html body .rdy-offers-v49-guide-kicker { display: block; margin-bottom: 9px; color: #d8d9de; font-size: 10px; letter-spacing: .19em; text-transform: uppercase; }
html body .rdy-offers-v49-guide h3 { color: #fff; font-size: clamp(22px, 2vw, 30px); font-weight: 440; letter-spacing: -.02em; }
html body .rdy-offers-v49-guide p { margin-top: 7px; color: rgba(232, 226, 241, .70); font-size: 13.5px; }
html body .rdy-offers-v48-tabs { gap: 18px; margin-bottom: 42px; }
html body .rdy-offers-v48-tabs > button {
  min-height: 142px;
  padding: 22px 24px 20px;
  grid-template-rows: auto auto auto;
  background: linear-gradient(120deg, rgba(240, 242, 247, .055), rgba(92, 95, 105, .055) 35%, transparent 65%), linear-gradient(145deg, rgba(17, 16, 22, .96), rgba(5, 5, 9, .99));
}
html body .rdy-offers-v48-tabs > button:nth-child(2) { background: linear-gradient(145deg, rgba(28, 20, 43, .72), rgba(6, 5, 10, .98)); }
html body .rdy-offers-v48-tabs > button:nth-child(3) { background: linear-gradient(145deg, rgba(40, 15, 32, .48), rgba(6, 5, 10, .98)); }
html body .rdy-offers-v48-tabs > button.is-active {
  border-color: rgba(225, 228, 234, .74);
  background: linear-gradient(116deg, rgba(255, 255, 255, .13), rgba(128, 132, 143, .15) 25%, rgba(225, 228, 234, .08) 47%, rgba(62, 59, 70, .13) 68%, rgba(255, 255, 255, .045)), linear-gradient(180deg, #17171d, #08080c);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .38), 0 0 32px rgba(211, 45, 166, .08), inset 0 1px 0 rgba(255, 255, 255, .20);
}
html body .rdy-offers-v48-tab-num { grid-row: auto; color: rgba(222, 224, 230, .52); }
html body .rdy-offers-v48-tabs strong { grid-column: 1 / -1; margin-top: 13px; font-size: clamp(18px, 1.35vw, 22px); }
html body .rdy-offers-v48-tabs small { margin-top: 5px; font-size: 12.5px; }
html body .rdy-offers-v49-tab-state {
  position: absolute;
  top: 19px;
  right: 20px;
  padding: 5px 9px;
  border: 1px solid rgba(215, 218, 225, .18);
  color: rgba(231, 226, 238, .68);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
html body .rdy-offers-v48-tabs > button.is-active .rdy-offers-v49-tab-state { border-color: rgba(239, 56, 175, .44); color: #f2cbe6; background: rgba(211, 45, 166, .08); }
html body .rdy-offers-v48-panel-head { grid-template-columns: minmax(250px, .85fr) minmax(0, 1.15fr); padding-bottom: 22px; margin-bottom: 22px; }
html body .rdy-offers-v48-panel-head p { line-height: 1.6; }
html body .rdy-offers-v48-card-toggle { min-height: 235px; }
@media (max-width: 1050px) {
  html body .rdy-offers-v49-guide { margin-bottom: 38px; }
  html body .rdy-offers-v48-tabs > button { min-height: 126px; }
}
@media (max-width: 720px) {
  html body .rdy-offers-v49-guide { margin: -8px 0 34px; padding: 21px 18px 23px; }
  html body .rdy-offers-v48-tabs { gap: 12px; margin-bottom: 30px; }
  html body .rdy-offers-v48-panel-head { gap: 10px; }
}

/* V50. Repères d'interaction et hiérarchie du héros. */
html body .rdy-offers-v49-guide p {
  max-width: 560px;
  margin: 9px auto 0;
  text-align: center;
  line-height: 1.55;
}
html body .rdy-hero-positioning { width: min(920px, 100%); }

/* V53. Trois univers RODYAM distincts, une même matière sombre. */
html body .rdy-offers-v48-tabs > button:nth-child(1) {
  border-color: rgba(178, 92, 255, .24);
  background: radial-gradient(circle at 10% 0, rgba(190, 52, 255, .12), transparent 42%), linear-gradient(145deg, rgba(26, 11, 42, .94), rgba(6, 4, 10, .99));
}
html body .rdy-offers-v48-tabs > button:nth-child(2) {
  border-color: rgba(151, 174, 165, .27);
  background: linear-gradient(118deg, rgba(220, 226, 225, .075), rgba(67, 86, 80, .10) 36%, transparent 64%), linear-gradient(145deg, rgba(14, 21, 19, .97), rgba(5, 8, 7, .995));
}
html body .rdy-offers-v48-tabs > button:nth-child(3) {
  border-color: rgba(55, 150, 255, .27);
  background: radial-gradient(circle at 8% 0, rgba(35, 139, 255, .13), transparent 42%), linear-gradient(145deg, rgba(8, 20, 42, .97), rgba(7, 5, 15, .995));
}
html body .rdy-offers-v48-tabs > button:nth-child(1).is-active {
  border-color: rgba(225, 91, 255, .76);
  background: radial-gradient(circle at 12% 0, rgba(221, 55, 255, .25), transparent 38%), linear-gradient(128deg, rgba(92, 31, 131, .32), rgba(13, 7, 22, .98) 62%);
  box-shadow: 0 24px 68px rgba(44, 8, 64, .42), 0 0 30px rgba(218, 47, 255, .12), inset 0 1px 0 rgba(255, 255, 255, .13);
}
html body .rdy-offers-v48-tabs > button:nth-child(2).is-active {
  border-color: rgba(111, 227, 170, .67);
  background: linear-gradient(116deg, rgba(225, 232, 230, .16), rgba(69, 91, 84, .19) 27%, rgba(29, 110, 75, .18) 53%, rgba(7, 13, 11, .98));
  box-shadow: 0 24px 68px rgba(0, 24, 16, .42), 0 0 32px rgba(62, 220, 146, .10), inset 0 1px 0 rgba(255, 255, 255, .18);
}
html body .rdy-offers-v48-tabs > button:nth-child(3).is-active {
  border-color: rgba(66, 171, 255, .75);
  background: radial-gradient(circle at 10% 0, rgba(33, 151, 255, .25), transparent 39%), linear-gradient(126deg, rgba(15, 68, 126, .28), rgba(23, 12, 54, .30) 56%, rgba(5, 8, 17, .99));
  box-shadow: 0 24px 68px rgba(0, 20, 58, .46), 0 0 34px rgba(36, 151, 255, .13), inset 0 1px 0 rgba(255, 255, 255, .14);
}
html body .rdy-offers-v48-tabs > button:nth-child(1).is-active .rdy-offers-v49-tab-state { border-color: rgba(239, 79, 255, .55); color: #f4c8ff; background: rgba(201, 48, 232, .10); }
html body .rdy-offers-v48-tabs > button:nth-child(2).is-active .rdy-offers-v49-tab-state { border-color: rgba(93, 218, 156, .49); color: #c9f5df; background: rgba(47, 173, 112, .10); }
html body .rdy-offers-v48-tabs > button:nth-child(3).is-active .rdy-offers-v49-tab-state { border-color: rgba(61, 160, 255, .52); color: #cbe7ff; background: rgba(35, 132, 232, .11); }

html body .rdy-offers-v48-panel {
  position: relative;
  overflow: hidden;
  transition: border-color .35s ease, background .35s ease, box-shadow .35s ease;
}
html body .rdy-offers-v48-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}
html body .rdy-offers-v48-projects .rdy-offers-v48-panel {
  border-color: rgba(199, 94, 255, .31);
  background: radial-gradient(circle at 6% 0, rgba(173, 42, 239, .10), transparent 31%), linear-gradient(155deg, rgba(15, 7, 24, .98), rgba(6, 5, 10, .995));
}
html body .rdy-offers-v48-projects .rdy-offers-v48-panel::before { background: linear-gradient(90deg, #8e46ff, #eb45d5, transparent 82%); }
html body .rdy-offers-v48-continuity .rdy-offers-v48-panel {
  border-color: rgba(133, 181, 160, .31);
  background: linear-gradient(118deg, rgba(226, 231, 231, .055), rgba(67, 84, 78, .075) 25%, transparent 53%), linear-gradient(155deg, rgba(8, 15, 13, .99), rgba(5, 8, 7, .998));
}
html body .rdy-offers-v48-continuity .rdy-offers-v48-panel::before { background: linear-gradient(90deg, #aeb9b7, #43db91, transparent 82%); }
html body .rdy-offers-v48-commercial .rdy-offers-v48-panel {
  border-color: rgba(62, 142, 234, .34);
  background: radial-gradient(circle at 6% 0, rgba(29, 127, 240, .11), transparent 32%), linear-gradient(155deg, rgba(6, 15, 31, .99), rgba(9, 5, 18, .998));
}
html body .rdy-offers-v48-commercial .rdy-offers-v48-panel::before { background: linear-gradient(90deg, #269cff, #7d4dff, transparent 82%); }

html body .rdy-offers-v48-projects .rdy-offers-v48-tag,
html body .rdy-offers-v48-projects .rdy-offers-v48-card-foot span,
html body .rdy-offers-v48-projects .rdy-offers-v48-card-detail li span { color: #e7a9ff; }
html body .rdy-offers-v48-continuity .rdy-offers-v48-tag,
html body .rdy-offers-v48-continuity .rdy-offers-v48-card-foot span,
html body .rdy-offers-v48-continuity .rdy-offers-v48-card-detail li span { color: #9de8c3; }
html body .rdy-offers-v48-commercial .rdy-offers-v48-tag,
html body .rdy-offers-v48-commercial .rdy-offers-v48-card-foot span,
html body .rdy-offers-v48-commercial .rdy-offers-v48-card-detail li span { color: #8dcbff; }

html body .rdy-offers-v48-projects .rdy-offers-v48-card.is-active { border-color: rgba(220, 87, 255, .51); background: rgba(165, 55, 227, .075); box-shadow: 0 20px 50px rgba(37, 5, 56, .35), inset 0 1px 0 rgba(255,255,255,.06); }
html body .rdy-offers-v48-continuity .rdy-offers-v48-card.is-active { border-color: rgba(86, 216, 151, .50); background: linear-gradient(135deg, rgba(215, 224, 222, .065), rgba(42, 157, 100, .065)); box-shadow: 0 20px 50px rgba(0, 28, 17, .36), inset 0 1px 0 rgba(255,255,255,.07); }
html body .rdy-offers-v48-commercial .rdy-offers-v48-card.is-active { border-color: rgba(55, 158, 255, .54); background: linear-gradient(135deg, rgba(35, 138, 244, .075), rgba(96, 52, 203, .055)); box-shadow: 0 20px 50px rgba(0, 22, 59, .38), inset 0 1px 0 rgba(255,255,255,.06); }

html body .rdy-offers-v48-projects .rdy-offers-v48-note { border-left-color: rgba(222, 85, 255, .70); background: rgba(166, 54, 224, .055); }
html body .rdy-offers-v48-continuity .rdy-offers-v48-note { border-left-color: rgba(75, 218, 145, .72); background: linear-gradient(105deg, rgba(206, 216, 213, .06), rgba(38, 159, 96, .055)); color: rgba(219, 235, 227, .76); }
html body .rdy-offers-v48-commercial .rdy-offers-v48-note { border-left-color: rgba(48, 157, 255, .75); background: rgba(35, 126, 226, .055); }

html body .rdy-offers-v48-projects .rdy-offers-v48-card-detail .rdy-btn { border-color: rgba(211, 88, 255, .35); }
html body .rdy-offers-v48-continuity .rdy-offers-v48-card-detail .rdy-btn { border-color: rgba(78, 202, 140, .36); }
html body .rdy-offers-v48-commercial .rdy-offers-v48-card-detail .rdy-btn { border-color: rgba(54, 151, 247, .38); }

html body .rdy-offers-v48-card.is-active .rdy-offers-v48-card-detail { max-height: 720px; }
html body .rdy-footer-trademark { color: rgba(222, 216, 232, .68); }
html body .rdy-hero-positioning-main {
  width: 100%;
  justify-content: center;
  text-align: center;
}
html body .rdy-hero-positioning-sub { align-self: flex-start; text-align: left; }
html body .rdy-hero-title-muted { color: rgba(191, 190, 198, .86); }
html body .rdy-h1.rdy-h1-home-color-final .rdy-hero-title-muted {
  background: none;
  -webkit-text-fill-color: currentColor;
}

@media (max-width: 760px) {
  html body .rdy-hero-positioning-main { padding-inline: 12px; }
}

/* V46. Cartes de disciplines : visuels paysage intégraux et contenus lisibles. */
html body .rdy-grid:has(> .rdy-service) {
  align-items: start !important;
  grid-auto-rows: max-content !important;
}

html body .rdy-grid .rdy-card.rdy-service {
  display: block !important;
  min-height: 0 !important;
  height: auto !important;
  padding: clamp(20px, 1.65vw, 28px) !important;
  overflow: hidden !important;
  border: 1px solid rgba(196, 151, 255, 0.2) !important;
  background: linear-gradient(145deg, rgba(22, 16, 38, 0.9), rgba(5, 5, 12, 0.96)) !important;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28) !important;
  contain: none !important;
  align-self: start !important;
}

html body .rdy-card.rdy-service .rdy-service-img-wrap {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  margin: 0 0 22px !important;
  overflow: hidden !important;
  border: 1px solid rgba(196, 151, 255, 0.2) !important;
  background: #05050b !important;
}

html body .rdy-card.rdy-service .rdy-service-img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

html body .rdy-card.rdy-service:hover .rdy-service-img {
  transform: none !important;
}

/* V55. Les visuels des six expertises conservent leur paysage natif dans les deux langues. */
html body .rdy-grid.rdy-grid-3 > .rdy-card.rdy-service {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

html body .rdy-grid.rdy-grid-3 > .rdy-card.rdy-service .rdy-service-img-wrap {
  width: 100% !important;
  aspect-ratio: 1400 / 933 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: hidden !important;
}

html body .rdy-grid.rdy-grid-3 > .rdy-card.rdy-service .rdy-service-img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 1400 / 933 !important;
  object-fit: contain !important;
  object-position: 50% 50% !important;
  transform: none !important;
}

/* V56. Les intitulés et sous-titres restent droits. Seuls les textes explicatifs sont italiques. */
html body .rdy-card.rdy-service > .rdy-card-desc,
html body .rdy-method-card h4 + p,
html body .rdy-proof-card h3 + p,
html body .rdy-expertise-card .rdy-expertise-copy p,
html body .rdy-offers-v48-card-toggle > p,
html body .rdy-seg-desc,
html body .rdy-step-desc,
html body .rdy-price-desc,
html body .rdy-addon-desc,
html body .rdy-continuity-desc,
html body .rdy-continuity-card-desc,
html body .rdy-tool-cat-desc,
html body .rdy-value-card h3 + p,
html body .rdy-segment-mini-card p {
  font-style: italic !important;
}

html body .rdy-expertise-subtitle,
html body .rdy-seg-sub,
html body .rdy-tag-mini,
html body .rdy-offers-v48-tag,
html body .rdy-offers-v48-tabs small,
html body .rdy-card-title,
html body .rdy-seg-title,
html body .rdy-method-card h4 {
  font-style: normal !important;
}

html body .rdy-card.rdy-service > .rdy-service-head { display: flex !important; }
html body .rdy-card.rdy-service > .rdy-tag-mini,
html body .rdy-card.rdy-service > .rdy-card-title,
html body .rdy-card.rdy-service > .rdy-card-desc { display: block !important; }
html body .rdy-card.rdy-service > .rdy-points { display: grid !important; }

html body .rdy-card.rdy-service > .rdy-card-desc,
html body .rdy-card.rdy-service > .rdy-points {
  text-align: justify !important;
  text-justify: inter-word !important;
}

/* V57. Accueil : alignement sur le logo et séparation nette entre actions et statistiques. */
@media (min-width: 981px) {
  html body.rdy-bg-home .rdy-page .rdy-hero.rdy-hero-cinema.rdy-hero-cinema-compact.rdy-media-guard {
    min-height: max(820px, calc(100svh - var(--header-h, 88px) + 110px)) !important;
    height: max(820px, calc(100svh - var(--header-h, 88px) + 110px)) !important;
  }

  html body.rdy-bg-home .rdy-page .rdy-hero.rdy-hero-cinema.rdy-hero-cinema-compact.rdy-media-guard > .rdy-hero-grid > .rdy-hero-copy {
    padding-left: clamp(48px, 4vw, 72px) !important;
    padding-right: clamp(48px, 4vw, 72px) !important;
  }

  html body.rdy-bg-home .rdy-page .rdy-hero.rdy-hero-cinema.rdy-hero-cinema-compact.rdy-media-guard > .rdy-hero-grid > .rdy-hero-copy > .rdy-hero-stats {
    left: clamp(48px, 4vw, 72px) !important;
    right: clamp(48px, 4vw, 72px) !important;
    width: auto !important;
    max-width: none !important;
  }
}

@media (max-width: 980px) {
  html body.rdy-bg-home .rdy-page .rdy-hero.rdy-hero-cinema.rdy-hero-cinema-compact.rdy-media-guard {
    padding-left: clamp(24px, 4.2vw, 34px) !important;
    padding-right: clamp(24px, 4.2vw, 34px) !important;
  }

  html body.rdy-bg-home .rdy-page .rdy-hero.rdy-hero-cinema.rdy-hero-cinema-compact.rdy-media-guard > .rdy-hero-grid > .rdy-hero-copy > .rdy-hero-cta {
    margin-bottom: clamp(34px, 5vw, 48px) !important;
  }

  html body.rdy-bg-home .rdy-page .rdy-hero.rdy-hero-cinema.rdy-hero-cinema-compact.rdy-media-guard > .rdy-hero-grid > .rdy-hero-copy > .rdy-hero-stats {
    position: relative !important;
    inset: auto !important;
    margin-top: 0 !important;
    overflow: visible !important;
  }
}

/* Offre : le texte d'instruction suit exactement l'axe du titre. */
html body .rdy-offers-v49-guide,
html body .rdy-offers-v49-guide h3,
html body .rdy-offers-v49-guide p {
  text-align: center !important;
}

@media (max-width: 1280px) {
  html body .rdy-grid:has(> .rdy-service) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }
}

@media (max-width: 680px) {
  html body .rdy-grid:has(> .rdy-service) {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 480px) {
  html body .rdy-nav-inner {
    padding-inline: 14px !important;
    gap: 10px !important;
  }

  html body .rdy-lang {
    padding: 3px !important;
  }

  html body .rdy-lang button {
    padding-inline: 8px !important;
  }

  html body .rdy-mobile-toggle {
    flex-basis: 42px !important;
    width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body video {
    transform: none !important;
  }
}

/* Offres V43. Deux parcours internes, lecture courte et détail confidentiel. */
html body #offres .rdy-offers-mode-switch {
  width: min(100%, 720px);
  margin: -22px auto 42px;
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  border: 1px solid rgba(218, 206, 236, .18);
  background: rgba(6, 5, 10, .86);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .05);
}

html body #offres .rdy-offers-mode-switch button {
  min-height: 54px;
  padding: 12px 18px;
  color: rgba(226, 220, 235, .66);
  border: 1px solid transparent;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

html body #offres .rdy-offers-mode-switch button.is-active {
  color: #fff;
  border-color: rgba(215, 184, 255, .34);
  background: linear-gradient(135deg, rgba(168, 85, 247, .18), rgba(255, 255, 255, .035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 0 28px rgba(168, 85, 247, .10);
}

/* La comparaison publique reste volontairement concise. */
html body #offres .rdy-launch-pricing-note,
html body #offres .rdy-offers-minimal-router,
html body #offres .rdy-offers-secondary {
  display: none !important;
}

html body #offres.rdy-offers-mode-projects .rdy-continuity-offers,
html body #offres.rdy-offers-mode-continuity .rdy-pricing,
html body #offres.rdy-offers-mode-continuity .rdy-offers-discretion-note,
html body #offres.rdy-offers-mode-continuity .rdy-offers-final {
  display: none !important;
}

html body #offres .rdy-offers-discretion-note {
  max-width: 880px;
  margin: 28px auto 0;
  color: rgba(218, 211, 230, .63);
  font-size: 13px;
  line-height: 1.7;
  text-align: center !important;
}

html body #offres .rdy-price.rdy-offer-card {
  min-height: 430px !important;
  cursor: pointer;
  transition: opacity .28s ease, transform .28s ease, border-color .28s ease, box-shadow .28s ease !important;
}

html body #offres .rdy-offer-card .rdy-offer-fit,
html body #offres .rdy-offer-card .rdy-offer-includes,
html body #offres .rdy-offer-card .rdy-offer-evolution,
html body #offres .rdy-offer-card .rdy-price-feat,
html body #offres .rdy-offer-card .rdy-offer-private-note,
html body #offres .rdy-offer-card .rdy-launch-inline-badge {
  display: none !important;
}

html body #offres .rdy-offer-card.is-active-focus {
  z-index: 3;
  transform: translateY(-8px) scale(1.018) !important;
  border-color: rgba(224, 198, 255, .64) !important;
  box-shadow: 0 34px 86px rgba(0, 0, 0, .46), 0 0 44px rgba(168, 85, 247, .20), inset 0 1px 0 rgba(255, 255, 255, .12) !important;
}

html body #offres .rdy-offer-card.is-active-focus .rdy-offer-fit {
  display: block !important;
  margin-top: 16px !important;
  animation: rdyOfferReveal .28s ease both;
}

html body #offres .has-active-offer .is-dimmed {
  opacity: .34 !important;
  transform: scale(.975) !important;
  filter: saturate(.72);
}

html body #offres .rdy-continuity-offers {
  margin-top: 0 !important;
}

html body #offres .rdy-continuity-head {
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
}

html body #offres .rdy-continuity-grid {
  margin-top: 34px;
}

html body #offres .rdy-continuity-card {
  min-height: 330px;
  cursor: pointer;
  transition: opacity .28s ease, transform .28s ease, border-color .28s ease, box-shadow .28s ease !important;
}

html body #offres .rdy-continuity-card .rdy-continuity-features {
  display: none !important;
}

html body #offres .rdy-continuity-card.is-active-focus {
  z-index: 3;
  transform: translateY(-8px) scale(1.018) !important;
  border-color: rgba(224, 198, 255, .64) !important;
  box-shadow: 0 34px 86px rgba(0, 0, 0, .46), 0 0 44px rgba(168, 85, 247, .20), inset 0 1px 0 rgba(255, 255, 255, .12) !important;
}

@keyframes rdyOfferReveal {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 820px) {
  html body #offres .rdy-offers-mode-switch {
    margin-top: -10px;
    margin-bottom: 30px;
  }

  html body #offres .rdy-offers-mode-switch button {
    min-height: 50px;
    padding-inline: 10px;
    font-size: 10px;
    letter-spacing: .055em;
  }

  html body #offres .rdy-price.rdy-offer-card,
  html body #offres .rdy-continuity-card {
    min-height: auto !important;
  }

  html body #offres .rdy-offer-card.is-active-focus,
  html body #offres .rdy-continuity-card.is-active-focus {
    transform: translateY(-3px) !important;
  }
}
