/* ====================================================== */
/* === RESET & BASE ===================================== */
/* ====================================================== */
:root {
    --period: 6000;
    --front-start: 0.01;
    --front-end: 0.55;
    --accent-1: #67D2FF;
    --accent-2: #6F8BFF;
    --accent-3: #8B64FF;
    --accent-grad: linear-gradient(90deg, var(--accent-1), var(--accent-2), var(--accent-3));
    --muted: rgba(255,255,255,.65);
    --border: rgba(255,255,255,.08);
    --shadow: 0 10px 30px rgba(0,0,0,.35), 0 0 40px rgba(139,100,255,.12);
    --door-dur: 1.4s;
    --door-ease: cubic-bezier(.22,.61,.36,1);
    --svg-w: min(clamp(110px, 22vw, 300px), 28vh);
    --svg-h: calc(var(--svg-w) * 217 / 106);
    --x-gap: calc(var(--svg-w) * 12 / 106);
}

* {box-sizing: border-box;margin: 0;padding: 0;}

body {
    background-color: var(--style-black);
    font-family: 'Mori', sans-serif;
    color: var(--style-white);
}

html.is-modal-open {
    overflow: hidden;
}

body.is-modal-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
    left: 0;
    right: 0;
}

body.is-menu-open {
    position: static;
    width: 100%;
}

html.is-menu-open,
body.is-menu-open {
    overflow: hidden;
    touch-action: none;
}

html, body {
    overscroll-behavior: auto;
    overflow-y: auto;
    overflow-x: clip;
}

img, svg {max-width: 100%;height: auto;}

/* ====================================================== */
/* === SECTION ACCUEIL ================================== */
/* ====================================================== */
h1.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    font-size: 2rem;
    margin-block: 0.67em;
}

.page-template-page-mes-services #main-nav .nav-list .nav-item:first-child a:nth-of-type(2)::after {
    transform: scaleX(1);
}

.page-template-page-mes-services #accueil{
    height:calc(100svh - var(--header-height));
    display:flex;
    flex-direction:column;
}

.hero-section,
.prestations-section{
    flex:1;
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-sizing:border-box;
}

.hero-section{
    color:var(--style-white);
    overflow:hidden;
    position:relative;
    width:min(1100px,90%);
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:0 auto;
    box-sizing:border-box;
    isolation:isolate;
}

.hero-section>*{
    position:relative;
    z-index:1;
}

.page-template-page-mes-services .hero-content{
    display:flex;
    flex-direction:column;
    gap: 1rem;
}

.hero-content h2{
    line-height:1.05;
    font-size:clamp(38px,6.2vw,74px);
    background:var(--accent-grad);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    filter:drop-shadow(0 0 18px rgba(111,139,255,.15));
    opacity:0;
}

.hero-content p{
    font-size:clamp(22px,3.6vw,30px);
    line-height:1.6;
    background: var(--style-white);
    color:transparent;
    background-clip:text;
    opacity:0;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.hero-section .btn{
    --btn-h:46px;
    display:inline-block;
    height:var(--btn-h);
    padding: 0 22px;
    border-radius:12px;
    font-weight:600;
    font-size:1rem;
    text-decoration:none;
    cursor:pointer;
    position:relative;
    border:none;
    background:transparent;
    color:var(--style-white);
    transition:color .25s ease,transform .18s ease,box-shadow .25s ease;
    opacity:0;
    white-space:nowrap;
    overflow:hidden;
    line-height:var(--btn-h);
}

.hero-section .btn::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    padding:2px;
    background:var(--accent-grad);
    -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    z-index:-1;
    opacity:var(--ring-o,0);
    transition:opacity .25s ease;
}

.hero-section .btn::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    background:var(--accent-grad);
    z-index:-2;
    opacity:var(--fill-o,0);
    transition:opacity .25s ease;
}

.hero-section .btn-primary{--fill-o:1;--ring-o:0;}
.hero-section .btn-outline{--fill-o:0;--ring-o:1;}
.hero-section .btn-primary:hover{--fill-o:0;--ring-o:1;}
.hero-section .btn-outline:hover{--fill-o:1;--ring-o:0;}
.hero-section .btn:active{transform:translateY(1px);}

.hero-illustration {
    width: min(33vw, 370px);
    aspect-ratio: 324 / 302;
    position: relative;
    will-change: transform, opacity;
}

#orbitBack,
#scene,
#orbitFront{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    display:block;
}

#orbitBack{
    z-index:0;
    pointer-events:none;
}

#scene{
    z-index:1;
}

#orbitFront{
    z-index:2;
    pointer-events:none;
}

.prestations-section{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:stretch;
    gap:clamp(.75rem,2.2vw,1.6rem);
    width:min(1100px,90%);
    margin:0 auto;
    box-sizing:border-box;
    position:relative;
    z-index:3;
    padding-top: 2rem;
}

.prestations {overflow: hidden}

.section-title-prestations {
    position:absolute;
    top:-0.5rem;
    left:0;
    z-index:3;
    font-size:clamp(1.4rem,2.8vw,2.4rem);
    background: var(--style-white);
    color:transparent;
    background-clip:text;
    text-align:left;
    width:100%;
    margin:0;
    opacity:0;
    transform:translateX(-100px);
}

.section-title-formules {display: none}

.prestations-grid{
    display:flex;
    justify-content:space-between;
    align-items:stretch;
    width:100%;
    gap:clamp(1rem,3vw,2rem);

}

