.service-detail {
    background: #ffffff;
}

.service-detail-hero {
    padding: 4rem 0 4.5rem;
    background:
        radial-gradient(circle at 90% 10%, rgb(38 124 255 / 18%), transparent 34rem),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 58%, #f8f1e5 100%);
}

.service-detail-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.9fr);
    align-items: center;
    gap: 4rem;
}

.service-detail-hero__content h1 {
    max-width: 12ch;
    margin: 0.6rem 0 1.4rem;
    color: #05295d;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 1;
}

.service-detail-hero__content h1 span {
    display: block;
    color: #0966df;
}

.service-detail-hero__lead {
    max-width: 42rem;
    color: #344b6c;
    font-size: 1.15rem;
    line-height: 1.75;
}

.service-detail-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.service-detail-hero__benefits {
    display: grid;
    gap: 0.8rem;
    padding: 0;
    margin: 2rem 0 0;
    list-style: none;
}

.service-detail-hero__benefits li {
    position: relative;
    padding-left: 1.8rem;
    color: #183c70;
    font-weight: 700;
}

.service-detail-hero__benefits li::before {
    position: absolute;
    top: 0.1rem;
    left: 0;
    content: "✓";
    color: #d99321;
    font-weight: 900;
}

.service-detail-hero__visual img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    border-radius: 1.8rem;
    box-shadow: 0 1.8rem 4rem rgb(5 41 93 / 20%);
}

.service-detail-section {
    padding: 5rem 0;
}

.service-detail-section--soft {
    background:
        linear-gradient(rgb(255 255 255 / 68%), rgb(255 255 255 / 68%)),
        repeating-linear-gradient(
            90deg,
            #f8efe1 0,
            #f8efe1 1.8rem,
            #f4e8d5 1.8rem,
            #f4e8d5 3.6rem
        );
}

.service-audiences,
.service-offers {
    display: grid;
    gap: 1.4rem;
    margin-top: 3rem;
}

.service-audiences {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-offers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-audiences article,
.service-offers article {
    padding: 1.7rem;
    background: #ffffff;
    border: 1px solid #dbe8f8;
    border-radius: 1.25rem;
    box-shadow: 0 1rem 2.5rem rgb(5 41 93 / 8%);
}

.service-audiences__icon {
    width: 3.2rem;
    height: 3.2rem;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    color: #d99321;
    background: #f3f8ff;
    border: 1px solid #bfdbff;
    border-radius: 50%;
}

.service-audiences h3,
.service-offers h3 {
    margin: 0 0 0.65rem;
    color: #05295d;
}

.service-audiences p,
.service-offers p {
    margin: 0;
    color: #4b5f7b;
    line-height: 1.65;
}

.service-detail-feature {
    padding: 5rem 0;
    background: #ffffff;
}

.service-detail-feature__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 4rem;
}

.service-detail-feature__visual img {
    width: 100%;
    display: block;
    border-radius: 1.6rem;
    box-shadow: 0 1.5rem 3.5rem rgb(5 41 93 / 14%);
}

.service-detail-feature__content h2 {
    margin-top: 0.6rem;
    color: #05295d;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.service-detail-feature__content > p:not(.eyebrow) {
    color: #4b5f7b;
    line-height: 1.75;
}

.service-process {
    padding: 5rem 0;
    color: #ffffff;
    background: linear-gradient(135deg, #05295d, #0966df);
}

.service-process .section-heading h2,
.service-process .section-heading p {
    color: #ffffff;
}

.service-process__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 0;
    margin: 3rem 0 0;
    list-style: none;
}

.service-process__steps li {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: rgb(255 255 255 / 10%);
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: 1.2rem;
}

.service-process__steps li > span {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    color: #05295d;
    background: #efae37;
    border-radius: 50%;
    font-weight: 900;
}

.service-process__steps h3 {
    margin: 0 0 0.5rem;
    color: #ffffff;
}

