/* Startblok Rescue — production styles
   Dedicated landing page + scroll-triggered modal.
   DA: noir profond, blanc cassé, accent fluor #CFFF04, Orbitron + Inter. */

:root {
    --rescue-accent: #cfff04;
    --rescue-accent-soft: rgba(207, 255, 4, 0.12);
    --rescue-accent-line: rgba(207, 255, 4, 0.28);
    --rescue-bg: #050706;
    --rescue-bg-2: #090b09;
    --rescue-panel: #0d100e;
    --rescue-panel-2: #121512;
    --rescue-white: #ffffff;
    --rescue-muted: #a7aca5;
    --rescue-muted-2: #7f857e;
    --rescue-border: rgba(255, 255, 255, 0.10);
    --rescue-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
    --rescue-radius-xl: 30px;
    --rescue-radius-lg: 22px;
    --rescue-radius-md: 16px;
    --rescue-shell: 1200px;
}

.page-rescue {
    background:
        radial-gradient(circle at 12% 7%, rgba(207, 255, 4, 0.07), transparent 22rem),
        var(--rescue-bg);
    color: var(--rescue-white);
}

.page-rescue .blck-header {
    background: rgba(5, 7, 6, 0.82);
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.page-rescue .blck-footer {
    border-top-color: rgba(207, 255, 4, 0.16);
}

.page-rescue .blck-footer .footer-content {
    row-gap: 0.65rem;
}

.page-rescue .blck-footer a[href="/refonte-site-web"] {
    color: var(--rescue-accent);
}

.rescue-page,
.rescue-modal {
    font-family: "Inter", "Figtree", sans-serif;
}

.rescue-page h1,
.rescue-page h2,
.rescue-page h3,
.rescue-modal h2,
.rescue-modal h3 {
    font-family: "Orbitron", "Poppins", "Inter", sans-serif;
    letter-spacing: -0.035em;
}

.rescue-shell {
    width: min(calc(100% - 40px), var(--rescue-shell));
    margin-inline: auto;
}

.rescue-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 86px;
    min-height: 760px;
    background:
        linear-gradient(180deg, rgba(5, 7, 6, 0.24), var(--rescue-bg)),
        radial-gradient(circle at 75% 24%, rgba(207, 255, 4, 0.10), transparent 24rem);
    border-bottom: 1px solid rgba(207, 255, 4, 0.12);
}

.rescue-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
    gap: clamp(44px, 7vw, 88px);
    align-items: center;
}

.rescue-kicker,
.rescue-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--rescue-accent);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rescue-kicker {
    padding: 0.6rem 0.9rem;
    border: 1px solid var(--rescue-accent-line);
    border-radius: 999px;
    background: rgba(207, 255, 4, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.rescue-hero h1 {
    max-width: 760px;
    margin: 1.25rem 0 1.05rem;
    color: #fff;
    font-size: clamp(2.45rem, 5.15vw, 5rem);
    line-height: 0.98;
    text-wrap: balance;
}

.rescue-hero h1 span {
    color: var(--rescue-accent);
    text-shadow: 0 0 34px rgba(207, 255, 4, 0.14);
}

.rescue-hero__lead {
    max-width: 690px;
    margin: 0 0 1rem;
    color: #fff;
    font-size: clamp(1.1rem, 1.75vw, 1.4rem);
    line-height: 1.55;
}

.rescue-hero__text {
    max-width: 660px;
    margin: 0;
    color: var(--rescue-muted);
    font-size: 1.05rem;
    line-height: 1.78;
}

.rescue-hero__actions,
.rescue-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.rescue-btn {
    appearance: none;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font: inherit;
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.rescue-btn--primary {
    background: var(--rescue-accent);
    color: #090a09;
    border-color: var(--rescue-accent);
    box-shadow: 0 12px 34px rgba(207, 255, 4, 0.14);
}

.rescue-btn--ghost {
    background: rgba(255, 255, 255, 0.035);
    color: var(--rescue-white);
    border-color: rgba(255, 255, 255, 0.16);
}

.rescue-btn--block {
    width: 100%;
}

@media (hover: hover) and (pointer: fine) {
    .rescue-btn:hover {
        transform: translateY(-2px);
    }

    .rescue-btn--primary:hover {
        color: #090a09;
        background: #ddff4a;
        box-shadow: 0 16px 38px rgba(207, 255, 4, 0.22);
    }

    .rescue-btn--ghost:hover {
        color: #fff;
        border-color: var(--rescue-accent-line);
        background: rgba(207, 255, 4, 0.07);
    }
}

.rescue-btn:focus-visible,
.rescue-modal__close:focus-visible,
.rescue-faq-list summary:focus-visible,
.rescue-final__mail:focus-visible {
    outline: 3px solid rgba(207, 255, 4, 0.9);
    outline-offset: 4px;
}

.rescue-hero__micro {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.85rem;
    color: var(--rescue-muted-2);
    font-size: 0.78rem;
}

.rescue-hero__micro i {
    color: var(--rescue-accent);
}

.rescue-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 1.55rem 0 0;
    padding: 0;
    list-style: none;
}

.rescue-chip-list li {
    padding: 0.48rem 0.72rem;
    color: #c6cbc3;
    font-size: 0.78rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--rescue-border);
    border-radius: 999px;
}

.rescue-hero__visual {
    position: relative;
    display: grid;
    gap: 1rem;
}

.rescue-capacity-card,
.rescue-visual-card,
.rescue-problem-card,
.rescue-offer-card,
.rescue-scope-card,
.rescue-result-grid article,
.rescue-faq-list details {
    border: 1px solid var(--rescue-border);
    background: linear-gradient(145deg, rgba(18, 21, 18, 0.96), rgba(8, 10, 9, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.rescue-capacity-card {
    position: relative;
    z-index: 3;
    padding: 1.15rem 1.2rem;
    border-radius: var(--rescue-radius-md);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.30);
}

.rescue-capacity-card__top,
.rescue-capacity-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.rescue-capacity-card__top {
    color: var(--rescue-white);
    font-size: 0.86rem;
}

.rescue-capacity-card__top span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.rescue-capacity-card__top span i {
    color: var(--rescue-accent);
}

.rescue-capacity-card__top strong {
    color: #fff;
    font-size: 0.82rem;
}

.rescue-progress {
    position: relative;
    height: 10px;
    margin: 0.8rem 0 0.65rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.rescue-progress > span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--rescue-accent), #ecff91);
    box-shadow: 0 0 18px rgba(207, 255, 4, 0.34);
    transition: width 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.rescue-capacity-card__bottom {
    color: var(--rescue-muted-2);
    font-size: 0.72rem;
}

.rescue-capacity-card__bottom strong {
    color: var(--rescue-white);
}

.rescue-visual-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: var(--rescue-radius-xl);
    box-shadow: var(--rescue-shadow);
}

.rescue-visual-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.04) brightness(0.78);
}

.rescue-visual-card__badge {
    position: absolute;
    z-index: 2;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1rem;
    color: #fff;
    font-weight: 750;
    background: rgba(7, 9, 8, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    backdrop-filter: blur(12px);
}

.rescue-visual-card__badge i {
    color: var(--rescue-accent);
}

.rescue-section {
    position: relative;
    padding: clamp(76px, 9vw, 118px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.rescue-section--problems,
.rescue-section--scope,
.rescue-section--faq {
    background:
        radial-gradient(circle at 10% 50%, rgba(207, 255, 4, 0.045), transparent 24rem),
        #070907;
}

.rescue-section--offers,
.rescue-section--result {
    background: var(--rescue-bg);
}

.rescue-section--process {
    background: linear-gradient(180deg, #070907, #050706);
}

.rescue-heading {
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.rescue-heading--center {
    margin-inline: auto;
    text-align: center;
}

.rescue-heading h2,
.rescue-process-layout h2,
.rescue-final h2,
.rescue-faq-layout__intro h2 {
    margin: 0.72rem 0 0.9rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 1.08;
    text-wrap: balance;
}

.rescue-heading p,
.rescue-process-layout__content > p,
.rescue-faq-layout__intro > p,
.rescue-final p {
    color: var(--rescue-muted);
    font-size: 1rem;
    line-height: 1.78;
}

.rescue-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.rescue-problem-card {
    min-height: 205px;
    padding: 1.35rem;
    border-radius: var(--rescue-radius-lg);
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.rescue-problem-card > i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 1.2rem;
    color: #070807;
    background: var(--rescue-accent);
    border-radius: 14px;
    box-shadow: 0 0 0 6px rgba(207, 255, 4, 0.04);
}

.rescue-problem-card h3 {
    margin: 0 0 0.55rem;
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.rescue-problem-card p {
    margin: 0;
    color: var(--rescue-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

@media (hover: hover) and (pointer: fine) {
    .rescue-problem-card:hover {
        transform: translateY(-4px);
        border-color: var(--rescue-accent-line);
        background: linear-gradient(145deg, rgba(20, 24, 19, 0.98), rgba(8, 10, 9, 1));
    }
}

.rescue-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.rescue-offer-card {
    position: relative;
    padding: clamp(1.45rem, 3vw, 2.1rem);
    border-radius: var(--rescue-radius-xl);
    overflow: hidden;
}

.rescue-offer-card--featured {
    border-color: rgba(207, 255, 4, 0.38);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.36), 0 0 38px rgba(207, 255, 4, 0.04);
}

.rescue-offer-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.48rem 0.7rem;
    color: #0a0b09;
    background: var(--rescue-accent);
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.rescue-offer-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 1.1rem;
    color: var(--rescue-accent);
    font-size: 1.25rem;
    background: rgba(207, 255, 4, 0.08);
    border: 1px solid var(--rescue-accent-line);
    border-radius: 16px;
}

.rescue-offer-card__head > span {
    color: var(--rescue-muted-2);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rescue-offer-card h3 {
    margin: 0.35rem 0 0.65rem;
    color: #fff;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.rescue-price {
    margin: 0 0 1rem;
    color: var(--rescue-accent);
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 850;
    line-height: 1.1;
}

.rescue-price small {
    color: #e4e8df;
    font-size: 0.72rem;
    font-weight: 800;
}

.rescue-offer-card > p:not(.rescue-price) {
    min-height: 3.3rem;
    margin: 0 0 1.2rem;
    color: var(--rescue-muted);
    line-height: 1.68;
}

.rescue-offer-card ul,
.rescue-scope-card ul {
    display: grid;
    gap: 0.68rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rescue-offer-card li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 0.7rem;
    align-items: start;
    color: #d6dad3;
    font-size: 0.9rem;
    line-height: 1.55;
}

.rescue-offer-card li i {
    margin-top: 0.24rem;
    color: var(--rescue-accent);
}

.rescue-offer-card__note {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 0.7rem;
    margin: 1.35rem 0 1rem;
    padding: 0.95rem;
    color: #c1c6be;
    font-size: 0.78rem;
    line-height: 1.55;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--rescue-border);
    border-radius: 14px;
}

.rescue-offer-card__note i {
    margin-top: 0.15rem;
    color: var(--rescue-accent);
}

.rescue-process-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(42px, 7vw, 82px);
    align-items: center;
}

.rescue-process-layout__visual {
    position: relative;
    overflow: hidden;
    min-height: 510px;
    border: 1px solid var(--rescue-border);
    border-radius: var(--rescue-radius-xl);
    box-shadow: var(--rescue-shadow);
}

.rescue-process-layout__visual img {
    width: 100%;
    height: 100%;
    min-height: 510px;
    object-fit: cover;
    filter: saturate(0.75) brightness(0.68);
}

.rescue-process-layout__caption {
    position: absolute;
    z-index: 2;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1rem;
    color: #fff;
    font-weight: 760;
    background: rgba(5, 7, 6, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.rescue-process-layout__caption i {
    color: var(--rescue-accent);
}

.rescue-steps {
    display: grid;
    gap: 0;
    margin: 1.9rem 0 0;
    padding: 0;
    list-style: none;
    counter-reset: rescue-step;
}

.rescue-steps li {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    padding: 0 0 1.55rem;
}

.rescue-steps li > span {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #080908;
    background: var(--rescue-accent);
    border-radius: 14px;
    font-size: 0.74rem;
    font-weight: 900;
}

.rescue-steps h3 {
    margin: 0.05rem 0 0.35rem;
    color: #fff;
    font-size: 1rem;
}

.rescue-steps p {
    margin: 0;
    color: var(--rescue-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.rescue-scope-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1rem;
}

.rescue-scope-card {
    padding: clamp(1.35rem, 3vw, 2rem);
    border-radius: var(--rescue-radius-lg);
}

.rescue-scope-card h3 {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 1.2rem;
    color: #fff;
    font-size: 1.1rem;
}

.rescue-scope-card h3 i {
    color: var(--rescue-accent);
}

.rescue-scope-card li {
    position: relative;
    padding-left: 1.15rem;
    color: #c0c5bd;
    font-size: 0.9rem;
    line-height: 1.6;
}

.rescue-scope-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.66em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--rescue-accent);
}

.rescue-scope-card--extra li::before {
    background: #8f958d;
}

.rescue-scope-note {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    padding: 1.1rem 1.25rem;
    color: #d9ddd5;
    background: rgba(207, 255, 4, 0.045);
    border: 1px solid var(--rescue-accent-line);
    border-radius: var(--rescue-radius-md);
}

.rescue-scope-note > i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #080908;
    background: var(--rescue-accent);
    border-radius: 14px;
}

.rescue-scope-note strong,
.rescue-scope-note span {
    display: block;
}

.rescue-scope-note span {
    margin-top: 0.2rem;
    color: var(--rescue-muted);
    font-size: 0.86rem;
}

.rescue-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.rescue-result-grid article {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 0.85rem;
    row-gap: 0.15rem;
    align-items: center;
    padding: 1.2rem;
    border-radius: var(--rescue-radius-md);
}

.rescue-result-grid article > i {
    grid-row: 1 / 3;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--rescue-accent);
    background: rgba(207, 255, 4, 0.07);
    border: 1px solid var(--rescue-accent-line);
    border-radius: 13px;
}

.rescue-result-grid strong {
    color: #fff;
    font-size: 0.95rem;
}

.rescue-result-grid span {
    color: var(--rescue-muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.rescue-faq-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: clamp(36px, 7vw, 84px);
    align-items: start;
}

.rescue-faq-layout__intro {
    position: sticky;
    top: 120px;
}

.rescue-faq-layout__intro .rescue-btn {
    margin-top: 1.1rem;
}

.rescue-faq-list {
    display: grid;
    gap: 0.7rem;
}

.rescue-faq-list details {
    border-radius: 16px;
    overflow: hidden;
}

.rescue-faq-list summary {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    color: #f4f6f1;
    font-weight: 760;
    cursor: pointer;
    list-style: none;
}

.rescue-faq-list summary::-webkit-details-marker {
    display: none;
}

.rescue-faq-list summary i {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: #080908;
    background: var(--rescue-accent);
    border-radius: 8px;
    transition: transform 180ms ease;
}

.rescue-faq-list details[open] summary i {
    transform: rotate(45deg);
}

.rescue-faq-list details p {
    margin: 0;
    padding: 0 1.1rem 1.15rem;
    color: var(--rescue-muted);
    line-height: 1.7;
}

.rescue-final {
    padding: clamp(68px, 9vw, 100px) 0;
    background:
        radial-gradient(circle at 22% 40%, rgba(207, 255, 4, 0.12), transparent 26rem),
        #050706;
}

.rescue-final__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    padding: clamp(1.6rem, 4vw, 3.2rem);
    background: linear-gradient(145deg, rgba(18, 22, 18, 0.96), rgba(7, 9, 8, 0.98));
    border: 1px solid var(--rescue-accent-line);
    border-radius: var(--rescue-radius-xl);
    box-shadow: var(--rescue-shadow);
}

.rescue-final h2 {
    max-width: 760px;
    margin-bottom: 0.75rem;
}

.rescue-final__actions {
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    margin: 0;
}

.rescue-final__mail {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #c8cdc5;
    font-size: 0.86rem;
}

.rescue-final__mail:hover {
    color: var(--rescue-accent);
}

/* --------------------------------------------------------------------------
   Rescue modal
   -------------------------------------------------------------------------- */

.rescue-modal {
    position: fixed;
    inset: 0;
    z-index: 4200;
    display: none;
    place-items: center;
    padding: 24px;
}

.rescue-modal[aria-hidden="false"] {
    display: grid;
}

.rescue-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(12px) saturate(80%);
    animation: rescueFadeIn 180ms ease both;
}

.rescue-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(900px, 100%);
    max-height: min(760px, calc(100dvh - 48px));
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.92fr);
    color: var(--rescue-white);
    background:
        radial-gradient(circle at 85% 12%, rgba(207, 255, 4, 0.07), transparent 18rem),
        linear-gradient(145deg, #111511, #080a08 72%);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 28px;
    box-shadow: 0 38px 120px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(207, 255, 4, 0.035);
    animation: rescueModalIn 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.rescue-modal__close {
    position: absolute;
    z-index: 3;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: #e6e9e3;
    background: rgba(255, 255, 255, 0.055);
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.rescue-modal__close:hover {
    color: #080908;
    background: var(--rescue-accent);
    transform: rotate(5deg);
}

.rescue-modal__main,
.rescue-modal__side {
    min-width: 0;
    padding: 34px;
}

.rescue-modal__main {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.rescue-modal__side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.13);
}

.rescue-modal__kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.7rem;
    color: var(--rescue-accent);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    background: rgba(207, 255, 4, 0.055);
    border: 1px solid var(--rescue-accent-line);
    border-radius: 999px;
}

.rescue-modal h2 {
    margin: 1rem 0 0.72rem;
    color: #fff;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.03;
    text-wrap: balance;
}

.rescue-modal h2 span {
    color: var(--rescue-accent);
}

.rescue-modal__lead {
    margin: 0;
    color: #f0f2ed;
    font-size: 1.02rem;
    font-weight: 760;
    line-height: 1.48;
}

.rescue-modal__copy {
    margin: 0.7rem 0 0;
    color: var(--rescue-muted);
    font-size: 0.88rem;
    line-height: 1.62;
}

.rescue-modal__benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin: 1.1rem 0 0;
    padding: 0;
    list-style: none;
}

.rescue-modal__benefits li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 44px;
    padding: 0.65rem 0.75rem;
    color: #d5dad2;
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
}

