/* =============================================================
   REPRISE landing page — Ogapur
   Self-contained, scoped under #adc so it never inherits from
   (or leaks into) the global theme (bootstrap / style.css).
   Sections: hero reprise, preuve sociale, comment ça fonctionne,
   FAQ, estimateur + floating action bar.
   ============================================================= */

/* ---- Scoped reset (neutralises bootstrap / style.css inside #adc) ---- */
#adc, #adc * { box-sizing: border-box; }
#adc {
    --adc-blue:        #2274a5;
    --adc-blue-600:    #1d6690;
    --adc-blue-700:    #184f6f;
    --adc-navy:        #081a44;
    --adc-navy-soft:   #3c4a6b;
    --adc-red:         #e40014;
    --adc-green:       #0bb574;
    --adc-ink:         #0f172a;
    --adc-muted:       #5b6780;
    --adc-line:        #e2e8f0;
    --adc-bg:          #f4f7fd;
    --adc-bg-2:        #eef3fc;
    --adc-white:       #ffffff;
    --adc-radius:      18px;
    --adc-radius-lg:   28px;
    --adc-shadow:      0 10px 30px rgba(8,26,68,.08);
    --adc-shadow-blue: 0 16px 40px rgba(34,116,165,.28);
    --adc-maxw:        1180px;
    --adc-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --adc-display: "Outfit", "Inter", system-ui, sans-serif;

    font-family: var(--adc-sans);
    color: var(--adc-ink);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background: var(--adc-white);
}
#adc h1, #adc h2, #adc h3, #adc h4 {
    font-family: var(--adc-display);
    color: var(--adc-navy);
    line-height: 1.1;
    margin: 0 0 .5em;
    font-weight: 800;
    letter-spacing: -.01em;
}
#adc p { margin: 0 0 1rem; color: var(--adc-navy-soft); }
#adc a { color: inherit; text-decoration: none; }
#adc img { max-width: 100%; height: auto; display: block; }
#adc ul { margin: 0; padding: 0; list-style: none; }

/* ---- Layout helpers ---- */
#adc .adc-container {
    width: 100%;
    max-width: var(--adc-maxw);
    margin: 0 auto;
    padding: 0 22px;
}
#adc .adc-section { padding: 46px 0; }

#adc .adc-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
#adc .adc-head h2 { font-size: clamp(28px, 4vw, 42px); }
#adc .adc-head p { font-size: 18px; }

/* ---- FAQ (carte unique + accordéon) ---- */
#adc .adc-faq { max-width: 860px; margin: 0 auto; background: #fff; border: 1px solid var(--adc-line);
                border-radius: 20px; box-shadow: var(--adc-shadow); padding: 6px 34px; }
#adc .adc-faq__item { border-bottom: 1px solid var(--adc-line); }
#adc .adc-faq__item:last-child { border-bottom: none; }
#adc .adc-faq__q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 22px 0; font-family: var(--adc-display); font-weight: 700; font-size: 16.5px; color: var(--adc-navy);
    display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color .2s ease;
}
#adc .adc-faq__q:focus {
    outline: none;
}
#adc .adc-faq__q-tx { min-width: 0; }
#adc .adc-faq__q:hover { color: var(--adc-blue); }
#adc .adc-faq__item.is-open .adc-faq__q { color: var(--adc-blue); }
#adc .adc-faq__chev { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
                      background: rgba(34,116,165,.08); color: var(--adc-blue);
                      transition: transform .3s ease, background .2s ease; }
#adc .adc-faq__chev svg { width: 17px; height: 17px; }
#adc .adc-faq__item.is-open .adc-faq__chev { transform: rotate(180deg); }
#adc .adc-faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
#adc .adc-faq__a p { padding: 0 0 22px; margin: 0; font-size: 15px; color: var(--adc-navy-soft);
                     line-height: 1.6; max-width: 94%; }

/* reassurance bar sous la FAQ */
#adc .adc-faq__note { max-width: 860px; margin: 26px auto 0; display: flex; align-items: center;
                      justify-content: space-between; gap: 14px 24px; flex-wrap: wrap; background: #fff;
                      border: 1px solid var(--adc-line); border-radius: 14px; padding: 16px 24px; box-shadow: var(--adc-shadow); }
#adc .adc-faq__note-tx { display: flex; align-items: center; gap: 12px; font-size: 14px;
                         color: var(--adc-navy); font-weight: 500; min-width: 0; }
#adc .adc-faq__note-ic { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
                         background: rgba(34,116,165,.10); color: var(--adc-blue); }
#adc .adc-faq__note-ic svg { width: 18px; height: 18px; }
#adc .adc-faq__note-tel { font-size: 13px; font-weight: 600; letter-spacing: .03em; color: var(--adc-navy-soft); white-space: nowrap; }
#adc .adc-faq__note-tel a { color: var(--adc-blue); font-weight: 700; text-decoration: underline; }

@media (max-width: 560px) {
    #adc .adc-faq { padding: 4px 18px; }
    #adc .adc-faq__q { font-size: 15px; padding: 18px 0; gap: 12px; }
    #adc .adc-faq__a p { max-width: 100%; }
    #adc .adc-faq__note { padding: 14px 16px; }
    #adc .adc-faq__note-tel { white-space: normal; }
}

/* ---- Scroll reveal ---- */
#adc .adc-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
#adc .adc-reveal.is-visible { opacity: 1; transform: none; }

/* ---- Visible keyboard focus ---- */
#adc a:focus-visible,
#adc button:focus-visible,
#adc [tabindex]:focus-visible {
    /*outline: 3px solid var(--adc-blue);
    outline-offset: 2px;
    border-radius: 8px;*/
    outline: none;
}

/* ---- Respect reduced-motion preference ---- */
@media (prefers-reduced-motion: reduce) {
    #adc .adc-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    #adc .adc-faq__a { animation: none !important; transition: none !important; }
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 640px) {
    #adc { font-size: 16px; }
    #adc .adc-section { padding: 20px 0 90px; }
}

/* =============================================================
   FLOATING ACTION BAR — switch Particulier/Pro + appel (tous écrans)
   + offre 99€ (mobile uniquement).
   Unscoped (vit hors de #adc) pour que position:fixed s'ancre au viewport.
   ============================================================= */
.adc-fab { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; pointer-events: none;
           display: flex; flex-direction: column; font-family: "Inter", system-ui, -apple-system, sans-serif;
           opacity: 0; visibility: hidden; transform: translateY(24px);
           transition: opacity .25s ease, transform .3s ease, visibility .25s ease; }
