.home-services-page {
    --home-services-blue-dark: #07245f;
    --home-services-blue: #0757dc;
    --home-services-blue-light: #eaf3ff;
    --home-services-cyan: #19a8cf;
    --home-services-turquoise: #10a7a4;
    --home-services-orange: #ef9a27;
    --home-services-violet: #7266d8;
    --home-services-text: #14213d;
    --home-services-muted: #59667c;
    --home-services-border: rgba(19, 67, 145, 0.12);
    --home-services-shadow: 0 18px 45px rgba(15, 53, 112, 0.08);

    overflow: hidden;
    color: var(--home-services-text);
    background:
        linear-gradient(
            180deg,
            #f8fbff 0,
            #ffffff 30rem,
            #ffffff 100%
        );
}

.home-services-page *,
.home-services-page *::before,
.home-services-page *::after {
    box-sizing: border-box;
}

.home-services-hero {
    position: relative;
    padding: clamp(3.5rem, 7vw, 7rem) 0 clamp(4rem, 7vw, 6.5rem);
}

.home-services-hero::before {
    position: absolute;
    top: -12rem;
    left: -12rem;
    width: 34rem;
    height: 34rem;
    content: "";
    border-radius: 50%;
    background: rgba(31, 117, 231, 0.055);
    filter: blur(3px);
}

.home-services-hero__layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(30rem, 1.18fr);
    gap: clamp(3rem, 6vw, 6.5rem);
    align-items: center;
}

.home-services-hero__content {
    position: relative;
    z-index: 2;
    max-width: 39rem;
}

.home-services-eyebrow,
.home-services-section-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 1.15rem;
    color: var(--home-services-blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-services-eyebrow::before,
.home-services-section-heading__eyebrow::before {
    width: 2rem;
    height: 2px;
    content: "";
    background: currentColor;
}

.home-services-hero h1 {
    max-width: 12ch;
    margin: 0;
    color: var(--home-services-blue-dark);
    font-size: clamp(3rem, 5.4vw, 5.9rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.home-services-hero h1 span {
    display: block;
    color: var(--home-services-blue);
}

.home-services-hero__intro {
    max-width: 37rem;
    margin: 2rem 0 0;
    color: var(--home-services-text);
    font-size: clamp(1.03rem, 1.25vw, 1.18rem);
    line-height: 1.75;
}

.home-services-hero__intro strong {
    color: var(--home-services-blue);
}

.home-services-hero__promise {
    margin: 1rem 0 0;
    color: var(--home-services-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.home-services-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.2rem;
}

.home-services-button {
    display: inline-flex;
    min-height: 3.35rem;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0.85rem 1.45rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.home-services-button:hover {
    transform: translateY(-2px);
}

.home-services-button--primary {
    color: #ffffff;
    background: linear-gradient(135deg, #0757dc, #0641b7);
    box-shadow: 0 14px 30px rgba(7, 87, 220, 0.22);
}

.home-services-button--primary:hover {
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(7, 87, 220, 0.3);
}

.home-services-button--secondary {
    color: var(--home-services-blue-dark);
    border-color: rgba(7, 87, 220, 0.3);
    background: rgba(255, 255, 255, 0.82);
}

.home-services-button--secondary:hover {
    color: var(--home-services-blue);
    border-color: var(--home-services-blue);
    background: #ffffff;
}

.home-services-hero__visual {
    position: relative;
    min-width: 0;
}

.home-services-hero__image {
    position: relative;
    overflow: hidden;
    min-height: clamp(25rem, 39vw, 37rem);
    border: 1px solid rgba(41, 98, 167, 0.1);
    border-radius: clamp(2rem, 4vw, 4.5rem) 1.25rem clamp(2rem, 4vw, 4.5rem) 1.25rem;
    background: #eaf3ff;
    box-shadow: var(--home-services-shadow);
}

.home-services-hero__image::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(232, 243, 255, 0.42),
            transparent 35%
        );
}

.home-services-hero__image img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
}

.home-services-floating-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 999px;
    color: var(--home-services-blue-dark);
    background: rgba(255, 255, 255, 0.91);
    box-shadow: 0 14px 32px rgba(20, 59, 114, 0.13);
    backdrop-filter: blur(14px);
    font-size: 0.88rem;
    font-weight: 750;
}

.home-services-floating-card img {
    width: 1.55rem;
    height: 1.55rem;
    object-fit: contain;
}

.home-services-floating-card--support {
    top: 2rem;
    left: -2rem;
}

.home-services-floating-card--local {
    right: 1.75rem;
    bottom: 2rem;
}

.home-services-offers {
    padding: clamp(4.5rem, 7vw, 7.5rem) 0;
    background:
        linear-gradient(
            180deg,
            rgba(234, 243, 255, 0.44),
            rgba(255, 255, 255, 0)
        );
}

.home-services-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    gap: 3rem;
    align-items: end;
    margin-bottom: clamp(2.7rem, 5vw, 4.5rem);
}

.home-services-section-heading h2 {
    max-width: 17ch;
    margin: 0;
    color: var(--home-services-blue-dark);
    font-size: clamp(2.1rem, 3.5vw, 3.65rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.home-services-section-heading > p {
    max-width: 35rem;
    margin: 0;
    color: var(--home-services-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.35rem, 2.5vw, 2rem);
}

.home-service-card {
    position: relative;
    display: flex;
    min-height: 15.5rem;
    align-items: flex-start;
    gap: 1.25rem;
    padding: clamp(1.65rem, 3vw, 2.2rem);
    overflow: hidden;
    border: 1px solid var(--home-services-border);
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 32px rgba(29, 70, 124, 0.055);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.home-service-card::after {
    position: absolute;
    right: -2.5rem;
    bottom: -2.5rem;
    width: 8rem;
    height: 8rem;
    content: "";
    border-radius: 50%;
    background: var(--service-card-soft);
}

.home-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(7, 87, 220, 0.2);
    box-shadow: 0 20px 45px rgba(29, 70, 124, 0.1);
}

.home-service-card--blue {
    --service-card-color: #0757dc;
    --service-card-soft: rgba(7, 87, 220, 0.075);
}

.home-service-card--cyan {
    --service-card-color: #129fc7;
    --service-card-soft: rgba(18, 159, 199, 0.08);
}

.home-service-card--orange {
    --service-card-color: #df8b1d;
    --service-card-soft: rgba(223, 139, 29, 0.1);
}

.home-service-card--violet {
    --service-card-color: #6e62d5;
    --service-card-soft: rgba(110, 98, 213, 0.08);
}

.home-service-card--turquoise {
    --service-card-color: #0c9f9b;
    --service-card-soft: rgba(12, 159, 155, 0.085);
}

.home-service-card--indigo {
    --service-card-color: #344cc8;
    --service-card-soft: rgba(52, 76, 200, 0.08);
}

.home-service-card__icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 4rem;
    height: 4rem;
    flex: 0 0 4rem;
    place-items: center;
    border-radius: 1.2rem;
    background: var(--service-card-soft);
}

.home-service-card__icon img {
    width: 2.15rem;
    height: 2.15rem;
    object-fit: contain;
}

.home-service-card__content {
    position: relative;
    z-index: 1;
}

.home-service-card h3 {
    margin: 0 0 0.85rem;
    color: var(--home-services-blue-dark);
    font-size: 1.2rem;
    line-height: 1.28;
}

.home-service-card p {
    margin: 0;
    color: var(--home-services-muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.home-services-commitments {
    padding: 0 0 clamp(4.5rem, 7vw, 7rem);
}

.home-services-commitments__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(7, 87, 220, 0.1);
    border-radius: 1.5rem;
    background:
        linear-gradient(
            135deg,
            rgba(236, 245, 255, 0.78),
            rgba(255, 255, 255, 0.96)
        );
}

.home-services-commitment {
    display: flex;
    min-height: 9rem;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.home-services-commitment + .home-services-commitment {
    border-left: 1px solid rgba(7, 87, 220, 0.1);
}

.home-services-commitment__icon {
    display: grid;
    width: 3.15rem;
    height: 3.15rem;
    flex: 0 0 3.15rem;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(19, 75, 149, 0.08);
}

.home-services-commitment__icon img {
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
}

.home-services-commitment h2 {
    margin: 0 0 0.35rem;
    color: var(--home-services-blue);
    font-size: 1rem;
}

.home-services-commitment p {
    margin: 0;
    color: var(--home-services-muted);
    font-size: 0.84rem;
    line-height: 1.55;
}

.home-services-process {
    padding: clamp(4.5rem, 7vw, 7rem) 0;
    background: #f7faff;
}

.home-services-process__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(21rem, 0.8fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: stretch;
}

.home-services-section-heading--process {
    display: block;
    margin-bottom: 2.5rem;
}

.home-services-section-heading--process h2 {
    max-width: 18ch;
}

.home-services-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.home-services-step {
    display: flex;
    min-height: 10.5rem;
    gap: 1.1rem;
    padding: 1.4rem;
    border: 1px solid rgba(7, 87, 220, 0.09);
    border-radius: 1.25rem;
    background: #ffffff;
}

.home-services-step__number {
    display: grid;
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--home-services-blue);
    font-size: 0.82rem;
    font-weight: 800;
}

.home-services-step h3 {
    margin: 0.3rem 0 0.6rem;
    color: var(--home-services-blue-dark);
    font-size: 1.03rem;
}

.home-services-step p {
    margin: 0;
    color: var(--home-services-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.home-services-zone {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 2rem;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(48, 191, 226, 0.4),
            transparent 31%
        ),
        linear-gradient(145deg, #082d79, #0757dc);
    box-shadow: 0 22px 45px rgba(7, 66, 165, 0.18);
}

.home-services-zone__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 10rem;
    gap: 1rem;
    align-items: start;
}

.home-services-zone .home-services-section-heading__eyebrow {
    color: #93dcff;
}

.home-services-zone h2 {
    max-width: 12ch;
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.08;
}

.home-services-zone__map {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.16));
}

.home-services-zone__intro {
    max-width: 31rem;
    margin: 2rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.home-services-zone__areas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.7rem;
    margin-top: 2rem;
}

.home-services-zone__areas span {
    padding: 0.7rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    font-weight: 750;
    text-align: center;
}

.home-services-zone__note {
    display: grid;
    gap: 0.35rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.home-services-zone__note strong {
    font-size: 0.95rem;
}

.home-services-zone__note span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.87rem;
    line-height: 1.55;
}

.home-services-contact {
    padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.home-services-contact__panel {
    display: grid;
    grid-template-columns: minmax(16rem, 1.1fr) minmax(25rem, 1.4fr) auto;
    gap: 2rem;
    align-items: center;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 2rem;
    background:
        linear-gradient(
            135deg,
            #05245f,
            #0757dc
        );
    box-shadow: 0 22px 48px rgba(7, 66, 165, 0.2);
}

.home-services-contact__heading p {
    margin: 0 0 0.55rem;
    color: #9ddfff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-services-contact__heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.7rem, 2.7vw, 2.45rem);
}

.home-services-contact__heading > span {
    display: block;
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.55;
}

.home-services-contact__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.home-services-contact__details a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 1.1rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    text-decoration: none;
}

.home-services-contact__details a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.home-services-contact__icon {
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    flex: 0 0 2.7rem;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.home-services-contact__details strong,
.home-services-contact__details small {
    display: block;
}

.home-services-contact__details strong {
    font-size: 0.89rem;
    overflow-wrap: anywhere;
}

.home-services-contact__details small {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.75rem;
}

.home-services-button--light {
    color: var(--home-services-blue-dark);
    background: #ffffff;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.home-services-button--light:hover {
    color: var(--home-services-blue);
    background: #f7fbff;
}

@media (max-width: 1180px) {
    .home-services-hero__layout {
        grid-template-columns: 1fr;
    }

    .home-services-hero__content {
        max-width: 46rem;
    }

    .home-services-hero h1 {
        max-width: none;
    }

    .home-services-floating-card--support {
        left: 1.5rem;
    }

    .home-services-contact__panel {
        grid-template-columns: 1fr 1.4fr;
    }

    .home-services-contact__panel > .home-services-button {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 980px) {
    .home-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-services-commitments__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-services-commitment + .home-services-commitment {
        border-left: 0;
    }

    .home-services-commitment:nth-child(even) {
        border-left: 1px solid rgba(7, 87, 220, 0.1);
    }

    .home-services-commitment:nth-child(n + 3) {
        border-top: 1px solid rgba(7, 87, 220, 0.1);
    }

    .home-services-process__layout {
        grid-template-columns: 1fr;
    }

    .home-services-zone__heading {
        grid-template-columns: minmax(0, 1fr) 12rem;
    }

    .home-services-contact__panel {
        grid-template-columns: 1fr;
    }

    .home-services-contact__panel > .home-services-button {
        grid-column: auto;
    }
}

@media (max-width: 760px) {
    .home-services-hero {
        padding-top: 2.8rem;
    }

    .home-services-hero__layout {
        gap: 2.6rem;
    }

    .home-services-hero h1 {
        font-size: clamp(2.65rem, 13vw, 4.3rem);
    }

    .home-services-hero__image {
        min-height: 23rem;
        border-radius: 2rem 1rem 2rem 1rem;
    }

    .home-services-floating-card {
        display: none;
    }

    .home-services-section-heading {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .home-services-section-heading h2 {
        max-width: none;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .home-service-card {
        min-height: auto;
    }

    .home-services-steps {
        grid-template-columns: 1fr;
    }

    .home-services-zone__heading {
        grid-template-columns: 1fr;
    }

    .home-services-zone__map {
        max-width: 11rem;
    }

    .home-services-contact__details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .home-services-actions {
        display: grid;
    }

    .home-services-button {
        width: 100%;
    }

    .home-services-commitments__grid {
        grid-template-columns: 1fr;
    }

    .home-services-commitment:nth-child(even) {
        border-left: 0;
    }

    .home-services-commitment:nth-child(n + 2) {
        border-top: 1px solid rgba(7, 87, 220, 0.1);
    }

    .home-services-zone__areas {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-service-card {
        display: block;
    }

    .home-service-card__icon {
        margin-bottom: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-services-button,
    .home-service-card {
        transition: none;
    }
}


/* ===== VERSION VISUELLE RENFORCEE ===== */

.home-services-page {
    background:
        linear-gradient(
            180deg,
            #f4f8ff 0,
            #ffffff 36rem,
            #f8fbff 100%
        );
}

.home-services-hero {
    padding-top: clamp(4rem, 7vw, 6.5rem);
    background:
        radial-gradient(
            circle at 72% 18%,
            rgba(39, 190, 210, 0.14),
            transparent 24rem
        ),
        radial-gradient(
            circle at 12% 22%,
            rgba(13, 91, 220, 0.11),
            transparent 22rem
        ),
        linear-gradient(
            135deg,
            #f2f7ff 0%,
            #ffffff 48%,
            #eefaf9 100%
        );
}

.home-services-eyebrow {
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(7, 87, 220, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 20px rgba(18, 76, 157, 0.07);
}

.home-services-eyebrow::before {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #11a6bd;
}

.home-services-hero h1 {
    max-width: 11ch;
    color: #041c4b;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.8);
}

.home-services-hero h1 span {
    color: transparent;
    background:
        linear-gradient(
            90deg,
            #0757dc,
            #0c78e8 55%,
            #16a6ba
        );
    background-clip: text;
    -webkit-background-clip: text;
}

.home-services-hero__intro {
    font-size: clamp(1.08rem, 1.4vw, 1.22rem);
}

.home-services-hero__promise {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    border-left: 3px solid #13a6bb;
    border-radius: 0 0.75rem 0.75rem 0;
    background: rgba(255, 255, 255, 0.72);
}

.home-services-button--primary {
    background:
        linear-gradient(
            135deg,
            #0757dc,
            #073bab
        );
    box-shadow: 0 16px 32px rgba(7, 79, 200, 0.28);
}

.home-services-button--secondary {
    border-width: 2px;
    background: rgba(255, 255, 255, 0.88);
}

.home-services-hero__image {
    min-height: clamp(27rem, 41vw, 39rem);
    border: 7px solid rgba(255, 255, 255, 0.96);
    border-radius: 3rem 1.4rem 3rem 1.4rem;
    background: #dfeefe;
    box-shadow:
        0 30px 65px rgba(11, 55, 116, 0.16),
        0 10px 24px rgba(11, 55, 116, 0.08);
}

.home-services-hero__image::before {
    position: absolute;
    z-index: 1;
    inset: auto 0 0;
    height: 34%;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(3, 35, 89, 0.18)
        );
}

.home-services-hero__image img {
    object-position: center;
}

.home-services-floating-card {
    border: 1px solid rgba(7, 87, 220, 0.14);
    box-shadow: 0 16px 35px rgba(11, 62, 137, 0.16);
}

.home-services-floating-card--support {
    color: #0645b7;
    background: rgba(239, 247, 255, 0.94);
}

.home-services-floating-card--local {
    color: #087d87;
    background: rgba(236, 255, 252, 0.94);
}

.home-services-offers {
    position: relative;
    padding-top: clamp(5.5rem, 8vw, 8rem);
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f3f8ff 48%,
            #ffffff 100%
        );
}

.home-services-section-heading__eyebrow {
    color: #0b78b8;
}

.home-services-section-heading h2 {
    color: #062259;
}

.home-services-section-heading > p {
    padding: 1.2rem 1.4rem;
    border-left: 3px solid #17a8b9;
    border-radius: 0 1rem 1rem 0;
    background: rgba(232, 247, 250, 0.65);
}

.home-service-card {
    min-height: 16.5rem;
    border-width: 1px;
    border-top: 4px solid var(--service-card-color);
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            var(--service-card-background) 100%
        );
    box-shadow:
        0 16px 34px rgba(27, 71, 132, 0.08);
}

.home-service-card--blue {
    --service-card-background: rgba(222, 237, 255, 0.78);
}

.home-service-card--cyan {
    --service-card-background: rgba(220, 247, 251, 0.78);
}

.home-service-card--orange {
    --service-card-background: rgba(255, 239, 213, 0.78);
}

.home-service-card--violet {
    --service-card-background: rgba(235, 231, 255, 0.78);
}

.home-service-card--turquoise {
    --service-card-background: rgba(219, 248, 244, 0.78);
}

.home-service-card--indigo {
    --service-card-background: rgba(228, 234, 255, 0.78);
}

.home-service-card__icon {
    width: 4.4rem;
    height: 4.4rem;
    flex-basis: 4.4rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: #ffffff;
    box-shadow:
        0 10px 24px rgba(23, 70, 138, 0.11);
}

.home-service-card__icon img {
    width: 2.35rem;
    height: 2.35rem;
}

.home-service-card h3 {
    color: #05245e;
    font-size: 1.27rem;
}

.home-service-card p {
    color: #46566f;
}

.home-services-commitments {
    padding-top: 1rem;
}

.home-services-commitments__grid {
    border: 0;
    background:
        linear-gradient(
            105deg,
            #072f79,
            #0757dc 55%,
            #087f9e
        );
    box-shadow: 0 20px 42px rgba(7, 68, 162, 0.17);
}

.home-services-commitment + .home-services-commitment {
    border-left-color: rgba(255, 255, 255, 0.17);
}

.home-services-commitment__icon {
    background: rgba(255, 255, 255, 0.96);
}

.home-services-commitment h2 {
    color: #ffffff;
}

.home-services-commitment p {
    color: rgba(255, 255, 255, 0.76);
}

.home-services-process {
    background:
        radial-gradient(
            circle at 8% 16%,
            rgba(20, 166, 190, 0.09),
            transparent 24rem
        ),
        linear-gradient(
            180deg,
            #edf5ff,
            #f7fbff
        );
}

.home-services-step {
    border: 1px solid rgba(7, 87, 220, 0.14);
    border-left: 4px solid #0757dc;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f4f8ff
        );
    box-shadow: 0 12px 28px rgba(23, 70, 138, 0.07);
}

.home-services-step:nth-child(2) {
    border-left-color: #17a7b8;
}

.home-services-step:nth-child(3) {
    border-left-color: #ef9a27;
}

.home-services-step:nth-child(4) {
    border-left-color: #735ed5;
}

.home-services-step__number {
    box-shadow: 0 8px 18px rgba(7, 87, 220, 0.22);
}

.home-services-zone {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(64, 220, 225, 0.48),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #052563,
            #0757dc 58%,
            #0790a4
        );
}

.home-services-zone__areas span {
    background: rgba(255, 255, 255, 0.13);
}

.home-services-contact__panel {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(40, 198, 213, 0.28),
            transparent 18rem
        ),
        linear-gradient(
            120deg,
            #041d51,
            #0757dc 68%,
            #0a7aa0
        );
}

.home-services-contact__panel::after {
    position: absolute;
    top: -4rem;
    right: -3rem;
    width: 13rem;
    height: 13rem;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.home-services-contact__panel > * {
    position: relative;
    z-index: 1;
}

.home-services-button--light {
    color: #4c3100;
    background:
        linear-gradient(
            135deg,
            #ffd26b,
            #f2a527
        );
    box-shadow: 0 14px 28px rgba(93, 55, 0, 0.18);
}

.home-services-button--light:hover {
    color: #3c2700;
    background:
        linear-gradient(
            135deg,
            #ffdc83,
            #f7b63b
        );
}

@media (max-width: 980px) {
    .home-services-commitment:nth-child(even) {
        border-left-color: rgba(255, 255, 255, 0.17);
    }

    .home-services-commitment:nth-child(n + 3) {
        border-top-color: rgba(255, 255, 255, 0.17);
    }
}

@media (max-width: 560px) {
    .home-services-commitment:nth-child(n + 2) {
        border-top-color: rgba(255, 255, 255, 0.17);
    }
}


/* ===== TYPOGRAPHIE HARMONISEE AVEC LE SITE ===== */

.home-services-page,
.home-services-page button,
.home-services-page input,
.home-services-page textarea,
.home-services-page select {
    font-family: inherit;
}

.home-services-hero h1,
.home-services-section-heading h2,
.home-service-card h3,
.home-services-commitment h2,
.home-services-step h3,
.home-services-zone h2,
.home-services-contact__heading h2 {
    font-family: inherit;
}

/* Petit intitulé conforme au style général du site */
.home-services-eyebrow {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.home-services-eyebrow::before {
    width: 2rem;
    height: 2px;
    border-radius: 0;
    background: #0757dc;
}

/* Titre principal plus sobre */
.home-services-hero h1 {
    max-width: 12ch;
    color: #071e4f;
    font-size: clamp(3.2rem, 4.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-shadow: none;
}

/* Suppression du dégradé sur “à domicile” */
.home-services-hero h1 span {
    display: block;
    color: #0757dc;
    background: none;
    background-clip: initial;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: currentColor;
}

/* Textes du bandeau principal */
.home-services-hero__intro {
    max-width: 36rem;
    font-size: clamp(1rem, 1.15vw, 1.12rem);
    font-weight: 400;
    line-height: 1.7;
}

.home-services-hero__intro strong {
    font-weight: 700;
}

.home-services-hero__promise {
    font-size: 0.94rem;
    line-height: 1.6;
}

/* Boutons alignés avec ceux du reste du site */
.home-services-button {
    min-height: 3.15rem;
    padding: 0.8rem 1.4rem;
    font-family: inherit;
    font-size: 0.94rem;
    font-weight: 700;
}

/* Titres des autres sections */
.home-services-section-heading h2 {
    font-size: clamp(2rem, 3.1vw, 3.3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.home-service-card h3 {
    font-size: 1.14rem;
    font-weight: 700;
}

.home-services-commitment h2,
.home-services-step h3 {
    font-weight: 700;
}

@media (max-width: 760px) {
    .home-services-hero h1 {
        max-width: 10ch;
        font-size: clamp(2.7rem, 9vw, 3.5rem);
        line-height: 1.02;
    }

    .home-services-hero__intro {
        font-size: 1rem;
    }
}

/* ===== INTÉGRATION DES VISUELS SERVICES À DOMICILE ===== */

.home-services-hero__image img {
    object-position: center;
}

.home-services-showcase {
    padding: clamp(4.5rem, 7vw, 7rem) 0;
    background: linear-gradient(
        135deg,
        #edf5ff 0%,
        #f8fbff 50%,
        #eef9f7 100%
    );
}

.home-services-showcase__grid {
    display: grid;
    gap: 2rem;
}

.home-services-showcase-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    min-height: 25rem;
    overflow: hidden;
    border: 1px solid rgba(7, 87, 220, 0.12);
    border-radius: 1.8rem;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(18, 63, 128, 0.1);
}

.home-services-showcase-card--reverse {
    grid-template-columns: minmax(20rem, 0.95fr) minmax(0, 1.05fr);
}

.home-services-showcase-card--reverse .home-services-showcase-card__image {
    order: 2;
}

.home-services-showcase-card__image {
    min-width: 0;
    min-height: 25rem;
    overflow: hidden;
}

.home-services-showcase-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-services-showcase-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4rem);
}

.home-services-showcase-card__content > span {
    width: max-content;
    margin-bottom: 1.2rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    color: #0757dc;
    background: #e9f2ff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.home-services-showcase-card h3 {
    margin: 0;
    color: #06245d;
    font-size: clamp(1.65rem, 2.7vw, 2.6rem);
    line-height: 1.12;
}

.home-services-showcase-card__content > p {
    margin: 1.25rem 0 0;
    color: #53647c;
    line-height: 1.75;
}

.home-services-zone__visual {
    overflow: hidden;
    margin: 2rem 0 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.25rem;
}

.home-services-zone__visual img {
    width: 100%;
    height: 13rem;
    display: block;
    object-fit: cover;
}

@media (max-width: 900px) {
    .home-services-showcase-card,
    .home-services-showcase-card--reverse {
        grid-template-columns: 1fr;
    }

    .home-services-showcase-card--reverse .home-services-showcase-card__image {
        order: 0;
    }

    .home-services-showcase-card__image {
        min-height: 20rem;
    }
}

/* ==========================================================
   RENFORCEMENT DES CONTRASTES BLEUS
   ========================================================== */

/* Bandeau principal */
.home-services-hero {
    background:
        radial-gradient(
            circle at 18% 25%,
            rgba(19, 104, 223, 0.13),
            transparent 24rem
        ),
        radial-gradient(
            circle at 82% 18%,
            rgba(23, 177, 207, 0.12),
            transparent 25rem
        ),
        linear-gradient(
            115deg,
            #e7f1ff 0%,
            #f8fbff 48%,
            #e7f8fa 100%
        );
}

/* Section des six services */
.home-services-offers {
    position: relative;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #edf5ff 42%,
            #e6f1ff 100%
        );
}

.home-services-offers::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 32rem;
    height: 32rem;
    content: "";
    pointer-events: none;
    border-radius: 50%;
    background: rgba(7, 87, 220, 0.055);
    transform: translate(35%, -35%);
}

.home-services-offers .container {
    position: relative;
    z-index: 1;
}

/* Cartes des services plus visibles */
.home-service-card {
    border-color: rgba(7, 87, 220, 0.16);
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            rgba(229, 240, 255, 0.78) 100%
        );
    box-shadow:
        0 18px 38px rgba(15, 65, 139, 0.1);
}

.home-service-card:nth-child(2),
.home-service-card:nth-child(5) {
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            rgba(218, 246, 248, 0.82) 100%
        );
}

.home-service-card:nth-child(3) {
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            rgba(255, 239, 216, 0.8) 100%
        );
}