.rescue-modal__benefits i {
    color: var(--rescue-accent);
}

.rescue-modal__offers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1rem;
}

.rescue-modal__offer {
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
}

.rescue-modal__offer span,
.rescue-modal__offer strong,
.rescue-modal__offer small {
    display: block;
}

.rescue-modal__offer span {
    color: #b9beb6;
    font-size: 0.7rem;
}

.rescue-modal__offer strong {
    margin-top: 0.18rem;
    color: #fff;
    font-size: 1.05rem;
}

.rescue-modal__offer strong em {
    color: var(--rescue-accent);
    font-style: normal;
}

.rescue-modal__offer small {
    margin-top: 0.3rem;
    color: var(--rescue-muted-2);
    font-size: 0.64rem;
    line-height: 1.35;
}

.rescue-modal__capacity {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--rescue-border);
    border-radius: 15px;
}

.rescue-modal__capacity-top,
.rescue-modal__capacity-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.rescue-modal__capacity-top {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 780;
}

.rescue-modal__capacity-top i {
    margin-right: 0.35rem;
    color: var(--rescue-accent);
}

.rescue-modal__capacity-bottom {
    color: var(--rescue-muted-2);
    font-size: 0.67rem;
}

.rescue-modal__capacity .rescue-progress {
    height: 8px;
    margin: 0.72rem 0 0.55rem;
}

.rescue-modal__promise {
    padding: 1rem;
    color: #e5e8e2;
    font-size: 0.84rem;
    line-height: 1.55;
    background: rgba(207, 255, 4, 0.04);
    border: 1px solid rgba(207, 255, 4, 0.16);
    border-radius: 15px;
}

.rescue-modal__promise strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #fff;
}

.rescue-modal__side .rescue-btn {
    width: 100%;
}

.rescue-modal__detail {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    color: #d4d9d1;
    font-size: 0.8rem;
    font-weight: 750;
}

.rescue-modal__detail:hover {
    color: var(--rescue-accent);
}

.rescue-modal__note {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin: 0;
    color: var(--rescue-muted-2);
    font-size: 0.67rem;
    line-height: 1.45;
}

.rescue-modal__note i {
    margin-top: 0.18rem;
    color: var(--rescue-accent);
    font-size: 0.56rem;
}

body.rescue-modal-open {
    overflow: hidden;
    touch-action: none;
}