.adc-fab.is-visible { opacity: 1; visibility: visible; transform: none; }
.adc-fab__row { display: flex; align-items: center; justify-content: space-between; gap: 12px;
                padding: 0 12px 12px; pointer-events: none; }
.adc-fab__row > * { pointer-events: auto; }

/* Particulier / Professionnel switch */
.adc-fab__switch { display: inline-flex; gap: 4px; background: #fff; border-radius: 999px; padding: 5px;
                   box-shadow: 0 10px 26px rgba(8,26,68,.20); }
.adc-fab__seg { width: 54px; height: 38px; border: none; border-radius: 999px; padding: 0; cursor: pointer;
                background: transparent; -webkit-appearance: none; appearance: none;
                display: grid; place-items: center; color: #5b6780;
                transition: background .2s ease, color .2s ease; }
.adc-fab__seg:focus, .adc-fab__seg:focus-visible {outline: none; }
.adc-fab__seg svg { width: 21px; height: 21px; }
.adc-fab__seg.is-active { background: #15a35a; color: #fff; }
.adc-fab__seg:not(.is-active):hover { background: rgba(21,163,90,.12); color: #15a35a; }

/* Call button — with "echo" sonar pulse every 3s */
.adc-fab__call { position: relative; width: 58px; height: 58px; border-radius: 50%; background: #15a35a; color: #fff;
                 display: grid; place-items: center; box-shadow: 0 12px 28px rgba(21,163,90,.5);
                 transition: transform .15s ease, box-shadow .2s ease; }
.adc-fab__call:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(21,163,90,.6); color: #fff;}
.adc-fab__call svg { width: 25px; height: 25px; }
.adc-fab__call::before,
.adc-fab__call::after { content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
                        box-shadow: 0 0 0 0 rgba(21,163,90,.5);
                        animation: adc-fab-echo 3s ease-out infinite; }
.adc-fab__call::after { animation-delay: .4s; }
@keyframes adc-fab-echo {
    0%   { box-shadow: 0 0 0 0 rgba(21,163,90,.5); }
    45%  { box-shadow: 0 0 0 20px rgba(21,163,90,0); }
    100% { box-shadow: 0 0 0 20px rgba(21,163,90,0); }
}
@media (prefers-reduced-motion: reduce) {
    .adc-fab__call::before, .adc-fab__call::after { animation: none; box-shadow: none; }
}

/* Offer bar (mobile only) — white rounded card with side margins + visible border,
   the switch/call row floats transparent above it (page content visible behind) */
.adc-fab__offer { display: flex; align-items: center; justify-content: space-between; gap: 10px;
                  pointer-events: auto; background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
                  margin: 0 10px calc(10px + env(safe-area-inset-bottom, 0px));
                  padding: 11px 12px 11px 15px;
                  box-shadow: 0 14px 34px rgba(8,26,68,.16); }
.adc-fab__offer-label { display: block; font-family: "Outfit", "Inter", sans-serif; font-weight: 800;
                        font-size: 13px; line-height: 1.1; letter-spacing: .05em; color: #081a44; margin-bottom: 3px; line-height: 1; }
.adc-fab__offer-price { font-size: 12.5px; color: #5b6780; white-space: nowrap; line-height: 1; }
.adc-fab__offer-price b { color: #e40014; font-family: "Outfit", "Inter", sans-serif; font-weight: 800; font-size: 20px; }
.adc-fab__offer-price del { opacity: .7; }
.adc-fab__offer-tx { display: flex; flex-direction: column; flex: none; min-width: 127px; }
/* button wrapper — padded zone separated from the price by a vertical border */
.adc-fab__offer-cta { flex: 1 1 auto; min-width: 0; display: flex; align-items: center;
                      padding: 3px 0 3px 12px; border-left: 1px solid #e2e8f0; }
.adc-fab__offer-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; white-space: nowrap;
                      flex: 1 1 auto; min-width: 0; background: #15a35a; color: #fff; font-weight: 700; font-size: 14px;
                      line-height: 1.2; padding: 13px 12px; border-radius: 10px; box-shadow: 0 10px 22px -6px rgba(21,163,90,.55);
                      transition: transform .15s ease; }
.adc-fab__offer-btn:hover { transform: translateY(-2px); color: #fff;}
.adc-fab__offer-btn svg { width: 16px; height: 16px; flex: none; }

/* clearance so the fixed bar never hides page/footer content on mobile */
@media (max-width: 767px) { .adoucisseur-page { padding-bottom: 160px; } }

/* tablet + desktop : switch floats bottom-LEFT, call bottom-RIGHT, no offer bar */
@media (min-width: 768px) {
    .adc-fab__offer { display: none; }
    .adc-fab__row { justify-content: space-between; gap: 14px; padding: 0 24px 24px; }
}

/* narrow phones — tighten so the big button NEVER overflows its box */
@media (max-width: 400px) {
    .adc-fab__offer { gap: 8px; padding: 10px 10px 10px 13px; }
    .adc-fab__offer-label { font-size: 14px; line-height: 1; letter-spacing: .04em; }
    .adc-fab__offer-price { font-size: 12px; line-height: 1; display: flex; align-items: flex-end; justify-content: space-between;}
    .adc-fab__offer-price b { font-size: 20px; line-height: 1; }
    .adc-fab__offer-cta { padding: 2px 0 2px 10px; }
    .adc-fab__offer-btn { font-size: 13.5px; padding: 12px 8px; gap: 5px; }
    .adc-fab__offer-btn svg { width: 15px; height: 15px; }
}
/* very small phones — price stacks cleanly (99€ / au lieu de 130€), button text may wrap */
@media (max-width: 360px) {
    .adc-fab__offer-price { white-space: normal; line-height: 1.2; }
    .adc-fab__offer-price b { display: block; margin-bottom: 1px; }
    .adc-fab__offer-btn { white-space: normal; text-align: center; }
    .adc-fab__call { width: 52px; height: 52px; }
    .adc-fab__call svg { width: 23px; height: 23px; }
    .adc-fab__seg { width: 48px; height: 36px; }
}

/* ==========================================================================
   HERO — REPRISE  (valeur de votre ancien adoucisseur)
   Reference design: flat near-white bg, rounded (Nunito) type, seamless
   product photo on the right (no card), green CTA with calculator icon.
   ========================================================================== */
.ban__promo {
    display: none;
}
#adc .rp-hero {
    position: relative;
    /* one composed banner image (softeners + plant), width-driven, anchored right/bottom;
       flat color matches the image edges so the uncovered top blends seamlessly */
    overflow: hidden;
    padding-top: 68px;
    padding-bottom: 40px;
    background: #f4f5f8;
}
#adc .banner-bg {
    background: #f4f5f8 url(/assets/images/reprise/banner-full.jpg?v=2) right bottom / contain no-repeat;
}
#adc .rp-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    /* extra top padding clears the absolutely-positioned site header */
    padding: clamp(65px, 11vw, 132px) clamp(18px, 5vw, 48px) clamp(24px, 3.6vw, 48px);
    display: grid;
    /* text column ~44% — mirrors the empty left zone of the banner image */
    /*grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);*/
    align-items: center;
    gap: clamp(16px, 3vw, 44px);
}
#adc .rp-hero__text { min-width: 0; font-family: "Nunito", "Inter", sans-serif; }

#adc .rp-hero__eyebrow {
    display: inline-block;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #23a94f;
    margin-bottom: 13px;
}
#adc .rp-hero__title {
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    color: #21335b;
    font-size: clamp(2rem, 4.1vw, 3.05rem);
    line-height: 1.14;
    letter-spacing: -.005em;
    margin: 0 0 18px;
    max-width: 520px;
}
#adc .rp-hero__hl { color: #3d7bf7; }

#adc .rp-hero__lead {
    color: #414d61;
    font-size: clamp(1.02rem, 1.6vw, 1.19rem);
    font-weight: 500;
    line-height: 1.55;
    max-width: 440px;
    margin: 0 0 26px;
}
#adc .rp-hero__list {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#adc .rp-hero__li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: clamp(1rem, 1.5vw, 1.13rem);
    color: #21335b;
}
#adc .rp-hero__check {
    flex: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #23a94f;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#adc .rp-hero__check svg { width: 13px; height: 13px; }