.home-service-card:nth-child(4),
.home-service-card:nth-child(6) {
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            rgba(230, 232, 255, 0.82) 100%
        );
}

/* Section avec les grandes images */
.home-services-showcase {
    background:
        linear-gradient(
            135deg,
            #dcecff 0%,
            #eef6ff 48%,
            #e3f5f6 100%
        );
}

.home-services-showcase-card {
    border-color: rgba(7, 87, 220, 0.2);
    box-shadow:
        0 22px 48px rgba(15, 65, 139, 0.13);
}

.home-services-showcase-card__content {
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f0f6ff 100%
        );
}

.home-services-showcase-card--reverse
.home-services-showcase-card__content {
    background:
        linear-gradient(
            145deg,
            #eef8fa 0%,
            #ffffff 100%
        );
}

/* Titres de section */
.home-services-section-heading h2 {
    color: #04245d;
}

.home-services-section-heading__eyebrow {
    color: #0757dc;
}

/* Engagements : bleu plus franc */
.home-services-commitments {
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(52, 180, 224, 0.3),
            transparent 22rem
        ),
        linear-gradient(
            110deg,
            #041d50 0%,
            #073e9c 52%,
            #086cca 100%
        );
}

.home-services-commitments__grid {
    background: rgba(255, 255, 255, 0.075);
}

/* Section méthode : fond bleu clair au lieu du beige dominant */
.home-services-process {
    background:
        linear-gradient(
            135deg,
            #e8f2ff 0%,
            #f7fbff 52%,
            #eaf5ff 100%
        );
}

.home-services-step {
    border-color: rgba(7, 87, 220, 0.18);
    border-left: 4px solid #0757dc;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #edf4ff
        );
    box-shadow:
        0 14px 30px rgba(16, 66, 137, 0.08);
}

.home-services-step:nth-child(2) {
    border-left-color: #10a7b6;
}

.home-services-step:nth-child(3) {
    border-left-color: #e59a2d;
}

.home-services-step:nth-child(4) {
    border-left-color: #5f67cf;
}

/* Zone d’intervention */
.home-services-zone {
    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(73, 211, 226, 0.38),
            transparent 18rem
        ),
        linear-gradient(
            145deg,
            #031c50 0%,
            #0757dc 62%,
            #0989a0 100%
        );
}

/* Bandeau final */
.home-services-contact {
    background:
        linear-gradient(
            180deg,
            #f7fbff,
            #e7f1ff
        );
}

.home-services-contact__panel {
    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(37, 191, 211, 0.25),
            transparent 18rem
        ),
        linear-gradient(
            120deg,
            #031b4c 0%,
            #0757dc 68%,
            #087f9a 100%
        );
}

@media (max-width: 760px) {
    .home-services-offers::before {
        width: 20rem;
        height: 20rem;
    }
}

/* ==========================================================
   HARMONISATION AVEC LA PAGE SOLUTIONS NUMÉRIQUES
   ========================================================== */

.home-services-page {
    --services-navy: #061d4c;
    --services-blue: #0758d5;
    --services-blue-dark: #07347f;
    --services-blue-soft: #edf4ff;
    --services-blue-pale: #f5f8fd;
    --services-gold: #c98522;
    --services-gold-soft: #f8ead5;
    --services-text: #17233b;
    --services-muted: #56647a;
    --services-border: rgba(7, 65, 151, 0.12);

    color: var(--services-text);
    background: #ffffff;
}

/* ----------------------------------------------------------
   BANDEAU PRINCIPAL
   ---------------------------------------------------------- */

.home-services-hero {
    padding: clamp(3rem, 5.5vw, 5.5rem) 0;
    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #ffffff 42%,
            #eff5ff 42%,
            #eff5ff 100%
        );
}

.home-services-hero::before {
    display: none;
}

.home-services-hero__layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(32rem, 1.22fr);
    gap: clamp(2.5rem, 5vw, 5rem);
}

.home-services-hero__content {
    max-width: 39rem;
}

.home-services-eyebrow {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
    padding: 0.55rem 0.95rem;
    border: 0;
    border-radius: 999px;
    color: #9a5e0e;
    background: var(--services-gold-soft);
    box-shadow: none;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.home-services-eyebrow::before {
    display: none;
}

.home-services-hero h1 {
    max-width: 11ch;
    margin: 0;
    color: var(--services-navy);
    font-family: inherit;
    font-size: clamp(3.6rem, 5.1vw, 5.8rem);
    font-weight: 750;
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-shadow: none;
}

.home-services-hero h1 span {
    display: block;
    color: var(--services-blue);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.home-services-hero__intro {
    max-width: 39rem;
    margin-top: 1.6rem;
    color: #334157;
    font-size: clamp(1rem, 1.15vw, 1.12rem);
    line-height: 1.65;
}

.home-services-hero__intro strong {
    color: var(--services-blue);
    font-weight: 750;
}

.home-services-hero__promise {
    margin-top: 1rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--services-muted);
    background: transparent;
    font-size: 0.94rem;
}

.home-services-actions {
    margin-top: 1.9rem;
}

.home-services-button {
    min-height: 3.25rem;
    padding: 0.82rem 1.55rem;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.96rem;
    font-weight: 750;
}

.home-services-button--primary {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #075bd5,
            #063c91
        );
    box-shadow: 0 13px 27px rgba(7, 72, 165, 0.22);
}

.home-services-button--secondary {
    color: var(--services-navy);
    border: 1.5px solid var(--services-blue);
    background: #ffffff;
}

.home-services-button--secondary:hover {
    color: #ffffff;
    background: var(--services-blue);
}

/* Visuel principal identique dans l’esprit à Solutions numériques */

.home-services-hero__image {
    min-height: clamp(28rem, 38vw, 36rem);
    overflow: hidden;
    border: 0;
    border-radius: 1.6rem 1.6rem 4.5rem 1.6rem;
    background: #eaf2ff;
    box-shadow: none;
}

.home-services-hero__image::before,
.home-services-hero__image::after {
    display: none;
}

.home-services-hero__image img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
}

.home-services-floating-card {
    border: 1px solid rgba(7, 88, 213, 0.11);
    color: var(--services-blue-dark);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(15, 56, 114, 0.11);
}

/* ----------------------------------------------------------
   TITRES DE SECTIONS
   ---------------------------------------------------------- */