@keyframes rescueFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes rescueModalIn {
    from { opacity: 0; transform: translateY(18px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1020px) {
    .rescue-hero__grid,
    .rescue-process-layout,
    .rescue-faq-layout,
    .rescue-final__inner {
        grid-template-columns: 1fr;
    }

    .rescue-hero__visual {
        max-width: 720px;
    }

    .rescue-process-layout__visual {
        min-height: 420px;
    }

    .rescue-process-layout__visual img {
        min-height: 420px;
    }

    .rescue-faq-layout__intro {
        position: static;
    }

    .rescue-final__actions {
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    .rescue-problem-grid,
    .rescue-result-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rescue-scope-grid {
        grid-template-columns: 1fr;
    }

    .rescue-modal {
        padding: 14px;
    }

    .rescue-modal__dialog {
        width: min(640px, 100%);
        max-height: calc(100dvh - 28px);
        grid-template-columns: 1fr;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .rescue-modal__main,
    .rescue-modal__side {
        padding: 26px;
    }

    .rescue-modal__main {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .rescue-modal__side {
        padding-top: 20px;
        gap: 0.8rem;
    }
}

@media (max-width: 620px) {
    .rescue-shell {
        width: min(calc(100% - 28px), var(--rescue-shell));
    }

    .rescue-hero {
        min-height: auto;
        padding: 118px 0 62px;
    }

    .rescue-hero h1 {
        font-size: clamp(2.25rem, 12.5vw, 3.55rem);
    }

    .rescue-hero__lead {
        font-size: 1.04rem;
    }

    .rescue-hero__text {
        font-size: 0.94rem;
        line-height: 1.68;
    }

    .rescue-hero__actions,
    .rescue-final__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rescue-btn {
        width: 100%;
    }

    .rescue-visual-card,
    .rescue-visual-card img {
        min-height: 340px;
    }

    .rescue-capacity-card__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }

    .rescue-capacity-card__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.2rem;
    }

    .rescue-problem-grid,
    .rescue-offer-grid,
    .rescue-result-grid {
        grid-template-columns: 1fr;
    }

    .rescue-problem-card {
        min-height: 0;
    }

    .rescue-offer-card--featured {
        padding-top: 4rem;
    }

    .rescue-section {
        padding: 68px 0;
    }

    .rescue-process-layout__visual,
    .rescue-process-layout__visual img {
        min-height: 340px;
    }

    .rescue-scope-note {
        grid-template-columns: 1fr;
    }

    .rescue-final__inner {
        width: min(calc(100% - 28px), var(--rescue-shell));
        padding: 1.35rem;
    }

    .rescue-modal {
        align-items: end;
        padding: 8px;
    }

    .rescue-modal__dialog {
        width: 100%;
        max-height: calc(100dvh - 16px);
        border-radius: 22px;
    }

    .rescue-modal__main,
    .rescue-modal__side {
        padding: 22px 18px;
    }

    .rescue-modal__main {
        padding-top: 26px;
    }

    .rescue-modal h2 {
        padding-right: 34px;
        font-size: clamp(1.65rem, 8vw, 2.15rem);
    }

    .rescue-modal__lead {
        font-size: 0.9rem;
    }

    .rescue-modal__copy {
        font-size: 0.79rem;
    }

    .rescue-modal__benefits,
    .rescue-modal__offers {
        grid-template-columns: 1fr;
    }

    .rescue-modal__benefits li:nth-child(n+4) {
        display: none;
    }

    .rescue-modal__offer small {
        display: none;
    }

    .rescue-modal__close {
        top: 10px;
        right: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rescue-btn,
    .rescue-problem-card,
    .rescue-progress > span,
    .rescue-modal__backdrop,
    .rescue-modal__dialog,
    .rescue-faq-list summary i,
    .rescue-modal__close {
        animation: none !important;
        transition: none !important;
    }
}

/* ========================================================================== 
   RESCUE V2 — surfaces claires premium dans la DA Startblok
   La page reste sombre ; les cartes deviennent des respirations blanches
   cohérentes, lisibles et homogènes (aucune alternance arbitraire).
   ========================================================================== */

:root {
    --rescue-surface-light: #f7f7f2;
    --rescue-surface-light-strong: #ffffff;
    --rescue-surface-light-soft: #eef1e9;
    --rescue-ink: #111411;
    --rescue-ink-soft: #626861;
    --rescue-light-border: rgba(17, 20, 17, 0.11);
    --rescue-light-shadow: 0 22px 64px rgba(0, 0, 0, 0.24);
    --rescue-light-shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.32), 0 0 34px rgba(207, 255, 4, 0.08);
}

/* Keep the overall Startblok canvas dark while making content surfaces breathe. */
.page-rescue {
    background:
        radial-gradient(circle at 12% 7%, rgba(207, 255, 4, 0.075), transparent 24rem),
        radial-gradient(circle at 84% 46%, rgba(207, 255, 4, 0.035), transparent 30rem),
        var(--rescue-bg);
}

.rescue-section--problems,
.rescue-section--scope,
.rescue-section--faq {
    background:
        radial-gradient(circle at 10% 50%, rgba(207, 255, 4, 0.045), transparent 24rem),
        #070907;
}

.rescue-section--offers,
.rescue-section--result {
    background:
        radial-gradient(circle at 82% 20%, rgba(207, 255, 4, 0.035), transparent 22rem),
        var(--rescue-bg);
}

.rescue-section--process {
    background:
        radial-gradient(circle at 84% 52%, rgba(207, 255, 4, 0.04), transparent 22rem),
        linear-gradient(180deg, #070907, #050706);
}

/* Hero: more contrast, more premium, without turning the entire section light. */
.rescue-hero {
    background:
        linear-gradient(180deg, rgba(5, 7, 6, 0.12), rgba(5, 7, 6, 0.96)),
        radial-gradient(circle at 76% 24%, rgba(207, 255, 4, 0.13), transparent 25rem);
}

.rescue-capacity-card {
    background: var(--rescue-surface-light);
    color: var(--rescue-ink);
    border-color: var(--rescue-light-border);
    box-shadow: var(--rescue-light-shadow);
}

.rescue-capacity-card__top,
.rescue-capacity-card__top strong,
.rescue-capacity-card__bottom strong {
    color: var(--rescue-ink);
}

.rescue-capacity-card__bottom {
    color: var(--rescue-ink-soft);
}

.rescue-capacity-card__top span i {
    color: #5e7400;
}

.rescue-progress {
    background: rgba(17, 20, 17, 0.10);
}

.rescue-chip-list li {
    color: var(--rescue-ink);
    background: var(--rescue-surface-light);
    border-color: var(--rescue-light-border);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.rescue-visual-card__badge {
    color: var(--rescue-ink);
    background: rgba(247, 247, 242, 0.94);
    border-color: rgba(17, 20, 17, 0.10);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
}

.rescue-visual-card__badge i {
    color: #627900;
}

/* Problems — every card is light, not one out of two. */
.rescue-problem-card {
    background: var(--rescue-surface-light);
    border-color: var(--rescue-light-border);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.rescue-problem-card h3 {
    color: var(--rescue-ink);
}

.rescue-problem-card p {
    color: var(--rescue-ink-soft);
}

.rescue-problem-card > i {
    color: #070807;
    background: var(--rescue-accent);
    box-shadow: 0 0 0 6px rgba(207, 255, 4, 0.12), 0 12px 28px rgba(112, 137, 0, 0.12);
}

@media (hover: hover) and (pointer: fine) {
    .rescue-problem-card:hover {
        transform: translateY(-6px);
        background: var(--rescue-surface-light-strong);
        border-color: rgba(207, 255, 4, 0.62);
        box-shadow: var(--rescue-light-shadow-hover);
    }
}

/* Offers — both plans are light surfaces. The featured plan is differentiated by
   the accent border/glow rather than a different background color. */
.rescue-offer-card--diagnostic {
    background: var(--rescue-surface-light);
    border-color: var(--rescue-light-border);
    box-shadow: var(--rescue-light-shadow);
}

.rescue-offer-card--featured {
    background: var(--rescue-surface-light);
    border-color: rgba(207, 255, 4, 0.88);
    box-shadow: 0 30px 82px rgba(0, 0, 0, 0.34), 0 0 48px rgba(207, 255, 4, 0.10);
}

.rescue-offer-card__badge {
    color: #0a0b09;
    background: var(--rescue-accent);
    box-shadow: 0 10px 28px rgba(133, 164, 0, 0.20);
}

.rescue-offer-card__icon {
    color: var(--rescue-accent);
    background: #111411;
    border-color: #111411;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.rescue-offer-card__head > span {
    color: #777e76;
}

.rescue-offer-card h3,
.rescue-offer-card li,
.rescue-offer-card > p:not(.rescue-price) {
    color: var(--rescue-ink);
}

.rescue-offer-card > p:not(.rescue-price) {
    color: var(--rescue-ink-soft);
}

.rescue-price {
    width: fit-content;
    color: var(--rescue-ink);
    box-shadow: inset 0 -0.32em 0 rgba(207, 255, 4, 0.72);
}

.rescue-price small {
    color: #444a44;
}

.rescue-offer-card li i {
    color: #637b00;
}

.rescue-offer-card__note {
    color: #4f574e;
    background: rgba(207, 255, 4, 0.12);
    border-color: rgba(98, 121, 0, 0.18);
}

.rescue-offer-card__note i {
    color: #607600;
}

/* Process — the photo remains dark, the three steps become real light cards. */
.rescue-steps {
    gap: 0.82rem;
}

.rescue-steps li {
    background: var(--rescue-surface-light);
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    padding: 1.05rem 1.1rem;
    border: 1px solid var(--rescue-light-border);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.rescue-steps li > span {
    color: #090b09;
    background: var(--rescue-accent);
    border-radius: 13px;
    box-shadow: 0 8px 22px rgba(115, 140, 0, 0.16);
}

.rescue-steps h3 {
    color: var(--rescue-ink);
}

.rescue-steps p {
    color: var(--rescue-ink-soft);
}

/* Scope — both cards use the same light family; no arbitrary dark/light split. */
.rescue-scope-card {
    background: var(--rescue-surface-light);
    border-color: var(--rescue-light-border);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
}

.rescue-scope-card--included {
    border-color: rgba(207, 255, 4, 0.70);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.20), 0 0 34px rgba(207, 255, 4, 0.06);
}

.rescue-scope-card h3 {
    color: var(--rescue-ink);
}

.rescue-scope-card h3 i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #0a0b09;
    background: var(--rescue-accent);
    border-radius: 10px;
}

.rescue-scope-card li {
    color: var(--rescue-ink-soft);
}

.rescue-scope-card li::before,
.rescue-scope-card--extra li::before {
    background: #708900;
}

.rescue-scope-note {
    color: #e7eae4;
    background: linear-gradient(135deg, rgba(207, 255, 4, 0.10), rgba(207, 255, 4, 0.03));
    border-color: rgba(207, 255, 4, 0.28);
}

/* Results — every result card is a light editorial tile. */
.rescue-result-grid article {
    background: var(--rescue-surface-light);
    border-color: var(--rescue-light-border);
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.16);
}

.rescue-result-grid article > i {
    color: var(--rescue-accent);
    background: #111411;
    border-color: #111411;
}

.rescue-result-grid strong {
    color: var(--rescue-ink);
}

.rescue-result-grid span {
    color: var(--rescue-ink-soft);
}

@media (hover: hover) and (pointer: fine) {
    .rescue-result-grid article:hover,
    .rescue-scope-card:hover,
    .rescue-steps li:hover {
        transform: translateY(-4px);
        border-color: rgba(207, 255, 4, 0.62);
        box-shadow: var(--rescue-light-shadow-hover);
    }

    .rescue-result-grid article,
    .rescue-scope-card,
    .rescue-steps li {
        transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }
}

/* FAQ — all accordions are white/off-white, never alternating. */
.rescue-faq-list details {
    background: var(--rescue-surface-light);
    border-color: var(--rescue-light-border);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
}

.rescue-faq-list details[open] {
    background: var(--rescue-surface-light-strong);
    border-color: rgba(207, 255, 4, 0.70);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.20), 0 0 24px rgba(207, 255, 4, 0.05);
}

.rescue-faq-list summary {
    color: var(--rescue-ink);
}

.rescue-faq-list details p {
    color: var(--rescue-ink-soft);
}

/* Final CTA — a large light card on the dark page, like a premium homepage module. */
.rescue-final__inner {
    background: var(--rescue-surface-light);
    border-color: rgba(207, 255, 4, 0.66);
    box-shadow: 0 34px 94px rgba(0, 0, 0, 0.38), 0 0 50px rgba(207, 255, 4, 0.08);
}

.rescue-final h2 {
    color: var(--rescue-ink);
}

.rescue-final p {
    color: var(--rescue-ink-soft);
}

.rescue-final .rescue-eyebrow {
    color: #587000;
}

.rescue-final__mail {
    color: #5b625b;
}

.rescue-final__mail:hover {
    color: #334100;
}

/* Small polish inspired by the homepage cards. */
.rescue-problem-card,
.rescue-offer-card,
.rescue-steps li,
.rescue-scope-card,
.rescue-result-grid article,
.rescue-faq-list details,
.rescue-final__inner {
    position: relative;
    isolation: isolate;
}

/* Mobile V2: preserve spacious white cards without oversized empty areas. */
@media (max-width: 820px) {
    .rescue-offer-grid {
        max-width: 680px;
    }

    .rescue-scope-grid {
        gap: 0.85rem;
    }
}

@media (max-width: 620px) {
    .rescue-problem-card,
    .rescue-offer-card,
    .rescue-scope-card,
    .rescue-result-grid article,
    .rescue-faq-list details {
        border-radius: 18px;
    }

    .rescue-problem-card {
        padding: 1.15rem;
    }

    .rescue-problem-card > i {
        margin-bottom: 0.95rem;
    }

    .rescue-offer-card {
        padding: 1.25rem;
    }

    .rescue-offer-card--featured {
        padding-top: 4.15rem;
    }

    .rescue-steps {
        margin-top: 1.35rem;
    }

    .rescue-steps li {
        grid-template-columns: 42px 1fr;
        padding: 0.95rem;
    }

    .rescue-steps li > span {
        width: 42px;
        height: 42px;
    }

    .rescue-faq-list summary {
        min-height: 62px;
        padding: 0.95rem;
    }

    .rescue-faq-list details p {
        padding: 0 0.95rem 1rem;
    }

    .rescue-final__inner {
        padding: 1.3rem;
        border-radius: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rescue-result-grid article,
    .rescue-scope-card,
    .rescue-steps li {
        transition: none !important;
    }
}

/* ========================================================================== 
   RESCUE V3 — hero éditorial + parcours pricing en 3 étapes
   Direction : plus proche de la homepage Startblok, surfaces franches,
   aucune lueur décorative via ::before / ::after sur les composants V3.
   ========================================================================== */

.rescue-hero {
    min-height: auto;
    padding: 132px 0 72px;
    overflow: visible;
    background: #050706;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.rescue-hero-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.25rem, 3vw, 2.35rem);
    background: #080a09;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 30px;
    box-shadow: 0 32px 86px rgba(0, 0, 0, 0.34);
}

.rescue-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: clamp(34px, 5vw, 70px);
    align-items: center;
}

.rescue-hero__content {
    padding: clamp(0.25rem, 1vw, 0.75rem);
}

.rescue-hero h1 {
    max-width: 650px;
    margin: 1.15rem 0 1rem;
    font-size: clamp(2.55rem, 4.75vw, 4.8rem);
    line-height: 0.98;
}

.rescue-hero h1 span {
    text-shadow: none;
}

.rescue-hero__lead {
    max-width: 610px;
    font-size: clamp(1.04rem, 1.45vw, 1.24rem);
    line-height: 1.55;
}

.rescue-hero__text {
    max-width: 610px;
    font-size: 0.98rem;
    line-height: 1.72;
}

.rescue-hero__actions {
    margin-top: 1.5rem;
}

.rescue-hero-proof {
    display: grid;
    gap: 0.7rem;
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
}

.rescue-hero-proof li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #b9bfb8;
    font-size: 0.82rem;
    line-height: 1.4;
}

.rescue-hero-proof i {
    color: var(--rescue-accent);
    font-size: 0.82rem;
}

.rescue-hero-proof strong {
    color: #f6f7f2;
    font-weight: 800;
}

.rescue-hero-stage {
    min-width: 0;
    display: grid;
    gap: 0.85rem;
    padding: 0.9rem;
    background: #0f1210;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    box-shadow: 0 26px 66px rgba(0, 0, 0, 0.30);
}

.rescue-hero-stage__head,
.rescue-hero-stage__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.rescue-hero-stage__head {
    min-height: 46px;
    padding: 0.2rem 0.25rem 0.1rem;
}

.rescue-hero-stage__head span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #dde1da;
    font-size: 0.78rem;
    font-weight: 760;
}

.rescue-hero-stage__head span i {
    color: var(--rescue-accent);
}

.rescue-hero-stage__head strong {
    color: #90968f;
    font-size: 0.72rem;
    font-weight: 700;
}

.rescue-hero-stage__media {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #050706;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.rescue-hero-stage__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.rescue-hero-stage__footer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.rescue-hero-stage__signal {
    min-width: 0;
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: 0.55rem;
    row-gap: 0.08rem;
    align-items: center;
    padding: 0.7rem;
    background: #0a0d0b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
}

.rescue-hero-stage__signal i {
    grid-row: 1 / 3;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: #090a09;
    background: var(--rescue-accent);
    border-radius: 9px;
}

.rescue-hero-stage__signal span,
.rescue-hero-stage__signal strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rescue-hero-stage__signal span {
    color: #858b84;
    font-size: 0.62rem;
}

.rescue-hero-stage__signal strong {
    color: #f1f3ee;
    font-size: 0.72rem;
}

.rescue-capacity-card--hero {
    padding: 0.85rem 0.9rem;
    background: #080a09;
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow: none;
}

.rescue-capacity-card--hero .rescue-capacity-card__top,
.rescue-capacity-card--hero .rescue-capacity-card__bottom {
    color: #9ca29b;
}

.rescue-capacity-card--hero .rescue-capacity-card__top strong,
.rescue-capacity-card--hero .rescue-capacity-card__bottom strong {
    color: #f4f6f1;
}

/* Parcours pricing inspiré d'une vraie séquence de décision : visuel à gauche,
   trois cartes éditoriales à droite. Toutes les cartes sont claires. */
.rescue-section--offers {
    padding-top: clamp(78px, 9vw, 118px);
    padding-bottom: clamp(82px, 9vw, 122px);
}

.rescue-heading--journey {
    max-width: 840px;
    margin-inline: auto;
    margin-bottom: clamp(2rem, 4vw, 3.4rem);
}

.rescue-journey {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: start;
}

.rescue-journey__visual {
    position: sticky;
    top: 116px;
    overflow: hidden;
    margin: 0;
    min-height: 610px;
    display: flex;
    flex-direction: column;
    background: #0c0f0d;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 26px;
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.26);
}