#adc .rp-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #23a94f;
    color: #fff;
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    font-size: clamp(1.05rem, 1.7vw, 1.22rem);
    padding: 7px 40px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(35, 169, 79, .28);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
#adc .rp-hero__cta:hover {
    background: #1e9445;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 15px 34px rgba(35, 169, 79, .38);
}
#adc .rp-hero__cta-ic {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 9px;
    /*background: rgba(255, 255, 255, .2);*/
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#adc .rp-hero__cta-ic svg { width: 80%; height: 80%; }

#adc .rp-hero__note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 0;
    color: #556072;
    font-size: .92rem;
    font-weight: 600;
}
#adc .rp-hero__note svg { width: 15px; height: 15px; flex: none; color: #556072; }

/* banner visual as an element — mobile/tablet only (desktop paints it as the section bg) */
#adc .rp-hero__visual { display: none; }

/* ultra-wide: switch to height-driven sizing so the softeners stay full-size at the right */
@media (min-width: 1600px) {
    #adc .rp-hero { background-size: auto 100%; background-position: right center; }
}
@media (min-width: 1400px) {
    #adc .rp-hero__title, #adc .rp-hero__lead {
        max-width: unset;
    }
}

/* ---- tablet / mobile : flat bg, text centered, banner visual below ---- */
@media (max-width: 1199px) {
    #adc .rp-hero {
        padding-top: 50px;
    }
}
@media (max-width: 860px) {
    /* no banner image on mobile — flat color only */
    #adc .banner-bg { background: #f4f5f8; }
    #adc .rp-hero__inner {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
    }
    #adc .rp-hero__text {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #adc .rp-hero__lead { max-width: 560px; }
    #adc .rp-hero__list {
        align-items: flex-start;
        width: max-content;
        max-width: 100%;
    }
    #adc .rp-hero__li { text-align: left; }
    /* show the softeners cutout at natural proportions under the text */
    #adc .rp-hero__visual {
        display: block;
        order: 2;
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 440px;
        margin: 0 auto;
    }
}
@media (max-width: 575px) {
    #adc .rp-hero {
        padding-top: 0;
    }
}
@media (max-width: 480px) {
    #adc .rp-hero__title { font-size: clamp(1.72rem, 8.4vw, 2.2rem); }
    #adc .rp-hero__list { width: 100%; }
    #adc .rp-hero__cta { width: 100%; justify-content: center; padding: 8px 14px; }
    #adc .rp-hero__visual { max-height: 380px; }
}

/* ==========================================================================
   PREUVE SOCIALE — carte "Rejoignez les 8 242 familles" (sous le banner)
   ========================================================================== */
#adc .rp-proof {
    position: relative;
    bottom: 70px;
    padding: 10px 0 0;
}
#adc .rp-proof__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(18px, 5vw, 48px);
}
#adc .rp-proof__card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(20, 35, 60, .07);
    padding: 22px clamp(20px, 3.4vw, 42px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.6vw, 30px);
    font-family: "Nunito", "Inter", sans-serif;
}
#adc .rp-proof__ic {
    flex: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e8efff;
    color: #3d7bf7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#adc .rp-proof__ic svg { width: 60px; height: 60px; }

#adc .rp-proof__tx {
    margin: 0;
    font-weight: 700;
    font-size: clamp(1.02rem, 1.55vw, 1.2rem);
    line-height: 1.5;
    color: #01012d;
    max-width: 345px;
}
#adc .rp-proof__tx b { color: #3d7bf7; font-weight: 800; }

#adc .rp-proof__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}
#adc .rp-proof__avs {
    display: flex;
    align-items: center;
    gap: 10px;
}
#adc .rp-proof__avs img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 3px 10px rgba(20, 35, 60, .18);
}
#adc .rp-proof__more {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(20, 35, 60, .14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 17px;
    color: #21335b;
}
#adc .rp-proof__stars {
    display: flex;
    gap: 5px;
    color: #23a94f;
}
#adc .rp-proof__stars svg { width: 20px; height: 20px; }
#adc .rp-proof__note {
    margin: 0;
    font-size: .9rem;
    font-weight: 700;
    color: #3b456b;
}

@media (max-width: 860px) {
    #adc .rp-proof { padding-top: 0; }
    #adc .rp-proof__card {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        padding: 26px 20px;
    }
    #adc .rp-proof__ic { width: 64px; height: 64px; }
    #adc .rp-proof__ic svg { width: 34px; height: 34px; }
    #adc .rp-proof__tx { max-width: 420px; }
    #adc .rp-proof__right { margin-left: 0; }
}