.prestation-card{
    flex:1 1 250px;
    max-width:300px;
    min-width:140px;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(20px);
    border:1px solid var(--border);
    border-radius:10px;
    padding:clamp(24px,3vw,40px);
    box-shadow:var(--shadow);
    color:var(--style-white);
    text-align:center;
    transition:all .3s ease;
    opacity: 0;
    transform: translateY(100px);
}

#mes-formules .prestation-card[role="button"] {
    cursor: pointer;
}

.prestation-card.animating {
    transition: none !important;
}

.prestation-card.is-ready { transform: translateY(0); }

#mes-formules .prestation-card.is-ready:hover{
    transform:translateY(-6px);
    border-color:rgba(255,255,255,.18);
}

.prestation-icon{
    width:80px;
    height:80px;
    margin:0 auto clamp(18px,2vw,24px);
    display:flex;
    align-items:center;
    justify-content:center;
}

.prestation-icon svg{
    width:100%;
    height:100%;
    fill:url(#svgGradient);
    filter:drop-shadow(0 0 10px rgba(111,139,255,.3));
    transition:transform .25s ease,filter .25s ease;
}

#mes-formules .prestation-card:hover .prestation-icon svg{
    transform:scale(1.08);
    filter:drop-shadow(0 0 20px rgba(139,100,255,.6));
}

.prestation-title{
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    margin:0 0 6px 0;
    font-weight:600;
}

.prestation-text{
    opacity:.9;
    line-height:1.6;
}

.prestations-section .section-title,
.prestations-section .prestation-card{
    will-change: transform, opacity;
}

.under-section{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:1;
}

.front-doors{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
}

.under-section{ z-index:1; }
.front-doors{  z-index:2; }

.front-doors{ pointer-events:auto; }
.is-open .front-doors{ pointer-events:none; }
.is-open .door-half{ pointer-events:none; }

.door-half{
    position:absolute; top:0; bottom:0; width:50%;
    background: var(--style-black);
    will-change: transform;
    transition: transform var(--door-dur) var(--door-ease);
    overflow: hidden;
    display:flex; align-items:center; justify-content:center;
}
.door-left{  left:0;  }
.door-right{ right:0; }

.door-content{
    width:100%;
    display:flex; align-items:center; justify-content:center;
}

.door-right .door-content{
    padding-left: clamp(0.5rem, 1.5vw, 1rem)
}

.door-left .door-content{
    padding-right: clamp(0.5rem, 1.5vw, 1rem);
}

.door-section{
    width:100%;
    max-width: 550px;
    margin: 0;
}

.door-section .prestations-grid{
    display:flex; gap: clamp(1rem,3vw,2rem);
    justify-content:center; align-items:stretch;
}

.door-section .prestation-card{
    flex:1 1 220px; max-width:260px; min-width:140px;
}

.is-open .door-left{  transform: translateX(-100%); }
.is-open .door-right{ transform: translateX( 100%); }

.under-content{
    width:100%;
    display:flex; flex-direction:column;
    align-items:center; justify-content:center;
}

.under-section .prestations-section{
    width:min(1100px,90%); margin:0 auto;
}

/* ====================================================== */
/* === MODAL FORMULES =================================== */
/* ====================================================== */
.formule-modal[hidden] {
    display: none !important;
}

#mes-formules .prestation-card .prestation-text:last-of-type {
    margin-top: 0.75rem;
}

.formule-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
}

.formule-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.25s var(--panel-ease);
}

.formule-dialog {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: min(1000px, 92vw);
    max-height: 90vh;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    color: var(--style-white);
    padding: clamp(16px, 2.5vw, 28px);
    transform: translateY(20px) scale(0.98);
    opacity: 0;
    transition: transform 0.28s var(--panel-ease), opacity 0.28s var(--panel-ease);
    overflow: hidden;
}

.formule-modal.is-open .formule-backdrop {
    opacity: 1;
}

.formule-modal.is-open .formule-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.formule-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.formule-title {
    font-size: clamp(1.15rem, 2.2vw, 1.6rem);
    margin: 0;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 12px rgba(111, 139, 255, 0.18));
}

.formule-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all 0.25s ease;
}

.formule-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 0 8px rgba(143, 118, 255, 0.3);
}

.formule-close:active {
    transform: scale(0.95);
}

.formule-close .close-line {
    position: absolute;
    width: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-2, #6F8BFF), var(--accent-3, #8B64FF));
    border-radius: 2px;
    transition: all 0.25s ease;
}

.formule-close .close-line:first-child {
    transform: rotate(45deg);
}

.formule-close .close-line:last-child {
    transform: rotate(-45deg);
}