.home-services-section-heading {
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.home-services-section-heading__eyebrow {
    color: var(--services-gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.home-services-section-heading__eyebrow::before {
    background: var(--services-gold);
}

.home-services-section-heading h2 {
    color: var(--services-navy);
    font-size: clamp(2.25rem, 3.4vw, 3.7rem);
    font-weight: 750;
    line-height: 1.07;
    letter-spacing: -0.035em;
}

.home-services-section-heading > p {
    padding: 0;
    border: 0;
    color: var(--services-muted);
    background: transparent;
    line-height: 1.7;
}

/* ----------------------------------------------------------
   SECTION SERVICES
   ---------------------------------------------------------- */

.home-services-offers {
    padding: clamp(5rem, 7vw, 7.5rem) 0;
    background: #ffffff;
}

.home-services-offers::before {
    display: none;
}

.home-services-grid {
    gap: 1.5rem;
}

.home-service-card {
    min-height: 15.5rem;
    padding: 2rem;
    border: 1px solid var(--services-border);
    border-top: 1px solid var(--services-border);
    border-radius: 1.35rem;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(19, 61, 119, 0.065);
}

.home-service-card:nth-child(n) {
    background: #ffffff;
}

.home-service-card::after {
    width: 5rem;
    height: 5rem;
    right: -1.8rem;
    bottom: -1.8rem;
    background: rgba(7, 88, 213, 0.045);
}

.home-service-card__icon {
    width: 4rem;
    height: 4rem;
    flex-basis: 4rem;
    border: 1px solid rgba(201, 133, 34, 0.22);
    border-radius: 50%;
    background: #fffaf3;
    box-shadow: none;
}

.home-service-card__icon img {
    width: 2.05rem;
    height: 2.05rem;
}

.home-service-card h3 {
    color: var(--services-navy);
    font-size: 1.16rem;
    font-weight: 750;
}

.home-service-card p {
    color: var(--services-muted);
    line-height: 1.65;
}

/* ----------------------------------------------------------
   SECTION AVEC LES IMAGES
   ---------------------------------------------------------- */

.home-services-showcase {
    padding: clamp(5rem, 7vw, 7rem) 0;
    background:
        linear-gradient(
            180deg,
            #eef4ff,
            #f7f9fd
        );
}

.home-services-showcase-card {
    border: 1px solid rgba(7, 73, 165, 0.13);
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: 0 13px 32px rgba(19, 61, 119, 0.085);
}

.home-services-showcase-card__content {
    background: #ffffff;
}

.home-services-showcase-card--reverse
.home-services-showcase-card__content {
    background: #ffffff;
}

.home-services-showcase-card__content > span {
    color: #9a5e0e;
    background: var(--services-gold-soft);
}

.home-services-showcase-card h3 {
    color: var(--services-navy);
    font-weight: 750;
}

.home-services-showcase-card__content > p {
    color: var(--services-muted);
}

/* ----------------------------------------------------------
   ENGAGEMENTS
   ---------------------------------------------------------- */

.home-services-commitments {
    padding: clamp(3.6rem, 5vw, 5rem) 0;
    background:
        linear-gradient(
            105deg,
            #031a46,
            #073a8c 55%,
            #0758bd
        );
}

.home-services-commitments__grid {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.home-services-commitment {
    min-height: 8rem;
}

.home-services-commitment + .home-services-commitment {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.home-services-commitment__icon {
    border: 1px solid rgba(232, 177, 87, 0.65);
    background: transparent;
    box-shadow: none;
}

.home-services-commitment__icon img {
    filter: brightness(0) invert(1);
}

.home-services-commitment h2 {
    color: #ffffff;
    font-size: 1.05rem;
}

.home-services-commitment p {
    color: rgba(255, 255, 255, 0.76);
}

/* ----------------------------------------------------------
   MÉTHODE ET ZONE D’INTERVENTION
   ---------------------------------------------------------- */

.home-services-process {
    padding: clamp(5rem, 7vw, 7rem) 0;
    background:
        linear-gradient(
            180deg,
            #fbf7f0,
            #f7f2e9
        );
}

.home-services-step {
    border: 1px solid rgba(193, 129, 34, 0.16);
    border-left: 1px solid rgba(193, 129, 34, 0.16);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
}

.home-services-step:nth-child(n) {
    border-left-color: rgba(193, 129, 34, 0.16);
}

.home-services-step__number {
    color: #684000;
    background: var(--services-gold-soft);
    box-shadow: none;
}

.home-services-step h3 {
    color: var(--services-navy);
}

.home-services-step p {
    color: var(--services-muted);
}

.home-services-zone {
    border: 1px solid rgba(7, 71, 164, 0.13);
    color: var(--services-text);
    background:
        linear-gradient(
            145deg,
            #edf4ff,
            #ffffff
        );
    box-shadow: none;
}

.home-services-zone .home-services-section-heading__eyebrow {
    color: var(--services-blue);
}

.home-services-zone h2 {
    color: var(--services-navy);
}

.home-services-zone__intro {
    color: var(--services-muted);
}

.home-services-zone__areas span {
    color: var(--services-blue-dark);
    border: 1px solid rgba(7, 88, 213, 0.17);
    background: #ffffff;
}

.home-services-zone__note {
    border-top-color: rgba(7, 88, 213, 0.13);
}

.home-services-zone__note strong {
    color: var(--services-navy);
}

.home-services-zone__note span {
    color: var(--services-muted);
}

.home-services-zone__visual {
    border-color: rgba(7, 88, 213, 0.13);
    background: #ffffff;
}

/* ----------------------------------------------------------
   CONTACT
   ---------------------------------------------------------- */

.home-services-contact {
    padding: clamp(4.5rem, 6vw, 6rem) 0;
    background: #edf4ff;
}

.home-services-contact__panel {
    border-radius: 1.5rem;
    background:
        linear-gradient(
            105deg,
            #031b4a,
            #0645a7 58%,
            #075ed0
        );
    box-shadow: 0 18px 40px rgba(7, 60, 142, 0.17);
}

.home-services-contact__panel::after {
    display: none;
}

.home-services-contact__heading p {
    color: #f0c16f;
}

.home-services-button--light {
    color: #4d3000;
    background:
        linear-gradient(
            135deg,
            #f3c365,
            #d99424
        );
    box-shadow: none;
}

.home-services-button--light:hover {
    color: #3d2600;
    background:
        linear-gradient(
            135deg,
            #f8ce7a,
            #e3a13a
        );
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */

@media (max-width: 1180px) {
    .home-services-hero {
        background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #ffffff 48%,
                #eff5ff 48%,
                #eff5ff 100%
            );
    }
}

@media (max-width: 760px) {
    .home-services-hero {
        background:
            linear-gradient(
                180deg,
                #ffffff,
                #eef4ff
            );
    }

    .home-services-hero h1 {
        max-width: 10ch;
        font-size: clamp(2.8rem, 11vw, 4rem);
    }

    .home-services-hero__image {
        border-radius: 1.5rem 1rem 2.6rem 1rem;
    }
}

/* ==========================================================
   CONTACT — STYLE IDENTIQUE AUX AUTRES PAGES
   ========================================================== */

.home-services-contact {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f1f6ff 100%
        );
}

.home-services-contact__panel {
    display: grid;
    grid-template-columns: minmax(17rem, 1.15fr) minmax(27rem, 1.5fr) auto;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;

    padding: clamp(2rem, 4vw, 3rem);

    border: 1px solid rgba(7, 73, 165, 0.14);
    border-radius: 1.5rem;

    color: #17233b;
    background: #ffffff;

    box-shadow:
        0 16px 38px rgba(18, 60, 120, 0.08);
}

.home-services-contact__panel::before,
.home-services-contact__panel::after {
    display: none;
}

.home-services-contact__heading p {
    margin: 0 0 0.7rem;

    color: #9a5e0e;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.home-services-contact__heading h2 {
    margin: 0;

    color: #061d4c;
    font-family: inherit;
    font-size: clamp(1.8rem, 2.6vw, 2.7rem);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.home-services-contact__heading > span {
    display: block;
    max-width: 28rem;
    margin-top: 0.9rem;

    color: #56647a;
    font-size: 0.93rem;
    line-height: 1.65;
}

.home-services-contact__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.home-services-contact__details a {
    display: flex;
    min-height: 6.5rem;
    align-items: center;
    gap: 0.9rem;

    padding: 1.1rem 1.2rem;

    border: 1px solid rgba(7, 88, 213, 0.13);
    border-radius: 1rem;

    color: #17233b;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f3f7ff
        );

    text-decoration: none;

    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.home-services-contact__details a:hover {
    color: #17233b;
    border-color: rgba(7, 88, 213, 0.3);
    box-shadow: 0 10px 24px rgba(17, 61, 125, 0.08);
    transform: translateY(-2px);
}

.home-services-contact__icon {
    display: grid;
    width: 2.9rem;
    height: 2.9rem;
    flex: 0 0 2.9rem;
    place-items: center;

    border-radius: 50%;

    color: #0758d5;
    background: #e9f2ff;

    font-size: 1rem;
}

.home-services-contact__details strong {
    color: #061d4c;
    font-size: 0.92rem;
    font-weight: 750;
}

.home-services-contact__details small {
    margin-top: 0.3rem;
    color: #66748a;
    font-size: 0.76rem;
    line-height: 1.45;
}

/* Même bouton bleu que sur les autres pages */

.home-services-contact .home-services-button--light {
    min-height: 3.35rem;
    padding: 0.85rem 1.5rem;

    color: #ffffff;
    border: 0;

    background:
        linear-gradient(
            135deg,
            #075bd5,
            #063c91
        );

    box-shadow: 0 13px 27px rgba(7, 72, 165, 0.2);
}

.home-services-contact .home-services-button--light:hover {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #0866e7,
            #0746a5
        );

    box-shadow: 0 16px 30px rgba(7, 72, 165, 0.27);
}

@media (max-width: 1050px) {
    .home-services-contact__panel {
        grid-template-columns: 1fr 1.4fr;
    }

    .home-services-contact__panel > .home-services-button {
        grid-column: 1 / -1;
        width: max-content;
    }
}

@media (max-width: 760px) {
    .home-services-contact__panel {
        grid-template-columns: 1fr;
        padding: 1.7rem;
    }

    .home-services-contact__details {
        grid-template-columns: 1fr;
    }

    .home-services-contact__panel > .home-services-button {
        grid-column: auto;
        width: 100%;
    }
}

/* ==========================================================
   CONTACT COMPACT — IDENTIQUE AUX AUTRES PAGES
   ========================================================== */

.home-services-contact {
    padding: 1.25rem 0;
    background: #edf4ff;
}

.home-services-contact__panel {
    display: grid;
    grid-template-columns:
        minmax(19rem, 1.35fr)
        minmax(8.5rem, 0.7fr)
        minmax(13rem, 1fr)
        auto;
    gap: 0;
    align-items: center;

    min-height: 5.6rem;
    padding: 0.75rem 1rem;

    overflow: hidden;
    border: 0;
    border-radius: 0.7rem;

    color: #ffffff;
    background:
        linear-gradient(
            105deg,
            #06235c 0%,
            #074cad 58%,
            #0870df 100%
        );

    box-shadow: 0 8px 22px rgba(5, 48, 118, 0.16);
}

.home-services-contact__panel::before,
.home-services-contact__panel::after {
    display: none;
}

/* Texte de gauche */

.home-services-contact__heading {
    padding: 0.2rem 1rem 0.2rem 0.35rem;
}

.home-services-contact__heading p {
    display: none;
}

.home-services-contact__heading h2 {
    margin: 0;

    color: #ffffff;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 750;
    line-height: 1.25;
    letter-spacing: 0;
}

.home-services-contact__heading > span {
    display: block;
    margin-top: 0.28rem;

    color: rgba(255, 255, 255, 0.78);
    font-size: 0.67rem;
    line-height: 1.35;
}

/* Coordonnées sans grosses cartes */

.home-services-contact__details {
    display: contents;
}

.home-services-contact__details a {
    display: flex;
    min-width: 0;
    min-height: auto;
    align-items: center;
    gap: 0.65rem;

    padding: 0.3rem 1rem;

    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 0;

    color: #ffffff;
    background: transparent;
    box-shadow: none;

    text-decoration: none;
    transform: none;
}

.home-services-contact__details a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.23);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    transform: none;
}

.home-services-contact__icon {
    display: grid;
    width: 2.15rem;
    height: 2.15rem;
    flex: 0 0 2.15rem;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);

    font-size: 0.78rem;
}

.home-services-contact__details strong {
    display: block;

    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 750;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.home-services-contact__details small {
    display: block;
    margin-top: 0.18rem;

    color: rgba(255, 255, 255, 0.68);
    font-size: 0.58rem;
    line-height: 1.3;
}

/* Bouton doré compact */

.home-services-contact .home-services-button--light {
    width: auto;
    min-height: 2.55rem;
    margin-left: 1rem;
    padding: 0.65rem 1.15rem;

    border: 0;
    border-radius: 999px;

    color: #513100;
    background:
        linear-gradient(
            135deg,
            #ffd36b,
            #efa92e
        );

    box-shadow: none;

    font-size: 0.7rem;
    font-weight: 800;
    white-space: nowrap;
}

.home-services-contact .home-services-button--light:hover {
    color: #3f2700;
    background:
        linear-gradient(
            135deg,
            #ffdc82,
            #f6b73e
        );

    box-shadow: none;
    transform: translateY(-1px);
}

/* Responsive */

@media (max-width: 1050px) {
    .home-services-contact__panel {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        padding: 1rem;
    }

    .home-services-contact__heading {
        grid-column: 1 / -1;
        padding-bottom: 0.65rem;
    }

    .home-services-contact__details {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-services-contact__details a:first-child {
        border-left: 0;
    }

    .home-services-contact .home-services-button--light {
        grid-column: 1 / -1;
        justify-self: start;
        margin: 0.4rem 0 0;
    }
}

@media (max-width: 650px) {
    .home-services-contact__panel {
        grid-template-columns: 1fr;
    }

    .home-services-contact__details {
        grid-template-columns: 1fr;
    }

    .home-services-contact__details a {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        padding: 0.65rem 0;
    }

    .home-services-contact .home-services-button--light {
        width: 100%;
        justify-self: stretch;
    }
}

/* ==========================================================
   CONTRASTE FINAL — HAUT DE PAGE SERVICES À DOMICILE
   ========================================================== */

/* Bandeau principal plus présent */

.home-services-page .home-services-hero {
    position: relative;
    padding: clamp(3.5rem, 6vw, 6rem) 0;

    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(7, 88, 213, 0.13),
            transparent 25rem
        ),
        radial-gradient(
            circle at 88% 15%,
            rgba(39, 159, 219, 0.14),
            transparent 28rem
        ),
        linear-gradient(
            105deg,
            #ffffff 0%,
            #f3f7ff 42%,
            #dceaff 100%
        );
}

/* Bande colorée sous le hero */

.home-services-page .home-services-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 0.55rem;

    content: "";

    background:
        linear-gradient(
            90deg,
            #06377f,
            #075bd5 58%,
            #2a9bd5
        );
}

/* Partie texte du hero légèrement renforcée */

.home-services-page .home-services-hero__content {
    padding: clamp(1.25rem, 2.5vw, 2rem);

    border-left: 4px solid #0758d5;
    border-radius: 0 1.3rem 1.3rem 0;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.92),
            rgba(255, 255, 255, 0.58)
        );

    box-shadow: 0 16px 36px rgba(17, 59, 119, 0.07);
}

.home-services-page .home-services-hero h1 {
    color: #061d4c;
}

.home-services-page .home-services-hero h1 span {
    color: #0758d5;
}

.home-services-page .home-services-hero__intro {
    color: #243650;
}

.home-services-page .home-services-hero__promise {
    color: #50627b;
}

/* Image principale plus contrastée */

.home-services-page .home-services-hero__image {
    border: 0.45rem solid rgba(255, 255, 255, 0.95);

    box-shadow:
        0 28px 58px rgba(6, 50, 120, 0.17);
}

/* ==========================================================
   SECTION DES SERVICES
   ========================================================== */

.home-services-page .home-services-offers {
    position: relative;

    padding: clamp(5rem, 7vw, 7.5rem) 0;

    background:
        linear-gradient(
            180deg,
            #dfeaff 0%,
            #edf4ff 30%,
            #f7faff 100%
        );
}

/* Grand halo décoratif */

.home-services-page .home-services-offers::after {
    position: absolute;
    top: 3rem;
    right: -10rem;

    width: 28rem;
    height: 28rem;

    content: "";
    pointer-events: none;

    border: 1px solid rgba(7, 88, 213, 0.09);
    border-radius: 50%;

    box-shadow:
        0 0 0 4rem rgba(7, 88, 213, 0.025),
        0 0 0 8rem rgba(7, 88, 213, 0.018);
}

.home-services-page .home-services-offers .container {
    position: relative;
    z-index: 1;
}

/* Titre de section dans une zone plus visible */

.home-services-page
.home-services-offers
.home-services-section-heading {
    padding: clamp(1.8rem, 3vw, 2.6rem);

    border: 1px solid rgba(7, 88, 213, 0.12);
    border-radius: 1.5rem;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #f7faff 60%,
            #eaf2ff 100%
        );

    box-shadow: 0 14px 32px rgba(21, 66, 128, 0.07);
}

.home-services-page
.home-services-offers
.home-services-section-heading__eyebrow {
    color: #a0620d;
}

.home-services-page
.home-services-offers
.home-services-section-heading h2 {
    color: #061d4c;
}

.home-services-page
.home-services-offers
.home-services-section-heading > p {
    padding: 1rem 1.2rem;

    border-left: 3px solid #d4932a;
    border-radius: 0 0.8rem 0.8rem 0;

    color: #4d5d75;
    background: #fffaf2;
}

/* ==========================================================
   CARTES DE SERVICES
   ========================================================== */

.home-services-page .home-service-card {
    position: relative;

    min-height: 16rem;

    border: 1px solid rgba(7, 88, 213, 0.17);
    border-top: 5px solid #0758d5;
    border-radius: 1.35rem;

    background: #ffffff;

    box-shadow:
        0 16px 34px rgba(17, 59, 119, 0.095);
}

/* Variation légère par carte */

.home-services-page .home-service-card:nth-child(2) {
    border-top-color: #159cb2;
}

.home-services-page .home-service-card:nth-child(3) {
    border-top-color: #d9932b;
}

.home-services-page .home-service-card:nth-child(4) {
    border-top-color: #675bc8;
}

.home-services-page .home-service-card:nth-child(5) {
    border-top-color: #0d9992;
}

.home-services-page .home-service-card:nth-child(6) {
    border-top-color: #3354c8;
}

/* Fond doux dans les cartes */

.home-services-page .home-service-card:nth-child(1),
.home-services-page .home-service-card:nth-child(4) {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #edf4ff
        );
}

.home-services-page .home-service-card:nth-child(2),
.home-services-page .home-service-card:nth-child(5) {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eaf8f7
        );
}

.home-services-page .home-service-card:nth-child(3) {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff5e6
        );
}

.home-services-page .home-service-card:nth-child(6) {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eef0ff
        );
}

/* Icônes plus visibles */

.home-services-page .home-service-card__icon {
    width: 4.3rem;
    height: 4.3rem;
    flex-basis: 4.3rem;

    border: 1px solid rgba(7, 88, 213, 0.17);

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e6f0ff
        );

    box-shadow: 0 10px 22px rgba(16, 62, 130, 0.1);
}

.home-services-page .home-service-card h3 {
    color: #061d4c;
}

.home-services-page .home-service-card p {
    color: #4c5d75;
}

/* Effet au survol */

.home-services-page .home-service-card:hover {
    transform: translateY(-5px);

    border-color: rgba(7, 88, 213, 0.3);

    box-shadow:
        0 22px 42px rgba(17, 59, 119, 0.14);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 760px) {
    .home-services-page .home-services-hero__content {
        padding: 1.25rem;

        border-left-width: 3px;
    }

    .home-services-page
    .home-services-offers
    .home-services-section-heading {
        padding: 1.4rem;
    }

    .home-services-page .home-services-offers::after {
        display: none;
    }
}

/* ==========================================================
   HERO FINAL — MÊME ESPRIT QUE SOLUTIONS NUMÉRIQUES
   ========================================================== */

.home-services-page .home-services-hero {
    position: relative;
    padding: clamp(3rem, 5vw, 5.25rem) 0;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #ffffff 41%,
            #eef4ff 41%,
            #eef4ff 100%
        );
}

/* On retire le trait inférieur ajouté précédemment */

.home-services-page .home-services-hero::after {
    display: none;
}

.home-services-page .home-services-hero__layout {
    grid-template-columns:
        minmax(24rem, 0.82fr)
        minmax(36rem, 1.18fr);

    gap: clamp(2rem, 4.5vw, 5rem);
    align-items: center;
}

/* Le texte n’est plus enfermé dans une carte */

.home-services-page .home-services-hero__content {
    max-width: 42rem;
    padding: 0;

    border: 0;
    border-radius: 0;

    background: transparent;
    box-shadow: none;
}

/* Badge beige identique à l’univers du site */

.home-services-page .home-services-eyebrow {
    margin-bottom: 1.35rem;
    padding: 0.52rem 0.9rem;

    border-radius: 999px;

    color: #92580b;
    background: #f8ead5;

    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.085em;
}

/* Titre plus naturel, moins vertical */

.home-services-page .home-services-hero h1 {
    max-width: 11ch;

    color: #061d4c;

    font-size: clamp(3.5rem, 5vw, 5.45rem);
    font-weight: 750;
    line-height: 1.01;
    letter-spacing: -0.045em;
}

.home-services-page .home-services-hero h1 span {
    display: block;
    color: #0758d5;
}

/* Texte d’introduction sans encadré */

.home-services-page .home-services-hero__intro {
    max-width: 38rem;
    margin-top: 1.55rem;

    color: #34435a;

    font-size: clamp(1rem, 1.15vw, 1.1rem);
    line-height: 1.68;
}

.home-services-page .home-services-hero__promise {
    margin-top: 0.9rem;
    padding: 0;

    border: 0;

    color: #657188;
    background: transparent;

    font-size: 0.91rem;
}

/* Boutons alignés sur les autres pages */