.rescue-journey__visual img {
    width: 100%;
    min-height: 420px;
    flex: 1 1 auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.rescue-journey__visual figcaption {
    display: grid;
    gap: 0.5rem;
    padding: 1.25rem 1.35rem 1.4rem;
    background: #0c0f0d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rescue-journey__visual figcaption strong {
    color: #fff;
    font-family: "Orbitron", "Poppins", "Inter", sans-serif;
    font-size: clamp(1.18rem, 1.8vw, 1.55rem);
    line-height: 1.15;
}

.rescue-journey__visual figcaption small {
    color: #a5aba3;
    font-size: 0.82rem;
    line-height: 1.55;
}

.rescue-journey__content {
    display: grid;
    gap: 0.9rem;
}

.rescue-journey-step {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 1.05rem;
    padding: clamp(1.15rem, 2.4vw, 1.65rem);
    border-radius: 22px;
}

.rescue-journey-step--light {
    background: var(--rescue-surface-light);
    color: var(--rescue-ink);
    border: 1px solid var(--rescue-light-border);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.rescue-journey-step__number {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    align-self: start;
    color: #090b09;
    background: var(--rescue-accent);
    border-radius: 14px;
    font-size: 0.78rem;
    font-weight: 900;
}

.rescue-journey-step__body {
    min-width: 0;
}

.rescue-journey-step__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.55rem;
}

.rescue-journey-step__meta > span {
    color: #667064;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.rescue-journey-step__meta > strong {
    flex: 0 0 auto;
    color: #111411;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.15;
    text-align: right;
}

.rescue-journey-step__meta > strong small {
    color: #596058;
    font-size: 0.62em;
}

.rescue-journey-step h3 {
    margin: 0;
    color: #101310;
    font-size: clamp(1.08rem, 1.7vw, 1.42rem);
    line-height: 1.22;
    letter-spacing: -0.028em;
}

.rescue-journey-step p {
    margin: 0.62rem 0 0;
    color: var(--rescue-ink-soft);
    font-size: 0.88rem;
    line-height: 1.64;
}

.rescue-journey-step__list {
    display: grid;
    gap: 0.42rem;
    margin: 0.9rem 0 0;
    padding: 0;
    list-style: none;
}

.rescue-journey-step__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: #3f463f;
    font-size: 0.78rem;
    line-height: 1.45;
}

.rescue-journey-step__list i {
    margin-top: 0.2rem;
    color: #647b00;
}

.rescue-journey-step__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.9rem;
}

.rescue-journey-step__tags span {
    padding: 0.48rem 0.68rem;
    color: #30362f;
    background: #eef2e7;
    border: 1px solid #dce3d4;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.rescue-journey-step__cta {
    width: fit-content;
    margin-top: 1rem;
}

.rescue-journey__note {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 0.85rem;
    align-items: center;
    padding: 1rem 1.1rem;
    color: #d9ded6;
    background: #0b0e0c;
    border: 1px solid rgba(207, 255, 4, 0.28);
    border-radius: 16px;
}

.rescue-journey__note > i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #090b09;
    background: var(--rescue-accent);
    border-radius: 10px;
}

.rescue-journey__note span {
    color: #aeb5ac;
    font-size: 0.78rem;
    line-height: 1.5;
}

.rescue-journey__note strong {
    color: #f3f5f0;
}

/* V3 abandonne aussi les cercles décoratifs de V2 sur les cards :
   les surfaces et la typographie font le travail. */
.rescue-problem-card,
.rescue-scope-card,
.rescue-result-grid article,
.rescue-faq-list details,
.rescue-final__inner {
    overflow: hidden;
}

