.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;
}



/* ==========================================================
   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;
}

.home-services-contact__intro {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.home-services-contact__intro-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);
}

.home-services-contact__intro-icon svg {
    display: block;
    width: 1rem;
    height: 1rem;
}