.home-services-page .home-services-actions {
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.home-services-page .home-services-button {
    min-height: 3.2rem;
    padding: 0.8rem 1.45rem;
}

/* Visuel moins carré et davantage intégré au bandeau */

.home-services-page .home-services-hero__visual {
    position: relative;
    min-width: 0;
}

.home-services-page .home-services-hero__image {
    position: relative;

    min-height: clamp(28rem, 38vw, 36rem);

    overflow: hidden;

    border: 0;
    border-radius:
        2rem
        2rem
        5.5rem
        2rem;

    background: #e8f1ff;

    box-shadow:
        0 18px 38px rgba(13, 58, 126, 0.08);
}

.home-services-page .home-services-hero__image img {
    width: 100%;
    height: 100%;
    min-height: inherit;

    display: block;

    object-fit: cover;
    object-position: center;
}

/* Courbe douce en bas du visuel */

.home-services-page .home-services-hero__image::after {
    position: absolute;
    right: -5%;
    bottom: -4.5rem;
    left: -5%;

    display: block;

    height: 8rem;

    content: "";
    pointer-events: none;

    border-radius: 50% 50% 0 0;

    background: rgba(238, 244, 255, 0.92);
}

/* Étiquettes flottantes plus légères */

.home-services-page .home-services-floating-card {
    padding: 0.65rem 0.9rem;

    border: 1px solid rgba(7, 88, 213, 0.12);
    border-radius: 999px;

    color: #07347f;
    background: rgba(255, 255, 255, 0.94);

    box-shadow:
        0 9px 22px rgba(16, 57, 116, 0.09);
}

.home-services-page .home-services-floating-card--support {
    top: 1.5rem;
    left: -1.3rem;
}

.home-services-page .home-services-floating-card--local {
    right: 1.2rem;
    bottom: 1.5rem;
}

/* Responsive */

@media (max-width: 1180px) {
    .home-services-page .home-services-hero {
        background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #ffffff 46%,
                #eef4ff 46%,
                #eef4ff 100%
            );
    }

    .home-services-page .home-services-hero__layout {
        grid-template-columns: 1fr;
    }

    .home-services-page .home-services-hero__content {
        max-width: 46rem;
    }

    .home-services-page .home-services-hero h1 {
        max-width: 13ch;
    }
}

@media (max-width: 760px) {
    .home-services-page .home-services-hero {
        padding-top: 2.8rem;

        background:
            linear-gradient(
                180deg,
                #ffffff,
                #eef4ff
            );
    }

    .home-services-page .home-services-hero h1 {
        max-width: 10ch;

        font-size: clamp(2.8rem, 11vw, 4rem);
    }

    .home-services-page .home-services-hero__image {
        min-height: 23rem;

        border-radius:
            1.5rem
            1.5rem
            3rem
            1.5rem;
    }
}

/* HERO ENTIÈREMENT BLEU CLAIR */

.home-services-page .home-services-hero {
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(7, 88, 213, 0.16),
            transparent 24rem
        ),
        radial-gradient(
            circle at 88% 18%,
            rgba(48, 166, 216, 0.15),
            transparent 28rem
        ),
        linear-gradient(
            105deg,
            #e9f2ff 0%,
            #f4f8ff 46%,
            #dceaff 100%
        );
}

@media (max-width: 1180px) {
    .home-services-page .home-services-hero {
        background:
            linear-gradient(
                180deg,
                #edf4ff 0%,
                #dfeaff 100%
            );
    }
}

@media (max-width: 760px) {
    .home-services-page .home-services-hero {
        background:
            linear-gradient(
                180deg,
                #edf4ff 0%,
                #dceaff 100%
            );
    }
}

/* Correction du visuel principal */

.home-services-page .home-services-hero__image::before,
.home-services-page .home-services-hero__image::after {
    display: none;
}

.home-services-page .home-services-hero__image {
    overflow: hidden;
    border-radius: 2rem 2rem 5rem 2rem;
}

.home-services-page .home-services-hero__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* ==========================================================
   DÉTAIL — ASSISTANCE INFORMATIQUE
   ========================================================== */

.home-service-card--linked {
    cursor: pointer;
}

.home-service-card--linked .home-service-card__content,
.home-service-card--linked .home-service-card__icon {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.home-service-card__link {
    position: absolute;
    z-index: 1;
    inset: 0;
    border-radius: inherit;
}

.home-service-card__discover {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.3rem;
    color: #0758d5;
    font-size: 0.84rem;
    font-weight: 750;
}

.home-service-card--linked:hover .home-service-card__discover {
    gap: 0.8rem;
}

/* Grande section détaillée */

.home-service-detail {
    position: relative;
    padding: clamp(5.5rem, 8vw, 8rem) 0;
    scroll-margin-top: 7rem;
}

.home-service-detail--assistance {
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(7, 88, 213, 0.11),
            transparent 24rem
        ),
        linear-gradient(
            115deg,
            #e7f1ff 0%,
            #f4f8ff 52%,
            #ffffff 100%
        );
}

.home-service-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

/* Image */

.home-service-detail__visual {
    position: relative;
    min-width: 0;
}

.home-service-detail__visual > img {
    width: 100%;
    min-height: 37rem;
    display: block;
    object-fit: cover;
    border-radius: 2rem 2rem 5rem 2rem;
    box-shadow: 0 25px 55px rgba(11, 53, 117, 0.13);
}

.home-service-detail__visual::before {
    position: absolute;
    z-index: 0;
    top: -1.6rem;
    left: -1.6rem;
    width: 9rem;
    height: 9rem;
    content: "";
    border: 1px solid rgba(7, 88, 213, 0.16);
    border-radius: 50%;
}

.home-service-detail__visual-badge {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(7, 88, 213, 0.13);
    border-radius: 999px;
    color: #06377f;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 25px rgba(12, 53, 113, 0.11);
}

.home-service-detail__visual-badge img {
    width: 1.7rem;
    height: 1.7rem;
}

.home-service-detail__visual-badge span {
    font-size: 0.82rem;
    font-weight: 750;
}

/* Texte */

.home-service-detail__content h2 {
    max-width: 14ch;
    margin: 0;
    color: #061d4c;
    font-size: clamp(2.5rem, 4.3vw, 4.4rem);
    font-weight: 750;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.home-service-detail__content h2 span {
    display: block;
    color: #0758d5;
}

.home-service-detail__lead {
    max-width: 42rem;
    margin: 1.6rem 0 0;
    color: #40516a;
    font-size: 1.03rem;
    line-height: 1.75;
}

/* Prestations */

.home-service-detail__services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.2rem;
}

.home-service-detail__services article {
    display: flex;
    gap: 0.9rem;
    padding: 1.25rem;
    border: 1px solid rgba(7, 88, 213, 0.11);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.82);
}

.home-service-detail__check {
    display: grid;
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    place-items: center;
    border-radius: 50%;
    color: #0758d5;
    background: #e6f0ff;
    font-size: 0.78rem;
    font-weight: 900;
}

.home-service-detail__services h3 {
    margin: 0 0 0.4rem;
    color: #061d4c;
    font-size: 0.98rem;
    font-weight: 750;
}

.home-service-detail__services p {
    margin: 0;
    color: #596981;
    font-size: 0.85rem;
    line-height: 1.55;
}

/* Encadré objectif */

.home-service-detail__notice {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.6rem;
    padding: 1rem 1.2rem;
    border-left: 3px solid #d4932a;
    border-radius: 0 0.9rem 0.9rem 0;
    background: #fff8eb;
    color: #59616d;
    font-size: 0.88rem;
    line-height: 1.55;
}

.home-service-detail__notice strong {
    flex: 0 0 auto;
    color: #87530c;
}

/* Actions */

.home-service-detail__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
}

.home-service-detail__back {
    color: #0758d5;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.home-service-detail__back:hover {
    text-decoration: underline;
}

@media (max-width: 980px) {
    .home-service-detail__layout {
        grid-template-columns: 1fr;
    }

    .home-service-detail__visual > img {
        min-height: 28rem;
    }
}

@media (max-width: 660px) {
    .home-service-detail__services {
        grid-template-columns: 1fr;
    }

    .home-service-detail__visual > img {
        min-height: 22rem;
        border-radius: 1.5rem 1.5rem 3rem 1.5rem;
    }

    .home-service-detail__notice {
        display: block;
    }

    .home-service-detail__notice strong {
        display: block;
        margin-bottom: 0.3rem;
    }
}

/* ==========================================================
   PAGE DÉTAIL — ASSISTANCE INFORMATIQUE
   ========================================================== */

.home-service-page {
    background: #ffffff;
}

.home-service-page__hero {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background:
        linear-gradient(
            105deg,
            #e9f2ff 0%,
            #f7faff 52%,
            #dceaff 100%
        );
}

.home-service-page__hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(32rem, 1.15fr);
    gap: clamp(3rem, 5vw, 5rem);
    align-items: center;
}

.home-service-page__hero-content h1 {
    max-width: 12ch;
    margin: 0;
    color: #061d4c;
    font-size: clamp(3.2rem, 4.8vw, 5rem);
    font-weight: 750;
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.home-service-page__hero-content h1 span {
    display: block;
    color: #0758d5;
}

.home-service-page__intro {
    max-width: 38rem;
    margin: 1.5rem 0 0;
    color: #40516a;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Correction importante : image non étirée */

.home-service-page__hero-image {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 2rem 2rem 5rem 2rem;
    box-shadow: 0 24px 50px rgba(10, 52, 118, 0.12);
}

.home-service-page__hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.home-service-page__content {
    padding: clamp(5rem, 7vw, 7rem) 0;
    background: #ffffff;
}

.home-service-page__heading {
    max-width: 48rem;
    margin-bottom: 3rem;
}

.home-service-page__heading h2 {
    margin: 0;
    color: #061d4c;
    font-size: clamp(2.2rem, 3.5vw, 3.6rem);
    line-height: 1.08;
}

.home-service-page__heading > p:last-child {
    margin: 1rem 0 0;
    color: #56647a;
    line-height: 1.7;
}

.home-service-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.home-service-page__grid article {
    padding: 2rem;
    border: 1px solid rgba(7, 88, 213, 0.12);
    border-radius: 1.25rem;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f1f6ff
        );
}

.home-service-page__grid article > span {
    display: inline-flex;
    margin-bottom: 1rem;
    color: #0758d5;
    font-size: 0.8rem;
    font-weight: 800;
}

.home-service-page__grid h3 {
    margin: 0 0 0.65rem;
    color: #061d4c;
    font-size: 1.15rem;
}

.home-service-page__grid p {
    margin: 0;
    color: #56647a;
    line-height: 1.65;
}

@media (max-width: 980px) {
    .home-service-page__hero-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .home-service-page__grid {
        grid-template-columns: 1fr;
    }

    .home-service-page__hero-image {
        border-radius: 1.5rem 1.5rem 3rem 1.5rem;
    }
}

/* ==========================================================
   ASSISTANCE — CAS CONCRETS & OBJECTIF
   ========================================================== */

.home-service-cases {
    padding: clamp(5rem, 7vw, 7rem) 0;
    background:
        linear-gradient(
            180deg,
            #eef4ff 0%,
            #f8fbff 100%
        );
}

.home-service-cases__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-service-cases__grid article {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    min-height: 7rem;
    padding: 1.35rem;
    border: 1px solid rgba(7, 88, 213, 0.12);
    border-radius: 1rem;
    background: #ffffff;
}

.home-service-cases__grid article > span {
    display: grid;
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    place-items: center;
    border-radius: 50%;
    color: #0758d5;
    background: #e9f2ff;
    font-weight: 900;
}

.home-service-cases__grid p {
    margin: 0;
    color: #4e6078;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Encadré objectif */

.home-service-objective {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.2rem;
    align-items: start;
    margin-top: 2.4rem;
    padding: clamp(1.7rem, 3vw, 2.3rem);
    border-left: 4px solid #d4932a;
    border-radius: 0 1.2rem 1.2rem 0;
    background: #fff8eb;
}

.home-service-objective__icon {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    border-radius: 50%;
    color: #8b550a;
    background: #f6e3c2;
    font-weight: 900;
}

.home-service-objective p {
    margin: 0 0 0.4rem;
    color: #a0620d;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-service-objective h2 {
    margin: 0;
    color: #061d4c;
    font-size: clamp(1.45rem, 2.3vw, 2.2rem);
    line-height: 1.15;
}

.home-service-objective span {
    display: block;
    max-width: 55rem;
    margin-top: 0.7rem;
    color: #5b6678;
    font-size: 0.92rem;
    line-height: 1.65;
}

/* Contact détail */

.home-service-page-contact {
    padding-top: 1.5rem;
}

/* Responsive */

@media (max-width: 900px) {
    .home-service-cases__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .home-service-cases__grid {
        grid-template-columns: 1fr;
    }

    .home-service-objective {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   ASSISTANCE INFORMATIQUE — VERSION VISUELLE RENFORCÉE
   ========================================================== */

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */

.home-service-page__hero {
    position: relative;
    overflow: hidden;

    padding: clamp(4.5rem, 7vw, 7rem) 0;

    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(7, 88, 213, 0.17),
            transparent 24rem
        ),
        radial-gradient(
            circle at 88% 20%,
            rgba(43, 158, 215, 0.15),
            transparent 27rem
        ),
        linear-gradient(
            110deg,
            #dfeaff 0%,
            #f5f8ff 48%,
            #dcecff 100%
        );
}

.home-service-page__hero::after {
    position: absolute;
    right: -8rem;
    bottom: -13rem;

    width: 30rem;
    height: 30rem;

    content: "";
    pointer-events: none;

    border: 1px solid rgba(7, 88, 213, 0.09);
    border-radius: 50%;

    box-shadow:
        0 0 0 4rem rgba(7, 88, 213, 0.025),
        0 0 0 8rem rgba(7, 88, 213, 0.018);
}

.home-service-page__hero-layout {
    position: relative;
    z-index: 1;
}

/* Petit libellé comme sur le reste du site */

.home-service-page__hero .home-services-eyebrow {
    color: #94580a;
    background: #f8ead5;
}

/* Titre */

.home-service-page__hero-content h1 {
    color: #061d4c;
}

.home-service-page__hero-content h1 span {
    color: #0758d5;
}

/* Texte d'introduction */

.home-service-page__intro {
    color: #3c4f69;
}

/* Image */

.home-service-page__hero-image {
    position: relative;

    border: 0.4rem solid rgba(255, 255, 255, 0.92);

    background: #ffffff;

    box-shadow:
        0 28px 58px rgba(7, 54, 125, 0.16);
}


/* ----------------------------------------------------------
   SECTION "CE QUE NOUS POUVONS FAIRE"
   ---------------------------------------------------------- */

.home-service-page__content {
    position: relative;

    padding: clamp(5.5rem, 8vw, 8rem) 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f3f7ff 100%
        );
}

.home-service-page__heading {
    max-width: 54rem;
}

.home-service-page__heading .home-services-section-heading__eyebrow {
    color: #a0620d;
}

.home-service-page__heading h2 {
    color: #061d4c;
}

.home-service-page__heading > p:last-child {
    color: #53647a;
}

/* Les 4 prestations */

.home-service-page__grid {
    gap: 1.5rem;
}

.home-service-page__grid article {
    position: relative;
    overflow: hidden;

    min-height: 11rem;

    padding: 2rem;

    border: 1px solid rgba(7, 88, 213, 0.15);
    border-top: 4px solid #0758d5;

    border-radius: 1.25rem;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eaf2ff
        );

    box-shadow:
        0 14px 32px rgba(15, 60, 126, 0.07);
}

.home-service-page__grid article:nth-child(2) {
    border-top-color: #17a2b4;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e8f7f7
        );
}

.home-service-page__grid article:nth-child(3) {
    border-top-color: #d9962c;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff6e8
        );
}

.home-service-page__grid article:nth-child(4) {
    border-top-color: #665bc9;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eef0ff
        );
}

.home-service-page__grid article::after {
    position: absolute;
    right: -2rem;
    bottom: -2rem;

    width: 7rem;
    height: 7rem;

    content: "";

    border-radius: 50%;

    background: rgba(7, 88, 213, 0.045);
}

.home-service-page__grid article > span {
    position: relative;
    z-index: 1;

    display: grid;

    width: 2.6rem;
    height: 2.6rem;

    place-items: center;

    margin-bottom: 1.1rem;

    border-radius: 50%;

    color: #0758d5;
    background: #ffffff;

    box-shadow:
        0 7px 18px rgba(20, 65, 129, 0.1);
}

.home-service-page__grid h3,
.home-service-page__grid p {
    position: relative;
    z-index: 1;
}


/* ----------------------------------------------------------
   SECTION CAS CONCRETS
   ---------------------------------------------------------- */

.home-service-cases {
    position: relative;

    padding: clamp(5.5rem, 8vw, 8rem) 0;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(7, 88, 213, 0.11),
            transparent 22rem
        ),
        linear-gradient(
            125deg,
            #dceaff 0%,
            #edf4ff 52%,
            #e2efff 100%
        );
}

.home-service-cases .home-service-page__heading {
    max-width: 60rem;
}

/* Empêche le point d'interrogation de partir seul */

.home-service-cases .home-service-page__heading h2 {
    max-width: none;

    font-size: clamp(2.2rem, 3.6vw, 3.7rem);

    line-height: 1.08;
}

/* Les 6 cas */

.home-service-cases__grid {
    gap: 1.15rem;
}

.home-service-cases__grid article {
    min-height: 8rem;

    border: 1px solid rgba(7, 88, 213, 0.15);
    border-radius: 1.1rem;

    background:
        rgba(255, 255, 255, 0.9);

    box-shadow:
        0 12px 26px rgba(20, 63, 123, 0.07);
}

.home-service-cases__grid article:nth-child(2),
.home-service-cases__grid article:nth-child(5) {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eaf7f7
        );
}

.home-service-cases__grid article:nth-child(3),
.home-service-cases__grid article:nth-child(6) {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff5e7
        );
}

.home-service-cases__grid article > span {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0758d5,
            #073d93
        );

    box-shadow:
        0 7px 18px rgba(7, 72, 165, 0.2);
}


/* ----------------------------------------------------------
   NOTRE OBJECTIF
   ---------------------------------------------------------- */

.home-service-objective {
    margin-top: 2.7rem;

    padding: clamp(2rem, 3.5vw, 2.8rem);

    border: 1px solid rgba(207, 139, 37, 0.23);
    border-left: 5px solid #d4932a;

    border-radius: 0 1.35rem 1.35rem 0;

    background:
        linear-gradient(
            115deg,
            #fff6e6,
            #fffaf1
        );

    box-shadow:
        0 14px 30px rgba(105, 73, 24, 0.06);
}

.home-service-objective__icon {
    width: 3.3rem;
    height: 3.3rem;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #d99a32,
            #b97013
        );

    box-shadow:
        0 9px 20px rgba(175, 111, 17, 0.18);
}


/* ----------------------------------------------------------
   BANDEAU CONTACT
   ---------------------------------------------------------- */

.home-service-page-contact {
    padding: 1.5rem 0;

    background:
        linear-gradient(
            180deg,
            #eef4ff,
            #dfeaff
        );
}


/* ----------------------------------------------------------
   PETITES ANIMATIONS
   ---------------------------------------------------------- */

.home-service-page__grid article,
.home-service-cases__grid article {
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.home-service-page__grid article:hover,
.home-service-cases__grid article:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 38px rgba(16, 60, 125, 0.12);
}