@media (max-width: 980px) {
    .rescue-hero__grid {
        grid-template-columns: 1fr;
    }

    .rescue-hero__content {
        max-width: 760px;
    }

    .rescue-hero-stage {
        width: 100%;
    }

    .rescue-journey {
        grid-template-columns: 1fr;
    }

    .rescue-journey__visual {
        position: relative;
        top: auto;
        min-height: 0;
        display: grid;
        grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
    }

    .rescue-journey__visual img {
        min-height: 340px;
    }

    .rescue-journey__visual figcaption {
        align-content: center;
        border-top: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 720px) {
    .rescue-hero {
        padding: 104px 0 48px;
    }

    .rescue-shell {
        width: min(calc(100% - 28px), var(--rescue-shell));
    }

    .rescue-hero-panel {
        padding: 1rem;
        border-radius: 22px;
    }

    .rescue-hero__grid {
        gap: 1.7rem;
    }

    .rescue-hero h1 {
        font-size: clamp(2.25rem, 12vw, 3.35rem);
    }

    .rescue-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rescue-hero__actions .rescue-btn {
        width: 100%;
    }

    .rescue-hero-stage {
        padding: 0.7rem;
        border-radius: 18px;
    }

    .rescue-hero-stage__head {
        min-height: 38px;
    }

    .rescue-hero-stage__footer {
        grid-template-columns: 1fr;
    }

    .rescue-hero-stage__signal {
        grid-template-columns: 34px 1fr auto;
        row-gap: 0;
    }

    .rescue-hero-stage__signal i {
        grid-row: auto;
    }

    .rescue-hero-stage__signal span,
    .rescue-hero-stage__signal strong {
        white-space: normal;
    }

    .rescue-hero-stage__signal strong {
        text-align: right;
    }

    .rescue-capacity-card--hero .rescue-capacity-card__top,
    .rescue-capacity-card--hero .rescue-capacity-card__bottom {
        align-items: flex-start;
    }

    .rescue-heading--journey {
        text-align: left;
    }

    .rescue-journey {
        gap: 1rem;
    }

    .rescue-journey__visual {
        display: block;
        border-radius: 20px;
    }

    .rescue-journey__visual img {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .rescue-journey__visual figcaption {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .rescue-journey-step {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 0.8rem;
        padding: 1rem;
        border-radius: 18px;
    }

    .rescue-journey-step__number {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .rescue-journey-step__meta {
        display: grid;
        gap: 0.25rem;
    }

    .rescue-journey-step__meta > strong {
        text-align: left;
    }

    .rescue-journey-step__cta {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .rescue-hero-stage__head {
        display: grid;
        gap: 0.2rem;
    }

    .rescue-capacity-card--hero .rescue-capacity-card__top,
    .rescue-capacity-card--hero .rescue-capacity-card__bottom {
        display: grid;
        gap: 0.25rem;
    }

    .rescue-journey-step {
        grid-template-columns: 1fr;
    }

    .rescue-journey-step__number {
        width: 42px;
        height: 42px;
    }
}

/* ========================================================================== 
   RESCUE V4 — allègement visuel, hero plus éditorial,
   séquence 3 étapes plus hiérarchisée, final CTA avec visuel.
   ========================================================================== */

.rescue-hero {
    padding: 126px 0 72px;
}

.rescue-hero-panel {
    padding: clamp(1.1rem, 2.5vw, 2rem);
    border-radius: 32px;
    background:
        radial-gradient(circle at 88% 14%, rgba(207, 255, 4, 0.06), transparent 20rem),
        #070907;
}

.rescue-hero__grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    gap: clamp(28px, 4vw, 54px);
}

.rescue-hero__content {
    padding: clamp(0.1rem, 0.8vw, 0.55rem);
}

.rescue-hero h1 {
    max-width: 620px;
    margin: 0.95rem 0 1rem;
    font-size: clamp(2.4rem, 4.65vw, 4.45rem);
    line-height: 0.99;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.rescue-hero__lead {
    max-width: 590px;
    font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.rescue-hero__text {
    max-width: 590px;
    color: #aab1aa;
}

.rescue-hero-proof {
    gap: 0.62rem;
    margin-top: 1.2rem;
}

.rescue-hero-proof li {
    font-size: 0.8rem;
}

.rescue-hero-stage {
    position: relative;
    gap: 0.8rem;
    padding: 0.9rem;
    border-radius: 26px;
    background: #0b0e0c;
}

.rescue-hero-stage__head {
    min-height: 40px;
    padding: 0.15rem 0.2rem 0;
}

.rescue-hero-stage__head strong {
    color: #99a098;
}

.rescue-hero-stage__media {
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.rescue-hero-stage__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(180deg, rgba(8, 10, 9, 0), rgba(8, 10, 9, 0.16));
    pointer-events: none;
}

.rescue-hero-stage__floating {
    position: absolute;
    left: 1.35rem;
    bottom: 6.9rem;
    z-index: 2;
    width: min(350px, calc(100% - 2.7rem));
    display: grid;
    gap: 0.55rem;
    padding: 1rem 1.05rem;
    background: rgba(247, 247, 242, 0.96);
    border: 1px solid rgba(17, 20, 17, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
}

.rescue-hero-stage__floating .rescue-eyebrow {
    color: #6b8100;
}

.rescue-hero-stage__floating strong {
    color: #121512;
    font-size: 0.98rem;
    line-height: 1.28;
}

.rescue-hero-stage__floating ul {
    display: grid;
    gap: 0.42rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rescue-hero-stage__floating li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    color: #566057;
    font-size: 0.76rem;
    line-height: 1.45;
}

.rescue-hero-stage__floating li i {
    margin-top: 0.18rem;
    color: #6d8500;
}

.rescue-hero-stage__footer {
    display: flex;
    gap: 0.6rem;
}

.rescue-hero-stage__signal {
    flex: 1 1 0;
    grid-template-columns: 30px 1fr;
    padding: 0.7rem 0.78rem;
    border-radius: 14px;
}

.rescue-hero-stage__signal i {
    width: 30px;
    height: 30px;
    border-radius: 9px;
}

.rescue-capacity-card--hero {
    padding: 0.82rem 0.9rem;
    border-radius: 16px;
    background: #090b09;
}

.rescue-capacity-card--hero .rescue-progress {
    margin: 0.6rem 0 0.45rem;
}

.rescue-heading--journey {
    max-width: 760px;
}

.rescue-journey {
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
}

.rescue-journey__visual {
    min-height: 0;
    border-radius: 28px;
    overflow: hidden;
}

.rescue-journey__visual img {
    min-height: 540px;
    object-position: center;
}

.rescue-journey__visual figcaption {
    gap: 0.45rem;
    padding: 1.25rem 1.3rem 1.35rem;
}

.rescue-journey__content {
    position: relative;
    gap: 1rem;
    padding-left: 0.55rem;
}

.rescue-journey__content::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: linear-gradient(180deg, rgba(207, 255, 4, 0.4), rgba(207, 255, 4, 0.08));
}

.rescue-journey-step {
    position: relative;
    z-index: 1;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 1rem;
    padding: clamp(1.1rem, 2.2vw, 1.55rem);
    border-radius: 24px;
}

.rescue-journey-step--light {
    background: #f7f7f2;
    border: 1px solid rgba(17, 20, 17, 0.1);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.rescue-journey__content > article:nth-child(1) {
    border-color: rgba(207, 255, 4, 0.76);
    box-shadow: 0 28px 74px rgba(0, 0, 0, 0.22), 0 0 34px rgba(207, 255, 4, 0.06);
}

.rescue-journey__content > article:nth-child(2),
.rescue-journey__content > article:nth-child(3) {
    background: #f2f3ed;
}

.rescue-journey-step__number {
    box-shadow: 0 10px 28px rgba(112, 137, 0, 0.15);
}

.rescue-journey-step__meta {
    margin-bottom: 0.62rem;
}

.rescue-journey-step__meta > span {
    letter-spacing: 0.07em;
}

.rescue-journey-step h3 {
    max-width: 18ch;
    font-size: clamp(1.12rem, 1.8vw, 1.5rem);
}

.rescue-journey-step p {
    max-width: 62ch;
    font-size: 0.9rem;
}

.rescue-journey-step__list {
    gap: 0.45rem;
    margin-top: 0.95rem;
}

.rescue-journey-step__list li {
    font-size: 0.8rem;
}

.rescue-journey-step__tags {
    margin-top: 1rem;
}

.rescue-journey-step__cta {
    margin-top: 1.15rem;
}

.rescue-journey__note {
    margin-left: 54px;
    border-radius: 18px;
}

.rescue-final__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem 2rem;
    align-items: center;
}

.rescue-final__copy {
    max-width: 760px;
}

.rescue-final__copy p {
    max-width: 58ch;
}

.rescue-final__actions {
    align-items: flex-end;
    gap: 0.7rem;
}

.rescue-final__visual {
    grid-column: 1 / -1;
    position: relative;
    overflow: hidden;
    margin: 0;
    aspect-ratio: 16 / 5.1;
    border-radius: 24px;
    border: 1px solid rgba(17, 20, 17, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 20px 46px rgba(0, 0, 0, 0.14);
}

.rescue-final__visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 48%;
}

.rescue-final__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 12, 10, 0.08), rgba(10, 12, 10, 0.42));
}

.rescue-final__visual figcaption {
    position: absolute;
    left: 1.2rem;
    bottom: 1.1rem;
    z-index: 1;
    max-width: min(620px, calc(100% - 2.4rem));
    padding: 0.72rem 0.9rem;
    color: #f7f8f4;
    font-size: 0.82rem;
    line-height: 1.55;
    background: rgba(10, 12, 10, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

@media (max-width: 1100px) {
    .rescue-hero-stage__floating {
        width: min(310px, calc(100% - 2.4rem));
        bottom: 6.6rem;
    }
}

@media (max-width: 980px) {
    .rescue-hero__grid,
    .rescue-journey,
    .rescue-final__inner {
        grid-template-columns: 1fr;
    }

    .rescue-hero-stage__floating {
        left: 1rem;
        right: 1rem;
        bottom: 7.1rem;
        width: auto;
        max-width: 360px;
    }

    .rescue-journey__visual {
        position: relative;
        top: auto;
    }

    .rescue-journey__content {
        padding-left: 0;
    }

    .rescue-journey__content::before {
        display: none;
    }

    .rescue-journey__note {
        margin-left: 0;
    }

    .rescue-final__actions {
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .rescue-hero {
        padding: 104px 0 50px;
    }

    .rescue-hero-panel {
        border-radius: 22px;
    }

    .rescue-hero h1 {
        font-size: clamp(2.2rem, 11vw, 3.3rem);
    }

    .rescue-hero-stage {
        padding: 0.75rem;
        border-radius: 20px;
    }

    .rescue-hero-stage__floating {
        position: static;
        width: auto;
        max-width: none;
        margin-top: -0.15rem;
        box-shadow: none;
    }

    .rescue-hero-stage__footer {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rescue-journey__visual img {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .rescue-journey-step h3 {
        max-width: none;
    }

    .rescue-final__visual {
        aspect-ratio: 4 / 3;
        border-radius: 20px;
    }
}

@media (max-width: 540px) {
    .rescue-journey-step {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 0.8rem;
        padding: 0.95rem;
        border-radius: 18px;
    }

    .rescue-journey-step__number {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .rescue-final__visual figcaption {
        left: 0.8rem;
        right: 0.8rem;
        bottom: 0.8rem;
        max-width: none;
        font-size: 0.76rem;
    }
}

/* ========================================================================== 
   RESCUE V5 — hero minimal premium
   Une composition ouverte, un seul visuel fort, un seul micro-cartouche.
   ========================================================================== */

.rescue-hero--v5 {
    min-height: auto;
    padding: 136px 0 82px;
    overflow: hidden;
    background: #050706;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.rescue-hero--v5 .rescue-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: clamp(42px, 6vw, 88px);
    align-items: center;
}

.rescue-hero--v5 .rescue-hero__content {
    max-width: 620px;
    padding: 0;
}

.rescue-hero--v5 .rescue-kicker {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--rescue-accent);
    font-size: 0.7rem;
    letter-spacing: 0.09em;
}

.rescue-hero--v5 h1 {
    max-width: 650px;
    margin: 1.15rem 0 1rem;
    color: #ffffff;
    font-size: clamp(2.65rem, 4.35vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.rescue-hero--v5 .rescue-hero__lead {
    max-width: 580px;
    margin: 0;
    color: #adb3ac;
    font-size: clamp(1rem, 1.35vw, 1.12rem);
    font-weight: 500;
    line-height: 1.72;
}

.rescue-hero--v5 .rescue-hero__actions {
    margin-top: 1.65rem;
}

.rescue-hero--v5 .rescue-btn {
    min-height: 46px;
    padding-inline: 1.12rem;
}

.rescue-hero__capacity-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.7rem;
    margin-top: 1.25rem;
    color: #858c85;
    font-size: 0.74rem;
    line-height: 1.3;
}

.rescue-hero__capacity-line > strong {
    color: #dfe3dc;
    font-weight: 750;
}

.rescue-hero__capacity-line > span strong {
    color: #f6f8f3;
}

.rescue-hero__capacity-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--rescue-accent);
    box-shadow: 0 0 0 4px rgba(207, 255, 4, 0.08);
}

.rescue-progress--compact {
    width: 76px;
    height: 4px;
    margin: 0;
    background: rgba(255, 255, 255, 0.10);
}

.rescue-progress--compact > span {
    box-shadow: none;
}

.rescue-hero__visual-card {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 1.24 / 1;
    background: #0b0d0c;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 26px;
    box-shadow: 0 30px 78px rgba(0, 0, 0, 0.34);
}

.rescue-hero__visual-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.92) contrast(1.02) brightness(0.9);
}

.rescue-hero__micro-card {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 1;
    display: grid;
    gap: 0.18rem;
    max-width: calc(100% - 36px);
    padding: 0.72rem 0.86rem;
    color: #151815;
    background: #ffffff;
    border: 1px solid rgba(17, 20, 17, 0.08);
    border-radius: 13px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
}

.rescue-hero__micro-card span {
    color: #687067;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.rescue-hero__micro-card strong {
    color: #111411;
    font-size: 0.82rem;
    line-height: 1.35;
}

@media (max-width: 980px) {
    .rescue-hero--v5 .rescue-hero__layout {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .rescue-hero--v5 .rescue-hero__content {
        max-width: 720px;
    }

    .rescue-hero__visual-card {
        width: min(760px, 100%);
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 720px) {
    .rescue-hero--v5 {
        padding: 106px 0 58px;
    }

    .rescue-hero--v5 .rescue-hero__layout {
        gap: 1.75rem;
    }

    .rescue-hero--v5 h1 {
        margin-top: 0.95rem;
        font-size: clamp(2.2rem, 10.6vw, 3.25rem);
        line-height: 1.03;
    }

    .rescue-hero--v5 .rescue-hero__lead {
        font-size: 0.96rem;
        line-height: 1.68;
    }

    .rescue-hero--v5 .rescue-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 1.35rem;
    }

    .rescue-hero--v5 .rescue-hero__actions .rescue-btn {
        width: 100%;
    }

    .rescue-hero__capacity-line {
        gap: 0.45rem 0.6rem;
        margin-top: 1rem;
    }

    .rescue-progress--compact {
        width: 58px;
    }

    .rescue-hero__visual-card {
        aspect-ratio: 4 / 3;
        border-radius: 20px;
    }

    .rescue-hero__micro-card {
        left: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
        padding: 0.65rem 0.75rem;
    }
}

@media (max-width: 460px) {
    .rescue-hero__capacity-line {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .rescue-hero__capacity-line > span:nth-of-type(2) {
        grid-column: 2;
    }

    .rescue-progress--compact {
        grid-column: 2;
        width: 72px;
    }
}

/* Rescue page: disable the floating custom cursor for a calmer experience */
.page-rescue .blck-cursor {
    display: none !important;
}


/* ========================================================================== 
   RESCUE V20 — CTA final full-width avec image de fond immersive
   ========================================================================== */

.rescue-final.rescue-final--v7 {
    padding: 0;
    background: #050706;
}

.rescue-final-v7 {
    position: relative;
    width: 100%;
    min-height: clamp(500px, 48vw, 680px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background-color: #0a0c0a;
    background-image: url('/public/images/rescue/rescue-footer-v7.webp');
    background-size: cover;
    background-position: center 52%;
    background-repeat: no-repeat;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rescue-final-v7__shade {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(5, 7, 6, 0.90) 0%, rgba(5, 7, 6, 0.74) 38%, rgba(5, 7, 6, 0.34) 68%, rgba(5, 7, 6, 0.16) 100%);
    pointer-events: none;
}

.rescue-final-v7 > .rescue-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: clamp(2rem, 5vw, 4.5rem);
    padding-bottom: clamp(2rem, 5vw, 4.5rem);
}

.rescue-final-v7__panel {
    position: relative;
    width: min(620px, 100%);
    display: grid;
    gap: 0.95rem;
    padding: clamp(1.35rem, 2.6vw, 2rem);
    color: #fff;
    background: rgba(8, 10, 8, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 26px;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.rescue-final-v7__panel .rescue-eyebrow {
    color: var(--rescue-accent);
}

.rescue-final-v7__panel h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-size: clamp(1.9rem, 3.25vw, 3.1rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.rescue-final-v7__panel p {
    max-width: 56ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.96rem;
    line-height: 1.68;
}

.rescue-final-v7__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.2rem;
}

.rescue-final-v7__actions .rescue-btn {
    width: auto;
}

.rescue-final-v7__secondary {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0.95rem;
    color: #f0f2ed;
    font-size: 0.82rem;
    font-weight: 760;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.rescue-final-v7__secondary:hover,
.rescue-final-v7__secondary:focus-visible {
    color: var(--rescue-accent);
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(207, 255, 4, 0.35);
    transform: translateY(-1px);
}

.rescue-final-v7__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
    padding-top: 0.15rem;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.72rem;
    line-height: 1.5;
}

.rescue-final-v7__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.rescue-final-v7__meta strong,
.rescue-final-v7__meta i {
    color: var(--rescue-accent);
}

@media (max-width: 720px) {
    .rescue-final-v7 {
        min-height: 580px;
        align-items: flex-end;
        background-position: 58% center;
    }

    .rescue-final-v7__shade {
        background: linear-gradient(180deg, rgba(5, 7, 6, 0.18) 0%, rgba(5, 7, 6, 0.52) 42%, rgba(5, 7, 6, 0.94) 100%);
    }

    .rescue-final-v7 > .rescue-shell {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .rescue-final-v7__panel {
        width: 100%;
        padding: 1.2rem;
        border-radius: 20px;
    }

    .rescue-final-v7__panel h2 {
        max-width: 16ch;
        font-size: clamp(1.8rem, 9vw, 2.55rem);
    }

    .rescue-final-v7__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rescue-final-v7__actions .rescue-btn,
    .rescue-final-v7__secondary {
        width: 100%;
    }

    .rescue-final-v7__meta {
        display: grid;
        gap: 0.45rem;
    }
}

/* ========================================================================== 
   RESCUE V8 — Results cards premium with local photography
   ========================================================================== */

.rescue-result-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    margin-top: clamp(1.75rem, 3vw, 2.4rem);
}

.rescue-result-grid .rescue-result-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 0;
    row-gap: 0;
    align-items: stretch;
    padding: 0;
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.rescue-result-card__media {
    position: relative;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
    background: #111;
}

.rescue-result-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 7, 6, 0.04) 0%, rgba(5, 7, 6, 0.24) 100%);
    pointer-events: none;
}

.rescue-result-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 260ms ease;
}

.rescue-result-card__icon {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #10130f;
    font-size: 1rem;
    background: var(--rescue-accent);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}

.rescue-result-card__body {
    display: grid;
    align-content: start;
    gap: 0.55rem;
    padding: 1.15rem 1.2rem 1.3rem;
}

.rescue-result-card__body strong {
    display: block;
    margin: 0;
    color: #121411;
    font-size: 1.26rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.rescue-result-card__body span {
    display: block;
    margin: 0;
    color: #545b53;
    font-size: 0.98rem;
    line-height: 1.68;
}

@media (hover: hover) and (pointer: fine) {
    .rescue-result-grid .rescue-result-card:hover {
        transform: translateY(-4px);
        border-color: rgba(207, 255, 4, 0.26);
        box-shadow: 0 28px 56px rgba(0, 0, 0, 0.28);
    }

    .rescue-result-grid .rescue-result-card:hover .rescue-result-card__media img {
        transform: scale(1.03);
    }
}

@media (max-width: 1024px) {
    .rescue-result-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .rescue-result-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .rescue-result-grid .rescue-result-card {
        border-radius: 22px;
    }

    .rescue-result-card__body {
        padding: 1rem 1rem 1.15rem;
    }

    .rescue-result-card__body strong {
        font-size: 1.14rem;
    }

    .rescue-result-card__body span {
        font-size: 0.94rem;
        line-height: 1.58;
    }
}


/* ==========================================================================
   RESCUE V9 — Problem cards upgraded with coherent local imagery
   ========================================================================== */

.rescue-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    margin-top: clamp(1.75rem, 3vw, 2.4rem);
}

.rescue-problem-grid .rescue-problem-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    padding: 0;
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.rescue-problem-card__media {
    position: relative;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
    background: #111;
}

.rescue-problem-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 7, 6, 0.03) 0%, rgba(5, 7, 6, 0.24) 100%);
    pointer-events: none;
}

.rescue-problem-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 260ms ease;
}

.rescue-problem-card__icon {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #10130f;
    font-size: 1rem;
    background: var(--rescue-accent);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}

.rescue-problem-card__body {
    display: grid;
    align-content: start;
    gap: 0.55rem;
    padding: 1.15rem 1.2rem 1.3rem;
}

.rescue-problem-card__body h3 {
    margin: 0;
    color: #121411;
    font-size: 1.24rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.rescue-problem-card__body p {
    margin: 0;
    color: #545b53;
    font-size: 0.98rem;
    line-height: 1.68;
}

@media (hover: hover) and (pointer: fine) {
    .rescue-problem-grid .rescue-problem-card:hover {
        transform: translateY(-4px);
        border-color: rgba(207, 255, 4, 0.26);
        box-shadow: 0 28px 56px rgba(0, 0, 0, 0.28);
        background: #ffffff;
    }

    .rescue-problem-grid .rescue-problem-card:hover .rescue-problem-card__media img {
        transform: scale(1.03);
    }
}

@media (max-width: 1024px) {
    .rescue-problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .rescue-problem-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .rescue-problem-grid .rescue-problem-card {
        border-radius: 22px;
    }

    .rescue-problem-card__body {
        padding: 1rem 1rem 1.15rem;
    }

    .rescue-problem-card__body h3 {
        font-size: 1.14rem;
    }

    .rescue-problem-card__body p {
        font-size: 0.94rem;
        line-height: 1.58;
    }
}

/* ========================================================================== 
   RESCUE V11 — méthode simplifiée, premium, inspirée d'une timeline éditoriale
   ========================================================================== */

.rescue-section--offers {
    padding: clamp(4.5rem, 8vw, 7.2rem) 0;
}

.rescue-method-v11 {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3.5rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    background: #f7f7f2;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.rescue-method-v11__header {
    max-width: 760px;
    margin: 0 auto clamp(2.3rem, 5vw, 3.6rem);
    text-align: center;
}

.rescue-method-v11__header .rescue-eyebrow {
    color: #657b00;
}

.rescue-method-v11__header h2 {
    margin: 0.55rem 0 0.75rem;
    color: #111411;
    font-size: clamp(2rem, 4.1vw, 3.45rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.rescue-method-v11__header p {
    max-width: 620px;
    margin: 0 auto;
    color: #656c65;
    font-size: 1rem;
    line-height: 1.7;
}

.rescue-method-v11__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: stretch;
}

.rescue-method-v11__visual {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    margin: 0;
    border-radius: 26px;
    background: #111411;
    box-shadow: 0 22px 52px rgba(17, 20, 17, 0.16);
}

.rescue-method-v11__visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.rescue-method-v11__visual-card {
    position: absolute;
    left: 1.15rem;
    right: 1.15rem;
    bottom: 1.15rem;
    display: grid;
    gap: 0.38rem;
    padding: 1rem 1.05rem;
    color: #fff;
    background: rgba(11, 13, 11, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    backdrop-filter: blur(12px);
}

.rescue-method-v11__visual-kicker {
    color: var(--rescue-accent);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rescue-method-v11__visual-card strong {
    font-size: 1.35rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.rescue-method-v11__visual-card small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    line-height: 1.55;
}

.rescue-method-v11__steps {
    display: grid;
    align-content: center;
    gap: 0;
    border-left: 1px solid rgba(17, 20, 17, 0.12);
}

.rescue-method-v11__step {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.55rem 0 1.55rem 1.5rem;
    border-bottom: 1px solid rgba(17, 20, 17, 0.10);
}

.rescue-method-v11__step:last-of-type {
    border-bottom: 0;
}

.rescue-method-v11__step-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #121511;
    background: #eef0e9;
    border: 1px solid rgba(17, 20, 17, 0.08);
    border-radius: 15px;
    font-size: 1rem;
}

.rescue-method-v11__step.is-active .rescue-method-v11__step-icon {
    background: var(--rescue-accent);
    border-color: rgba(207, 255, 4, 0.8);
    box-shadow: 0 10px 24px rgba(112, 137, 0, 0.18);
}

.rescue-method-v11__step-content {
    min-width: 0;
}

.rescue-method-v11__step-topline {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.42rem;
}

.rescue-method-v11__step-topline > span {
    color: #697168;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rescue-method-v11__step-topline > strong {
    flex: 0 0 auto;
    color: #111411;
    font-size: 0.9rem;
    font-weight: 900;
}

.rescue-method-v11__step-topline small {
    font-size: 0.66em;
}

.rescue-method-v11__step h3 {
    margin: 0;
    color: #111411;
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.rescue-method-v11__step p {
    margin: 0.55rem 0 0;
    color: #626962;
    font-size: 0.91rem;
    line-height: 1.62;
}

.rescue-method-v11__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.8rem;
}

.rescue-method-v11__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.3rem 0.7rem;
    color: #424842;
    background: #eef0e9;
    border: 1px solid rgba(17, 20, 17, 0.08);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
}

.rescue-method-v11__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 0 0 1.5rem;
}

.rescue-method-v11__deduction {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    max-width: 360px;
    color: #5d645d;
    font-size: 0.78rem;
    line-height: 1.5;
}

.rescue-method-v11__deduction i {
    flex: 0 0 auto;
    margin-top: 0.08rem;
    color: #617600;
}

.rescue-method-v11__deduction strong {
    color: #222622;
}

@media (max-width: 980px) {
    .rescue-method-v11 {
        padding: 1.6rem;
        border-radius: 26px;
    }

    .rescue-method-v11__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rescue-method-v11__visual {
        min-height: 440px;
        aspect-ratio: 16 / 10;
    }

    .rescue-method-v11__steps {
        border-left: 0;
    }

    .rescue-method-v11__step {
        padding-left: 0;
    }

    .rescue-method-v11__footer {
        padding-left: 0;
    }
}

@media (max-width: 680px) {
    .rescue-section--offers {
        padding: 3.5rem 0;
    }

    .rescue-method-v11 {
        padding: 1.1rem;
        border-radius: 22px;
    }

    .rescue-method-v11__header {
        margin-bottom: 1.8rem;
    }

    .rescue-method-v11__header h2 {
        font-size: clamp(1.85rem, 9vw, 2.7rem);
    }

    .rescue-method-v11__visual {
        min-height: 0;
        aspect-ratio: 4 / 3;
        border-radius: 18px;
    }

    .rescue-method-v11__visual-card {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 0.85rem;
        border-radius: 14px;
    }

    .rescue-method-v11__step {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 0.8rem;
        padding: 1.2rem 0;
    }

    .rescue-method-v11__step-icon {
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }

    .rescue-method-v11__step-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.2rem;
    }

    .rescue-method-v11__step h3 {
        font-size: 1.06rem;
    }

    .rescue-method-v11__step p {
        font-size: 0.86rem;
    }

    .rescue-method-v11__footer {
        flex-direction: column;
        align-items: stretch;
        padding-top: 1rem;
    }

    .rescue-method-v11__deduction {
        max-width: none;
    }

    .rescue-method-v11__footer .rescue-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ========================================================================== 
   RESCUE V12 — hiérarchie affinée + surfaces blanches pures
   ========================================================================== */

:root {
    --rescue-surface-light: #fff;
    --rescue-surface-light-strong: #fff;
    --rescue-surface-light-soft: #fff;
    --rescue-light-border: rgba(17, 20, 17, 0.08);
    --rescue-light-shadow: 0 22px 54px rgba(10, 12, 10, 0.12);
    --rescue-light-shadow-hover: 0 28px 72px rgba(10, 12, 10, 0.16), 0 0 24px rgba(207, 255, 4, 0.08);
}

.rescue-problem-card,
.rescue-offer-card--diagnostic,
.rescue-offer-card--featured,
.rescue-steps li,
.rescue-scope-card,
.rescue-result-grid article,
.rescue-faq-list details,
.rescue-final__inner,
.rescue-capacity-card,
.rescue-chip-list li {
    background: #fff;
}

.rescue-visual-card__badge,
.rescue-offer-card__note,
.rescue-scope-note,
.rescue-method-v11,
.rescue-method-v11__step,
.rescue-method-v11__tags span {
    background: #fff;
}

.rescue-scope-note {
    color: var(--rescue-ink);
    border-color: rgba(207, 255, 4, 0.32);
    box-shadow: 0 14px 34px rgba(10, 12, 10, 0.10);
}

.rescue-scope-note strong,
.rescue-scope-note span,
.rescue-scope-note i,
.rescue-offer-card__note,
.rescue-offer-card__note i {
    color: var(--rescue-ink);
}

.rescue-method-v11 {
    border-color: rgba(17, 20, 17, 0.08);
    background: #fff;
    box-shadow: 0 30px 80px rgba(10, 12, 10, 0.16);
}

.rescue-method-v11__header {
    max-width: 680px;
    margin-bottom: clamp(1.9rem, 4vw, 3rem);
}

.rescue-method-v11__header h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4.3vw, 3.55rem);
}