/* ==========================================================================
   COMMENT ÇA FONCTIONNE — 4 étapes numérotées reliées en pointillés
   ========================================================================== */
#adc .rp-how {
    background: #fff;
    padding: 0 0 42px;
    font-family: "Nunito", "Inter", sans-serif;
}
#adc .rp-how__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(18px, 5vw, 48px);
}
#adc .rp-how__title {
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    color: #06063a;
    text-align: center;
    font-size: clamp(1.45rem, 2.6vw, 1.85rem);
    margin: 0 0 40px;
}
#adc .rp-how__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px 24px;
}
#adc .rp-how__step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
/* dotted green connector between number badges */
#adc .rp-how__step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 16px;
    left: calc(50% + 28px);
    right: calc(-50%);
    border-top: 2px dashed #4da838;
}
#adc .rp-how__num {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #33921e;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
#adc .rp-how__ic {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #eaf6e5;
    color: #33921e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#adc .rp-how__ic svg { width: 35px; height: 35px; }

#adc .rp-how__step-title {
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    color: #0b1338;
    font-size: 1.03rem;
    line-height: 1.4;
    letter-spacing: 0;
    margin: 18px 0 10px;
    /* narrow width forces the same 2-line wrap as the reference (no <br> — the theme hides them on mobile) */
    max-width: 175px;
}
#adc .rp-how__step-desc {
    margin: 0;
    color: #5c6584;
    font-weight: 500;
    font-size: .92rem;
    line-height: 1.55;
    max-width: 225px;
}

@media (max-width: 860px) {
    #adc .rp-how__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 20px; }
    /* connectors only within a row (1→2, 3→4) */
    #adc .rp-how__step:nth-child(2n)::before { display: none; }
}
@media (max-width: 560px) {
    #adc .rp-how { padding: 0 0 34px; }
    #adc .rp-how__grid { grid-template-columns: 1fr; gap: 30px; }
    #adc .rp-how__step::before { display: none !important; }
    #adc .rp-how__num { margin-bottom: 0; top: 20px; left: 25px; }
}

/* ==========================================================================
   MARQUES ESTIMÉES — titre, séparateur goutte, pastille verte, grille logos
   ========================================================================== */
#adc .rp-brands {
    background: #fff;
    padding: 46px 0 44px;
    font-family: "Nunito", "Inter", sans-serif;
}
#adc .rp-brands__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(18px, 5vw, 48px);
}
#adc .rp-brands__title {
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    color: #0b1338;
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.05rem);
    line-height: 1.25;
    margin: 0 auto 18px;
    max-width: 560px;
}
#adc .rp-brands__title span { color: #3d7bf7; }

/* — divider: two short lines + blue water drop — */
#adc .rp-brands__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #3d7bf7;
    margin: 0 0 20px;
}
#adc .rp-brands__divider i {
    width: 46px;
    height: 2px;
    border-radius: 2px;
    background: #c7d6f2;
}
#adc .rp-brands__divider svg { width: 20px; height: 20px; }

#adc .rp-brands__sub {
    text-align: center;
    color: #414d61;
    font-weight: 500;
    font-size: clamp(1rem, 1.5vw, 1.13rem);
    line-height: 1.55;
    max-width: 480px;
    margin: 0 auto 24px;
}
#adc .rp-brands__accept {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 800;
    font-size: clamp(1.05rem, 1.6vw, 1.18rem);
    color: #0b1338;
    margin: 0 0 30px;
}
#adc .rp-brands__check {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #23a94f;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#adc .rp-brands__check svg { width: 17px; height: 17px; }

/* — logo cards grid : 4 col desktop / 2 col mobile — */
#adc .rp-brands__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
#adc .rp-brands__card {
    background: #fbfcfe;
    border: 1px solid #e9edf4;
    border-radius: 14px;
    min-height: 118px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#adc .rp-brands__card img {
    max-width: 82%;
    max-height: 74px;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;   /* melts the white crop bg into the card tint */
}
/* — "Et d'autres" card — */
#adc .rp-brands__card--more {
    flex-direction: column;
    gap: 12px;
}
#adc .rp-brands__dots {
    display: inline-flex;
    gap: 8px;
}
#adc .rp-brands__dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #21335b;
}
#adc .rp-brands__more-tx {
    font-weight: 800;
    font-size: 1.08rem;
    color: #0b1338;
}

#adc .rp-brands__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin: 28px auto 0;
    max-width: 560px;
    color: #414d61;
    font-weight: 600;
    font-size: .97rem;
    line-height: 1.5;
}
#adc .rp-brands__note svg { flex: none; width: 30px; height: 30px; color: #3d7bf7; }

@media (max-width: 860px) {
    #adc .rp-brands__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    #adc .rp-brands__card { min-height: 108px; }
    #adc .rp-brands__note { justify-content: flex-start; text-align: left; max-width: 480px; }
}
@media (max-width: 480px) {
    #adc .rp-brands { padding: 38px 0 36px; }
    #adc .rp-brands__card { min-height: 96px; padding: 14px 14px; }
    #adc .rp-brands__card img { max-height: 62px; }
}

/* ==========================================================================
   GALERIE — "Tous ces adoucisseurs ont été estimés" (carrousel + grille)
   ========================================================================== */
#adc .rp-gal {
    background: #fff;
    padding: 46px 0 48px;
    font-family: "Nunito", "Inter", sans-serif;
}
#adc .rp-gal__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(18px, 5vw, 48px);
}
#adc .rp-gal__title {
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    color: #0b1338;
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.05rem);
    line-height: 1.25;
    margin: 0 auto 18px;
    max-width: 560px;
}
#adc .rp-gal__title span { color: #3d7bf7; }

#adc .rp-gal__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #3d7bf7;
    margin: 0 0 20px;
}
#adc .rp-gal__divider i {
    width: 46px;
    height: 2px;
    border-radius: 2px;
    background: #c7d6f2;
}
#adc .rp-gal__divider svg { width: 20px; height: 20px; }

#adc .rp-gal__sub {
    text-align: center;
    color: #414d61;
    font-weight: 500;
    font-size: clamp(1rem, 1.5vw, 1.13rem);
    line-height: 1.55;
    max-width: 520px;
    margin: 0 auto 30px;
}