.formule-close:hover .close-line {
    background: linear-gradient(90deg, var(--accent-3, #8B64FF), var(--accent-2, #6F8BFF));
    box-shadow: 0 0 10px rgba(111, 139, 255, 0.5);
}

.formule-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    font-size: clamp(0.88rem, 1.1vw, 0.95rem);
    line-height: 1.6;
    opacity: 0.95;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.formule-body h4 {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    margin: 1rem 0 0.4rem;
    font-weight: 500;
    opacity: 0.95;
}

.formule-body ul {
    margin: 0.4rem 0 0.8rem;
    padding-left: 1.1rem;
}

.formule-body li {
    margin: 0.25rem 0;
    opacity: 0.9;
}

.formule-body hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.3rem 0;
}

.formule-body .note {
    font-size: 0.9em;
    line-height: 1.4;
    opacity: 0.85;
}

/* ====================================================== */
/* === SECTION PROCESSUS ================================ */
/* ====================================================== */
#processus{
    width: 100%;
    min-height: 100svh;
    height: auto;
    margin: 0;
    padding: 6svh 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.processus-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(1.4rem, 3vw, 2.4rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.processus-title{
    width: min(900px, 96vw);
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 14px rgba(111,139,255,.15));
}

.processus-subtitle {
    width: min(900px, 96vw);
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.6;
    color: var(--style-white);
    opacity: 0.95;
    text-align: center;
}

.wrap{
    width:min(900px, 96vw);
    margin:0 auto;
    color:var(--style-white);
    display:grid;
    grid-template-columns: var(--svg-w) minmax(0, 1fr);
    column-gap: var(--x-gap);
    align-items:center;
}

#flow-svg{
    width:100%;
    height:auto;
    display:block;
    overflow:visible;
    align-self:center;
}

.flow-right{
    position:relative;
    height:var(--svg-h);
    display:grid;
    grid-template-rows: repeat(5, 1fr);
    box-sizing:border-box;
    padding-bottom: calc(var(--svg-h) * 7 / 217);
    min-width: 0;
}

.step-text{
    display:grid;
    grid-template-columns: clamp(160px, 32%, 260px) minmax(0, 1fr);
    column-gap: clamp(12px, 2.2vw, 28px);
    align-items:center;
    opacity:1;
    visibility:visible;
    font-size: clamp(12px, 1.2vw, 15px);
    line-height: 1.45;
}

.step-text strong{
    display:block;
    font-weight:700;
    font-size: clamp(13px, 1.35vw, 16px);
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
}

.step-text br{
    display:none;
}

#tube2, #tube3, #tube4, #tube5, #tube6{
    stroke: #8FA3B8;
}

[id^="ligne"]{
    stroke-width: 0.9;
}

[id^="tete"]{
    stroke-width: 0.9;
}

#processus .processus-subtitle { opacity:0;}
#processus .processus-title { opacity:0;}
#processus .step-text { opacity:0}
#flow-svg [id^="platform"],
#flow-svg #design, #flow-svg #dev, #flow-svg #test, #flow-svg #deploy,
#flow-svg #tube2, #flow-svg #tube3, #flow-svg #tube4, #flow-svg #tube5, #flow-svg #tube6,
#flow-svg #shadow,
#flow-svg [id^="tete"], #flow-svg [id^="ligne"]{
    opacity:0;
}

/* ====================================================== */
/* === SECTION CONTACT ================================== */
/* ====================================================== */
.field-error {
    font-size: .85rem;
    color: #ff4b4b;
    margin-top: .25rem;
}

.contact-section{
    width: 100%;
    min-height: 100svh;
    height: auto;
    padding: 6svh 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact .contact-title,
#contact .contact-subtitle,
#contact .contact-form {
    opacity: 0;
}

.contact-wrap {
    width: min(1100px, 90%);
    margin: 0 auto;
}

.title-contact-section { position: relative; }

.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(1.4rem, 3vw, 2.4rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.contact-title {
    line-height: 1.15;
    font-size: clamp(28px, 4vw, 50px);
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 14px rgba(111,139,255,.15));
    white-space: pre-line;
    text-align: center;
}

.contact-subtitle {
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.6;
    color: var(--style-white);
    opacity: 0.95;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: clamp(12px, 2vw, 16px);
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: clamp(16px, 3vw, 28px);
    box-shadow: var(--shadow);
    color: var(--style-white);
}

.contact-form .hp-input {
    position: absolute;
    left: -10000px;
    opacity: 0;
}

.contact-form .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form .field--half { grid-column: span 1; }
.contact-form .field--full { grid-column: 1 / -1; }

.contact-form .field:has(#first_name) { grid-column: 1 / 2; grid-row: 1; }
.contact-form .field:has(#last_name)  { grid-column: 2 / 3; grid-row: 1; }
.contact-form .field:has(#email)      { grid-column: 1 / 2; grid-row: 2; }
.contact-form .field:has(#subject)    { grid-column: 1 / 2; grid-row: 3; }
.contact-form .field:has(#message)    { grid-column: 1 / -1; grid-row: 4; }

.contact-form label {
    font-size: clamp(0.9rem, 0.5vw + 0.5rem, 1rem);
    opacity: 0.9;
    transition: color 0.2s ease;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--style-white);
    padding: 12px 14px;
    border-radius: 10px;
    outline: none;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--muted);
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: rgba(139, 100, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(139, 100, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(139, 100, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 160px;
}

.actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.actions .btn {
    --btn-h: 48px;
    --fill-o: 0;
    --ring-o: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--btn-h);
    padding: 0 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    border: none;
    background: transparent;
    color: var(--style-white);
    transition: transform .18s ease, box-shadow .25s ease;
}

.actions .btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: var(--accent-grad);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    opacity: var(--ring-o, 0);
    transition: opacity .25s ease;
}

.actions .btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--accent-grad);
    z-index: -2;
    opacity: var(--fill-o, 0);
    transition: opacity .25s ease;
}

.actions .btn:hover {
    --fill-o: 1;
    --ring-o: 0;
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(111,139,255,.25);
}

.actions .btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(111,139,255,.18);
}

#contact-feedback {
    font-size: 0.95rem;
    opacity: 0.9;
    min-height: 1.2em;
}