.service-process__steps p {
    margin: 0;
    color: rgb(255 255 255 / 82%);
    line-height: 1.6;
}

.service-detail-contact {
    padding-top: 3.5rem;
}

@media (max-width: 62rem) {
    .service-detail-hero__grid,
    .service-detail-feature__grid {
        grid-template-columns: 1fr;
    }

    .service-audiences,
    .service-process__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-offers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 42rem) {
    .service-detail-hero {
        padding-top: 2.5rem;
    }

    .service-detail-hero__grid {
        gap: 2.4rem;
    }

    .service-detail-hero__content h1 {
        font-size: 2.65rem;
    }

    .service-audiences,
    .service-offers,
    .service-process__steps {
        grid-template-columns: 1fr;
    }

    .service-detail-section,
    .service-detail-feature,
    .service-process {
        padding: 3.5rem 0;
    }
}

/* Enrichissement visuel de la page Développement d'applications */

.service-detail-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 7% 18%, rgb(239 174 55 / 18%), transparent 22rem),
        radial-gradient(circle at 92% 15%, rgb(9 102 223 / 22%), transparent 31rem),
        linear-gradient(135deg, #f4f9ff 0%, #ffffff 47%, #fff7e8 100%);
}

.service-detail-hero::before {
    position: absolute;
    width: 26rem;
    height: 26rem;
    top: -12rem;
    right: 25%;
    content: "";
    border: 1px solid rgb(9 102 223 / 12%);
    border-radius: 50%;
    box-shadow:
        0 0 0 4rem rgb(9 102 223 / 3%),
        0 0 0 8rem rgb(217 147 33 / 3%);
    pointer-events: none;
}

.service-detail-hero__grid {
    position: relative;
    z-index: 1;
}