.rescue-method-v11__header p {
    margin-top: 0.9rem;
    font-size: 1rem;
    line-height: 1.7;
}

.rescue-method-v11__grid {
    grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
    gap: clamp(1.6rem, 3vw, 3rem);
    align-items: start;
}

.rescue-method-v11__visual {
    min-height: 600px;
    border: 1px solid rgba(17, 20, 17, 0.10);
    box-shadow: 0 20px 46px rgba(17, 20, 17, 0.12);
}

.rescue-method-v11__steps {
    gap: 0.95rem;
    border-left: 0;
}

.rescue-method-v11__step {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.2rem 1.2rem;
    border: 1px solid rgba(17, 20, 17, 0.08);
    border-radius: 22px;
    box-shadow: 0 10px 26px rgba(10, 12, 10, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.rescue-method-v11__step:last-of-type {
    border-bottom: 1px solid rgba(17, 20, 17, 0.08);
}

.rescue-method-v11__step:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(10, 12, 10, 0.09);
}

.rescue-method-v11__step.is-active {
    border-color: rgba(207, 255, 4, 0.55);
    box-shadow: 0 18px 42px rgba(10, 12, 10, 0.10), 0 0 0 1px rgba(207, 255, 4, 0.18);
}

.rescue-method-v11__step-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border-color: rgba(17, 20, 17, 0.10);
    box-shadow: inset 0 0 0 1px rgba(17, 20, 17, 0.02);
}

.rescue-method-v11__step-topline {
    align-items: center;
    margin-bottom: 0.55rem;
}

.rescue-method-v11__step-topline > span {
    font-size: 0.73rem;
    letter-spacing: 0.08em;
}

.rescue-method-v11__step-topline > strong {
    font-size: 0.95rem;
}

.rescue-method-v11__step h3 {
    font-size: clamp(1.14rem, 1.65vw, 1.42rem);
    line-height: 1.14;
}

.rescue-method-v11__step p {
    margin-top: 0.55rem;
    font-size: 0.92rem;
    line-height: 1.65;
}

.rescue-method-v11__tags {
    margin-top: 0.95rem;
}

.rescue-method-v11__tags span {
    border-color: rgba(17, 20, 17, 0.08);
    color: #444b44;
}

.rescue-method-v11__footer {
    padding: 1.15rem 0 0;
    margin-top: 0.2rem;
    border-top: 1px solid rgba(17, 20, 17, 0.08);
}

.rescue-method-v11__deduction {
    max-width: 420px;
    color: #555d55;
    font-size: 0.8rem;
}

.rescue-method-v11__deduction strong {
    color: #1a1e1a;
}

@media (max-width: 980px) {
    .rescue-method-v11__step {
        padding: 1.05rem 1rem;
    }
}

@media (max-width: 680px) {
    .rescue-method-v11__header {
        margin-bottom: 1.5rem;
    }

    .rescue-method-v11__step {
        grid-template-columns: 46px minmax(0, 1fr);
        padding: 1rem;
        border-radius: 18px;
    }

    .rescue-method-v11__step-icon {
        width: 46px;
        height: 46px;
    }

    .rescue-method-v11__footer {
        padding-top: 1rem;
    }
}

/* ========================================================================== 
   RESCUE V14 — méthode premium structurée, prix lisibles, séparateurs, checks
   ========================================================================== */

.rescue-section--offers {
    padding: clamp(4rem, 7vw, 6.4rem) 0;
}

.rescue-method-v14 {
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(1.6rem, 3.4vw, 3rem);
    color: #fff;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 32px;
    box-shadow: 0 34px 82px rgba(0, 0, 0, 0.34);
}

.rescue-method-v14__header {
    max-width: 760px;
    margin: 0 auto clamp(2rem, 4vw, 3.1rem);
    text-align: center;
}

.rescue-method-v14__header h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4.1vw, 3.55rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.rescue-method-v14__header p {
    max-width: 650px;
    margin: 0.9rem auto 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(0.98rem, 1.25vw, 1.06rem);
    line-height: 1.68;
    text-wrap: balance;
}

.rescue-method-v14__grid {
    display: grid;
    grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: stretch;
}

.rescue-method-v14__visual {
    position: relative;
    overflow: hidden;
    min-height: 690px;
    margin: 0;
    background: #0d100e;
    border: 1px solid rgba(17, 20, 17, 0.10);
    border-radius: 28px;
    box-shadow: 0 22px 46px rgba(17, 20, 17, 0.14);
}

.rescue-method-v14__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 7, 6, 0.02) 42%, rgba(5, 7, 6, 0.28) 72%, rgba(5, 7, 6, 0.58) 100%);
    pointer-events: none;
}