/* — carousel — */
#adc .rp-gal__view {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}
#adc .rp-gal__track {
    display: flex;
    transition: transform .45s cubic-bezier(.5, .05, .2, 1);
}
#adc .rp-gal__slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 100%;
    margin: 0;
}
#adc .rp-gal__slide img {
    width: 100%;
    height: clamp(300px, 38vw, 470px);
    object-fit: cover;
    display: block;
}
#adc .rp-gal__label {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    background: #1c2f5e;
    color: #fff;
    font-weight: 800;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    padding: 9px 28px;
    border-radius: 10px;
    white-space: nowrap;
}
#adc .rp-gal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #1c2f5e;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(10, 22, 50, .22);
    transition: transform .15s ease, box-shadow .2s ease;
}
#adc .rp-gal__nav:hover { transform: translateY(-50%) scale(1.06); box-shadow: 0 12px 28px rgba(10, 22, 50, .3); }
#adc .rp-gal__nav svg { width: 20px; height: 20px; }
#adc .rp-gal__nav--prev { left: 16px; }
#adc .rp-gal__nav--next { right: 16px; }

#adc .rp-gal__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 16px;
}
#adc .rp-gal__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: #ccd7ea;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
#adc .rp-gal__dot.is-active { background: #3d7bf7; transform: scale(1.15); }

/* — grid of small cards — */
#adc .rp-gal__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}
#adc .rp-gal__card {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
#adc .rp-gal__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
#adc .rp-gal__card--more {
    background: #e9f0fc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 18px;
}
#adc .rp-gal__tag {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #dbe7fb;
    color: #3d7bf7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#adc .rp-gal__tag svg { width: 30px; height: 30px; }
#adc .rp-gal__more-tx {
    font-weight: 800;
    font-size: clamp(1rem, 1.5vw, 1.13rem);
    color: #0b1338;
    text-align: center;
    line-height: 1.35;
    max-width: 170px;
}

@media (max-width: 860px) {
    #adc .rp-gal__nav { width: 42px; height: 42px; }
    #adc .rp-gal__slide img { height: clamp(260px, 52vw, 420px); }
}
@media (max-width: 560px) {
    #adc .rp-gal { padding: 38px 0 40px; }
    #adc .rp-gal__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    #adc .rp-gal__slide img { height: 300px; }
    #adc .rp-gal__label { bottom: 16px; padding: 8px 22px; }
    #adc .rp-gal__nav--prev { left: 10px; }
    #adc .rp-gal__nav--next { right: 10px; }
    #adc .rp-gal__tag { width: 54px; height: 54px; }
    #adc .rp-gal__tag svg { width: 26px; height: 26px; }
}

/* ==========================================================================
   ESTIMATIONS RÉCENTES — lignes produit + valeur estimée + bandeau stats
   ========================================================================== */
#adc .rp-est {
    background: #fff;
    padding: 46px 0 44px;
    font-family: "Nunito", "Inter", sans-serif;
}
#adc .rp-est__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(18px, 5vw, 48px);
}
#adc .rp-est__title {
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    color: #0b1338;
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.05rem);
    line-height: 1.25;
    margin: 0 auto 18px;
    max-width: 560px;
}
#adc .rp-est__title span { color: #3d7bf7; }

#adc .rp-est__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #3d7bf7;
    margin: 0 0 20px;
}
#adc .rp-est__divider i {
    width: 46px;
    height: 2px;
    border-radius: 2px;
    background: #c7d6f2;
}
#adc .rp-est__divider svg { width: 20px; height: 20px; }

#adc .rp-est__sub {
    text-align: center;
    color: #414d61;
    font-weight: 500;
    font-size: clamp(1rem, 1.5vw, 1.13rem);
    line-height: 1.55;
    max-width: 520px;
    margin: 0 auto 30px;
}

/* — rows — */
#adc .rp-est__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
#adc .rp-est__row {
    display: grid;
    grid-template-columns: 150px minmax(0, 1.1fr) minmax(0, .9fr);
    align-items: center;
    gap: 12px clamp(18px, 3vw, 34px);
    background: #f8f9fb;
    border: 1px solid #eef1f6;
    border-radius: 16px;
    padding: 20px clamp(18px, 2.8vw, 32px);
}
#adc .rp-est__media img {
    max-height: 170px;
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    mix-blend-mode: multiply;   /* melts the white product-shot bg into the card tint */
}
#adc .rp-est__name {
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    color: #0b1338;
    font-size: clamp(1.15rem, 1.9vw, 1.35rem);
    line-height: 1.3;
    letter-spacing: 0;
    margin: 0 0 14px;
}
#adc .rp-est__name span { display: block; }
#adc .rp-est__meta {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 9px;
    color: #414d61;
    font-weight: 600;
    font-size: clamp(.95rem, 1.4vw, 1.05rem);
}
#adc .rp-est__meta:last-child { margin-bottom: 0; }
#adc .rp-est__meta svg { flex: none; width: 21px; height: 21px; color: #3d7bf7; }

#adc .rp-est__value {
    border-left: 1px solid #e3e8f0;
    padding-left: clamp(18px, 3vw, 40px);
}
#adc .rp-est__value-label {
    margin: 0 0 6px;
    color: #21335b;
    font-weight: 700;
    font-size: clamp(1rem, 1.5vw, 1.13rem);
}
#adc .rp-est__price {
    margin: 0 0 12px;
    color: #21a04a;
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3vw, 2.35rem);
    line-height: 1;
}
#adc .rp-est__city {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: #414d61;
    font-weight: 600;
    font-size: clamp(.95rem, 1.4vw, 1.05rem);
}
#adc .rp-est__city svg { flex: none; width: 19px; height: 19px; color: #3d7bf7; }

/* — stats band — */
#adc .rp-est__band {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 18px 28px;
    flex-wrap: wrap;
    background: #e9f5ec;
    border-radius: 14px;
    padding: 20px clamp(18px, 3vw, 32px);
    margin-top: 22px;
}
#adc .rp-est__band-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
#adc .rp-est__band-ic {
    flex: none;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #d5ecdb;
    color: #21a04a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#adc .rp-est__band-ic svg { width: 30px; height: 30px; }