/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */

@media (max-width: 650px) {
    .home-service-cases .home-service-page__heading h2 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }
}

/* ==========================================================
   INSTALLATION & MISE EN SERVICE
   ========================================================== */

.installation-page {
    background: #ffffff;
}

.installation-hero {
    padding: clamp(4rem, 6vw, 6.5rem) 0;
    background:
        linear-gradient(
            120deg,
            #ffffff 0%,
            #f4f9ff 40%,
            #dcecff 100%
        );
}

.installation-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(32rem, 1.2fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.installation-hero__content h1 {
    max-width: 12ch;
    margin: 0;
    color: #061d4c;
    font-size: clamp(3rem, 4.8vw, 5rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.installation-hero__content h1 span {
    display: block;
    color: #0a92aa;
}

.installation-hero__content > p:last-of-type {
    max-width: 39rem;
    margin-top: 1.5rem;
    color: #42536a;
    line-height: 1.7;
}

.installation-hero__visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 4rem 1.5rem 4rem 1.5rem;
    box-shadow: 0 24px 50px rgba(12, 62, 125, 0.12);
}

.installation-hero__visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.installation-hero__badge {
    position: absolute;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    color: #0758d5;
    background: rgba(255,255,255,.94);
    box-shadow: 0 8px 20px rgba(15,60,120,.1);
    font-size: .8rem;
    font-weight: 750;
}

.installation-hero__badge--wifi {
    top: 1.5rem;
    right: 1.5rem;
}

.installation-hero__badge--ready {
    right: 1.5rem;
    bottom: 1.5rem;
    color: #087d87;
}

/* Parcours 3 étapes */

.installation-process {
    padding: clamp(5rem, 7vw, 7rem) 0;
    background: #061d4c;
}

.installation-process__heading {
    max-width: 52rem;
    margin-bottom: 3rem;
}

.installation-process__heading .home-services-section-heading__eyebrow {
    color: #f0b85c;
}

.installation-process__heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.3rem, 3.8vw, 3.9rem);
}

.installation-process__heading > p {
    margin-top: 1rem;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

.installation-process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.installation-process__steps article {
    padding: 2rem;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 1.4rem;
    background: rgba(255,255,255,.07);
}

.installation-process__steps article > span {
    color: #f0b85c;
    font-size: .72rem;
    font-weight: 800;
}

.installation-process__icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    margin: 1rem 0;
    place-items: center;
    border-radius: 50%;
    color: #061d4c;
    background: #ffffff;
}

.installation-process__steps h3 {
    margin: 0 0 .7rem;
    color: #ffffff;
    font-size: 1.25rem;
}

.installation-process__steps p {
    margin: 0;
    color: rgba(255,255,255,.72);
    line-height: 1.6;
}

/* Équipements */

.installation-equipment {
    padding: clamp(5rem, 7vw, 7rem) 0;
    background:
        linear-gradient(
            135deg,
            #eef8fa,
            #ffffff 55%,
            #eef4ff
        );
}

.installation-equipment__layout {
    display: grid;
    grid-template-columns: minmax(22rem, .85fr) minmax(0, 1.15fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.installation-equipment__visual {
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: 1.5rem 4rem 1.5rem 4rem;
}

.installation-equipment__visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.installation-equipment__content h2 {
    max-width: 16ch;
    margin: 0;
    color: #061d4c;
    font-size: clamp(2.3rem, 3.7vw, 3.8rem);
    line-height: 1.08;
}

.installation-equipment__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.installation-equipment__grid article {
    padding: 1.2rem;
    border-left: 3px solid #0a9bae;
    background: rgba(255,255,255,.8);
}

.installation-equipment__grid strong,
.installation-equipment__grid span {
    display: block;
}

.installation-equipment__grid strong {
    color: #061d4c;
}

.installation-equipment__grid span {
    margin-top: .35rem;
    color: #596981;
    font-size: .85rem;
    line-height: 1.5;
}

/* Avant / après */

.installation-check {
    padding: clamp(5rem, 7vw, 7rem) 0;
    background: #fff7e9;
}

.installation-check__layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.installation-check__column {
    padding: 2rem;
    border-radius: 1.5rem;
}

.installation-check__column--before {
    background: #ffffff;
}

.installation-check__column--after {
    background: #eaf4ff;
}

.installation-check__column > p {
    margin: 0 0 .4rem;
    color: #a0620d;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.installation-check__column h2 {
    margin: 0;
    color: #061d4c;
    font-size: 2rem;
}

.installation-check__column ul {
    margin: 1.2rem 0 0;
    padding-left: 1.2rem;
    color: #53647a;
    line-height: 1.9;
}

.installation-check__separator {
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: #0758d5;
    font-size: 1.3rem;
}

.installation-contact {
    padding-top: 1.5rem;
}

@media (max-width: 980px) {
    .installation-hero__layout,
    .installation-equipment__layout {
        grid-template-columns: 1fr;
    }

    .installation-process__steps {
        grid-template-columns: 1fr;
    }

    .installation-check__layout {
        grid-template-columns: 1fr;
    }

    .installation-check__separator {
        transform: rotate(90deg);
        justify-self: center;
    }
}

@media (max-width: 650px) {
    .installation-equipment__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   INSTALLATION — AJUSTEMENTS D'ÉQUILIBRE VISUEL
   ========================================================== */

/* ----------------------------------------------------------
   HERO : boutons bien alignés
   ---------------------------------------------------------- */

.installation-hero .home-services-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
}

.installation-hero .home-services-button {
    min-height: 3.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.installation-hero .home-services-button--secondary {
    margin: 0;
}

/* ----------------------------------------------------------
   HERO : un peu moins haut
   ---------------------------------------------------------- */

.installation-hero {
    padding:
        clamp(3.5rem, 5vw, 5rem)
        0;
}

.installation-hero__visual {
    aspect-ratio: 16 / 9;
}

/* ----------------------------------------------------------
   SECTION MÉTHODE : moins haute
   ---------------------------------------------------------- */

.installation-process {
    padding:
        clamp(3.8rem, 5.5vw, 5.5rem)
        0;
}

.installation-process__heading {
    margin-bottom: 2.2rem;
}

.installation-process__heading h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
}

/* ----------------------------------------------------------
   CARTES MÉTHODE : meilleur contraste
   ---------------------------------------------------------- */

.installation-process__steps {
    gap: 1.4rem;
}

.installation-process__steps article {
    position: relative;
    overflow: hidden;

    min-height: 13rem;

    padding: 1.8rem;

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 1.35rem;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.16),
            rgba(255, 255, 255, 0.08)
        );

    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.12);
}

.installation-process__steps article::after {
    position: absolute;
    right: -2.5rem;
    bottom: -2.5rem;

    width: 8rem;
    height: 8rem;

    content: "";

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);
}

/* variations légères */

.installation-process__steps article:nth-child(1) {
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.18),
            rgba(30, 92, 170, 0.20)
        );
}

.installation-process__steps article:nth-child(2) {
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.16),
            rgba(12, 142, 160, 0.22)
        );
}

.installation-process__steps article:nth-child(3) {
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.16),
            rgba(213, 145, 39, 0.16)
        );
}

/* ----------------------------------------------------------
   NUMÉROS : beaucoup plus visibles
   ---------------------------------------------------------- */

.installation-process__steps article > span {
    position: relative;
    z-index: 1;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 3.1rem;
    height: 3.1rem;

    margin-bottom: 1rem;

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;

    color: #061d4c;

    background:
        linear-gradient(
            135deg,
            #ffd87b,
            #e9a52e
        );

    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.15);

    font-size: 1rem;
    font-weight: 900;
}

/* icône plus discrète car le numéro devient le repère principal */

.installation-process__icon {
    position: absolute;
    top: 1.8rem;
    right: 1.8rem;

    width: 2.6rem;
    height: 2.6rem;

    margin: 0;

    background: rgba(255, 255, 255, 0.92);

    font-size: 0.9rem;
}

/* contenu */

.installation-process__steps h3 {
    position: relative;
    z-index: 1;

    margin: 0 0 0.65rem;

    font-size: 1.25rem;
}

.installation-process__steps p {
    position: relative;
    z-index: 1;

    font-size: 0.9rem;
    line-height: 1.55;
}

/* ----------------------------------------------------------
   SECTION ÉQUIPEMENTS : hauteur réduite
   ---------------------------------------------------------- */

.installation-equipment {
    padding:
        clamp(4rem, 5.5vw, 5.5rem)
        0;
}

/* ----------------------------------------------------------
   AVANT / APRÈS : plus compact
   ---------------------------------------------------------- */

.installation-check {
    padding:
        clamp(3.8rem, 5vw, 5rem)
        0;
}

.installation-check__column {
    padding: 1.7rem;
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */

@media (max-width: 760px) {
    .installation-hero .home-services-actions {
        display: grid;
    }

    .installation-hero .home-services-button {
        width: 100%;
    }

    .installation-process__steps article {
        min-height: auto;
    }
}

/* ==========================================================
   INSTALLATION — BOUTONS DU HERO SUR LA MÊME LIGNE
   ========================================================== */

.installation-hero .home-services-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.9rem;
}

.installation-hero .home-services-button {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .installation-hero .home-services-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .installation-hero .home-services-button {
        width: 100%;
        white-space: normal;
    }
}

/* ==========================================================
   INSTALLATION — AJUSTEMENTS FINAUX
   ========================================================== */

/* Textes des cartes équipements un peu plus lisibles */

.installation-equipment__grid strong {
    font-size: 0.98rem;
}