.contact-lottie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 12, 18, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
}

.contact-lottie-inner {
    background: rgba(14,16,15,0.3);
    border: 1px solid rgba(255,252,225,0.08);
    border-radius: 18px;
    padding: 28px 30px 18px;
    width: min(360px, 92vw);
    text-align: center;
    box-shadow: 0 14px 45px rgba(0,0,0,.35);
}

.lottie-box {
    width: 200px;
    height: 200px;
    margin: 0 auto 10px;
}

.lottie-success-text {
    color: #fffce1;
    font-weight: 600;
    letter-spacing: .01em;
    font-size: .98rem;
}

/* ====================================================== */
/* === RESPONSIVE RULES ================================= */
/* ====================================================== */
@media (pointer: coarse) {
    #mes-formules .prestation-card {
        position: relative;
    }
    #mes-formules .prestation-card::after {
        content: "👆 détail";
        position: absolute;
        top: 0.5rem;
        right: 0.55rem;
        font-size: 0.55rem;
        font-weight: 400;
        color: var(--style-white);
        opacity: 0.65;
        letter-spacing: 0.03em;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 999px;
        padding: 0.22rem 0.5rem 0.22rem 0.38rem;
        line-height: 1;
        box-shadow:
                0 0 2px var(--accent-1),
                0 0 4px var(--accent-2),
                0 0 7px var(--accent-3),
                0 0 12px rgba(111, 139, 255, 0.22);
        backdrop-filter: blur(5px);
        pointer-events: none;
        z-index: 5;
        transition: opacity 0.3s ease, box-shadow 0.4s ease;
    }
    #mes-formules .prestation-card:hover::after {
        opacity: 0.8;
        box-shadow:
                0 0 3px var(--accent-1),
                0 0 6px var(--accent-2),
                0 0 10px var(--accent-3),
                0 0 18px rgba(111, 139, 255, 0.28);
    }
}
@media (pointer: coarse) and (orientation: landscape) {
    #mes-formules .prestation-card::after {
        top: 0.4rem;
        right: 0.45rem;
        font-size: 0.5rem;
        padding: 0.18rem 0.42rem 0.18rem 0.33rem;
        box-shadow:
                0 0 2px var(--accent-1),
                0 0 4px var(--accent-2),
                0 0 7px var(--accent-3),
                0 0 10px rgba(111, 139, 255, 0.22);
    }
}
@media (max-width: 600px) {
    :root {
        --card-gap-m: clamp(1.25rem, 4vw, 1.5rem); --svg-w: 210px;
        --x-gap: clamp(10px, calc(var(--svg-w) * 7 / 106), 22px);
    }

    .wrap{
        width: 96vw;
        grid-template-columns: var(--svg-w) minmax(0, 1fr);
        align-items: center;
    }

    .flow-right{
        height: var(--svg-h);
        padding-bottom: calc(var(--svg-h) * 9 / 217);
        display: grid;
        grid-template-rows: repeat(5, 1fr);
        max-width: 220px;
    }

    .step-text{
        display: block;
        align-self: center;
        font-size: 11px;
        line-height: 1.35;
        margin: 0;
    }

    .step-text strong{
        display: block;
        margin: 0 0 2px 0;
        font-size: 12px;
        line-height: 1.1;
    }

    .step-text br{
        display: none;
    }
    #accueil, #mes-prestations, #mes-formules, #contact, #processus {scroll-margin-top: var(--header-height);}
    #contact,
    #processus {
        scroll-margin-top: 0;
        padding-top: clamp(44px, 7.5vh, 88px);
    }
    .section-title-prestations {top: 0 !important;}
    .hero-buttons { display: none !important; }
    .page-template-page-mes-services #accueil{ height:auto; display:block; min-height: calc(100svh - var(--header-height));}
    .hero-section {
        min-height: calc(100svh - var(--header-height));
        height:auto; display:flex; flex-direction:column;
        align-items:center; justify-content:center; text-align:center; gap:2rem;
    }
    .hero-illustration { order:1; width:min(75vw,260px); margin:0 auto;}
    .hero-content { order:2; display:flex; flex-direction:column; align-items:center; width:90%; margin:0 auto;gap:2rem !important; }
    .hero-content h2 { font-size:clamp(36px,10vw,60px); line-height:1.1; }
    .hero-content p  { font-size:clamp(18px,5vw,23px); line-height:1.5; }
    .hero-buttons { display:flex; flex-direction:column; justify-content:center; align-items:center; gap:10px; width:100%; }
    .hero-section .btn { width:85%; max-width:320px; justify-content:center; }
    .section-title-formules,
    .section-title-prestations { display:block; }
    .under-section,
    .front-doors { position:relative; inset:auto; display:block; width:100%; z-index:auto; }
    .prestations-section, #mes-prestations, .door-section, #mes-formules, .under-content {
        width:100%;
        max-width:380px;
        margin:0 auto;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:var(--card-gap-m);
    }
    .section-title-formules,
    .section-title-prestations {
        width:100%;
        font-size:clamp(1.6rem,7vw,2.2rem) !important;
        text-align:center;
        position: relative;
        padding-top: 1rem;
        opacity: 0;
        transform: translateX(-100px);
    }
    .prestations-grid {
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:var(--card-gap-m);
        width:100%;
    }
    .prestation-card {
        width:100%;
        max-width:280px;
        margin:0 auto;
        box-sizing:border-box;
    }
    .front-doors.prestations .door-half {
        position:relative;
        top:auto; right:auto; bottom:auto; left:auto;
        width:100%;
        height:auto;
        transform:none;
        transition:none;
        overflow:visible;
        display:block;
    }
    .front-doors.prestations .door-content { padding:0 !important; margin:0; }
    .front-doors.prestations .door-section { width:100%; max-width:280px; margin:0 auto; gap:var(--card-gap-m); }
    .front-doors.prestations .prestations-grid { gap:var(--card-gap-m); }
    .front-doors.prestations .prestation-card { width:100%; max-width:380px; margin:0 auto; }
    .front-doors.prestations .door-half + .door-half { margin-top:var(--card-gap-m); }
    .is-open .door-left,
    .is-open .door-right { transform:none; }
    .formule-modal{
        align-items:flex-start;
        padding-top:calc(var(--header-height) + 8px);
        padding-bottom:16px;
    }
    .formule-dialog{
        max-width:94vw;
        width:100%;
        margin:0 auto;
        padding:18px 16px;
        max-height:calc(100vh - var(--header-height) - 32px);
    }
    .formule-body{
        font-size:.9rem;
        line-height:1.55;
    }
    .formule-body h4{
        font-size:1.05rem;
    }
    .contact-form {
        grid-template-columns: 1fr;
    }
    .contact-form > .field,
    .contact-form > .actions {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }
    .prestations-section {padding-bottom: 2svh}
}
@media (max-width: 768px) and (orientation: portrait) {
    .section-title-prestations {top:3svh;}

}
@media (min-width: 769px) and (max-width: 820px) and (orientation: portrait) {
    .section-title-prestations {top:5svh;}
}
@media (min-width: 821px) and (max-width: 1024px) and (orientation: portrait) {
    .page-template-page-mes-services.prestations-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: clamp(0.8rem, 2vw, 1.6rem);
    }

    .page-template-page-mes-services.prestation-card {
        font-size: clamp(0.8rem, 0.5vw + 0.5rem, 1rem);
        line-height: 1.4;
    }

    .page-template-page-mes-services .prestation-card h3 {
        font-size: clamp(1rem, 0.7vw + 0.6rem, 1.3rem);
    }

    .page-template-page-mes-services.prestation-card p {
        font-size: clamp(0.8rem, 0.4vw + 0.5rem, 0.95rem);
    }
    .section-title-prestations {top:8svh;}
}
@media (min-width: 1080px) and (orientation: portrait) {
    .section-title-prestations {
        top: 13rem !important;
    }
}
@media (min-width: 1440px) and (orientation: portrait) {
    .section-title-prestations {
        top: 22rem !important;
    }
}
@media (min-width: 2160px) and (orientation: portrait) {
    .section-title-prestations {
        top: 30rem !important;
    }
    .page-template-page-mes-services .hero-section,
    .page-template-page-mes-services .prestations-section {
        width: min(2000px, 94%);
        margin: 0 auto;
    }

    .page-template-page-mes-services .hero-content h2 {
        font-size: clamp(88px, 4.8vw, 136px);
        line-height: 1.08;
    }

    .page-template-page-mes-services .hero-content p {
        font-size: clamp(36px, 2.4vw, 48px);
        line-height: 1.7;
    }

    .page-template-page-mes-services .hero-section .btn {
        --btn-h: 86px;
        font-size: 1.6rem;
        padding: 0 48px;
        border-radius: 16px;
    }

    .page-template-page-mes-services .hero-buttons { gap: 2rem; }

    .page-template-page-mes-services .hero-illustration {
        width: min(30vw, 680px);
        margin-left: 4vw;
    }

    .page-template-page-mes-services .section-title-prestations {
        font-size: clamp(3.2rem, 2.5vw, 4rem);
        letter-spacing: 0.01em;
        top: 7rem;
    }

    .page-template-page-mes-services .prestations-grid {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 3rem;
    }

    .page-template-page-mes-services .prestation-card {
        flex: 1 1 420px;
        min-width: 420px;
        max-width: none;
        padding: 56px 48px;
        border-radius: 18px;
        height: 600px;
        overflow: visible !important;
        font-size: 1.25rem !important;
        line-height: 1.7;
    }

    .page-template-page-mes-services .prestation-icon {
        width: 140px;
        height: 140px;
        margin-bottom: 28px;
    }

    .page-template-page-mes-services .prestation-card .prestation-title {
        font-size: clamp(2.2rem, 1.5vw, 2.8rem) !important;
        line-height: 1.25;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .page-template-page-mes-services .prestation-card .prestation-text {
        font-size: clamp(1.4rem, 1vw, 1.8rem) !important;
        line-height: 1.75;
        font-weight: 400;
    }

    .page-template-page-mes-services .prestation-card .btn {
        --btn-h: 70px;
        font-size: 1.3rem;
        padding: 0 36px;
        margin-top: 1.4rem;
    }

    .under-section .prestations-section { width: min(2400px, 94%); }

    .under-section .prestations-section .prestations-grid {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 3rem;
    }

    .under-section .prestations-section .prestation-card {
        flex: 1 1 420px;
        min-width: 420px;
        max-width: none;
        padding: 56px 48px;
        height: 600px;
        overflow: visible !important;
        font-size: 1.25rem !important;
    }

    .front-doors.prestations .door-section { max-width: none; }

    .front-doors.prestations .door-section .prestations-grid {
        justify-content: space-between;
        gap: 3rem;
    }

    .front-doors.prestations .door-section .prestation-card {
        flex: 1 1 44%;
        min-width: 420px;
        max-width: none;
        padding: 56px 48px;
        height: 580px;
        overflow: visible !important;
        font-size: 1.25rem !important;
    }

    .page-template-page-mes-services .contact-section {
        padding: 6rem 0;
        min-height: 92vh;
    }

    .page-template-page-mes-services .contact-wrap {
        width: min(1100px, 80%) !important;
        margin: 0 auto;
    }

    .page-template-page-mes-services .contact-header {
        margin-bottom: 3.5rem;
        text-align: center;
    }

    .page-template-page-mes-services .contact-title {
        font-size: clamp(70px, 3vw, 110px);
        line-height: 1.05;
    }

    .page-template-page-mes-services .contact-subtitle {
        font-size: clamp(26px, 1.4vw, 34px);
        line-height: 1.6;
        max-width: 46rem;
        margin-inline: auto;
    }

    .page-template-page-mes-services .contact-form {
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 26px;
        padding: 48px 50px;
        border-radius: 20px;
        font-size: 1.05rem;
    }

    .page-template-page-mes-services .contact-form input,
    .page-template-page-mes-services .contact-form textarea {
        font-size: 1.05rem;
        padding: 16px 18px;
    }

    .page-template-page-mes-services .contact-form textarea {
        min-height: 230px;
    }

    .page-template-page-mes-services .actions .btn {
        --btn-h: 64px;
        font-size: 1.15rem;
        padding: 0 40px;
        border-radius: 14px;
    }

}
@media (min-width: 601px) and (max-width: 1023px) and (orientation: landscape) {
    .page-template-page-mes-services .prestation-card {
        padding: clamp(16px, 2vw, 24px);
        max-width: 260px;
        min-height: 180px;
    }
    .hero-section {
        min-height: calc(100svh - var(--header-height));
        justify-content: space-between;
    }
    .section-title-prestations {top: 0 !important;}

    .page-template-page-mes-services #accueil {
        height: auto;
        min-height: auto;
        display: block;
    }

    .page-template-page-mes-services .hero-section,
    .page-template-page-mes-services .prestations-section {
        flex: none;
    }

    .page-template-page-mes-services.hero-section {
        height: calc(100svh - var(--header-height));
        min-height: calc(100svh - var(--header-height));
    }

    .page-template-page-mes-services .prestations-section {
        height: 100svh;
        min-height: 100svh;
    }

    .page-template-page-mes-services .prestation-card {
        font-size: clamp(0.75rem, 0.4vw + 0.45rem, 0.9rem);
        line-height: 1.35;
    }

    .page-template-page-mes-services.prestation-card h3 {
        font-size: clamp(0.95rem, 0.5vw + 0.6rem, 1.2rem);
    }

    .page-template-page-mes-services.prestation-card p {
        font-size: clamp(0.75rem, 0.4vw + 0.5rem, 0.9rem);
    }

    .page-template-page-mes-services .hero-content h2 {
        font-size: clamp(30px, 4.8vw, 50px);
    }

    .page-template-page-mes-services .hero-content p {
        font-size: clamp(16px, 2.8vw, 22px);
    }

    .page-template-page-mes-services .hero-illustration {
        max-width: 300px;
    }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
    .page-template-page-mes-services #accueil {
        height: auto;
        display: block;
    }

    .page-template-page-mes-services .prestations-section {
        margin: 0 auto;
        min-height: 560px;
        position: relative;
    }

    .page-template-page-mes-services .section-title-prestations {
        position: absolute;
        top: 0;
        left: 0;
        text-align: left;
        padding-top: 4svh;
    }
    .hero-section {height: calc(100vh - var(--header-height));}
    .hero-content {gap: 2rem !important;}
}
@media (min-width: 1281px) and (max-width: 1919px) and (orientation: landscape) {
    .section-title-prestations {top: 0 !important;}

    .page-template-page-mes-services.prestation-card {
        font-size: clamp(0.85rem, 0.5vw + 0.5rem, 1rem);
        line-height: 1.4;
    }

    .page-template-page-mes-services.prestation-card h3 {
        font-size: clamp(1.05rem, 0.6vw + 0.7rem, 1.4rem);
    }

    .page-template-page-mes-services .prestation-card p {
        font-size: clamp(0.85rem, 0.4vw + 0.5rem, 0.95rem);
    }
    .page-template-page-mes-services.prestations-grid { align-items: stretch; }
    .page-template-page-mes-services .prestation-card {
        max-height: none !important;
        overflow: hidden;
    }
}
@media (min-width: 2560px) and (orientation: landscape) {
    .page-template-page-mes-services .hero-section,
    .page-template-page-mes-services .prestations-section {
        width: min(1600px, 94%);
        margin: 0 auto;
    }

    .page-template-page-mes-services .hero-content h2 {
        font-size: clamp(72px, 4.2vw, 110px);
        line-height: 1.1;
    }

    .page-template-page-mes-services .hero-content p {
        font-size: clamp(30px, 2vw, 40px);
        line-height: 1.7;
    }

    .page-template-page-mes-services .hero-section .btn {
        --btn-h: 70px;
        font-size: 1.4rem;
        padding: 0 40px;
        border-radius: 14px;
    }

    .page-template-page-mes-services .hero-buttons { gap: 1.6rem; }

    .page-template-page-mes-services .hero-illustration {
        width: min(34vw, 560px);
        margin-left: 3vw;
    }

    .page-template-page-mes-services .section-title-prestations {
        font-size: clamp(2.8rem, 2vw, 3.4rem);
        letter-spacing: 0.01em;
    }

    .page-template-page-mes-services .prestations-grid {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 2.4rem;
    }

    .page-template-page-mes-services .prestation-card {
        flex: 1 1 360px;
        min-width: 360px;
        max-width: none;
        padding: 48px 40px;
        border-radius: 16px;
        height: 520px;
        overflow: visible !important;
        font-size: 1.15rem !important;
        line-height: 1.7;
    }

    .page-template-page-mes-services .prestation-icon {
        width: 120px;
        height: 120px;
        margin-bottom: 24px;
    }

    .page-template-page-mes-services .prestation-card .prestation-title {
        font-size: clamp(2rem, 1.4vw, 2.4rem) !important;
        line-height: 1.25;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .page-template-page-mes-services .prestation-card .prestation-text {
        font-size: clamp(1.2rem, 0.9vw, 1.6rem) !important;
        line-height: 1.75;
        font-weight: 400;
    }

    .page-template-page-mes-services .prestation-card .btn {
        --btn-h: 60px;
        font-size: 1.2rem;
        padding: 0 30px;
        margin-top: 1.2rem;
    }

    .under-section .prestations-section { width: min(2000px, 94%); }

    .under-section .prestations-section .prestations-grid {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 2.4rem;
    }

    .under-section .prestations-section .prestation-card {
        flex: 1 1 360px;
        min-width: 360px;
        max-width: none;
        padding: 48px 40px;
        height: 520px;
        overflow: visible !important;
        font-size: 1.15rem !important;
    }

    .front-doors.prestations .door-section { max-width: none; }

    .front-doors.prestations .door-section .prestations-grid {
        justify-content: space-between;
        gap: 2.4rem;
    }

    .front-doors.prestations .door-section .prestation-card {
        flex: 1 1 44%;
        min-width: 360px;
        max-width: none;
        padding: 48px 40px;
        height: 520px;
        overflow: visible !important;
        font-size: 1.15rem !important;
    }

    .page-template-page-mes-services .contact-section {
        padding: 6rem 0;
        min-height: 90vh;
    }

    .page-template-page-mes-services .contact-wrap {
        width: min(1100px, 82%) !important;
        margin: 0 auto;
    }

    .page-template-page-mes-services .contact-header {
        margin-bottom: 3.5rem;
        text-align: center;
    }

    .page-template-page-mes-services .contact-title {
        font-size: clamp(62px, 3.1vw, 100px);
        line-height: 1.05;
    }

    .page-template-page-mes-services .contact-subtitle {
        font-size: clamp(26px, 1.5vw, 34px);
        line-height: 1.6;
        max-width: 48rem;
        margin-inline: auto;
    }

    .page-template-page-mes-services .contact-form {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 24px;
        padding: 46px 48px;
        border-radius: 18px;
        font-size: 1.02rem;
    }

    .page-template-page-mes-services .contact-form input,
    .page-template-page-mes-services .contact-form textarea {
        font-size: 1.02rem;
        padding: 16px 18px;
    }

    .page-template-page-mes-services .contact-form textarea {
        min-height: 210px;
    }

    .page-template-page-mes-services .actions .btn {
        --btn-h: 62px;
        font-size: 1.1rem;
        padding: 0 38px;
        border-radius: 14px;
    }
    #processus{
        padding: 7rem 0;
        --svg-w: clamp(180px, 14vw, 420px);
        --svg-h: calc(var(--svg-w) * 217 / 106);
        --x-gap: calc(var(--svg-w) * 12 / 106);
    }

    #processus .processus-header{
        gap: clamp(1.8rem, 2.2vw, 3rem);
        margin-bottom: clamp(2.6rem, 3vw, 4rem);
    }

    #processus .processus-title{
        width: min(1200px, 94%);
        font-size: clamp(46px, 2.6vw, 78px);
        line-height: 1.12;
    }

    #processus .processus-subtitle{
        width: min(1100px, 94%);
        font-size: clamp(24px, 1.4vw, 34px);
        line-height: 1.7;
    }

    #processus .wrap{
        width: min(1400px, 94%);
        grid-template-columns: var(--svg-w) minmax(0, 1fr);
        column-gap: var(--x-gap);
    }

    #processus .step-text{
        grid-template-columns: clamp(240px, 30%, 360px) minmax(0, 1fr);
        column-gap: clamp(18px, 1.8vw, 34px);
        font-size: clamp(14px, 0.7vw, 18px);
        line-height: 1.55;
    }

    #processus .step-text strong{
        font-size: clamp(16px, 0.8vw, 20px);
        line-height: 1.15;
    }
}
@media (min-width: 3840px) and (orientation: landscape)  {
    .page-template-page-mes-services .hero-section,
    .page-template-page-mes-services .prestations-section {
        width: min(2000px, 94%);
        margin: 0 auto;
    }
    .page-template-page-mes-services .hero-content h2 {
        font-size: clamp(88px, 4.8vw, 136px);
        line-height: 1.08;
    }
    .page-template-page-mes-services .hero-content p {
        font-size: clamp(36px, 2.4vw, 48px);
        line-height: 1.7;
    }
    .page-template-page-mes-services .hero-section .btn {
        --btn-h: 86px;
        font-size: 1.6rem;
        padding: 0 48px;
        border-radius: 16px;
    }
    .page-template-page-mes-services .hero-buttons { gap: 2rem; }
    .page-template-page-mes-services .hero-illustration {
        width: min(30vw, 680px);
        margin-left: 4vw;
    }
    .page-template-page-mes-services .section-title-prestations {
        font-size: clamp(3.2rem, 2.5vw, 4rem);
        letter-spacing: 0.01em;
        top: 7rem;
    }
    .page-template-page-mes-services .prestations-grid {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 3rem;
    }
    .page-template-page-mes-services .prestation-card {
        flex: 1 1 420px;
        min-width: 420px;
        max-width: none;
        padding: 56px 48px;
        border-radius: 18px;
        height: 600px;
        overflow: visible !important;
        font-size: 1.25rem !important;
        line-height: 1.7;
    }
    .page-template-page-mes-services .prestation-icon {
        width: 140px;
        height: 140px;
        margin-bottom: 28px;
    }
    .page-template-page-mes-services .prestation-card .prestation-title {
        font-size: clamp(2.2rem, 1.5vw, 2.8rem) !important;
        line-height: 1.25;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    .page-template-page-mes-services .prestation-card .prestation-text {
        font-size: clamp(1.4rem, 1vw, 1.8rem) !important;
        line-height: 1.75;
        font-weight: 400;
    }
    .page-template-page-mes-services .prestation-card .btn {
        --btn-h: 70px;
        font-size: 1.3rem;
        padding: 0 36px;
        margin-top: 1.4rem;
    }
    .under-section .prestations-section { width: min(2400px, 94%); }
    .under-section .prestations-section .prestations-grid {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 3rem;
    }
    .under-section .prestations-section .prestation-card {
        flex: 1 1 420px;
        min-width: 420px;
        max-width: none;
        padding: 56px 48px;
        height: 600px;
        overflow: visible !important;
        font-size: 1.25rem !important;
    }
    .front-doors.prestations .door-section { max-width: none; }
    .front-doors.prestations .door-section .prestations-grid {
        justify-content: space-between;
        gap: 3rem;
    }
    .front-doors.prestations .door-section .prestation-card {
        flex: 1 1 44%;
        min-width: 420px;
        max-width: none;
        padding: 56px 48px;
        height: 580px;
        overflow: visible !important;
        font-size: 1.25rem !important;
    }
    .page-template-page-mes-services .contact-section {
        padding: 6rem 0;
        min-height: 92vh;
    }
    .page-template-page-mes-services .contact-wrap {
        width: min(1100px, 80%) !important;
        margin: 0 auto;
    }
    .page-template-page-mes-services .contact-header {
        margin-bottom: 3.5rem;
        text-align: center;
    }
    .page-template-page-mes-services .contact-title {
        font-size: clamp(70px, 3vw, 110px);
        line-height: 1.05;
    }
    .page-template-page-mes-services .contact-subtitle {
        font-size: clamp(26px, 1.4vw, 34px);
        line-height: 1.6;
        max-width: 46rem;
        margin-inline: auto;
    }
    .page-template-page-mes-services .contact-form {
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 26px;
        padding: 48px 50px;
        border-radius: 20px;
        font-size: 1.05rem;
    }
    .page-template-page-mes-services .contact-form input,
    .page-template-page-mes-services .contact-form textarea {
        font-size: 1.05rem;
        padding: 16px 18px;
    }
    .page-template-page-mes-services .contact-form textarea {
        min-height: 230px;
    }
    .page-template-page-mes-services .actions .btn {
        --btn-h: 64px;
        font-size: 1.15rem;
        padding: 0 40px;
        border-radius: 14px;
    }
    #processus{
        padding: 8rem 0;
        --svg-w: clamp(240px, 12vw, 520px);
        --svg-h: calc(var(--svg-w) * 217 / 106);
        --x-gap: calc(var(--svg-w) * 12 / 106);
    }

    #processus .processus-header{
        gap: clamp(2.2rem, 2vw, 3.4rem);
        margin-bottom: clamp(3rem, 2.6vw, 4.6rem);
    }

    #processus .processus-title{
        width: min(1500px, 94%);
        font-size: clamp(60px, 2.4vw, 100px);
        line-height: 1.1;
    }

    #processus .processus-subtitle{
        width: min(1400px, 94%);
        font-size: clamp(30px, 1.2vw, 40px);
        line-height: 1.75;
    }

    #processus .wrap{
        width: min(1700px, 94%);
        grid-template-columns: var(--svg-w) minmax(0, 1fr);
        column-gap: var(--x-gap);
    }

    #processus .step-text{
        grid-template-columns: clamp(280px, 28%, 420px) minmax(0, 1fr);
        column-gap: clamp(22px, 1.6vw, 40px);
        font-size: clamp(16px, 0.6vw, 20px);
        line-height: 1.6;
    }

    #processus .step-text strong{
        font-size: clamp(18px, 0.7vw, 24px);
        line-height: 1.12;
    }
}