#adc .rp-est__band-num {
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3vw, 2.3rem);
    color: #21a04a;
    line-height: 1;
}
#adc .rp-est__band-tx {
    color: #16324f;
    font-weight: 600;
    font-size: clamp(.95rem, 1.4vw, 1.05rem);
    line-height: 1.4;
    max-width: 200px;
}
#adc .rp-est__band-tx b { display: block; font-weight: 800; }
#adc .rp-est__band-shield {
    flex: none;
    color: #21a04a;
    display: inline-flex;
}
#adc .rp-est__band-shield svg { width: 40px; height: 40px; }
#adc .rp-est__band-sep {
    width: 1px;
    height: 44px;
    background: #cfe3d5;
}

#adc .rp-est__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 18px 0 0;
    color: #6b7486;
    font-style: italic;
    font-weight: 500;
    font-size: .95rem;
}
#adc .rp-est__secure svg { flex: none; width: 17px; height: 17px; color: #6b7486; }

@media (max-width: 820px) {
    #adc .rp-est__row { grid-template-columns: 120px minmax(0, 1fr); }
    #adc .rp-est__media img { max-height: 130px; }
    #adc .rp-est__value {
        grid-column: 1 / -1;
        border-left: none;
        border-top: 1px solid #e3e8f0;
        padding: 14px 0 0;
        margin-top: 2px;
    }
}
@media (max-width: 560px) {
    #adc .rp-est { padding: 0 0 36px; }
    #adc .rp-est__row { padding: 16px 16px; gap: 10px 16px; }
    #adc .rp-est__media img { max-height: 110px; }
    #adc .rp-est__band { flex-direction: column; align-items: flex-start; }
    #adc .rp-est__band-sep { width: 100%; height: 1px; }
    #adc .rp-est__secure { text-align: left; justify-content: flex-start; }
}

/* ==========================================================================
   VALIDATION PAR UN EXPERT — photo technicien + 3 garanties + bandeau
   ========================================================================== */
#adc .rp-valid {
    background: #fff;
    padding: 46px 0 48px;
    font-family: "Nunito", "Inter", sans-serif;
}
#adc .rp-valid__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(18px, 5vw, 48px);
}
#adc .rp-valid__title {
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    color: #0b1338;
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.05rem);
    line-height: 1.25;
    margin: 0 auto 18px;
    max-width: 560px;
}
#adc .rp-valid__title span { color: #3d7bf7; }

#adc .rp-valid__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #3d7bf7;
    margin: 0 0 20px;
}
#adc .rp-valid__divider i {
    width: 46px;
    height: 2px;
    border-radius: 2px;
    background: #c7d6f2;
}
#adc .rp-valid__divider svg { width: 20px; height: 20px; }

#adc .rp-valid__sub {
    text-align: center;
    color: #414d61;
    font-weight: 500;
    font-size: clamp(1rem, 1.5vw, 1.13rem);
    line-height: 1.55;
    max-width: 560px;
    margin: 0 auto 30px;
}
#adc .rp-valid__photo {
    margin: 0 0 26px;
}
#adc .rp-valid__photo img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}

/* — 3 garanties — */
#adc .rp-valid__card {
    background: #f6f8fb;
    border: 1px solid #edf0f6;
    border-radius: 16px;
    padding: 6px clamp(20px, 3vw, 34px);
}
#adc .rp-valid__row {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.6vw, 30px);
    padding: 24px 0;
}
#adc .rp-valid__row + .rp-valid__row { border-top: 1px solid #e6ebf4; }
#adc .rp-valid__ic {
    flex: none;
    width: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1a56d6;
}
#adc .rp-valid__ic svg { width: 46px; height: 46px; }
#adc .rp-valid__tx {
    border-left: 1px solid #e3e9f4;
    padding-left: clamp(18px, 2.6vw, 30px);
    min-width: 0;
}
#adc .rp-valid__row-title {
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    color: #0b1338;
    font-size: clamp(1.08rem, 1.7vw, 1.25rem);
    line-height: 1.3;
    letter-spacing: 0;
    margin: 0 0 8px;
}
#adc .rp-valid__row-desc {
    margin: 0;
    color: #414d61;
    font-weight: 500;
    font-size: clamp(.95rem, 1.4vw, 1.05rem);
    line-height: 1.55;
    max-width: 520px;
}

/* — bandeau confiance — */
#adc .rp-valid__band {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.6vw, 26px);
    background: #ecf3fd;
    border-radius: 14px;
    padding: 22px clamp(20px, 3vw, 34px);
    margin-top: 22px;
}
#adc .rp-valid__band-ic {
    flex: none;
    color: #1a56d6;
    display: inline-flex;
}
#adc .rp-valid__band-ic svg { width: 46px; height: 46px; }
#adc .rp-valid__band-tx {
    margin: 0;
    color: #16324f;
    font-weight: 600;
    font-size: clamp(.98rem, 1.5vw, 1.1rem);
    line-height: 1.5;
}
#adc .rp-valid__band-tx b {
    display: block;
    color: #0b1338;
    font-weight: 800;
    font-size: clamp(1.05rem, 1.7vw, 1.22rem);
    margin-bottom: 3px;
}

@media (max-width: 560px) {
    #adc .rp-valid { padding: 38px 0 40px; }
    #adc .rp-valid__photo img { border-radius: 14px; }
    #adc .rp-valid__row { gap: 14px; padding: 20px 0; }
    #adc .rp-valid__ic { width: 46px; }
    #adc .rp-valid__ic svg { width: 38px; height: 38px; }
    #adc .rp-valid__tx { border-left: none; padding-left: 0; }
    #adc .rp-valid__band { align-items: flex-start; }
    #adc .rp-valid__band-ic svg { width: 40px; height: 40px; }
}

/* ==========================================================================
   CONFIANCE — 4 piliers, bandeau note, avis clients, engagement, CTA final
   ========================================================================== */
#adc .rp-trust {
    background: #fff;
    padding: 46px 0 44px;
    font-family: "Nunito", "Inter", sans-serif;
}
#adc .rp-trust__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(18px, 5vw, 48px);
}
#adc .rp-trust__title {
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    color: #0b1338;
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.05rem);
    line-height: 1.25;
    margin: 0 auto 18px;
    max-width: 620px;
}
#adc .rp-trust__title span { color: #3d7bf7; display: block; }

#adc .rp-trust__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #3d7bf7;
    margin: 0 0 20px;
}
#adc .rp-trust__divider i {
    width: 46px;
    height: 2px;
    border-radius: 2px;
    background: #c7d6f2;
}
#adc .rp-trust__divider svg { width: 20px; height: 20px; }