.installation-equipment__grid span {
    margin-top: 0.42rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Un peu plus d'air dans la section équipements */

.installation-equipment__content {
    padding-block: 0.5rem;
}

.installation-equipment__grid {
    margin-top: 2.2rem;
    gap: 1.15rem;
}

/* Plus de respiration avant la section avant / après */

.installation-check {
    margin-top: 1.5rem;
}

/* Cartes avant / après légèrement plus lisibles */

.installation-check__column {
    padding: 1.9rem;
}

.installation-check__column li {
    font-size: 0.92rem;
}

/* Mobile : meilleure lisibilité et respiration */

@media (max-width: 760px) {
    .installation-hero {
        padding-top: 3rem;
        padding-bottom: 3.5rem;
    }

    .installation-process {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .installation-equipment {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .installation-check {
        margin-top: 0;
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }

    .installation-equipment__grid span,
    .installation-check__column li {
        font-size: 0.94rem;
    }
}

/* ==========================================================
   PETITS TRAVAUX
   ========================================================== */

.small-work-page {
    background: #ffffff;
}

/* HERO */

.small-work-hero {
    padding: clamp(4rem, 6vw, 6rem) 0;

    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(224, 153, 45, 0.14),
            transparent 24rem
        ),
        linear-gradient(
            115deg,
            #fffaf3 0%,
            #ffffff 46%,
            #eaf3ff 100%
        );
}

.small-work-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(32rem, 1.18fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.small-work-hero__content h1 {
    max-width: 12ch;
    margin: 0;

    color: #061d4c;

    font-size: clamp(3.1rem, 4.8vw, 5rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.small-work-hero__content h1 span {
    display: block;
    color: #d58a1f;
}

.small-work-hero__content > p:last-of-type {
    max-width: 39rem;
    margin-top: 1.5rem;

    color: #42536a;

    line-height: 1.7;
}

.small-work-hero__visual {
    position: relative;
    overflow: hidden;

    aspect-ratio: 16 / 10;

    border-radius: 1.5rem 4.5rem 1.5rem 4.5rem;

    box-shadow:
        0 24px 52px rgba(76, 57, 26, 0.12);
}

.small-work-hero__visual img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.small-work-hero__label {
    position: absolute;

    padding: 0.65rem 0.9rem;

    border-radius: 999px;

    color: #061d4c;
    background: rgba(255,255,255,.95);

    box-shadow:
        0 8px 20px rgba(30, 55, 92, 0.11);

    font-size: 0.78rem;
    font-weight: 750;
}

.small-work-hero__label--one {
    top: 1.4rem;
    left: 1.4rem;
}

.small-work-hero__label--two {
    top: 50%;
    right: 1.4rem;
}

.small-work-hero__label--three {
    bottom: 1.4rem;
    left: 1.4rem;
}

/* FIXER / MONTER / AJUSTER */

.small-work-actions {
    padding: clamp(4.5rem, 6vw, 6rem) 0;

    background: #ffffff;
}

.small-work-actions__heading {
    max-width: 50rem;
    margin-bottom: 2.5rem;
}

.small-work-actions__heading h2 {
    margin: 0;

    color: #061d4c;

    font-size: clamp(2.4rem, 3.8vw, 3.8rem);
}

.small-work-actions__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.small-work-actions__grid article {
    position: relative;

    min-height: 15rem;

    padding: 2rem;

    overflow: hidden;

    border-radius: 1.4rem;

    background:
        linear-gradient(
            145deg,
            #fff7e9,
            #ffffff
        );

    box-shadow:
        inset 0 0 0 1px rgba(211, 140, 31, 0.16),
        0 14px 30px rgba(77, 55, 22, 0.07);
}

.small-work-actions__grid article:nth-child(2) {
    background:
        linear-gradient(
            145deg,
            #edf8f7,
            #ffffff
        );
}

.small-work-actions__grid article:nth-child(3) {
    background:
        linear-gradient(
            145deg,
            #edf4ff,
            #ffffff
        );
}

.small-work-actions__grid article > span {
    display: grid;

    width: 3.2rem;
    height: 3.2rem;

    margin-bottom: 1.3rem;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;
    background: #d58a1f;

    font-weight: 900;
}

.small-work-actions__grid article:nth-child(2) > span {
    background: #0b9a9c;
}

.small-work-actions__grid article:nth-child(3) > span {
    background: #0758d5;
}

.small-work-actions__grid h3 {
    margin: 0 0 0.7rem;

    color: #061d4c;

    font-size: 1.4rem;
}

.small-work-actions__grid p {
    margin: 0;

    color: #53647a;

    line-height: 1.65;
}

/* EXEMPLES */

.small-work-examples {
    padding: clamp(5rem, 7vw, 7rem) 0;

    background:
        linear-gradient(
            120deg,
            #f1f6ff,
            #ffffff
        );
}

.small-work-examples__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(28rem, .85fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.small-work-examples__content h2 {
    max-width: 15ch;
    margin: 0;

    color: #061d4c;

    font-size: clamp(2.3rem, 3.7vw, 3.8rem);
    line-height: 1.08;
}

.small-work-examples__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 2rem;
}

.small-work-examples__list article {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;

    padding: 1rem;

    border-radius: 0.9rem;

    background: rgba(255,255,255,.9);
}

.small-work-examples__list article > span {
    color: #d58a1f;
    font-weight: 900;
}

.small-work-examples__list p {
    margin: 0;

    color: #53647a;

    font-size: 0.88rem;
    line-height: 1.5;
}

.small-work-examples__visual {
    overflow: hidden;

    aspect-ratio: 4 / 5;

    border-radius: 4rem 1.5rem 4rem 1.5rem;
}

.small-work-examples__visual img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

/* LIMITES */

.small-work-limits {
    padding: clamp(5rem, 7vw, 7rem) 0;

    background: #061d4c;
}

.small-work-limits__layout {
    display: grid;
    grid-template-columns: minmax(20rem, .8fr) minmax(0, 1.2fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.small-work-limits__main h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(2.3rem, 3.7vw, 3.8rem);
    line-height: 1.08;
}

.small-work-limits__main > p:last-child {
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

.small-work-limits__cards {
    display: grid;
    gap: 1rem;
}

.small-work-limits__card {
    display: flex;
    gap: 1rem;

    padding: 1.5rem;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 1.2rem;

    background: rgba(255,255,255,.07);
}

.small-work-limits__card > span {
    display: grid;

    width: 2.4rem;
    height: 2.4rem;
    flex: 0 0 2.4rem;

    place-items: center;

    border-radius: 50%;

    font-weight: 900;
}

.small-work-limits__card--yes > span {
    color: #0758d5;
    background: #ffffff;
}

.small-work-limits__card--no > span {
    color: #7b3a00;
    background: #ffd58f;
}

.small-work-limits__card h3 {
    margin: 0 0 0.4rem;

    color: #ffffff;
}

.small-work-limits__card p {
    margin: 0;

    color: rgba(255,255,255,.7);

    line-height: 1.55;
}

/* AVANT NOTRE VENUE */

.small-work-before {
    padding: clamp(4rem, 6vw, 6rem) 0;

    background: #fff7e9;
}

.small-work-before__layout {
    display: grid;
    grid-template-columns: minmax(18rem, .75fr) minmax(0, 1.25fr);
    gap: 4rem;
}

.small-work-before h2 {
    margin: 0;

    color: #061d4c;

    font-size: clamp(2rem, 3vw, 3rem);
}

.small-work-before__items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.small-work-before__items article {
    padding: 1.3rem;

    border-top: 3px solid #d58a1f;

    background: #ffffff;
}

.small-work-before__items strong,
.small-work-before__items span {
    display: block;
}

.small-work-before__items strong {
    color: #061d4c;
}

.small-work-before__items span {
    margin-top: 0.4rem;

    color: #596981;

    font-size: 0.84rem;
    line-height: 1.5;
}

.small-work-contact {
    padding-top: 1.5rem;
}

@media (max-width: 980px) {
    .small-work-hero__layout,
    .small-work-examples__layout,
    .small-work-limits__layout,
    .small-work-before__layout {
        grid-template-columns: 1fr;
    }

    .small-work-actions__grid {
        grid-template-columns: 1fr;
    }

    .small-work-before__items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .small-work-examples__list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   PETITS TRAVAUX — AJUSTEMENTS FINAUX
   ========================================================== */

/* Cartes Fixer / Monter / Ajuster plus présentes */

.small-work-actions__grid article {
    min-height: 16rem;
    padding: 2.15rem;

    box-shadow:
        inset 0 0 0 1px rgba(7, 88, 213, 0.10),
        0 18px 34px rgba(28, 66, 116, 0.09);
}

.small-work-actions__grid h3 {
    font-size: 1.5rem;
}

.small-work-actions__grid p {
    font-size: 0.93rem;
}

/* Dernière section mieux équilibrée */

.small-work-before__layout {
    grid-template-columns:
        minmax(19rem, 0.72fr)
        minmax(0, 1.28fr);

    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
}

.small-work-before__items {
    gap: 1.2rem;
}

.small-work-before__items article {
    min-height: 10.5rem;

    padding: 1.6rem;

    border-top-width: 4px;

    box-shadow:
        0 12px 28px rgba(73, 53, 22, 0.07);
}

.small-work-before__items strong {
    font-size: 1rem;
}

.small-work-before__items span {
    margin-top: 0.55rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Plus d'air avant le contact */

.small-work-contact {
    padding-top: 2.3rem;
    padding-bottom: 2rem;
}

/* Hero un peu plus compact */

.small-work-hero {
    padding-top: clamp(3.5rem, 5vw, 5rem);
    padding-bottom: clamp(3.5rem, 5vw, 5rem);
}

@media (max-width: 980px) {
    .small-work-before__layout {
        grid-template-columns: 1fr;
    }

    .small-work-before__items article {
        min-height: auto;
    }
}

/* ==========================================================
   PETITS TRAVAUX — CORRECTIONS VISUELLES FINALES
   ========================================================== */

/* ----------------------------------------------------------
   HERO : boutons sur la même ligne
   ---------------------------------------------------------- */

.small-work-hero .home-services-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.9rem;
}

.small-work-hero .home-services-button {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
}

/* ----------------------------------------------------------
   DES INTERVENTIONS CONCRÈTES
   ---------------------------------------------------------- */

.small-work-examples {
    background:
        linear-gradient(
            120deg,
            #e7f1ff 0%,
            #f6f9ff 52%,
            #edf7f7 100%
        );
}

.small-work-examples__layout {
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(25rem, 0.95fr);

    gap: clamp(3rem, 6vw, 5.5rem);
}

/* Les exemples deviennent de vraies petites cartes */

.small-work-examples__list {
    gap: 1rem;
}

.small-work-examples__list article {
    min-height: 6.5rem;

    padding: 1.15rem;

    border: 1px solid rgba(7, 88, 213, 0.14);
    border-radius: 1rem;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #edf4ff
        );

    box-shadow:
        0 10px 24px rgba(20, 61, 121, 0.07);
}

.small-work-examples__list article:nth-child(2),
.small-work-examples__list article:nth-child(5) {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e8f8f6
        );

    border-color: rgba(13, 151, 146, 0.18);
}

.small-work-examples__list article:nth-child(3),
.small-work-examples__list article:nth-child(6) {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff3df
        );

    border-color: rgba(213, 138, 31, 0.19);
}

.small-work-examples__list article > span {
    display: grid;

    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;
    background: #0758d5;

    box-shadow:
        0 7px 16px rgba(7, 75, 177, 0.18);
}

.small-work-examples__list article:nth-child(2) > span,
.small-work-examples__list article:nth-child(5) > span {
    background: #0d9992;
}

.small-work-examples__list article:nth-child(3) > span,
.small-work-examples__list article:nth-child(6) > span {
    background: #d58a1f;
}

.small-work-examples__list p {
    color: #41536b;
    font-size: 0.9rem;
    line-height: 1.55;
}

/* ----------------------------------------------------------
   QUELQUES INFORMATIONS NOUS FONT GAGNER DU TEMPS
   ---------------------------------------------------------- */

.small-work-before {
    padding:
        clamp(4.5rem, 6vw, 6rem)
        0;

    background:
        linear-gradient(
            120deg,
            #fff5e5 0%,
            #fffaf2 48%,
            #eef4ff 100%
        );
}

.small-work-before__layout {
    grid-template-columns:
        minmax(18rem, 0.8fr)
        minmax(0, 1.2fr);

    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.small-work-before__layout > div:first-child {
    max-width: 28rem;
}

.small-work-before__layout > div:first-child h2 {
    max-width: 12ch;

    font-size: clamp(2.25rem, 3.4vw, 3.4rem);
    line-height: 1.08;
}

/* Cartes plus grandes, plus colorées */

.small-work-before__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.small-work-before__items article {
    position: relative;
    overflow: hidden;

    min-height: 12rem;

    padding: 1.65rem;

    border: 1px solid rgba(213, 138, 31, 0.18);
    border-top: 5px solid #d58a1f;
    border-radius: 1.1rem;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff3df
        );

    box-shadow:
        0 14px 30px rgba(89, 62, 22, 0.08);
}

.small-work-before__items article:nth-child(2) {
    border-color: rgba(13, 151, 146, 0.18);
    border-top-color: #0d9992;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e9f8f6
        );
}

.small-work-before__items article:nth-child(3) {
    border-color: rgba(7, 88, 213, 0.16);
    border-top-color: #0758d5;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eaf2ff
        );
}

/* Gros numéro visuel */

.small-work-before__items article::before {
    display: grid;

    width: 2.7rem;
    height: 2.7rem;

    margin-bottom: 1rem;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;
    background: #d58a1f;

    font-size: 0.85rem;
    font-weight: 900;
}

.small-work-before__items article:nth-child(1)::before {
    content: "01";
}

.small-work-before__items article:nth-child(2)::before {
    content: "02";
    background: #0d9992;
}

.small-work-before__items article:nth-child(3)::before {
    content: "03";
    background: #0758d5;
}

.small-work-before__items strong {
    color: #061d4c;
    font-size: 1.05rem;
}

.small-work-before__items span {
    margin-top: 0.55rem;

    color: #4e6078;

    font-size: 0.9rem;
    line-height: 1.6;
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */

@media (max-width: 980px) {
    .small-work-examples__layout,
    .small-work-before__layout {
        grid-template-columns: 1fr;
    }

    .small-work-before__layout > div:first-child {
        max-width: none;
    }

    .small-work-before__layout > div:first-child h2 {
        max-width: 16ch;
    }
}

@media (max-width: 760px) {
    .small-work-hero .home-services-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .small-work-hero .home-services-button {
        width: 100%;
        white-space: normal;
    }

    .small-work-before__items {
        grid-template-columns: 1fr;
    }

    .small-work-before__items article {
        min-height: auto;
    }
}

/* ==========================================================
   ICONE INTRO BANDEAU CONTACT
   ========================================================== */

.home-services-contact__intro {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.home-services-contact__intro-icon {
    display: grid;
    width: 3.9rem;
    height: 3.9rem;
    flex: 0 0 3.9rem;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);

    box-shadow:
        inset 0 0 0 0.38rem rgba(255, 255, 255, 0.04);
}

.home-services-contact__intro-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
}

.home-services-contact__intro .home-services-contact__heading {
    padding: 0;
}

@media (max-width: 760px) {
    .home-services-contact__intro {
        align-items: flex-start;
    }

    .home-services-contact__intro-icon {
        width: 3.4rem;
        height: 3.4rem;
        flex-basis: 3.4rem;
    }
}

/* ==========================================================
   DÉPANNAGE À DOMICILE
   ========================================================== */

.repair-page {
    background: #ffffff;
}

/* HERO */

.repair-hero {
    padding: clamp(4rem, 6vw, 6rem) 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(94, 91, 201, 0.13),
            transparent 24rem
        ),
        linear-gradient(
            115deg,
            #edf1ff 0%,
            #ffffff 48%,
            #e8f2ff 100%
        );
}

.repair-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(32rem, 1.18fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.repair-hero__content h1 {
    max-width: 12ch;
    margin: 0;

    color: #061d4c;

    font-size: clamp(3.1rem, 4.8vw, 5rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.repair-hero__content h1 span {
    display: block;
    color: #615bc9;
}

.repair-hero__content > p:last-of-type {
    max-width: 39rem;
    margin-top: 1.5rem;

    color: #42536a;

    line-height: 1.7;
}

.repair-hero__visual {
    position: relative;
    overflow: hidden;

    aspect-ratio: 16 / 10;

    border-radius: 4rem 1.5rem 4rem 1.5rem;

    box-shadow:
        0 24px 52px rgba(44, 44, 106, 0.13);
}

.repair-hero__visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.repair-hero__status {
    position: absolute;

    padding: .65rem .9rem;

    border-radius: 999px;

    color: #061d4c;
    background: rgba(255,255,255,.95);

    box-shadow:
        0 8px 20px rgba(30, 55, 92, 0.11);

    font-size: .78rem;
    font-weight: 750;
}

.repair-hero__status--one {
    top: 1.4rem;
    left: 1.4rem;
}

.repair-hero__status--two {
    top: 50%;
    right: 1.4rem;
}

.repair-hero__status--three {
    bottom: 1.4rem;
    left: 1.4rem;
}

/* SYMPTÔMES */

.repair-symptoms {
    padding: clamp(5rem, 7vw, 7rem) 0;
    background: #ffffff;
}

.repair-symptoms__heading {
    max-width: 56rem;
    margin-bottom: 2.5rem;
}

.repair-symptoms__heading h2 {
    margin: 0;
    color: #061d4c;
    font-size: clamp(2.4rem, 3.8vw, 3.8rem);
    line-height: 1.08;
}

.repair-symptoms__heading > p {
    margin-top: 1rem;
    color: #56647a;
    line-height: 1.7;
}

.repair-symptoms__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.repair-symptoms__grid article {
    padding: 1.5rem;
    border: 1px solid rgba(97, 91, 201, .16);
    border-radius: 1.1rem;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f0f0ff
        );
}

.repair-symptoms__grid article > span {
    display: grid;
    width: 2.3rem;
    height: 2.3rem;
    place-items: center;
    margin-bottom: .9rem;
    border-radius: 50%;
    color: #ffffff;
    background: #615bc9;
    font-weight: 900;
}

.repair-symptoms__grid h3 {
    margin: 0 0 .5rem;
    color: #061d4c;
    font-size: 1.05rem;
}

.repair-symptoms__grid p {
    margin: 0;
    color: #56647a;
    font-size: .88rem;
    line-height: 1.55;
}

/* FLOW */

.repair-flow {
    padding: clamp(4.5rem, 6vw, 6rem) 0;

    background:
        linear-gradient(
            105deg,
            #061d4c,
            #183b79 58%,
            #2d4d98
        );
}

.repair-flow__heading {
    max-width: 48rem;
    margin-bottom: 2.5rem;
}

.repair-flow__heading .home-services-section-heading__eyebrow {
    color: #f3be64;
}

.repair-flow__heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.3rem, 3.6vw, 3.6rem);
}

.repair-flow__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.repair-flow__steps article {
    display: flex;
    gap: .9rem;
    align-items: flex-start;

    padding: 1.3rem;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 1rem;

    background: rgba(255,255,255,.07);
}

.repair-flow__steps article > span {
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    flex: 0 0 2.7rem;
    place-items: center;
    border-radius: 50%;
    color: #061d4c;
    background: #f3be64;
    font-size: .78rem;
    font-weight: 900;
}

.repair-flow__steps h3 {
    margin: 0 0 .4rem;
    color: #ffffff;
}

.repair-flow__steps p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: .83rem;
    line-height: 1.5;
}

/* DIAGNOSTIC */

.repair-diagnostic {
    padding: clamp(5rem, 7vw, 7rem) 0;
    background:
        linear-gradient(
            120deg,
            #f1f5ff,
            #ffffff
        );
}

.repair-diagnostic__layout {
    display: grid;
    grid-template-columns: minmax(26rem, .9fr) minmax(0, 1.1fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.repair-diagnostic__visual {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 1.5rem 4rem 1.5rem 4rem;
}

.repair-diagnostic__visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.repair-diagnostic__content h2 {
    max-width: 13ch;
    margin: 0;
    color: #061d4c;
    font-size: clamp(2.3rem, 3.7vw, 3.8rem);
    line-height: 1.08;
}

.repair-diagnostic__content > p {
    margin-top: 1rem;
    color: #56647a;
    line-height: 1.7;
}

.repair-diagnostic__points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
    margin-top: 2rem;
}

.repair-diagnostic__points article {
    display: flex;
    gap: .7rem;
    padding: .9rem;
    border-radius: .9rem;
    background: #ffffff;
}

.repair-diagnostic__points article > span {
    color: #615bc9;
    font-weight: 900;
}

.repair-diagnostic__points p {
    margin: 0;
    color: #53647a;
    font-size: .86rem;
    line-height: 1.5;
}

/* DÉCISION */

.repair-decision {
    padding: clamp(5rem, 7vw, 7rem) 0;
    background: #fff8ec;
}

.repair-decision__heading {
    max-width: 48rem;
    margin-bottom: 2.5rem;
}

.repair-decision__heading h2 {
    margin: 0;
    color: #061d4c;
    font-size: clamp(2.3rem, 3.6vw, 3.5rem);
}

.repair-decision__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.repair-decision__card {
    padding: 1.7rem;
    border-radius: 1.2rem;
    background: #ffffff;
}

.repair-decision__card > span {
    display: inline-flex;
    margin-bottom: 1rem;
    color: #615bc9;
    font-weight: 900;
}

.repair-decision__card--ok {
    border-top: 4px solid #0d9992;
}

.repair-decision__card--follow {
    border-top: 4px solid #d58a1f;
}

.repair-decision__card--advise {
    border-top: 4px solid #615bc9;
}

.repair-decision__card h3 {
    margin: 0 0 .6rem;
    color: #061d4c;
}

.repair-decision__card p {
    margin: 0;
    color: #56647a;
    line-height: 1.6;
}

.repair-contact {
    padding-top: 1.5rem;
}

@media (max-width: 980px) {
    .repair-hero__layout,
    .repair-diagnostic__layout {
        grid-template-columns: 1fr;
    }

    .repair-flow__steps,
    .repair-decision__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .repair-symptoms__grid,
    .repair-diagnostic__points {
        grid-template-columns: 1fr;
    }

    .repair-hero .home-services-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .repair-hero .home-services-button {
        width: 100%;
    }
}

/* ==========================================================
   DÉPANNAGE — CORRECTIONS VISUELLES FINALES
   ========================================================== */

/* ----------------------------------------------------------
   HERO : suppression de toute forme parasite
   ---------------------------------------------------------- */

.repair-hero__visual::before,
.repair-hero__visual::after {
    display: none !important;
}

.repair-hero__visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 3.5rem 1.4rem 3.5rem 1.4rem;
    background: transparent;
}

.repair-hero__visual img {
    position: relative;
    z-index: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

/* Les 3 badges restent au-dessus de l'image */

.repair-hero__status {
    z-index: 2;
}


/* ----------------------------------------------------------
   SYMPTÔMES : davantage de contraste
   ---------------------------------------------------------- */

.repair-symptoms__grid article:nth-child(1) {
    border-top: 4px solid #615bc9;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #efefff
        );
}

.repair-symptoms__grid article:nth-child(2) {
    border-top: 4px solid #0d9992;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e9f8f6
        );
}

.repair-symptoms__grid article:nth-child(3) {
    border-top: 4px solid #d58a1f;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff3df
        );
}

.repair-symptoms__grid article:nth-child(4) {
    border-top: 4px solid #0758d5;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eaf2ff
        );
}

.repair-symptoms__grid article:nth-child(5) {
    border-top: 4px solid #8b63c7;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f3edff
        );
}

.repair-symptoms__grid article:nth-child(6) {
    border-top: 4px solid #d26a52;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff0ec
        );
}


/* ----------------------------------------------------------
   CONTACT : corrige le grand bloc bleu vide
   ---------------------------------------------------------- */

.repair-contact {
    padding: 1.5rem 0 2rem;
    background:
        linear-gradient(
            180deg,
            #edf4ff,
            #dfeaff
        );
}

.repair-contact .home-services-contact__panel {
    display: grid;
    grid-template-columns:
        minmax(19rem, 1.35fr)
        minmax(8.5rem, .7fr)
        minmax(13rem, 1fr)
        auto;

    align-items: center;

    min-height: 5.6rem;

    padding: .8rem 1rem;

    border-radius: .75rem;

    background:
        linear-gradient(
            105deg,
            #06235c 0%,
            #074cad 58%,
            #0870df 100%
        );

    box-shadow:
        0 8px 22px rgba(5, 48, 118, .16);
}

.repair-contact .home-services-contact__intro {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.repair-contact .home-services-contact__details {
    display: contents;
}

.repair-contact .home-services-button--light {
    width: auto;
    margin-left: 1rem;
    white-space: nowrap;
}


/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */

@media (max-width: 1050px) {
    .repair-contact .home-services-contact__panel {
        grid-template-columns: 1fr 1fr;
        gap: .7rem;
    }

    .repair-contact .home-services-contact__intro {
        grid-column: 1 / -1;
    }

    .repair-contact .home-services-contact__details {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .repair-contact .home-services-button--light {
        grid-column: 1 / -1;
        justify-self: start;
        margin: .4rem 0 0;
    }
}

@media (max-width: 650px) {
    .repair-contact .home-services-contact__panel,
    .repair-contact .home-services-contact__details {
        grid-template-columns: 1fr;
    }

    .repair-contact .home-services-button--light {
        width: 100%;
    }
}

/* ==========================================================
   DÉPANNAGE — AJUSTEMENTS VISUELS
   ========================================================== */

/* ----------------------------------------------------------
   HERO : boutons alignés
   ---------------------------------------------------------- */

.repair-hero .home-services-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.9rem;
}

.repair-hero .home-services-button {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
}

/* ----------------------------------------------------------
   DIAGNOSTIC : petits blocs plus visibles
   ---------------------------------------------------------- */

.repair-diagnostic__points {
    gap: 1rem;
}

.repair-diagnostic__points article {
    min-height: 5.2rem;
    padding: 1rem 1.1rem;

    border: 1px solid rgba(7, 88, 213, 0.14);
    border-radius: 0.9rem;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #edf4ff
        );

    box-shadow:
        0 8px 20px rgba(20, 61, 121, 0.06);
}

.repair-diagnostic__points article:nth-child(2),
.repair-diagnostic__points article:nth-child(4) {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eef8f6
        );

    border-color: rgba(13, 151, 146, 0.16);
}

.repair-diagnostic__points article > span {
    display: grid;

    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;
    background: #615bc9;

    font-size: 0.75rem;
}

.repair-diagnostic__points article:nth-child(2) > span,
.repair-diagnostic__points article:nth-child(4) > span {
    background: #0d9992;
}

/* ----------------------------------------------------------
   TROIS SITUATIONS POSSIBLES : cartes plus contrastées
   ---------------------------------------------------------- */

.repair-decision {
    background:
        linear-gradient(
            120deg,
            #fff3df 0%,
            #fff8ec 46%,
            #eef4ff 100%
        );
}

.repair-decision__grid {
    gap: 1.4rem;
}

.repair-decision__card {
    position: relative;
    overflow: hidden;

    min-height: 13rem;

    padding: 1.9rem;

    border: 1px solid rgba(7, 88, 213, 0.12);
    border-radius: 1.25rem;

    box-shadow:
        0 14px 30px rgba(23, 61, 117, 0.08);
}

.repair-decision__card--ok {
    border-top: 5px solid #0d9992;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e9f8f6
        );
}

.repair-decision__card--follow {
    border-top: 5px solid #d58a1f;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff1dc
        );
}

.repair-decision__card--advise {
    border-top: 5px solid #615bc9;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #efefff
        );
}

/* gros numéro */

.repair-decision__card > span {
    display: grid;

    width: 3rem;
    height: 3rem;

    place-items: center;

    margin-bottom: 1.1rem;

    border-radius: 50%;

    color: #ffffff;

    font-size: 0.85rem;
    font-weight: 900;
}

.repair-decision__card--ok > span {
    background: #0d9992;
}