.service-detail-section:not(.service-detail-section--soft) {
    background:
        radial-gradient(circle at 12% 40%, rgb(9 102 223 / 7%), transparent 22rem),
        radial-gradient(circle at 90% 70%, rgb(217 147 33 / 8%), transparent 24rem),
        linear-gradient(180deg, #ffffff, #f5f9ff);
}

.service-detail-section--soft {
    background:
        radial-gradient(circle at 15% 20%, rgb(217 147 33 / 12%), transparent 22rem),
        radial-gradient(circle at 88% 75%, rgb(9 102 223 / 10%), transparent 28rem),
        repeating-linear-gradient(
            90deg,
            #fffaf1 0,
            #fffaf1 2rem,
            #f8efdf 2rem,
            #f8efdf 4rem
        );
}

.service-audiences article,
.service-offers article {
    position: relative;
    overflow: hidden;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.service-audiences article::after,
.service-offers article::after {
    position: absolute;
    width: 7rem;
    height: 7rem;
    right: -3.5rem;
    bottom: -3.5rem;
    content: "";
    background: radial-gradient(circle, rgb(9 102 223 / 11%), transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}

.service-audiences article:hover,
.service-offers article:hover {
    transform: translateY(-0.35rem);
    border-color: #9bc7ff;
    box-shadow: 0 1.3rem 3rem rgb(5 41 93 / 15%);
}

.service-audiences__icon,
.service-offers__icon {
    width: 3.8rem;
    height: 3.8rem;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    background: linear-gradient(145deg, #ffffff, #edf5ff);
    border: 1px solid #b9d8ff;
    border-radius: 1rem;
    box-shadow: 0 0.65rem 1.3rem rgb(5 41 93 / 10%);
}

.service-audiences__icon img,
.service-offers__icon img {
    width: 2.2rem;
    height: 2.2rem;
    display: block;
}

.service-detail-feature {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgb(9 102 223 / 10%), transparent 27rem),
        linear-gradient(115deg, #ffffff 0%, #f6faff 58%, #fff8eb 100%);
}

.service-detail-feature::before {
    position: absolute;
    width: 17rem;
    height: 17rem;
    left: -8rem;
    bottom: -8rem;
    content: "";
    background: rgb(217 147 33 / 8%);
    border-radius: 50%;
}

.service-detail-feature__grid {
    position: relative;
    z-index: 1;
}

.service-process {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgb(255 255 255 / 11%), transparent 20rem),
        radial-gradient(circle at 88% 80%, rgb(239 174 55 / 18%), transparent 24rem),
        linear-gradient(125deg, #031f4b 0%, #0754b6 48%, #0878ef 100%);
}

.service-process__steps li {
    position: relative;
    grid-template-columns: 4.6rem minmax(0, 1fr);
    align-items: start;
    background: linear-gradient(
        145deg,
        rgb(255 255 255 / 15%),
        rgb(255 255 255 / 7%)
    );
    backdrop-filter: blur(0.3rem);
    transition:
        transform 180ms ease,
        background 180ms ease;
}

.service-process__steps li:hover {
    transform: translateY(-0.3rem);
    background: rgb(255 255 255 / 18%);
}

.service-process__steps li > span {
    position: relative;
    width: 4.4rem;
    height: 4.4rem;
    background: rgb(255 255 255 / 11%);
    border: 1px solid rgb(255 255 255 / 28%);
    box-shadow: inset 0 0 0 0.35rem rgb(255 255 255 / 5%);
}

.service-process__steps li > span img {
    width: 2.4rem;
    height: 2.4rem;
    display: block;
}

.service-process__steps li > span b {
    position: absolute;
    width: 1.45rem;
    height: 1.45rem;
    right: -0.35rem;
    bottom: -0.35rem;
    display: grid;
    place-items: center;
    color: #05295d;
    background: #efae37;
    border: 0.15rem solid #ffffff;
    border-radius: 50%;
    font-size: 0.72rem;
    line-height: 1;
}


/* =========================================================
   VERSION VISUELLE RENFORCÉE — PAGE SERVICE
   ========================================================= */

/* HERO */

.service-detail-hero {
    min-height: 42rem;
    padding: 5.5rem 0;
    background:
        linear-gradient(
            105deg,
            #f4f8ff 0%,
            #f4f8ff 53%,
            #e8f2ff 53%,
            #dcecff 100%
        ) !important;
}

.service-detail-hero::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    content: "";
    background:
        radial-gradient(circle at 75% 20%, rgb(255 255 255 / 45%), transparent 16rem),
        linear-gradient(145deg, rgb(4 49 109 / 18%), rgb(9 102 223 / 4%));
    pointer-events: none;
}

.service-detail-hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(26rem, 0.98fr);
    gap: 5rem;
}

.service-detail-hero__content {
    position: relative;
}

.service-detail-hero__content::before {
    display: block;
    width: 4.5rem;
    height: 0.3rem;
    margin-bottom: 1.2rem;
    content: "";
    background: linear-gradient(90deg, #d99321, #f3bd55);
    border-radius: 999px;
}

.service-detail-hero__content h1 {
    max-width: 11ch;
    font-size: clamp(3.1rem, 5.2vw, 5.2rem);
    letter-spacing: -0.045em;
    text-shadow: 0 0.12rem 0 rgb(255 255 255 / 80%);
}

.service-detail-hero__lead {
    max-width: 39rem;
    font-size: 1.12rem;
}

.service-detail-hero__visual {
    position: relative;
    max-width: 38rem;
    margin-left: auto;
}

.service-detail-hero__visual::before {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 78%;
    height: 78%;
    content: "";
    background: linear-gradient(145deg, #0966df, #05295d);
    border-radius: 2rem;
    transform: rotate(3deg);
    box-shadow: 0 2rem 4rem rgb(5 41 93 / 25%);
}

.service-detail-hero__visual::after {
    position: absolute;
    right: -1.4rem;
    bottom: 2rem;
    width: 5rem;
    height: 5rem;
    content: "";
    background: #d99321;
    border: 0.55rem solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 1rem 2rem rgb(5 41 93 / 20%);
}

.service-detail-hero__visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 31rem;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    border: 0.45rem solid #ffffff;
    border-radius: 1.7rem;
    box-shadow: 0 2rem 4.5rem rgb(5 41 93 / 24%);
}

/* SECTION POUR QUI */

.service-detail-section:not(.service-detail-section--soft) {
    padding: 5.5rem 0 6rem;
    background:
        radial-gradient(circle at 8% 20%, rgb(9 102 223 / 12%), transparent 20rem),
        linear-gradient(180deg, #ffffff 0%, #edf5ff 100%) !important;
}

.service-detail-section:not(.service-detail-section--soft) .section-heading {
    max-width: 52rem;
    margin-inline: auto;
}

.service-audiences {
    gap: 1.7rem;
}

.service-audiences article {
    min-height: 15rem;
    padding: 2rem 1.7rem;
    border-top: 0.35rem solid #0966df;
    background:
        linear-gradient(145deg, #ffffff 0%, #f3f8ff 100%);
}

.service-audiences article:nth-child(even) {
    border-top-color: #d99321;
}

.service-audiences__icon {
    width: 4.4rem;
    height: 4.4rem;
    margin-bottom: 1.3rem;
    background: linear-gradient(145deg, #ffffff, #dcecff);
    border-radius: 1.2rem;
}

.service-audiences__icon img {
    width: 2.7rem;
    height: 2.7rem;
}

.service-audiences h3 {
    font-size: 1.15rem;
}

/* SECTION RÉALISATIONS */

.service-detail-section--soft {
    padding: 5.5rem 0 6rem;
    background:
        linear-gradient(rgb(255 250 241 / 88%), rgb(255 250 241 / 88%)),
        repeating-linear-gradient(
            90deg,
            #ecd8b7 0,
            #ecd8b7 1.5rem,
            #f8ead2 1.5rem,
            #f8ead2 3rem
        ) !important;
}

.service-detail-section--soft .section-heading h2 {
    position: relative;
    display: inline-block;
}

.service-detail-section--soft .section-heading h2::after {
    display: block;
    width: 5rem;
    height: 0.25rem;
    margin: 1rem auto 0;
    content: "";
    background: #d99321;
    border-radius: 999px;
}

.service-offers {
    gap: 1.6rem;
}

.service-offers article {
    min-height: 14rem;
    padding: 2rem;
    background:
        linear-gradient(145deg, #ffffff 0%, #fffaf1 100%);
    border: 1px solid #e8cfa8;
    border-left: 0.35rem solid #0966df;
}

.service-offers article:nth-child(2),
.service-offers article:nth-child(4),
.service-offers article:nth-child(6) {
    border-left-color: #d99321;
}

.service-offers__icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(145deg, #eff6ff, #ffffff);
}

.service-offers__icon img {
    width: 2.45rem;
    height: 2.45rem;
}

/* GRANDE SECTION IMAGE + TEXTE */

.service-detail-feature {
    padding: 6.5rem 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 8% 20%, rgb(255 255 255 / 10%), transparent 22rem),
        radial-gradient(circle at 92% 75%, rgb(217 147 33 / 22%), transparent 24rem),
        linear-gradient(125deg, #031d46 0%, #063d88 52%, #0966df 100%) !important;
}

.service-detail-feature__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 5rem;
}

.service-detail-feature__visual {
    position: relative;
}

.service-detail-feature__visual::before {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 45%;
    height: 45%;
    content: "";
    background: #d99321;
    border-radius: 1.8rem 0 0 0;
}

.service-detail-feature__visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 25rem;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    border: 0.45rem solid #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgb(0 0 0 / 30%);
}

.service-detail-feature__content {
    padding: 2rem 0;
}

.service-detail-feature__content .eyebrow {
    color: #f2b84c;
}

.service-detail-feature__content h2 {
    color: #ffffff;
    font-size: clamp(2.4rem, 4vw, 3.7rem);
    line-height: 1.08;
}

.service-detail-feature__content > p:not(.eyebrow) {
    color: rgb(255 255 255 / 82%);
    font-size: 1.05rem;
}

.service-detail-feature .digital-check-list li {
    color: #ffffff;
}

.service-detail-feature .digital-check-list li::before {
    color: #05295d;
    background: #efae37;
}

/* MÉTHODE */

.service-process {
    padding: 6rem 0;
    background:
        radial-gradient(circle at 15% 25%, rgb(255 255 255 / 10%), transparent 22rem),
        linear-gradient(120deg, #05295d 0%, #0759c7 60%, #0b7cf4 100%) !important;
}

.service-process .section-heading {
    max-width: 48rem;
    margin-inline: auto;
}

.service-process .section-heading h2 {
    font-size: clamp(2.3rem, 4vw, 3.5rem);
}

.service-process__steps {
    gap: 1.8rem;
}

.service-process__steps li {
    min-height: 13.5rem;
    padding: 1.8rem;
    border: 1px solid rgb(255 255 255 / 35%);
    box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 15%);
}

.service-process__steps h3 {
    font-size: 1.15rem;
}

/* CONTACT */

.service-detail-contact {
    padding: 4rem 0;
    background: #edf5ff;
}

/* RESPONSIVE */

@media (max-width: 62rem) {
    .service-detail-hero {
        min-height: auto;
        background: linear-gradient(180deg, #f4f8ff, #e7f1ff) !important;
    }

    .service-detail-hero__grid,
    .service-detail-feature__grid {
        gap: 3rem;
    }

    .service-detail-hero__visual {
        max-width: 42rem;
        margin-inline: auto;
    }

    .service-detail-hero__visual img {
        height: 27rem;
    }

    .service-detail-feature__visual img {
        height: 23rem;
    }
}

@media (max-width: 42rem) {
    .service-detail-hero {
        padding: 3.5rem 0 4rem;
    }

    .service-detail-hero__content h1 {
        font-size: 3rem;
    }

    .service-detail-hero__visual img {
        height: 22rem;
    }

    .service-detail-feature__visual img {
        height: 19rem;
    }

    .service-audiences article,
    .service-offers article {
        min-height: auto;
    }
}

/* Cartes beige/doré dans la section méthode */
.service-process__steps li {
    background: linear-gradient(180deg, #fff8ec 0%, #f6e6c8 100%) !important;
    border: 1px solid #e1bc7a !important;
    box-shadow: 0 1rem 2rem rgb(4 32 77 / 18%) !important;
}

.service-process__steps li h3 {
    color: #08295f !important;
}

.service-process__steps li p {
    color: #4d5970 !important;
}

.service-process__steps .step-number,
.service-process__steps .service-process__number {
    background: #c58a2a !important;
    color: #ffffff !important;
    box-shadow: 0 0.5rem 1rem rgb(197 138 42 / 35%);
}

.service-process__steps .step-icon,
.service-process__steps .service-process__icon {
    background: #fffdf8 !important;
    border: 1px solid #e3c48a !important;
}


/* Icônes de la section méthode : fond bleu */
.service-process__steps .step-icon,
.service-process__steps .service-process__icon {
    background: linear-gradient(180deg, #1f6fe8 0%, #0b3d91 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    box-shadow: 0 0.8rem 1.8rem rgba(5, 43, 111, 0.28) !important;
    color: #ffffff !important;
}

/* Si les icônes sont en image */
.service-process__steps .step-icon img,
.service-process__steps .service-process__icon img {
    filter: brightness(0) invert(1);
}

/* Si les icônes sont en SVG inline */
.service-process__steps .step-icon svg,
.service-process__steps .service-process__icon svg {
    color: #ffffff !important;
    fill: currentColor !important;
    stroke: currentColor !important;
}


/* Correction réelle : fond bleu des icônes de la méthode */

.service-process__steps li > span {
    background: linear-gradient(145deg, #126fe8 0%, #073b88 100%) !important;
    border: 2px solid rgb(255 255 255 / 75%) !important;
    box-shadow:
        0 0.75rem 1.5rem rgb(5 41 93 / 28%),
        inset 0 0 0 0.25rem rgb(255 255 255 / 8%) !important;
}

.service-process__steps li > span img {
    width: 2.45rem !important;
    height: 2.45rem !important;
    display: block !important;
    object-fit: contain !important;
    filter: none !important;
}

.service-process__steps li > span b {
    color: #05295d !important;
    background: #efae37 !important;
    border: 2px solid #ffffff !important;
}

/* Séparation visuelle entre la section outil et la méthode */

.service-process {
    position: relative;
    margin-top: 1.4rem;
    border-top: 0.55rem solid #e3b45f;
}

.service-process::before {
    position: absolute;
    top: -1.95rem;
    left: 0;
    width: 100%;
    height: 1.4rem;
    content: "";
    background: linear-gradient(90deg, #fff8eb 0%, #f2dfbd 50%, #fff8eb 100%);
    clip-path: polygon(0 40%, 58% 0, 100% 45%, 100% 100%, 0 100%);
}

.service-detail-feature {
    padding-bottom: 6.5rem !important;
    background:
        radial-gradient(circle at 8% 20%, rgb(255 255 255 / 10%), transparent 22rem),
        radial-gradient(circle at 92% 75%, rgb(217 147 33 / 22%), transparent 24rem),
        linear-gradient(125deg, #031d46 0%, #073a7d 55%, #0a4da3 100%) !important;
}

.service-process {
    background:
        radial-gradient(circle at 15% 25%, rgb(255 255 255 / 10%), transparent 22rem),
        linear-gradient(120deg, #0750ae 0%, #0868d9 58%, #1384f5 100%) !important;
}

/* =========================================================
   RENFORT VISUEL DES SECTIONS BEIGE / TROP FADES
   ========================================================= */

.service-detail-section--soft {
    background:
        radial-gradient(circle at 12% 18%, rgb(229 178 84 / 0.14), transparent 22rem),
        radial-gradient(circle at 88% 82%, rgb(10 91 216 / 0.08), transparent 24rem),
        linear-gradient(rgb(255 250 242 / 0.92), rgb(255 250 242 / 0.92)),
        repeating-linear-gradient(
            90deg,
            #f6ebd8 0,
            #f6ebd8 1.55rem,
            #efe1c8 1.55rem,
            #efe1c8 3.1rem
        );
}

/* Titres et textes plus lisibles */
.service-detail-section .section-heading h2,
.service-detail-section .section-heading h3,
.service-detail-section--soft .section-heading h2,
.service-detail-section--soft .section-heading h3 {
    color: #05295d;
}

.service-detail-section .section-heading p,
.service-detail-section--soft .section-heading p,
.service-audiences p,
.service-offers p {
    color: #465a77;
}

/* Cartes plus vivantes */
.service-audiences article,
.service-offers article {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
    border: 1px solid #d7e3f5;
    border-top: 3px solid #0d5fd7;
    border-radius: 1.35rem;
    box-shadow:
        0 1rem 2.4rem rgb(5 41 93 / 8%),
        0 0.2rem 0.8rem rgb(217 147 33 / 8%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-audiences article:nth-child(even),
.service-offers article:nth-child(even) {
    border-top-color: #d89a2b;
}

.service-audiences article:hover,
.service-offers article:hover {
    transform: translateY(-4px);
    box-shadow:
        0 1.4rem 3rem rgb(5 41 93 / 12%),
        0 0.4rem 1rem rgb(217 147 33 / 10%);
}

/* Petit reflet décoratif discret */
.service-audiences article::after,
.service-offers article::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    content: "";
    background: radial-gradient(circle, rgb(13 95 215 / 0.10) 0%, transparent 70%);
    pointer-events: none;
}

/* Icônes plus présentes */
.service-audiences__icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
    color: #0d5fd7;
    background: linear-gradient(180deg, #f4f8ff 0%, #eaf2ff 100%);
    border: 1px solid #b9d3fb;
    box-shadow: 0 0.6rem 1.2rem rgb(13 95 215 / 10%);
}

.service-audiences h3,
.service-offers h3 {
    color: #05295d;
    font-size: 1.04rem;
    line-height: 1.3;
}

/* Un peu plus d’air */
.service-audiences,
.service-offers {
    gap: 1.55rem;
    margin-top: 3.2rem;
}

.service-audiences article,
.service-offers article {
    min-height: 100%;
}

/* Version mobile */
@media (max-width: 62rem) {
    .service-audiences article,
    .service-offers article {
        padding: 1.35rem;
    }
}

/* Réduction de la hauteur de la section méthode */

.service-process {
    padding-top: 3.2rem !important;
    padding-bottom: 3.5rem !important;
}

.service-process .section-heading {
    max-width: 42rem !important;
    margin-bottom: 1.8rem !important;
}

.service-process .section-heading h2 {
    max-width: 22ch;
    margin: 0.35rem auto 0 !important;
    font-size: clamp(2rem, 3.4vw, 3rem) !important;
    line-height: 1.08 !important;
}

.service-process__steps {
    margin-top: 1.8rem !important;
}

/* Responsive mobile - Développement d'applications */
@media (max-width: 62rem) {
    .service-detail--development .service-detail-hero__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-detail--development .service-detail-hero__content {
        width: 100%;
        max-width: none;
    }

    .service-detail--development .service-detail-hero__content h1 {
        width: 100%;
        max-width: 16ch !important;
    }

    .service-detail--development .service-detail-hero__lead {
        width: 100%;
        max-width: 40rem;
    }

    .service-detail--development .service-detail-hero__visual {
        width: 100%;
        max-width: 42rem;
        margin-inline: auto;
    }

    .service-detail--development .service-detail-hero::after {
        width: 100%;
        opacity: 0.45;
    }
}

@media (max-width: 42rem) {
    .service-detail--development .service-detail-hero {
        padding: 3rem 0;
    }

    .service-detail--development .service-detail-hero__grid {
        gap: 2rem;
    }

    .service-detail--development .service-detail-hero__content h1 {
        max-width: none !important;
        font-size: clamp(2.25rem, 10vw, 2.85rem) !important;
    }

    .service-detail--development .service-detail-hero__lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .service-detail--development .service-detail-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .service-detail--development .service-detail-hero__actions .button {
        width: 100%;
    }

    .service-detail--development .service-detail-hero__visual img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }
}

/* Mobile - section "Un outil pensé pour vos usages réels" */
@media (max-width: 62rem) {
    .service-detail--development .service-detail-feature__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-detail--development .service-detail-feature__content {
        width: 100%;
        max-width: none;
        padding: 0;
        order: 1;
    }

    .service-detail--development .service-detail-feature__visual {
        width: 100%;
        max-width: 42rem;
        margin-inline: auto;
        order: 2;
    }

    .service-detail--development .service-detail-feature__content h2 {
        width: 100%;
        max-width: 16ch;
    }

    .service-detail--development .service-detail-feature__content > p:not(.eyebrow) {
        width: 100%;
        max-width: 40rem;
    }
}

@media (max-width: 42rem) {
    .service-detail--development .service-detail-feature {
        padding: 3.5rem 0;
    }

    .service-detail--development .service-detail-feature__grid {
        gap: 2rem;
    }

    .service-detail--development .service-detail-feature__content h2 {
        max-width: none;
        font-size: clamp(2.1rem, 9vw, 2.7rem);
        line-height: 1.08;
    }

    .service-detail--development .service-detail-feature__content > p:not(.eyebrow) {
        font-size: 1rem;
        line-height: 1.65;
    }

    .service-detail--development .service-detail-feature__visual img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: cover;
    }
}