#adc .rp-trust__sub {
    text-align: center;
    color: #414d61;
    font-weight: 500;
    font-size: clamp(1rem, 1.5vw, 1.13rem);
    line-height: 1.55;
    max-width: 560px;
    margin: 0 auto 34px;
}

/* — 4 piliers — */
#adc .rp-trust__cols {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 30px;
}
#adc .rp-trust__col {
    text-align: center;
    padding: 4px clamp(10px, 1.8vw, 24px);
}
#adc .rp-trust__col + .rp-trust__col { border-left: 1px solid #e6ebf4; }
#adc .rp-trust__col-ic {
    display: inline-flex;
    color: #1a56d6;
    margin-bottom: 14px;
}
#adc .rp-trust__col-ic svg { width: 46px; height: 46px; }
#adc .rp-trust__col-ic img { width: 48px; height: auto; mix-blend-mode: multiply; }
#adc .rp-trust__col-title {
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    color: #0b1338;
    font-size: clamp(1.05rem, 1.6vw, 1.18rem);
    letter-spacing: 0;
    margin: 0 0 8px;
}
#adc .rp-trust__col-desc {
    margin: 0;
    color: #414d61;
    font-weight: 500;
    font-size: clamp(.9rem, 1.35vw, 1rem);
    line-height: 1.5;
}

/* — bandeau note — */
#adc .rp-trust__stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 18px 28px;
    flex-wrap: wrap;
    background: #f4f7f3;
    border-radius: 16px;
    padding: 24px clamp(18px, 3vw, 34px);
    margin-bottom: 34px;
}
#adc .rp-trust__stat {
    display: flex;
    align-items: center;
    gap: 18px;
}
#adc .rp-trust__stat-ic {
    flex: none;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #dbf0d8;
    color: #1f8c1c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#adc .rp-trust__stat-ic svg { width: 34px; height: 34px; }
#adc .rp-trust__stat-stars {
    display: inline-flex;
    gap: 5px;
    color: #1f8c1c;
}
#adc .rp-trust__stat-stars svg { width: 32px; height: 32px; }
#adc .rp-trust__stat-tx b {
    display: block;
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    font-size: clamp(1.7rem, 2.6vw, 2.15rem);
    color: #1f8c1c;
    line-height: 1.1;
}
#adc .rp-trust__stat-tx span {
    display: block;
    color: #16324f;
    font-weight: 600;
    font-size: clamp(.95rem, 1.4vw, 1.05rem);
    line-height: 1.4;
    max-width: 220px;
}
#adc .rp-trust__stat-sep {
    width: 1px;
    height: 52px;
    background: #dbe2da;
}

/* — avis — */
#adc .rp-trust__reviews-title {
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    color: #0b1338;
    text-align: center;
    font-size: clamp(1.15rem, 1.9vw, 1.4rem);
    letter-spacing: 0;
    margin: 0 0 24px;
}
#adc .rp-trust__reviews-title span { color: #3d7bf7; }
#adc .rp-trust__reviews {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 26px;
}
#adc .rp-trust__review {
    margin: 0;
    background: #fff;
    border: 1px solid #e9edf4;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(20, 35, 60, .05);
    padding: 24px clamp(20px, 2.6vw, 30px);
}
#adc .rp-trust__quote {
    display: inline-flex;
    color: #1f8c1c;
    margin-bottom: 12px;
}
#adc .rp-trust__quote svg { width: 34px; height: 34px; }
#adc .rp-trust__review-tx {
    margin: 0 0 16px;
    color: #16324f;
    font-weight: 600;
    font-size: clamp(1rem, 1.55vw, 1.16rem);
    line-height: 1.55;
}
#adc .rp-trust__review-stars {
    display: flex;
    gap: 4px;
    color: #1f8c1c;
    margin-bottom: 14px;
}
#adc .rp-trust__review-stars svg { width: 21px; height: 21px; }
#adc .rp-trust__review-who b {
    display: block;
    color: #0b1338;
    font-weight: 800;
    font-size: 1.02rem;
}
#adc .rp-trust__review-who span {
    display: block;
    color: #6b7486;
    font-weight: 500;
    font-size: .95rem;
    margin-top: 2px;
}

/* — engagement recyclage — */
#adc .rp-trust__eco {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.4vw, 24px);
    background: #eef4fe;
    border-radius: 14px;
    padding: 20px clamp(18px, 3vw, 30px);
    margin-bottom: 24px;
}
#adc .rp-trust__eco-ic {
    flex: none;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #dde9fb;
    color: #1a56d6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#adc .rp-trust__eco-ic svg { width: 40px; height: 40px; }
#adc .rp-trust__eco-tx { min-width: 0; }
#adc .rp-trust__eco-tx b {
    display: block;
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    color: #1a56d6;
    font-size: clamp(1.08rem, 1.7vw, 1.25rem);
    margin-bottom: 5px;
}
#adc .rp-trust__eco-tx p {
    margin: 0;
    color: #16324f;
    font-weight: 600;
    font-size: clamp(.95rem, 1.45vw, 1.08rem);
    line-height: 1.5;
}
#adc .rp-trust__eco-recycle {
    flex: none;
    margin-left: auto;
    color: #1f8c1c;
    display: inline-flex;
}
#adc .rp-trust__eco-recycle svg { width: 58px; height: 58px; }

/* — CTA final — */
#adc .rp-trust__cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    background: #23a94f;
    color: #fff;
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    font-size: clamp(1.1rem, 1.9vw, 1.4rem);
    padding: 21px 56px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 14px 30px rgb(55 163 87 / 25%);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
#adc .rp-trust__cta:hover {
    background: #2da150;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(55, 162, 87, 0.25);
}
#adc .rp-trust__cta svg { flex: none; width: 27px; height: 27px; }
#adc .rp-trust__cta-arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}
#adc .rp-trust__cta-arrow { width: 22px !important; height: 22px !important; }

#adc .rp-trust__secure {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 9px;
    margin: 18px 0 0;
    color: #6b7486;
    font-style: italic;
    font-weight: 500;
    font-size: .95rem;
    line-height: 1.5;
    text-align: center;
}
#adc .rp-trust__secure svg { flex: none; width: 17px; height: 17px; color: #6b7486; margin-top: 2px; }
#adc .rp-trust__secure i { display: block; font-style: inherit; }