.repair-decision__card--follow > span {
    background: #d58a1f;
}

.repair-decision__card--advise > span {
    background: #615bc9;
}

.repair-decision__card h3 {
    font-size: 1.18rem;
}

.repair-decision__card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* petit halo décoratif */

.repair-decision__card::after {
    position: absolute;
    right: -2.2rem;
    bottom: -2.2rem;

    width: 7rem;
    height: 7rem;

    content: "";

    border-radius: 50%;

    background: rgba(7, 88, 213, 0.04);
}

/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 760px) {
    .repair-hero .home-services-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .repair-hero .home-services-button {
        width: 100%;
        white-space: normal;
    }

    .repair-decision__card {
        min-height: auto;
    }
}

/* TEST TEMPORAIRE DEPANNAGE */
.repair-hero__status {
    display: none !important;
}

/* ==========================================================
   DÉPANNAGE — FINITIONS HERO
   ========================================================== */

/* Photo : arrondis plus propres */

.repair-hero__visual {
    border-radius: 2rem;
    background: #ffffff;
    border: 0.45rem solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 52px rgba(44, 44, 106, 0.13);
}

.repair-hero__visual img {
    border-radius: inherit;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Bouton retour : fond visible */

.repair-hero .home-services-button--secondary {
    background: #ffffff;
    border: 1px solid rgba(7, 88, 213, 0.18);
    color: #061d4c;
    box-shadow: 0 8px 18px rgba(15, 60, 120, 0.08);
}

.repair-hero .home-services-button--secondary:hover {
    background: #f8fbff;
}

/* On garde les badges masqués puisque c'était eux le problème */

.repair-hero__status {
    display: none !important;
}

/* ==========================================================
   DÉPANNAGE — SUPPRESSION DE LA DOUBLE BORDURE IMAGE
   ========================================================== */

.repair-hero__visual {
    border: 0;
    border-radius: 2rem;
    background: transparent;

    box-shadow:
        0 20px 42px rgba(44, 44, 106, 0.12);
}

.repair-hero__visual img {
    border: 0;
    border-radius: 2rem;
}

/* ==========================================================
   INTERVENTIONS DE PROXIMITÉ
   ========================================================== */

.proximity-page {
    background: #ffffff;
}

/* HERO */

.proximity-hero {
    padding: clamp(4rem, 6vw, 6rem) 0;

    background:
        radial-gradient(
            circle at 80% 12%,
            rgba(13, 155, 150, .15),
            transparent 24rem
        ),
        linear-gradient(
            120deg,
            #edf9f7 0%,
            #ffffff 48%,
            #e8f1ff 100%
        );
}

.proximity-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(30rem, 1.18fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.proximity-hero__content h1 {
    max-width: 12ch;
    margin: 0;

    color: #061d4c;

    font-size: clamp(3.1rem, 4.8vw, 5rem);
    line-height: 1.03;
    letter-spacing: -.04em;
}

.proximity-hero__content h1 span {
    display: block;
    color: #0d9992;
}

.proximity-hero__content > p:last-of-type {
    max-width: 39rem;
    margin-top: 1.5rem;

    color: #42536a;

    line-height: 1.7;
}

/* Carte de La Réunion */

.proximity-hero__map {
    position: relative;

    min-height: 31rem;

    display: grid;
    grid-template-columns: 1fr;
    place-items: center;

    padding: 2rem;

    border-radius: 3.5rem 1.5rem 3.5rem 1.5rem;

    background:
        linear-gradient(
            145deg,
            #062a65,
            #0758d5 58%,
            #0c9a9a
        );

    box-shadow:
        0 24px 52px rgba(7, 64, 138, .16);
}

.proximity-hero__island {
    position: relative;
    width: min(100%, 28rem);
}

.proximity-hero__island svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 24px rgba(0,0,0,.18));
}

.proximity-pin {
    position: absolute;

    padding: .5rem .75rem;

    border-radius: 999px;

    color: #061d4c;
    background: #ffffff;

    font-size: .72rem;
    font-weight: 800;

    box-shadow:
        0 7px 18px rgba(3,34,79,.16);
}

.proximity-pin--north {
    top: 3%;
    left: 48%;
}

.proximity-pin--south {
    bottom: 5%;
    left: 48%;
}

.proximity-pin--east {
    top: 48%;
    right: 1%;
}

.proximity-pin--west {
    top: 48%;
    left: 1%;
}

.proximity-hero__note {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;

    max-width: 16rem;

    padding: .9rem 1rem;

    border: 1px solid rgba(255,255,255,.22);
    border-radius: 1rem;

    color: #ffffff;
    background: rgba(255,255,255,.10);
}

.proximity-hero__note strong,
.proximity-hero__note span {
    display: block;
}

.proximity-hero__note span {
    margin-top: .25rem;

    color: rgba(255,255,255,.72);

    font-size: .76rem;
    line-height: 1.4;
}

/* SECTEURS */

.proximity-areas {
    padding: clamp(5rem, 7vw, 7rem) 0;
    background: #ffffff;
}

.proximity-areas__heading {
    max-width: 54rem;
    margin-bottom: 2.5rem;
}

.proximity-areas__heading h2 {
    margin: 0;

    color: #061d4c;

    font-size: clamp(2.4rem, 3.8vw, 3.8rem);
}

.proximity-areas__heading > p {
    margin-top: 1rem;

    color: #56647a;

    line-height: 1.7;
}

.proximity-areas__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.proximity-areas__grid article {
    min-height: 12rem;

    padding: 1.5rem;

    border-radius: 1.2rem;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eaf7f6
        );

    border-top: 4px solid #0d9992;

    box-shadow:
        0 12px 28px rgba(16,69,108,.07);
}

.proximity-areas__grid article:nth-child(2) {
    border-top-color: #0758d5;
    background: linear-gradient(145deg,#ffffff,#eaf2ff);
}

.proximity-areas__grid article:nth-child(3) {
    border-top-color: #d58a1f;
    background: linear-gradient(145deg,#ffffff,#fff3df);
}

.proximity-areas__grid article:nth-child(4) {
    border-top-color: #615bc9;
    background: linear-gradient(145deg,#ffffff,#efefff);
}

.proximity-areas__grid article > span {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;

    margin-bottom: 1rem;

    border-radius: 50%;

    color: #ffffff;
    background: #0d9992;

    font-weight: 900;
}

.proximity-areas__grid article:nth-child(2) > span {
    background: #0758d5;
}

.proximity-areas__grid article:nth-child(3) > span {
    background: #d58a1f;
}

.proximity-areas__grid article:nth-child(4) > span {
    background: #615bc9;
}

.proximity-areas__grid h3 {
    margin: 0 0 .5rem;

    color: #061d4c;
}

.proximity-areas__grid p {
    margin: 0;

    color: #56647a;

    font-size: .86rem;
    line-height: 1.55;
}

/* COMMENT ÇA SE PASSE */

.proximity-how {
    padding: clamp(4.5rem, 6vw, 6rem) 0;

    background:
        linear-gradient(
            105deg,
            #061d4c,
            #06468d 55%,
            #087d87
        );
}

.proximity-how__heading {
    max-width: 52rem;
    margin-bottom: 2.5rem;
}

.proximity-how__heading .home-services-section-heading__eyebrow {
    color: #f2ba5d;
}

.proximity-how__heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(2.3rem, 3.6vw, 3.5rem);
}

.proximity-how__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.proximity-how__steps article {
    min-height: 12rem;

    padding: 1.4rem;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 1rem;

    background: rgba(255,255,255,.07);
}

.proximity-how__steps article > span {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;

    margin-bottom: .9rem;

    border-radius: 50%;

    color: #061d4c;
    background: #f2ba5d;

    font-size: .78rem;
    font-weight: 900;
}

.proximity-how__steps h3 {
    margin: 0 0 .5rem;
    color: #ffffff;
}

.proximity-how__steps p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: .84rem;
    line-height: 1.55;
}

/* CRITÈRES */

.proximity-criteria {
    padding: clamp(5rem, 7vw, 7rem) 0;

    background:
        linear-gradient(
            120deg,
            #edf8f7,
            #ffffff 52%,
            #eef4ff
        );
}

.proximity-criteria__layout {
    display: grid;
    grid-template-columns: minmax(19rem,.7fr) minmax(0,1.3fr);
    gap: clamp(3rem,6vw,6rem);
    align-items: center;
}

.proximity-criteria__intro h2 {
    margin: 0;

    color: #061d4c;

    font-size: clamp(2.2rem,3.5vw,3.4rem);
    line-height: 1.08;
}

.proximity-criteria__intro > p:last-child {
    color: #56647a;
    line-height: 1.7;
}

.proximity-criteria__grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 1rem;
}

.proximity-criteria__grid article {
    min-height: 10rem;

    padding: 1.3rem;

    border-radius: 1rem;

    background: #ffffff;

    box-shadow:
        0 10px 24px rgba(18,67,121,.06);
}

.proximity-criteria__grid article > span {
    display: inline-flex;
    margin-bottom: .8rem;

    color: #0d9992;

    font-weight: 900;
}

.proximity-criteria__grid h3 {
    margin: 0 0 .4rem;

    color: #061d4c;
}

.proximity-criteria__grid p {
    margin: 0;

    color: #56647a;

    font-size: .84rem;
    line-height: 1.5;
}

/* RDV */

.proximity-appointment {
    padding: clamp(4rem,6vw,6rem) 0;

    background: #fff7e9;
}

.proximity-appointment__panel {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 3rem;
    align-items: center;
}

.proximity-appointment h2 {
    margin: 0;

    color: #061d4c;

    font-size: clamp(2rem,3vw,3rem);
}

.proximity-appointment p {
    color: #56647a;
    line-height: 1.7;
}

.proximity-appointment__points {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.proximity-appointment__points span {
    padding: .75rem 1rem;

    border-radius: 999px;

    color: #0758d5;
    background: #ffffff;

    font-size: .8rem;
    font-weight: 750;
}

.proximity-contact {
    padding-top: 1.5rem;
}

@media (max-width: 980px) {
    .proximity-hero__layout,
    .proximity-criteria__layout,
    .proximity-appointment__panel {
        grid-template-columns: 1fr;
    }

    .proximity-areas__grid,
    .proximity-how__steps {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 650px) {
    .proximity-areas__grid,
    .proximity-how__steps,
    .proximity-criteria__grid {
        grid-template-columns: 1fr;
    }

    .proximity-hero .home-services-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .proximity-hero .home-services-button {
        width: 100%;
    }
}

/* ==========================================================
   PROXIMITÉ — AJUSTEMENTS VISUELS
   ========================================================== */

/* ----------------------------------------------------------
   HERO : boutons sur la même ligne
   ---------------------------------------------------------- */

.proximity-hero .home-services-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.9rem;
}

.proximity-hero .home-services-button {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
}

.proximity-hero .home-services-button--secondary {
    background: #ffffff;
    border: 1px solid rgba(7, 88, 213, 0.18);
    color: #061d4c;

    box-shadow:
        0 8px 18px rgba(15, 60, 120, 0.07);
}


/* ----------------------------------------------------------
   CARTES ORGANISATION DES DÉPLACEMENTS
   ---------------------------------------------------------- */

.proximity-criteria {
    background:
        linear-gradient(
            120deg,
            #e3f4f2 0%,
            #f5fbfa 46%,
            #e8f1ff 100%
        );
}

.proximity-criteria__grid {
    gap: 1.15rem;
}

.proximity-criteria__grid article {
    position: relative;
    overflow: hidden;

    min-height: 11rem;

    padding: 1.5rem;

    border: 1px solid rgba(7, 88, 213, 0.14);
    border-top: 4px solid #0d9992;
    border-radius: 1.1rem;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e8f8f6
        );

    box-shadow:
        0 14px 30px rgba(16, 69, 108, 0.08);
}

.proximity-criteria__grid article:nth-child(2) {
    border-top-color: #0758d5;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eaf2ff
        );
}

.proximity-criteria__grid article:nth-child(3) {
    border-top-color: #d58a1f;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff3df
        );
}

.proximity-criteria__grid article:nth-child(4) {
    border-top-color: #615bc9;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #efefff
        );
}

/* Numéros beaucoup plus visibles */

.proximity-criteria__grid article > span {
    display: grid;

    width: 2.8rem;
    height: 2.8rem;

    margin-bottom: 1rem;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;
    background: #0d9992;

    font-size: 0.82rem;
    font-weight: 900;
}

.proximity-criteria__grid article:nth-child(2) > span {
    background: #0758d5;
}

.proximity-criteria__grid article:nth-child(3) > span {
    background: #d58a1f;
}

.proximity-criteria__grid article:nth-child(4) > span {
    background: #615bc9;
}

.proximity-criteria__grid h3 {
    font-size: 1.05rem;
}

.proximity-criteria__grid p {
    color: #4e6078;
    font-size: 0.89rem;
    line-height: 1.6;
}


/* ----------------------------------------------------------
   NORD / SUD / EST / OUEST : un peu plus de relief
   ---------------------------------------------------------- */

.proximity-areas__grid article {
    box-shadow:
        0 15px 32px rgba(16, 69, 108, 0.09);
}


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 760px) {
    .proximity-hero .home-services-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .proximity-hero .home-services-button {
        width: 100%;
        white-space: normal;
    }

    .proximity-criteria__grid article {
        min-height: auto;
    }
}

/* ==========================================================
   PROXIMITÉ — RECENTRAGE DE LA CARTE DE LA RÉUNION
   ========================================================== */

.proximity-hero__map {
    display: grid;
    place-items: center;
    position: relative;
}

.proximity-hero__island {
    position: relative;
    width: min(100%, 24rem);
    aspect-ratio: 1;
    margin: 0 auto;

    display: grid;
    place-items: center;
}

/* recentrage visuel de l'île */
.proximity-hero__reunion {
    display: block;
    width: 72%;
    height: auto;
    margin: 0 auto;

    object-fit: contain;

    /* petit ajustement fin */
    transform: translateX(-3%) translateY(1%);
}

/* repères mieux positionnés autour de l'île */
.proximity-pin {
    z-index: 2;
}

.proximity-pin--north {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.proximity-pin--south {
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
}

.proximity-pin--east {
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
}

.proximity-pin--west {
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
}

/* ==========================================================
   ACCOMPAGNEMENT NUMÉRIQUE
   ========================================================== */

.digital-support-page {
    background: #ffffff;
}

/* HERO */

.digital-support-hero {
    padding: clamp(4rem, 6vw, 6rem) 0;

    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(113, 93, 201, .12),
            transparent 24rem
        ),
        linear-gradient(
            120deg,
            #f2efff 0%,
            #ffffff 48%,
            #edf8f7 100%
        );
}

.digital-support-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(32rem, 1.18fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.digital-support-hero__content h1 {
    max-width: 12ch;
    margin: 0;

    color: #061d4c;

    font-size: clamp(3.1rem, 4.8vw, 5rem);
    line-height: 1.03;
    letter-spacing: -.04em;
}

.digital-support-hero__content h1 span {
    display: block;
    color: #6b5ac9;
}

.digital-support-hero__content > p:last-of-type {
    max-width: 39rem;
    margin-top: 1.5rem;

    color: #42536a;

    line-height: 1.7;
}

.digital-support-hero__visual {
    position: relative;
    overflow: hidden;

    aspect-ratio: 16 / 10;

    border-radius: 2rem 4.5rem 2rem 4.5rem;

    box-shadow:
        0 24px 52px rgba(67, 56, 132, .12);
}

.digital-support-hero__visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.digital-support-hero__badge {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;

    padding: .9rem 1.1rem;

    border-radius: 1rem;

    background: rgba(255,255,255,.94);

    box-shadow:
        0 9px 22px rgba(32, 52, 96, .10);
}

.digital-support-hero__badge span,
.digital-support-hero__badge strong {
    display: block;
}

.digital-support-hero__badge span {
    color: #6b5ac9;
    font-size: .72rem;
    font-weight: 800;
}

.digital-support-hero__badge strong {
    margin-top: .2rem;
    color: #061d4c;
    font-size: .82rem;
}

/* BESOINS */

.digital-support-needs {
    padding: clamp(5rem,7vw,7rem) 0;
    background: #ffffff;
}

.digital-support-needs__heading {
    max-width: 56rem;
    margin-bottom: 2.5rem;
}

.digital-support-needs__heading h2 {
    margin: 0;
    color: #061d4c;
    font-size: clamp(2.4rem,3.8vw,3.8rem);
}

.digital-support-needs__heading > p {
    margin-top: 1rem;
    color: #56647a;
    line-height: 1.7;
}

.digital-support-needs__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 1rem;
}

.digital-support-needs__grid article {
    min-height: 13rem;
    padding: 1.5rem;
    border-radius: 1.2rem;
    border-top: 4px solid #6b5ac9;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f1efff
        );

    box-shadow:
        0 12px 28px rgba(40,57,103,.07);
}

.digital-support-needs__grid article:nth-child(2) {
    border-top-color: #0d9992;
    background: linear-gradient(145deg,#ffffff,#e9f8f6);
}

.digital-support-needs__grid article:nth-child(3) {
    border-top-color: #0758d5;
    background: linear-gradient(145deg,#ffffff,#eaf2ff);
}

.digital-support-needs__grid article:nth-child(4) {
    border-top-color: #d58a1f;
    background: linear-gradient(145deg,#ffffff,#fff3df);
}

.digital-support-needs__grid article > span {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    color: #ffffff;
    background: #6b5ac9;
    font-weight: 900;
}

.digital-support-needs__grid article:nth-child(2) > span {
    background: #0d9992;
}

.digital-support-needs__grid article:nth-child(3) > span {
    background: #0758d5;
}

.digital-support-needs__grid article:nth-child(4) > span {
    background: #d58a1f;
}

.digital-support-needs__grid h3 {
    margin: 0 0 .5rem;
    color: #061d4c;
}

.digital-support-needs__grid p {
    margin: 0;
    color: #56647a;
    font-size: .87rem;
    line-height: 1.55;
}

/* MÉTHODE */

.digital-support-method {
    padding: clamp(4.5rem,6vw,6rem) 0;

    background:
        linear-gradient(
            105deg,
            #382f79,
            #5a4fc1 58%,
            #5079c8
        );
}

.digital-support-method__layout {
    display: grid;
    grid-template-columns: minmax(19rem,.7fr) minmax(0,1.3fr);
    gap: clamp(3rem,6vw,6rem);
    align-items: center;
}

.digital-support-method__intro .home-services-section-heading__eyebrow {
    color: #f1bd64;
}

.digital-support-method__intro h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.2rem,3.5vw,3.5rem);
    line-height: 1.08;
}

.digital-support-method__intro > p:last-child {
    color: rgba(255,255,255,.74);
    line-height: 1.7;
}

.digital-support-method__steps {
    display: grid;
    gap: 1rem;
}

.digital-support-method__steps article {
    display: flex;
    gap: 1rem;
    align-items: center;

    padding: 1.3rem;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 1rem;

    background: rgba(255,255,255,.08);
}

.digital-support-method__steps article > span {
    display: grid;
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    place-items: center;

    border-radius: 50%;

    color: #382f79;
    background: #ffffff;

    font-size: .8rem;
    font-weight: 900;
}

.digital-support-method__steps h3 {
    margin: 0 0 .3rem;
    color: #ffffff;
}

.digital-support-method__steps p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: .86rem;
}