.rescue-method-v14__visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.rescue-method-v14__visual-card {
    position: absolute;
    z-index: 1;
    left: 1.15rem;
    right: 1.15rem;
    bottom: 1.15rem;
    display: grid;
    gap: 0.36rem;
    padding: 1.05rem 1.1rem;
    color: #fff;
    background: rgba(9, 11, 9, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    backdrop-filter: blur(12px);
}

.rescue-method-v14__visual-card > span {
    color: var(--rescue-accent);
    font-size: 0.69rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rescue-method-v14__visual-card strong {
    color: #fff;
    font-size: clamp(1.25rem, 1.9vw, 1.55rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.rescue-method-v14__visual-card small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    line-height: 1.55;
}

.rescue-method-v14__steps {
    position: relative;
    display: grid;
    align-content: start;
    gap: 1rem;
}

.rescue-method-v14__steps::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.rescue-method-v14__step {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.rescue-method-v14__number {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.rescue-method-v14__step.is-active .rescue-method-v14__number {
    color: #111411;
    background: var(--rescue-accent);
    border-color: var(--rescue-accent);
    box-shadow: 0 10px 24px rgba(112, 137, 0, 0.24);
}

.rescue-method-v14__card {
    min-width: 0;
    padding: clamp(1.1rem, 2vw, 1.4rem);
    background: #fff;
    border: 1px solid #e4e7e2;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(17, 20, 17, 0.055);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rescue-method-v14__step.is-active .rescue-method-v14__card {
    border-color: rgba(207, 255, 4, 0.86);
    box-shadow: 0 16px 36px rgba(17, 20, 17, 0.07), 0 0 0 1px rgba(207, 255, 4, 0.08);
}

.rescue-method-v14__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.55rem;
}

.rescue-method-v14__label {
    color: #666d66;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rescue-method-v14__price {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: baseline;
    gap: 0.2rem;
    min-height: 36px;
    padding: 0.38rem 0.78rem;
    color: #111411;
    background: #fff;
    border: 1px solid rgba(207, 255, 4, 0.72);
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(112, 137, 0, 0.08);
}

.rescue-method-v14__price small {
    font-size: 0.66em;
    font-weight: 900;
    text-transform: uppercase;
}

.rescue-method-v14__price--included {
    border-color: #e1e5df;
    box-shadow: none;
}

.rescue-method-v14__card h3 {
    margin: 0;
    color: #111411;
    font-size: clamp(1.12rem, 1.55vw, 1.38rem);
    line-height: 1.16;
    letter-spacing: -0.032em;
    text-wrap: balance;
}

.rescue-method-v14__card > p {
    margin: 0.58rem 0 0;
    color: #626962;
    font-size: 0.91rem;
    line-height: 1.62;
}

.rescue-method-v14__divider {
    width: 100%;
    height: 1px;
    margin: 0.95rem 0;
    background: #e8ebe6;
}

.rescue-method-v14__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: end;
}

.rescue-method-v14__checklist {
    display: grid;
    gap: 0.42rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rescue-method-v14__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.52rem;
    color: #4f564f;
    font-size: 0.8rem;
    line-height: 1.45;
}

.rescue-method-v14__checklist i {
    flex: 0 0 auto;
    margin-top: 0.12rem;
    color: #718900;
    font-size: 0.83rem;
}

.rescue-method-v14__step-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.72rem 1rem;
    color: #fff;
    background: #111411;
    border: 1px solid #111411;
    border-radius: 999px;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.rescue-method-v14__step-cta:hover {
    transform: translateY(-1px);
    color: #111411;
    background: var(--rescue-accent);
    border-color: var(--rescue-accent);
}

.rescue-method-v14__step-cta:focus-visible,
.rescue-method-v14__footer .rescue-btn:focus-visible {
    outline: 3px solid rgba(207, 255, 4, 0.55);
    outline-offset: 3px;
}

.rescue-method-v14__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.48rem;
}

.rescue-method-v14__tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 34px;
    padding: 0.38rem 0.72rem;
    color: #424842;
    background: #fff;
    border: 1px solid #dfe4dd;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.rescue-method-v14__tags i {
    color: #718900;
    font-size: 0.8rem;
}

.rescue-method-v14__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: clamp(1.2rem, 2.5vw, 1.8rem);
    padding: 1rem 1rem 1rem 1.15rem;
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.rescue-method-v14__deduction {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.8rem;
    line-height: 1.45;
}

.rescue-method-v14__deduction i {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #111411;
    background: var(--rescue-accent);
    border-radius: 12px;
}

.rescue-method-v14__deduction strong {
    color: #fff;
}

.rescue-method-v14__footer .rescue-btn {
    flex: 0 0 auto;
    min-height: 46px;
}

@media (hover: hover) and (pointer: fine) {
    .rescue-method-v14__card:hover {
        transform: translateY(-2px);
        border-color: rgba(207, 255, 4, 0.42);
        box-shadow: 0 18px 40px rgba(17, 20, 17, 0.08);
    }
}

@media (max-width: 1080px) {
    .rescue-method-v14__grid {
        grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
        gap: 1.5rem;
    }

    .rescue-method-v14__bottom {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .rescue-method-v14__step-cta {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 900px) {
    .rescue-method-v14 {
        padding: 1.35rem;
        border-radius: 26px;
    }

    .rescue-method-v14__grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .rescue-method-v14__visual {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .rescue-method-v14__steps::before {
        display: none;
    }

    .rescue-method-v14__step {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 0.8rem;
    }

    .rescue-method-v14__number {
        width: 50px;
        height: 50px;
    }

    .rescue-method-v14__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .rescue-method-v14__footer .rescue-btn {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 760px) {
    .rescue-section--offers {
        padding: 3.2rem 0;
    }

    .rescue-method-v14 {
        padding: 1rem;
        border-radius: 22px;
    }

    .rescue-method-v14__header {
        margin-bottom: 1.45rem;
        padding: 0 0.2rem;
    }

    .rescue-method-v14__header h2 {
        font-size: clamp(1.85rem, 9vw, 2.65rem);
        line-height: 1.03;
    }

    .rescue-method-v14__header p {
        margin-top: 0.7rem;
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .rescue-method-v14__visual {
        aspect-ratio: 4 / 3;
        border-radius: 18px;
    }

    .rescue-method-v14__visual-card {
        left: 0.72rem;
        right: 0.72rem;
        bottom: 0.72rem;
        padding: 0.8rem 0.85rem;
        border-radius: 14px;
    }

    .rescue-method-v14__visual-card > span {
        font-size: 0.62rem;
    }

    .rescue-method-v14__visual-card strong {
        font-size: 1.12rem;
    }

    .rescue-method-v14__visual-card small {
        font-size: 0.73rem;
    }

    .rescue-method-v14__steps {
        gap: 0.85rem;
    }

    .rescue-method-v14__step {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .rescue-method-v14__number {
        width: 44px;
        height: 44px;
        font-size: 0.8rem;
    }

    .rescue-method-v14__card {
        padding: 1rem;
        border-radius: 18px;
    }

    .rescue-method-v14__topline {
        align-items: flex-start;
        gap: 0.75rem;
    }

    .rescue-method-v14__label {
        padding-top: 0.45rem;
        font-size: 0.66rem;
    }

    .rescue-method-v14__price {
        min-height: 32px;
        padding: 0.32rem 0.64rem;
        font-size: 0.85rem;
    }

    .rescue-method-v14__card h3 {
        font-size: 1.08rem;
    }

    .rescue-method-v14__card > p {
        font-size: 0.86rem;
        line-height: 1.55;
    }

    .rescue-method-v14__divider {
        margin: 0.82rem 0;
    }

    .rescue-method-v14__checklist li,
    .rescue-method-v14__tags span {
        font-size: 0.75rem;
    }

    .rescue-method-v14__footer {
        margin-top: 1rem;
        padding: 0.85rem;
        border-radius: 16px;
    }

    .rescue-method-v14__deduction {
        align-items: flex-start;
        font-size: 0.74rem;
    }

    .rescue-method-v14__deduction i {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .rescue-method-v14 {
        padding: 0.82rem;
        border-radius: 20px;
    }

    .rescue-method-v14__visual {
        aspect-ratio: 1 / 1;
    }

    .rescue-method-v14__topline {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .rescue-method-v14__price {
        justify-self: end;
    }

    .rescue-method-v14__tags {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rescue-method-v14__tags span {
        width: 100%;
    }

    .rescue-method-v14__step-cta,
    .rescue-method-v14__footer .rescue-btn {
        white-space: normal;
        text-align: left;
        line-height: 1.2;
    }
}

/* ========================================================================== 
   RESCUE V19 — rythme clair premium sans casser l'existant
   Alternance paper / cream, courbures de sections et contraste accessible.
   ========================================================================== */

:root {
    --rescue-v19-paper: #ffffff;
    --rescue-v19-soft: #faf8f2;
    --rescue-v19-cream: #f3efe5;
    --rescue-v19-cream-deep: #ece6d8;
    --rescue-v19-ink: #121412;
    --rescue-v19-muted: #555d55;
    --rescue-v19-line: rgba(18, 20, 18, 0.10);
    --rescue-v19-shadow: 0 22px 56px rgba(20, 20, 16, 0.08);
}

/* A dark canvas remains visible between the light editorial islands. */
.page-rescue {
    background: #080a08;
}

.rescue-section--problems,
.rescue-section--offers,
.rescue-section--scope,
.rescue-section--result,
.rescue-section--faq {
    margin: clamp(10px, 1.25vw, 18px) clamp(8px, 1.6vw, 22px) 0;
    border: 1px solid var(--rescue-v19-line);
    border-radius: clamp(24px, 3vw, 38px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.52) inset;
}

.rescue-section--problems {
    background: var(--rescue-v19-paper);
}

.rescue-section--offers {
    background: var(--rescue-v19-cream);
}

.rescue-section--scope {
    background: var(--rescue-v19-soft);
}

.rescue-section--result {
    background: var(--rescue-v19-cream);
}

.rescue-section--faq {
    background: var(--rescue-v19-paper);
}

/* Light section typography. Keep the method component itself dark. */
.rescue-section--problems .rescue-heading h2,
.rescue-section--scope .rescue-heading h2,
.rescue-section--result .rescue-heading h2,
.rescue-section--faq .rescue-faq-layout__intro h2 {
    color: #121412;
}

.rescue-section--problems .rescue-heading p,
.rescue-section--scope .rescue-heading p,
.rescue-section--faq .rescue-faq-layout__intro > p {
    color: #555d55;
}

.rescue-section--problems .rescue-eyebrow,
.rescue-section--scope .rescue-eyebrow,
.rescue-section--result .rescue-eyebrow,
.rescue-section--faq .rescue-eyebrow {
    color: #5a7000;
}

/* Softer hierarchy inside the light islands. */
.rescue-section--problems .rescue-problem-card,
.rescue-section--scope .rescue-scope-card,
.rescue-section--result .rescue-result-card,
.rescue-section--faq .rescue-faq-list details {
    border-color: var(--rescue-v19-line);
    box-shadow: var(--rescue-v19-shadow);
}

.rescue-section--problems .rescue-problem-card {
    background: var(--rescue-v19-soft);
    border-radius: 24px;
}

.rescue-section--scope .rescue-scope-card {
    background: var(--rescue-v19-paper);
    border-radius: 24px;
}

.rescue-section--scope .rescue-scope-note {
    color: var(--rescue-v19-ink);
    background: var(--rescue-v19-cream);
    border-color: rgba(18, 20, 18, 0.08);
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(20, 20, 16, 0.06);
}

.rescue-section--result .rescue-result-card {
    background: var(--rescue-v19-paper);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(20, 20, 16, 0.07);
}

.rescue-section--faq .rescue-faq-list details {
    background: var(--rescue-v19-soft);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(20, 20, 16, 0.055);
}

.rescue-section--faq .rescue-faq-list details[open] {
    background: var(--rescue-v19-paper);
    border-color: rgba(98, 121, 0, 0.34);
    box-shadow: 0 18px 36px rgba(20, 20, 16, 0.08);
}

.rescue-section--faq .rescue-btn--ghost {
    color: var(--rescue-v19-ink);
    background: transparent;
    border-color: rgba(18, 20, 18, 0.20);
}

@media (hover: hover) and (pointer: fine) {
    .rescue-section--faq .rescue-btn--ghost:hover {
        color: #0c0e0c;
        background: rgba(207, 255, 4, 0.18);
        border-color: rgba(98, 121, 0, 0.38);
    }

    .rescue-section--problems .rescue-problem-card:hover,
    .rescue-section--scope .rescue-scope-card:hover,
    .rescue-section--result .rescue-result-card:hover {
        border-color: rgba(98, 121, 0, 0.30);
        box-shadow: 0 24px 54px rgba(20, 20, 16, 0.10);
    }
}

/* The recently approved black method remains a deliberate contrast island. */
.rescue-section--offers .rescue-method-v14 {
    background: #000;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 32px 72px rgba(29, 26, 18, 0.24);
}

/* A softer transition out of the dark hero, without rebuilding it. */
.rescue-hero--v5 {
    border-radius: 0 0 clamp(26px, 3vw, 42px) clamp(26px, 3vw, 42px);
}

/* Keep the final CTA dark and edge-to-edge so the page ends with Startblok's signature contrast. */
.rescue-final--v7 {
    padding: 0;
}

@media (max-width: 760px) {
    .rescue-section--problems,
    .rescue-section--offers,
    .rescue-section--scope,
    .rescue-section--result,
    .rescue-section--faq {
        margin: 8px 6px 0;
        border-radius: 22px;
    }

    .rescue-section--problems .rescue-problem-card,
    .rescue-section--scope .rescue-scope-card,
    .rescue-section--result .rescue-result-card {
        border-radius: 20px;
    }

    .rescue-section--faq .rescue-faq-list details {
        border-radius: 16px;
    }
}


/* ========================================================================== 
   RESCUE V21 — CTA final liquid glass centré + navigation ancrée à la page
   ========================================================================== */

.page-rescue #pour-qui,
.page-rescue #methode,
.page-rescue #inclus,
.page-rescue #resultats,
.page-rescue #faq {
    scroll-margin-top: 96px;
}

.rescue-anchor-alias {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    pointer-events: none;
}

.page-rescue .blck-header__nav ul {
    gap: clamp(0.85rem, 1.7vw, 1.55rem);
}

.page-rescue .blck-header__nav a {
    white-space: nowrap;
}

.rescue-final-v7 > .rescue-shell {
    display: flex;
    justify-content: center;
}

.rescue-final-v7__panel {
    width: min(760px, 100%);
    margin-inline: auto;
    padding: clamp(1.5rem, 3.2vw, 2.4rem);
    text-align: center;
    background: rgba(7, 9, 7, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px) saturate(135%);
    -webkit-backdrop-filter: blur(24px) saturate(135%);
}

.rescue-final-v7__panel h2,
.rescue-final-v7__panel p {
    margin-inline: auto;
}

.rescue-final-v7__panel h2 {
    max-width: 15ch;
}

.rescue-final-v7__panel p {
    max-width: 58ch;
}

.rescue-final-v7__actions,
.rescue-final-v7__meta {
    justify-content: center;
}

.rescue-final-v7__meta {
    text-align: center;
}

@media (max-width: 980px) {
    .page-rescue .blck-header__nav ul {
        gap: 0.8rem;
    }

    .page-rescue .blck-header__nav a {
        font-size: 0.78rem;
    }
}

@media (max-width: 720px) {
    .rescue-final-v7 > .rescue-shell {
        display: block;
    }

    .rescue-final-v7__panel {
        width: 100%;
        padding: 1.25rem 1rem;
        border-radius: 22px;
        background: rgba(7, 9, 7, 0.56);
        backdrop-filter: blur(20px) saturate(125%);
        -webkit-backdrop-filter: blur(20px) saturate(125%);
    }

    .rescue-final-v7__actions .rescue-btn,
    .rescue-final-v7__secondary {
        justify-content: center;
        text-align: center;
    }

    .rescue-final-v7__meta {
        justify-items: center;
        text-align: center;
    }

    .rescue-final-v7__meta span {
        justify-content: center;
    }
}


/* ========================================================================== 
   RESCUE V23 — polish premium: hero renforcé, scope éditorial, FAQ rassurante,
   CTA final liquid glass plus compact. Aucun changement d'architecture.
   ========================================================================== */

@media (min-width: 981px) {
    .rescue-hero--v23 .rescue-shell {
        max-width: 1280px;
    }

    .rescue-hero--v23 .rescue-hero__layout {
        grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
        gap: clamp(36px, 4.5vw, 68px);
    }

    .rescue-hero--v23 .rescue-hero__content {
        max-width: 670px;
    }

    .rescue-hero--v23 h1 {
        max-width: 690px;
        font-size: clamp(2.85rem, 4.65vw, 4.35rem);
    }

    .rescue-hero--v23 .rescue-hero__lead {
        max-width: 610px;
        font-size: clamp(1.03rem, 1.43vw, 1.18rem);
    }

    .rescue-hero--v23 .rescue-hero__visual-card {
        border-radius: 28px;
        box-shadow: 0 34px 88px rgba(0, 0, 0, 0.38);
    }
}

.rescue-scope--v23 .rescue-scope-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 2vw, 1.35rem);
}

.rescue-scope--v23 .rescue-scope-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.2rem, 2.5vw, 1.7rem);
    border-radius: 26px;
    box-shadow: 0 20px 46px rgba(20, 20, 16, 0.075);
}

.rescue-scope--v23 .rescue-scope-card--included {
    border-color: rgba(143, 174, 0, 0.28);
}

.rescue-scope--v23 .rescue-scope-card__header {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: start;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(18, 20, 18, 0.10);
}

.rescue-scope--v23 .rescue-scope-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #101310;
    background: var(--rescue-accent);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(112, 137, 0, 0.14);
}

.rescue-scope--v23 .rescue-scope-card--extra .rescue-scope-card__icon {
    color: #fff;
    background: #171a17;
    box-shadow: none;
}

.rescue-scope--v23 .rescue-scope-card__header h3 {
    margin: 0;
    color: #121412;
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    line-height: 1.2;
}

.rescue-scope--v23 .rescue-scope-card__header p {
    margin: 0.3rem 0 0;
    color: #687068;
    font-size: 0.78rem;
    line-height: 1.5;
}

.rescue-scope--v23 .rescue-scope-card__status {
    align-self: start;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.36rem 0.68rem;
    color: #3b4600;
    background: rgba(207, 255, 4, 0.18);
    border: 1px solid rgba(143, 174, 0, 0.28);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 850;
    white-space: nowrap;
}

.rescue-scope--v23 .rescue-scope-card--extra .rescue-scope-card__status {
    color: #3f453f;
    background: #f2f3ef;
    border-color: rgba(18, 20, 18, 0.10);
}

.rescue-scope--v23 .rescue-scope-card ul {
    display: grid;
    gap: 0.42rem;
    margin: 0;
}

.rescue-scope--v23 .rescue-scope-card li {
    color: #4e554e;
    font-size: 0.84rem;
    line-height: 1.5;
}

.rescue-scope--v23 .rescue-scope-note {
    margin-top: 1.2rem;
    padding: 0.95rem 1.1rem;
    background: #f1ecdf;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(20, 20, 16, 0.055);
}

.rescue-faq-signal {
    display: grid;
    gap: 0.14rem;
    width: min(100%, 330px);
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    color: #121412;
    background: #f5f1e7;
    border: 1px solid rgba(18, 20, 18, 0.09);
    border-left: 4px solid var(--rescue-accent);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(20, 20, 16, 0.055);
}

.rescue-faq-signal strong {
    font-size: 0.88rem;
    line-height: 1.25;
}

.rescue-faq-signal span {
    color: #616861;
    font-size: 0.76rem;
    line-height: 1.45;
}

.rescue-final--v23 .rescue-final-v7__panel {
    width: min(650px, 100%);
    gap: 0.72rem;
    padding: clamp(1.25rem, 2.5vw, 1.8rem);
    background: rgba(5, 7, 6, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 28px;
    box-shadow:
        0 30px 78px rgba(0, 0, 0, 0.46),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
}

.rescue-final--v23 .rescue-final-v7__panel h2 {
    max-width: 14ch;
    font-size: clamp(1.85rem, 2.8vw, 2.75rem);
}

.rescue-final--v23 .rescue-final-v7__panel p {
    max-width: 52ch;
    font-size: 0.9rem;
    line-height: 1.6;
}

.rescue-final--v23 .rescue-final-v7__actions {
    margin-top: 0.15rem;
}

.rescue-final--v23 .rescue-final-v7__meta {
    padding-top: 0.05rem;
}

@media (max-width: 760px) {
    .rescue-scope--v23 .rescue-scope-grid {
        grid-template-columns: 1fr;
    }

    .rescue-scope--v23 .rescue-scope-card__header {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .rescue-scope--v23 .rescue-scope-card__icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .rescue-scope--v23 .rescue-scope-card__status {
        grid-column: 2;
        justify-self: start;
        margin-top: -0.25rem;
    }

    .rescue-faq-signal {
        width: 100%;
    }

    .rescue-final--v23 .rescue-final-v7__panel {
        width: 100%;
        padding: 1.1rem 0.95rem;
        border-radius: 22px;
        background: rgba(5, 7, 6, 0.50);
        backdrop-filter: blur(24px) saturate(135%);
        -webkit-backdrop-filter: blur(24px) saturate(135%);
    }
}


/* ==========================================================================
   V24 - STARTBLOK FOOTER (extracted from footer.php)
   ========================================================================== */

/* ==========================================================
   STARTBLOK - FOOTER
   ========================================================== */

.blck-footer {
    --footer-bg: #050505;
    --footer-border: rgba(255, 255, 255, 0.1);
    --footer-text: rgba(255, 255, 255, 0.68);
    --footer-heading: #ffffff;
    --footer-muted: rgba(255, 255, 255, 0.45);
    --footer-accent: #cfff04;

    position: relative;
    width: 100%;
    background: var(--footer-bg);
    color: var(--footer-text);
    border-top: 1px solid var(--footer-border);
    overflow: hidden;
}


/* ----------------------------------------------------------
   CONTENU PRINCIPAL
   ---------------------------------------------------------- */

.footer-main {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.7fr)
        minmax(160px, 0.75fr)
        minmax(190px, 0.75fr);
    gap: clamp(40px, 6vw, 96px);

    padding:
        clamp(56px, 7vw, 96px)
        0
        clamp(48px, 6vw, 76px);
}


/* ----------------------------------------------------------
   BRAND
   ---------------------------------------------------------- */

.footer-brand {
    max-width: 520px;
}

.footer-brand__name {
    display: inline-flex;
    align-items: baseline;

    margin-bottom: 22px;

    color: var(--footer-heading);
    text-decoration: none;

    font-size: clamp(1.65rem, 2.3vw, 2.4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.045em;
}

.footer-brand__name span {
    color: var(--rescue-accent);
}

.footer-brand__text {
    max-width: 460px;
    margin: 0;

    color: var(--footer-text);

    font-size: 0.95rem;
    line-height: 1.75;
}


/* ----------------------------------------------------------
   COLONNES
   ---------------------------------------------------------- */

.footer-column {
    min-width: 0;
}

.footer-title {
    position: relative;

    margin: 0 0 24px;
    padding-bottom: 14px;

    color: var(--footer-heading);

    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-title::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    width: 26px;
    height: 2px;

    background: var(--footer-accent);
    border-radius: 50px;
}


/* ----------------------------------------------------------
   LIENS
   ---------------------------------------------------------- */

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-links li {
    margin: 0;
    padding: 0;
}

.footer-links a {
    position: relative;
    display: inline-flex;

    color: var(--footer-text);
    text-decoration: none;

    font-size: 0.92rem;
    line-height: 1.45;

    transition:
        color 180ms ease,
        transform 180ms ease;
}

.footer-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -4px;

    width: 100%;
    height: 1px;

    background: currentColor;

    transform: scaleX(0);
    transform-origin: right center;

    transition: transform 220ms ease;
}

.footer-links a:hover {
    color: var(--footer-heading);
    transform: translateX(3px);
}

.footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}


/* ----------------------------------------------------------
   FOOTER BOTTOM
   ---------------------------------------------------------- */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    min-height: 78px;

    padding: 22px 0;

    border-top: 1px solid var(--footer-border);
}

.footer-bottom p {
    margin: 0;

    color: var(--footer-muted);

    font-size: 0.8rem;
    line-height: 1.5;
}


/* ----------------------------------------------------------
   RETOUR EN HAUT
   ---------------------------------------------------------- */

.footer-back-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: var(--footer-text);
    text-decoration: none;

    font-size: 0.8rem;
    font-weight: 500;

    transition:
        color 180ms ease,
        transform 180ms ease;
}

.footer-back-top i {
    font-size: 0.72rem;

    transition: transform 180ms ease;
}

.footer-back-top:hover {
    color: var(--footer-heading);
}

.footer-back-top:hover i {
    transform: translateY(-3px);
}


/* ----------------------------------------------------------
   ACCESSIBILITÉ
   ---------------------------------------------------------- */

.footer-links a:focus-visible,
.footer-brand__name:focus-visible,
.footer-back-top:focus-visible {
    outline: 2px solid var(--footer-accent);
    outline-offset: 5px;
    border-radius: 2px;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

    .footer-main {
        grid-template-columns: minmax(0, 1.4fr) minmax(150px, 1fr);
        gap: 46px 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 600px;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .blck-footer {
        margin-bottom: env(safe-area-inset-bottom, 0);
    }

    .footer-main {
        display: flex;
        flex-direction: column;
        gap: 0;

        padding: 54px 0 38px;
    }


    /* Brand */

    .footer-brand {
        width: 100%;

        padding-bottom: 36px;
        margin-bottom: 30px;

        border-bottom: 1px solid var(--footer-border);
    }

    .footer-brand__name {
        margin-bottom: 18px;

        font-size: 1.9rem;
    }

    .footer-brand__text {
        max-width: 100%;

        font-size: 0.91rem;
        line-height: 1.7;
    }


    /* Colonnes */

    .footer-column {
        width: 100%;

        padding: 0 0 30px;
        margin: 0 0 30px;

        border-bottom: 1px solid var(--footer-border);
    }

    .footer-column:last-child {
        margin-bottom: 0;
    }

    .footer-title {
        margin-bottom: 19px;
    }

    .footer-links {
        gap: 0;
    }

    .footer-links li {
        width: 100%;
    }

    .footer-links a {
        display: flex;
        align-items: center;

        width: 100%;
        min-height: 44px;

        padding: 8px 0;

        font-size: 0.94rem;
    }

    .footer-links a:hover {
        transform: none;
    }

    .footer-links a::after {
        display: none;
    }


    /* Bottom */

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;

        min-height: 0;

        padding: 25px 0
            calc(25px + env(safe-area-inset-bottom, 0));
    }

    .footer-bottom p {
        font-size: 0.77rem;
    }

    .footer-back-top {
        min-height: 42px;

        font-size: 0.8rem;
    }

}


/* ==========================================================
   TRÈS PETITS ÉCRANS
   ========================================================== */

@media (max-width: 380px) {

    .footer-main {
        padding-top: 46px;
    }

    .footer-brand__name {
        font-size: 1.7rem;
    }

    .footer-brand__text {
        font-size: 0.87rem;
    }

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    .footer-links a,
    .footer-links a::after,
    .footer-back-top,
    .footer-back-top i {
        transition: none;
    }

}