@media (max-width: 860px) {
    #adc .rp-trust__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 0; }
    #adc .rp-trust__col + .rp-trust__col { border-left: none; }
    #adc .rp-trust__col:nth-child(2n) { border-left: 1px solid #e6ebf4; }
}
@media (max-width: 700px) {
    #adc .rp-trust__reviews { grid-template-columns: 1fr; gap: 16px; }
    #adc .rp-trust__stats { flex-direction: column; align-items: flex-start; }
    #adc .rp-trust__stat-sep { width: 100%; height: 1px; }
}
@media (max-width: 560px) {
    #adc .rp-trust { padding: 38px 0 38px; }
    #adc .rp-trust__stat { gap: 13px; }
    #adc .rp-trust__stat-stars { gap: 3px; }
    #adc .rp-trust__stat-stars svg { width: 25px; height: 25px; }
    #adc .rp-trust__stat-ic { width: 56px; height: 56px; }
    #adc .rp-trust__stat-ic svg { width: 40px; height: 40px; }
    #adc .rp-trust__eco { flex-wrap: wrap; }
    #adc .rp-trust__eco-recycle { margin-left: 0; }
    #adc .rp-trust__cta { padding: 18px 46px 18px 18px; gap: 12px; }
    #adc .rp-trust__cta-arrow { right: 16px; }
    #adc .rp-trust__secure {text-align: left; font-size: 13px;}
}

/* ==========================================================================
   POURQUOI DE LA VALEUR — 4 raisons (réemploi / recyclage) + bandeau vert
   ========================================================================== */
#adc .rp-why {
    background: #fff;
    padding: 46px 0 44px;
    font-family: "Nunito", "Inter", sans-serif;
}
#adc .rp-why__wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(18px, 5vw, 48px);
}
#adc .rp-why__title {
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    color: #0b1338;
    text-align: center;
    font-size: clamp(1.5rem, 2.8vw, 1.95rem);
    line-height: 1.3;
    margin: 0 auto 18px;
    max-width: 560px;
}
#adc .rp-why__title span { color: #3d7bf7; }

#adc .rp-why__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #3d7bf7;
    margin: 0 0 26px;
}
#adc .rp-why__divider i {
    width: 46px;
    height: 2px;
    border-radius: 2px;
    background: #c7d6f2;
}
#adc .rp-why__divider svg { width: 20px; height: 20px; }

#adc .rp-why__card {
    background: #fff;
    border: 1px solid #e9edf4;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(20, 35, 60, .05);
    padding: 10px clamp(20px, 3vw, 32px);
}
#adc .rp-why__row {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.4vw, 24px);
    padding: 17px 0;
}
#adc .rp-why__ic {
    flex: none;
    width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#adc .rp-why__ic img { width: 46px; height: auto; mix-blend-mode: multiply; }
#adc .rp-why__ic svg { width: 38px; height: 38px; }
#adc .rp-why__ic--blue { color: #1a56d6; }
#adc .rp-why__ic--green { color: #22830c; }
#adc .rp-why__tx {
    margin: 0;
    color: #16324f;
    font-weight: 600;
    font-size: clamp(.98rem, 1.5vw, 1.1rem);
    line-height: 1.55;
}
#adc .rp-why__band {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #e9f4e3;
    border-radius: 14px;
    padding: 20px clamp(18px, 3vw, 28px);
    margin-top: 18px;
}
#adc .rp-why__band-ic {
    flex: none;
    color: #22830c;
    display: inline-flex;
}
#adc .rp-why__band-ic svg { width: 42px; height: 42px; }
#adc .rp-why__band-tx {
    margin: 0;
    color: #0b1338;
    font-weight: 800;
    font-size: clamp(1.02rem, 1.6vw, 1.15rem);
    line-height: 1.45;
}

@media (max-width: 560px) {
    #adc .rp-why { padding: 38px 0 36px; }
    #adc .rp-why__row { padding: 14px 0; }
    #adc .rp-why__ic img { width: 42px; }
}

/* ==========================================================================
   PRÊT À DÉCOUVRIR SA VALEUR — visuel + 4 garanties + CTA final
   ========================================================================== */
#adc .rp-ready {
    padding: 46px 0 44px;
    font-family: "Nunito", "Inter", sans-serif;
}
#adc .rp-ready__wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 clamp(18px, 5vw, 48px);
}
#adc .rp-ready__title {
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    color: #0b1338;
    text-align: center;
    font-size: clamp(1.5rem, 2.8vw, 1.95rem);
    line-height: 1.3;
    margin: 0 auto 12px;
}
#adc .rp-ready__title span { color: #3d7bf7; }
#adc .rp-ready__divider {
    display: flex;
    justify-content: center;
    color: #3d7bf7;
    margin: 0 0 10px;
}
#adc .rp-ready__divider svg { width: 20px; height: 20px; }

/* découpe transparente des deux appareils — proportions naturelles, sans recadrage */
#adc .rp-ready__visual {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 400px;
    display: block;
    margin: 0 auto 26px;
}
#adc .rp-ready__checks {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
}
#adc .rp-ready__check {
    display: flex;
    align-items: center;
    gap: 13px;
    font-weight: 800;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: #0b1338;
}
#adc .rp-ready__check-ic {
    flex: none;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #23a94f;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#adc .rp-ready__check-ic svg { width: 14px; height: 14px; }

#adc .rp-ready__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    background: #37a357;
    color: #fff;
    font-family: "Nunito", "Outfit", sans-serif;
    font-weight: 800;
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    line-height: 1.3;
    padding: 18px 22px 18px 28px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 14px 30px rgb(73 163 83 / 19%);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
#adc .rp-ready__cta:hover {
    background: #37aa44;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(63, 168, 74, 0.33);
}
#adc .rp-ready__cta-arrow {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    /*background: rgba(255, 255, 255, .16);*/
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#adc .rp-ready__cta-arrow svg { width: 22px; height: 22px; }

#adc .rp-ready__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 18px 0 0;
    color: #4a5265;
    font-weight: 600;
    font-size: .95rem;
    line-height: 1.5;
}
#adc .rp-ready__secure svg { flex: none; width: 17px; height: 17px; }

@media (max-width: 560px) {
    #adc .rp-ready { padding: 38px 0 36px; }
    #adc .rp-ready__checks { grid-template-columns: 1fr; gap: 14px; }
    #adc .rp-ready__visual { max-height: 330px; margin-bottom: 22px; }
    #adc .rp-ready__secure { justify-content: flex-start; text-align: left; }
}