/* EXEMPLES */

.digital-support-examples {
    padding: clamp(5rem,7vw,7rem) 0;

    background:
        linear-gradient(
            120deg,
            #eef4ff,
            #ffffff 52%,
            #f2efff
        );
}

.digital-support-examples__layout {
    display: grid;
    grid-template-columns: minmax(26rem,.9fr) minmax(0,1.1fr);
    gap: clamp(3rem,6vw,6rem);
    align-items: center;
}

.digital-support-examples__visual {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 4rem 1.5rem 4rem 1.5rem;
}

.digital-support-examples__visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.digital-support-examples__content h2 {
    max-width: 14ch;
    margin: 0;
    color: #061d4c;
    font-size: clamp(2.3rem,3.7vw,3.7rem);
    line-height: 1.08;
}

.digital-support-examples__list {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: .9rem;
    margin-top: 2rem;
}

.digital-support-examples__list article {
    display: flex;
    gap: .7rem;
    align-items: flex-start;

    padding: 1rem;

    border-radius: .9rem;

    background: rgba(255,255,255,.92);
}

.digital-support-examples__list article > span {
    color: #6b5ac9;
    font-weight: 900;
}

.digital-support-examples__list p {
    margin: 0;
    color: #53647a;
    font-size: .87rem;
    line-height: 1.5;
}

/* CADRE RESPONSABLE */

.digital-support-boundaries {
    padding: clamp(5rem,7vw,7rem) 0;
    background: #061d4c;
}

.digital-support-boundaries__layout {
    display: grid;
    grid-template-columns: minmax(20rem,.8fr) minmax(0,1.2fr);
    gap: clamp(3rem,6vw,6rem);
    align-items: center;
}

.digital-support-boundaries__layout > div:first-child h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.3rem,3.7vw,3.7rem);
    line-height: 1.08;
}

.digital-support-boundaries__layout > div:first-child p:last-child {
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

.digital-support-boundaries__cards {
    display: grid;
    gap: 1rem;
}

.digital-support-boundaries__cards article {
    display: flex;
    gap: 1rem;

    padding: 1.5rem;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 1.1rem;

    background: rgba(255,255,255,.07);
}

.digital-support-boundaries__cards article > span {
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    flex: 0 0 2.6rem;
    place-items: center;

    border-radius: 50%;

    color: #061d4c;
    background: #ffffff;
}

.digital-support-boundaries__cards h3 {
    margin: 0 0 .4rem;
    color: #ffffff;
}

.digital-support-boundaries__cards p {
    margin: 0;
    color: rgba(255,255,255,.7);
    font-size: .86rem;
    line-height: 1.55;
}

/* RASSURANCE */

.digital-support-reassurance {
    padding: clamp(4rem,6vw,6rem) 0;
    background: #fff7e9;
}

.digital-support-reassurance__panel {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 3rem;
    align-items: center;
}

.digital-support-reassurance h2 {
    margin: 0;
    color: #061d4c;
    font-size: clamp(2rem,3vw,3rem);
}

.digital-support-reassurance p {
    color: #56647a;
    line-height: 1.7;
}

.digital-support-reassurance__points {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.digital-support-reassurance__points span {
    padding: .75rem 1rem;
    border-radius: 999px;

    color: #6b5ac9;
    background: #ffffff;

    font-size: .8rem;
    font-weight: 750;
}

.digital-support-contact {
    padding-top: 1.5rem;
}

@media (max-width: 980px) {
    .digital-support-hero__layout,
    .digital-support-method__layout,
    .digital-support-examples__layout,
    .digital-support-boundaries__layout,
    .digital-support-reassurance__panel {
        grid-template-columns: 1fr;
    }

    .digital-support-needs__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 650px) {
    .digital-support-needs__grid,
    .digital-support-examples__list {
        grid-template-columns: 1fr;
    }

    .digital-support-hero .home-services-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .digital-support-hero .home-services-button {
        width: 100%;
    }
}

/* ==========================================================
   ACCOMPAGNEMENT NUMÉRIQUE — AJUSTEMENTS VISUELS
   ========================================================== */

/* ----------------------------------------------------------
   HERO : boutons alignés + hauteur réduite
   ---------------------------------------------------------- */

.digital-support-hero {
    padding:
        clamp(3.5rem, 5vw, 5rem)
        0;
}

.digital-support-hero .home-services-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.9rem;
}

.digital-support-hero .home-services-button {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
}

.digital-support-hero .home-services-button--secondary {
    background: #ffffff;
    border: 1px solid rgba(107, 90, 201, 0.18);
    color: #061d4c;

    box-shadow:
        0 8px 18px rgba(31, 53, 99, 0.07);
}

/* ----------------------------------------------------------
   SECTIONS : moins hautes
   ---------------------------------------------------------- */

.digital-support-needs,
.digital-support-examples,
.digital-support-boundaries {
    padding:
        clamp(4rem, 5.5vw, 5.5rem)
        0;
}

.digital-support-method,
.digital-support-reassurance {
    padding:
        clamp(3.8rem, 5vw, 5rem)
        0;
}

/* ----------------------------------------------------------
   SECTION "CONCRÈTEMENT" : cartes plus visibles
   ---------------------------------------------------------- */

.digital-support-examples {
    background:
        linear-gradient(
            120deg,
            #e8efff 0%,
            #f8f9ff 48%,
            #eeeaff 100%
        );
}

.digital-support-examples__list {
    gap: 1rem;
}

.digital-support-examples__list article {
    min-height: 5.8rem;

    padding: 1.05rem 1.1rem;

    border: 1px solid rgba(107, 90, 201, 0.15);
    border-left: 4px solid #6b5ac9;
    border-radius: 0.95rem;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f1efff
        );

    box-shadow:
        0 10px 24px rgba(54, 46, 112, 0.07);
}

.digital-support-examples__list article:nth-child(2),
.digital-support-examples__list article:nth-child(5) {
    border-left-color: #0d9992;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e9f8f6
        );
}

.digital-support-examples__list article:nth-child(3),
.digital-support-examples__list article:nth-child(6) {
    border-left-color: #d58a1f;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff3df
        );
}

.digital-support-examples__list article:nth-child(4) {
    border-left-color: #0758d5;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eaf2ff
        );
}

.digital-support-examples__list article > span {
    display: grid;

    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;
    background: #6b5ac9;

    font-size: 0.76rem;
}

.digital-support-examples__list article:nth-child(2) > span,
.digital-support-examples__list article:nth-child(5) > span {
    background: #0d9992;
}

.digital-support-examples__list article:nth-child(3) > span,
.digital-support-examples__list article:nth-child(6) > span {
    background: #d58a1f;
}

.digital-support-examples__list article:nth-child(4) > span {
    background: #0758d5;
}

.digital-support-examples__list p {
    color: #44566f;
    font-size: 0.9rem;
    line-height: 1.55;
}

/* ----------------------------------------------------------
   CARTES DES BESOINS : plus contrastées
   ---------------------------------------------------------- */

.digital-support-needs__grid article {
    min-height: 11.5rem;

    box-shadow:
        0 14px 30px rgba(40, 57, 103, 0.09);
}

/* ----------------------------------------------------------
   MÉTHODE : plus compacte
   ---------------------------------------------------------- */

.digital-support-method__steps article {
    min-height: 5.2rem;
    padding: 1.1rem 1.25rem;
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */

@media (max-width: 760px) {
    .digital-support-hero .home-services-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .digital-support-hero .home-services-button {
        width: 100%;
        white-space: normal;
    }

    .digital-support-needs,
    .digital-support-examples,
    .digital-support-boundaries,
    .digital-support-method,
    .digital-support-reassurance {
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }
}

/* ==========================================================
   SERVICES DOMICILE — PROCESS FINAL
   ========================================================== */

.home-services-process {
    padding: clamp(4rem, 5.5vw, 5.5rem) 0;

    background:
        linear-gradient(
            120deg,
            #fff8ec 0%,
            #f7f9ff 52%,
            #eaf3ff 100%
        );
}

.home-services-process__layout {
    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(21rem, 0.82fr);

    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: stretch;
}

/* 4 étapes */

.home-services-steps {
    gap: 1.15rem;
}

.home-services-step {
    min-height: 9.5rem;

    padding: 1.35rem;

    border: 1px solid rgba(7, 88, 213, 0.14);
    border-top: 4px solid #0758d5;
    border-radius: 1.15rem;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eaf2ff
        );

    box-shadow:
        0 12px 28px rgba(19, 61, 119, 0.07);
}

.home-services-step:nth-child(2) {
    border-top-color: #0d9992;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e9f8f6
        );
}

.home-services-step:nth-child(3) {
    border-top-color: #d58a1f;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff3df
        );
}

.home-services-step:nth-child(4) {
    border-top-color: #615bc9;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #efefff
        );
}

.home-services-step__number {
    color: #ffffff;
    background: #0758d5;
}

.home-services-step:nth-child(2) .home-services-step__number {
    background: #0d9992;
}

.home-services-step:nth-child(3) .home-services-step__number {
    background: #d58a1f;
}

.home-services-step:nth-child(4) .home-services-step__number {
    background: #615bc9;
}

/* Photo sous les cartes */

.home-services-process__photo {
    margin-top: 1.25rem;
    overflow: hidden;

    aspect-ratio: 16 / 6;

    border-radius: 1.4rem;

    box-shadow:
        0 15px 30px rgba(17, 60, 119, 0.09);
}

.home-services-process__photo img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;
}

/* Panneau La Réunion */

.home-services-zone {
    padding: 1.8rem;

    border: 1px solid rgba(7, 88, 213, 0.13);
    border-radius: 1.7rem;

    background:
        linear-gradient(
            145deg,
            #eaf3ff,
            #f8fbff
        );

    box-shadow:
        0 16px 34px rgba(17, 61, 120, 0.08);
}

.home-services-zone__heading {
    grid-template-columns: 1fr;
}

.home-services-zone h2 {
    max-width: 10ch;
}

/* vraie carte */

.home-services-zone__map {
    width: min(100%, 15rem);
    height: auto;

    margin: 1.25rem auto 0;

    display: block;

    filter: none;
}

.home-services-zone__intro {
    margin-top: 1.2rem;
}

.home-services-zone__areas {
    margin-top: 1.2rem;
}

.home-services-zone__note {
    margin-top: 1.3rem;
    padding-top: 1.1rem;
}

/* Responsive */

@media (max-width: 980px) {
    .home-services-process__layout {
        grid-template-columns: 1fr;
    }

    .home-services-process__photo {
        aspect-ratio: 16 / 7;
    }
}

@media (max-width: 760px) {
    .home-services-process__photo {
        aspect-ratio: 4 / 3;
    }
}

/* ==========================================================
   SERVICES À DOMICILE — HAUT DE PAGE PLUS VIVANT
   ========================================================== */

/* HERO plus contrasté */

.home-services-page .home-services-hero {
    background:
        radial-gradient(
            circle at 10% 22%,
            rgba(7, 88, 213, 0.16),
            transparent 23rem
        ),
        radial-gradient(
            circle at 84% 20%,
            rgba(23, 166, 184, 0.16),
            transparent 26rem
        ),
        linear-gradient(
            110deg,
            #e9f2ff 0%,
            #f8fbff 46%,
            #dcecff 100%
        );
}

/* visuel hero un peu plus présent */

.home-services-page .home-services-hero__image {
    box-shadow:
        0 24px 50px rgba(13, 59, 128, 0.15);
}

/* transition après hero */

.home-services-page .home-services-hero::after {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 0.45rem;

    content: "";

    background:
        linear-gradient(
            90deg,
            #0758d5,
            #0d9992,
            #d58a1f
        );
}

/* bloc titre des services */

.home-services-page .home-services-offers {
    background:
        linear-gradient(
            180deg,
            #e8f2ff 0%,
            #f5f8ff 38%,
            #ffffff 100%
        );
}

.home-services-page
.home-services-offers
.home-services-section-heading {
    background:
        linear-gradient(
            115deg,
            #ffffff 0%,
            #edf4ff 55%,
            #fff4df 100%
        );

    border: 1px solid rgba(7, 88, 213, 0.15);

    box-shadow:
        0 16px 32px rgba(20, 62, 120, 0.08);
}

/* cartes plus colorées */

.home-services-page .home-service-card:nth-child(1) {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e6f0ff
        );
}

.home-services-page .home-service-card:nth-child(2) {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e4f7f5
        );
}

.home-services-page .home-service-card:nth-child(3) {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff0d8
        );
}

.home-services-page .home-service-card:nth-child(4) {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #efedff
        );
}

.home-services-page .home-service-card:nth-child(5) {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e5f6f3
        );
}

.home-services-page .home-service-card:nth-child(6) {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e9edff
        );
}

/* cartes un peu plus présentes */

.home-services-page .home-service-card {
    box-shadow:
        0 14px 30px rgba(18, 60, 118, 0.09);
}

.home-services-page .home-service-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 38px rgba(18, 60, 118, 0.14);
}

/* ==========================================================
   SERVICES À DOMICILE — CONTRASTE FORT
   ========================================================== */

/* HERO plus affirmé */

.home-services-page .home-services-hero {
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(7, 88, 213, 0.22),
            transparent 24rem
        ),
        radial-gradient(
            circle at 88% 12%,
            rgba(16, 164, 177, 0.20),
            transparent 27rem
        ),
        linear-gradient(
            120deg,
            #dbe9ff 0%,
            #f4f8ff 44%,
            #cfe4ff 100%
        );
}

/* ==========================================================
   SECTION SERVICES : VRAI FOND BLEU
   ========================================================== */

.home-services-page .home-services-offers {
    position: relative;

    padding-top: clamp(4.5rem, 6vw, 6rem);
    padding-bottom: clamp(5rem, 7vw, 7rem);

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(21, 170, 182, 0.20),
            transparent 24rem
        ),
        linear-gradient(
            120deg,
            #041c4c 0%,
            #073c8c 55%,
            #0758d5 100%
        );
}

/* Supprimer les anciennes décorations parasites */

.home-services-page .home-services-offers::before,
.home-services-page .home-services-offers::after {
    display: none;
}

/* Titre de section complètement intégré */

.home-services-page
.home-services-offers
.home-services-section-heading {
    padding: 0 0 2.5rem;

    border: 0;
    border-radius: 0;

    background: transparent;
    box-shadow: none;
}

.home-services-page
.home-services-offers
.home-services-section-heading__eyebrow {
    color: #f1bd62;
}

.home-services-page
.home-services-offers
.home-services-section-heading h2 {
    color: #ffffff;
}

.home-services-page
.home-services-offers
.home-services-section-heading > p {
    padding: 1rem 1.2rem;

    border-left: 3px solid #f0b452;
    border-radius: 0 0.8rem 0.8rem 0;

    color: rgba(255, 255, 255, 0.82);

    background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================
   LES 6 CARTES
   ========================================================== */

.home-services-page .home-service-card {
    min-height: 15rem;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top-width: 5px;

    background: #ffffff;

    box-shadow:
        0 18px 35px rgba(0, 16, 52, 0.20);
}

/* couleurs franches */

.home-services-page .home-service-card:nth-child(1) {
    border-top-color: #2b7cff;
    background: linear-gradient(145deg, #ffffff, #e4efff);
}

.home-services-page .home-service-card:nth-child(2) {
    border-top-color: #16b4b1;
    background: linear-gradient(145deg, #ffffff, #e3f8f6);
}

.home-services-page .home-service-card:nth-child(3) {
    border-top-color: #e39a2c;
    background: linear-gradient(145deg, #ffffff, #fff0d6);
}

.home-services-page .home-service-card:nth-child(4) {
    border-top-color: #7462da;
    background: linear-gradient(145deg, #ffffff, #efedff);
}

.home-services-page .home-service-card:nth-child(5) {
    border-top-color: #0aa18f;
    background: linear-gradient(145deg, #ffffff, #dff7f1);
}

.home-services-page .home-service-card:nth-child(6) {
    border-top-color: #4564dc;
    background: linear-gradient(145deg, #ffffff, #e7ebff);
}

/* Icônes plus fortes */

.home-services-page .home-service-card__icon {
    width: 4rem;
    height: 4rem;
    flex-basis: 4rem;

    border: 1px solid rgba(7, 88, 213, 0.18);

    background: #ffffff;

    box-shadow:
        0 8px 20px rgba(11, 47, 106, 0.11);
}

/* titres plus visibles */

.home-services-page .home-service-card h3 {
    color: #061d4c;
    font-size: 1.08rem;
}

/* lien beaucoup plus présent */

.home-services-page .home-service-card__discover {
    margin-top: 1rem;

    color: #0758d5;
    font-weight: 800;
}

/* hover */

.home-services-page .home-service-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 24px 44px rgba(0, 17, 54, 0.28);
}

/* ==========================================================
   TRANSITION AVEC LES ENGAGEMENTS
   ========================================================== */

.home-services-page .home-services-commitments {
    border-top: 4px solid #f0b452;
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 760px) {
    .home-services-page .home-services-offers {
        padding-top: 3.5rem;
        padding-bottom: 4rem;
    }
}

/* ==========================================================
   SERVICES À DOMICILE — ÉQUILIBRAGE DU MILIEU
   ========================================================== */

/* Section services plus lumineuse pour éviter 2 bandes sombres */

.home-services-page .home-services-offers {
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(24, 184, 197, 0.16),
            transparent 24rem
        ),
        linear-gradient(
            120deg,
            #dcecff 0%,
            #edf5ff 48%,
            #d8ecf8 100%
        );
}

/* Titre de section à nouveau sombre */

.home-services-page
.home-services-offers
.home-services-section-heading__eyebrow {
    color: #a0620d;
}

.home-services-page
.home-services-offers
.home-services-section-heading h2 {
    color: #061d4c;
}

.home-services-page
.home-services-offers
.home-services-section-heading > p {
    color: #52647b;

    border-left-color: #d58a1f;

    background:
        rgba(255, 255, 255, 0.62);
}

/* Cartes : toujours contrastées mais moins lourdes */

.home-services-page .home-service-card {
    border-color: rgba(7, 88, 213, 0.15);

    box-shadow:
        0 14px 30px rgba(18, 60, 118, 0.10);
}

.home-services-page .home-service-card:hover {
    box-shadow:
        0 20px 38px rgba(18, 60, 118, 0.15);
}

/* Transition plus douce avec le bandeau engagements */

.home-services-page .home-services-commitments {
    border-top: 0;
}
