:root{
    --green:#36513A;
    --green-dark:#263D2B;
    --sage:#6B7F67;
    --terracotta:#B05128;
    --terracotta-light:#D58B69;
    --ivory:#F5EFEB;
    --cream:#FBF8F5;
    --white:#FFFFFF;
    --ink:#24352B;
    --text:#263B31;
    --muted:#6E7771;
    --line:#D9D8CF;
    --max-width:1180px;
    --radius:16px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    color:var(--text);
    background:var(--white);
    font-family:"Roboto",Arial,sans-serif;
    font-size:16px;
    line-height:1.6;
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
}

a{
    color:inherit;
    text-decoration:none;
}

button{
    font:inherit;
}

section{
    scroll-margin-top:82px;
}


/* =========================================================
   STRUCTURE
   ========================================================= */

.container{
    width:min(var(--max-width),calc(100% - 64px));
    margin:0 auto;
}

.section{
    padding:68px 0;
}

.section-tinted{
    background:var(--ivory);
}

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


/* =========================================================
   TYPOGRAPHIE
   ========================================================= */

h1,
h2,
h3{
    margin-top:0;
    color:var(--green);
    font-family:"Poppins",sans-serif;
    font-weight:300;
    line-height:1.15;
}

h1{
    margin-bottom:18px;
    font-size:clamp(36px,3.2vw,44px);
    line-height:1.08;
    letter-spacing:-1.4px;
}

h2{
    margin-bottom:18px;
    font-size:clamp(30px,2.8vw,38px);
    line-height:1.15;
    letter-spacing:-0.7px;
}

h1 span,
h2 span{
    color:var(--terracotta);
}

h3{
    margin-bottom:8px;
    font-size:19px;
    font-weight:500;
}

p{
    margin-top:0;
}

.eyebrow{
    margin-bottom:12px;
    color:var(--sage);
    font-family:"Poppins",sans-serif;
    font-size:12px;
    font-weight:500;
    letter-spacing:2.5px;
    text-transform:uppercase;
}

.section-heading{
    max-width:700px;
    margin:0 auto 38px;
    text-align:center;
}

.section-heading h2{
    margin-bottom:0;
}

.section-intro{
    margin-bottom:35px;
}

.centered{
    text-align:center;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.97);
    border-bottom:1px solid rgba(54,81,58,.10);
    backdrop-filter:blur(12px);
}

.header-inner{
    min-height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.logo-link{
    display:inline-flex;
    align-items:center;
    flex-shrink:0;
}

.site-logo,
.logo{
    display:block;
    width:215px;
    height:auto;
    max-height:64px;
    object-fit:contain;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:27px;
    color:var(--green);
    font-family:"Poppins",sans-serif;
    font-size:13px;
}

.main-nav a{
    position:relative;
    transition:color .2s ease;
}

.main-nav a:hover{
    color:var(--terracotta);
}

.nav-cta{
    padding:10px 18px;
    border:1px solid var(--terracotta);
    border-radius:999px;
    background:var(--terracotta);
    color:var(--white)!important;
    transition:background .2s ease,transform .2s ease;
}

.nav-cta:hover{
    background:#97431F;
    transform:translateY(-1px);
}

.menu-toggle{
    display:none;
    width:42px;
    height:42px;
    padding:0;
    border:0;
    background:transparent;
    color:var(--green);
    cursor:pointer;
}


/* =========================================================
   BOUTONS
   ========================================================= */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:46px;
    padding:11px 21px;
    border-radius:999px;
    font-family:"Poppins",sans-serif;
    font-size:13px;
    font-weight:500;
    cursor:pointer;
    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn-primary{
    background:var(--terracotta);
    color:var(--white);
    box-shadow:0 7px 18px rgba(176,81,40,.15);
}

.btn-primary:hover{
    background:#97431F;
    box-shadow:0 10px 24px rgba(176,81,40,.20);
}

.btn-light{
    background:var(--white);
    color:var(--green);
}

.btn-light:hover{
    background:var(--ivory);
}


/* =========================================================
   HERO
   ========================================================= */

.hero{
    position:relative;
    overflow:hidden;
    background:var(--ivory);
    min-height:calc(100vh - 82px);
    padding:42px 0 34px;
}

.hero:before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    top:-215px;
    right:-145px;
    border-radius:50%;
    background:rgba(107,127,103,.10);
}

.hero-grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:1.04fr .96fr;
    align-items:center;
    gap:45px;
    min-height:calc(100vh - 160px);
}

.hero-content{
    max-width:590px;
}

.hero h1{
    color:var(--green);
}

.hero-text{
    max-width:565px;
    margin-bottom:21px;
    color:var(--text);
    font-size:15px;
    line-height:1.58;
}

.hero-text strong{
    color:var(--green);
    font-weight:400;
}

.hero-actions{
    margin-top:4px;
}

.hero-note{
    width:fit-content;
    margin:9px auto 0;
    color:var(--muted);
    font-size:13px;
}

.hero-benefits{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:27px;
    padding-top:17px;
    border-top:1px solid rgba(54,81,58,.20);
}

.hero-benefits div{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:7px;
    text-align:center;
}

.hero-benefits span{
    color:var(--green);
    font-family:"Poppins",sans-serif;
    font-size:13px;
}

.hero-benefits .benefit-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    margin-bottom:0;
    color:var(--terracotta);
    font-size:25px;
    line-height:1;
}

.hero-benefits .benefit-icon svg{
    width:30px;
    height:30px;
    display:block;
    fill:none;
    stroke:var(--terracotta);
    stroke-width:1.5;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.hero-benefits svg{
    width:30px;
    height:30px;
    display:block;
    fill:none!important;
    stroke:var(--terracotta)!important;
    stroke-width:1.6!important;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.hero-benefits svg *{
    fill:none!important;
    stroke:var(--terracotta)!important;
    stroke-width:1.6!important;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.hero-visual{
    position:relative;
    min-height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.hero-shape{
    position:absolute;
    z-index:1;
    width:84%;
    height:88%;
    right:-4%;
    top:6%;
    background:var(--white);
    border-radius:50% 45% 45% 50%;
    transform:rotate(-4deg);
}

.hero-photo{
    position:relative;
    z-index:2;
    width:70%;
    max-width:395px;
    height:420px;
    object-fit:cover;
    object-position:center center;
    border-radius:165px 165px 21px 21px;
    box-shadow:0 18px 40px rgba(38,61,43,.13);
}

.hero-script{
    position:absolute;
    z-index:4;
    right:1%;
    top:42px;
    width:155px;
    color:var(--green);
    font-family:"Howell","Segoe Script",cursive;
    font-size:16px;
    font-weight:600;
    line-height:1.25;
    transform:rotate(-6deg);
}


/* =========================================================
   PROBLEME
   ========================================================= */

.problem{
    background:var(--white);
    padding-top:62px;
    padding-bottom:62px;
}

.problem .section-intro{
    max-width:850px;
    margin-left:auto;
    margin-right:auto;
}

.problem h2{
    margin-bottom:0;
    font-size:clamp(28px,2.55vw,36px);
    line-height:1.12;
}

.pain-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
    margin-top:4px;
    border:0;
}

.pain-card{
    min-height:150px;
    padding:20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.pain-card+.pain-card{
    border-left:0;
}

.round-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:52px;
    height:52px;
    margin-bottom:15px;
    border-radius:50%;
    background:var(--ivory);
    color:var(--terracotta);
    font-family:"Poppins",sans-serif;
    font-size:18px;
}

.round-icon svg{
    width:28px;
    height:28px;
    display:block;
    fill:none!important;
    stroke:var(--terracotta)!important;
    stroke-width:1.6!important;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.round-icon svg *{
    fill:none!important;
    stroke:var(--terracotta)!important;
    stroke-width:1.6!important;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.pain-card p{
    margin:0;
    color:var(--green);
    font-family:"Poppins",sans-serif;
    font-size:14px;
    line-height:1.42;
}

.script-callout{
    margin:28px auto 0;
    color:var(--terracotta);
    font-family:"Howell","Segoe Script",cursive;
    font-size:20px;
    line-height:1.3;
    text-align:center;
    transform:rotate(-2deg);
}


/* =========================================================
   SERVICES
   ========================================================= */

.services{
    background:var(--ivory);
    padding-top:50px;
    padding-bottom:50px;
}

.services .section-heading{
    margin-bottom:27px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:15px;
}

.service-card{
    grid-column:span 2;
    min-height:165px;
    padding:19px 21px;
    background:var(--white);
    border:1px solid rgba(54,81,58,.10);
    border-radius:var(--radius);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.service-card:nth-child(4){
    grid-column:2/span 2;
}

.service-card:nth-child(5){
    grid-column:4/span 2;
}

.service-card:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 28px rgba(54,81,58,.07);
}

.service-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    margin-bottom:17px;
    border-radius:50%;
    background:var(--ivory);
    color:var(--terracotta);
    font-size:16px;
}

.service-icon svg{
    width:24px;
    height:24px;
    display:block;
    fill:none!important;
    stroke:var(--terracotta)!important;
    stroke-width:1.5!important;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.service-icon svg *{
    fill:none!important;
    stroke:var(--terracotta)!important;
    stroke-width:1.5!important;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.service-card h3{
    margin-bottom:7px;
    color:var(--green);
    font-size:18px;
}

.service-card p{
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.5;
}


/* =========================================================
   APPROCHE
   ========================================================= */

.approach{
    background:var(--cream);
    padding-top:65px;
    padding-bottom:65px;
}

.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border:0;
}

.step{
    min-height:200px;
    padding:25px 22px;
    border:0;
}

.step+.step{
    border-left:0;
}

.step-number{
    display:flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    margin-bottom:25px;
    border-radius:50%;
    background:var(--terracotta);
    color:var(--white);
    font-family:"Poppins",sans-serif;
    font-size:11px;
    font-weight:500;
}

.step h3{
    color:var(--green);
}

.step p{
    margin:0;
    color:var(--muted);
    font-size:13px;
}

.approach-bottom{
    text-align:center;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about{
    background:var(--cream);
}

.about-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:60px;
}

.about-text{
    max-width:620px;
}

.about-text>p:not(.eyebrow){
    color:var(--muted);
    font-size:15px;
}

.about-text>p:nth-of-type(2){
    margin-top:20px;
    color:var(--green);
    font-family:"Poppins",sans-serif;
    font-size:16px;
}

.text-link{
    display:inline-block;
    margin-top:14px;
    color:var(--terracotta);
    font-family:"Poppins",sans-serif;
    font-size:13px;
    font-weight:500;
}

.about-visual{
    position:relative;
    min-height:320px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--white);
    border-radius:50% 50% 20px 20px;
    overflow:hidden;
}

.about-visual:before{
    content:"";
    position:absolute;
    width:245px;
    height:245px;
    border:1px solid rgba(107,127,103,.35);
    border-radius:50%;
}

.about-visual:after{
    content:"";
    position:absolute;
    width:13px;
    height:13px;
    top:55px;
    right:60px;
    border-radius:50%;
    background:var(--terracotta);
}

.about-card{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
    padding:26px 38px;
    background:var(--cream);
    border:1px solid var(--line);
    border-radius:50%;
    box-shadow:0 13px 30px rgba(54,81,58,.06);
}

.about-card span{
    color:var(--green);
    font-family:"Poppins",sans-serif;
    font-size:15px;
    font-weight:300;
}

.credentials{
    grid-column:1/-1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    margin-top:4px;
    padding-top:28px;
    border-top:1px solid var(--line);
}

.credentials>.eyebrow{
    grid-column:1/-1;
    margin-bottom:0;
}

.credential{
    display:grid;
    grid-template-columns:44px 1fr;
    gap:14px;
}

.credential-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    border-radius:50%;
    background:var(--ivory);
    color:var(--terracotta);
    font-size:16px;
}

.credential h3{
    margin-bottom:6px;
    color:var(--green);
    font-size:15px;
}

.credential p{
    margin:0;
    color:var(--muted);
    font-size:12px;
    line-height:1.5;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.final-cta{
    background:var(--white);
    padding:68px 0 72px;
}

.final-cta-intro{
    margin-bottom:28px;
    color:var(--terracotta);
    font-family:"Howell","Segoe Script",cursive;
    font-size:22px;
    line-height:1.25;
    text-align:center;
}

.final-cta-card{
    position:relative;
    display:grid;
    grid-template-columns:1.35fr .70fr .45fr;
    gap:45px;
    align-items:center;
    overflow:hidden;
    padding:52px 55px;
    border-radius:24px;
    background:var(--ivory);
}

.final-cta-card:after{
    content:"";
    position:absolute;
    width:360px;
    height:470px;
    right:-110px;
    top:-70px;
    border-radius:52% 48% 48% 52%;
    background:rgba(107,127,103,.12);
    transform:rotate(-12deg);
}

.final-cta-content,
.final-cta-details{
    position:relative;
    z-index:2;
}

.final-cta-content .eyebrow{
    margin-bottom:14px;
    color:var(--sage);
}

.final-cta-content h2{
    margin-bottom:18px;
}

.final-cta-content>p:not(.eyebrow){
    max-width:650px;
    margin-bottom:22px;
    color:var(--muted);
    font-size:15px;
}

.final-cta-actions{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:14px;
}

.final-cta-note{
    margin:10px 0 0;
    color:var(--muted);
    font-size:12px;
}

.final-cta-email{
    display:inline-block;
    margin-top:17px;
    color:var(--green);
    font-family:"Poppins",sans-serif;
    font-size:13px;
    border-bottom:1px solid rgba(54,81,58,.25);
}

.final-cta-email:hover{
    color:var(--terracotta);
    border-color:var(--terracotta);
}

.final-cta-hand{
    position:relative;
    z-index:2;
    max-width:260px;
    margin:0 auto;
    color:var(--terracotta);
    font-family:"Howell","Segoe Script",cursive;
    font-size:21px;
    line-height:1.25;
    transform:rotate(-4deg);
}

.final-cta-hand:after{
    content:"";
    display:block;
    width:70px;
    height:2px;
    margin:14px 0 0 auto;
    background:var(--terracotta);
    transform:rotate(-6deg);
}

.final-cta-details{
    display:flex;
    flex-direction:column;
    gap:18px;
    padding-left:35px;
    border-left:1px solid rgba(54,81,58,.16);
}

.final-detail{
    display:grid;
    grid-template-columns:48px 1fr;
    gap:14px;
    align-items:center;
}

.final-detail-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(255,255,255,.70);
}

.final-detail-icon svg{
    width:25px;
    height:25px;
    display:block;
    fill:none;
    stroke:var(--terracotta);
    stroke-width:1.6;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.final-detail strong{
    display:block;
    color:var(--green);
    font-family:"Poppins",sans-serif;
    font-size:15px;
    font-weight:500;
}

.final-detail small{
    display:block;
    color:var(--muted);
    font-size:11px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer{
    padding:34px 0 20px;
    background:var(--white);
    color:var(--muted);
    border-top:1px solid var(--line);
}

.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:35px;
    padding-bottom:26px;
    border-bottom:1px solid var(--line);
}

.footer-brand{
    display:flex;
    flex-direction:column;
    gap:8px;
    flex-shrink:0;
}

.footer-logo{
    display:inline-flex;
    align-items:center;
}

.footer-logo img{
    display:block;
    width:180px;
    height:auto;
    max-height:58px;
}

.footer-tagline{
    max-width:260px;
    margin:0;
    color:var(--muted);
    font-size:12px;
    line-height:1.4;
}

.footer-nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;
    align-items:center;
    gap:24px;
    font-family:"Poppins",sans-serif;
    font-size:12px;
    color:var(--green);
}

.footer-nav a{
    transition:color .2s ease;
}

.footer-nav a:hover{
    color:var(--terracotta);
}

.footer-linkedin{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:28px;
    height:28px;
    border-radius:5px;
    background:var(--green);
    color:var(--white)!important;
    font-family:Arial,sans-serif;
    font-size:15px;
    font-weight:700;
}

.footer-linkedin:hover{
    background:var(--terracotta);
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding-top:16px;
    font-size:10px;
}

.footer-bottom p{
    margin:0;
}

.footer-bottom div{
    display:flex;
    gap:18px;
}

.footer-bottom a:hover{
    color:var(--terracotta);
}


/* =========================================================
   TABLETTE
   ========================================================= */

@media (max-width:1000px){

    .container{
        width:min(var(--max-width),calc(100% - 48px));
    }

    .main-nav{
        gap:18px;
        font-size:12px;
    }

    .hero{
        min-height:auto;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:40px;
        min-height:auto;
    }

    .hero-content{
        max-width:700px;
        margin:0 auto;
        text-align:center;
    }

    .hero-text{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-actions{
        text-align:center;
    }

    .hero-benefits{
        text-align:center;
    }

    .hero-visual{
        min-height:430px;
    }

    .hero-photo{
        width:58%;
        max-width:390px;
        height:430px;
    }

    .hero-script{
        right:12%;
    }

    .pain-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .pain-card:nth-child(3),
    .pain-card:nth-child(4){
        border-top:0;
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .service-card,
    .service-card:nth-child(4),
    .service-card:nth-child(5){
        grid-column:auto;
    }

    .steps{
        grid-template-columns:repeat(2,1fr);
    }

    .step:nth-child(3),
    .step:nth-child(4){
        border-top:0;
    }

    .step:nth-child(3){
        border-left:0;
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:42px;
    }

    .about-text{
        max-width:700px;
        margin:0 auto;
    }

    .about-visual{
        max-width:550px;
        width:100%;
        margin:0 auto;
    }

    .credentials{
        grid-column:auto;
    }

    .final-cta-card{
        grid-template-columns:1fr;
        gap:32px;
        padding:42px;
    }

    .final-cta-details{
        padding-left:0;
        padding-top:28px;
        border-left:0;
        border-top:1px solid rgba(54,81,58,.16);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:700px){

    body{
        font-size:16px;
    }

    .container{
        width:calc(100% - 36px);
    }

    .section{
        padding:55px 0;
    }

    h1{
        font-size:37px;
        letter-spacing:-1px;
    }

    h2{
        font-size:29px;
    }

    .eyebrow{
        font-size:10px;
        letter-spacing:2px;
    }


    /* Header */

    .header-inner{
        min-height:72px;
    }

    .site-logo,
    .logo{
        width:155px;
        max-height:52px;
    }

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .menu-toggle span{
        display:block;
        width:23px;
        height:2px;
        margin:3px 0;
        background:var(--green);
    }

    .main-nav{
        position:absolute;
        top:72px;
        left:0;
        right:0;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        padding:15px 18px 22px;
        background:var(--white);
        border-bottom:1px solid var(--line);
        box-shadow:0 15px 30px rgba(38,61,43,.08);
    }

    .main-nav.is-open{
        display:flex;
    }

    .main-nav a{
        padding:12px 5px;
    }

    .nav-cta{
        margin-top:8px;
        text-align:center;
    }


    /* Hero */

    .hero{
        min-height:auto;
        padding:48px 0 55px;
    }

    .hero:before{
        width:380px;
        height:380px;
        right:-190px;
        top:-170px;
    }

    .hero-text{
        font-size:15px;
    }

    .hero-actions .btn{
        width:100%;
    }

    .hero-note{
        width:auto;
        text-align:center;
    }

    .hero-benefits{
        grid-template-columns:1fr;
        gap:14px;
        margin-top:28px;
    }

    .hero-benefits div{
        align-items:center;
    }


    /*
       IMPORTANT :
       Sur mobile, la photo et le texte manuscrit
       sont empilés pour éviter tout chevauchement.
    */

    .hero-visual{
        min-height:auto;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:flex-start;
        overflow:visible;
        padding-bottom:8px;
    }

    .hero-shape{
        width:100%;
        height:400px;
        right:-15%;
        top:0;
    }

    .hero-photo{
        position:relative;
        z-index:2;
        width:72%;
        max-width:330px;
        height:400px;
        border-radius:140px 140px 18px 18px;
    }

    /*
       Le texte manuscrit n'est plus placé à droite
       de la photo sur iPhone.
    */

    .hero-script{
        position:relative;
        z-index:4;
        top:auto;
        right:auto;
        width:auto;
        max-width:270px;
        margin:18px 0 0 auto;
        padding:0 8px;
        align-self:flex-end;
        color:var(--green);
        font-size:15px;
        line-height:1.25;
        text-align:left;
        transform:rotate(-3deg);
    }


    /* Problème */

    .pain-grid{
        grid-template-columns:1fr;
    }

    .pain-card,
    .pain-card:nth-child(3),
    .pain-card:nth-child(4){
        min-height:140px;
        padding:24px 20px;
        border-left:0;
        border-top:0;
    }

    .pain-card:first-child{
        border-top:0;
    }


    /* Services */

    .service-grid{
        grid-template-columns:1fr;
    }

    .service-card,
    .service-card:nth-child(4),
    .service-card:nth-child(5){
        grid-column:auto;
        min-height:auto;
    }


    /* Approche */

    .steps{
        grid-template-columns:1fr;
    }

    .step,
    .step+.step,
    .step:nth-child(3),
    .step:nth-child(4){
        min-height:auto;
        padding:25px 5px;
        border:0;
    }


    /* À propos */

    .about-visual{
        min-height:300px;
    }

    .about-visual:before{
        width:220px;
        height:220px;
    }

    .about-card{
        padding:23px 32px;
    }

    .about-card span{
        font-size:15px;
    }

    .credentials{
        grid-template-columns:1fr;
        gap:20px;
    }

    .credentials>.eyebrow{
        grid-column:auto;
    }


    /* CTA final */

    .final-cta{
        padding:55px 0;
    }

    .final-cta-card{
        grid-template-columns:1fr;
        gap:30px;
        padding:34px 25px;
        border-radius:20px;
    }

    .final-cta-card:after{
        width:260px;
        height:360px;
        right:-120px;
        top:120px;
    }

    .final-cta-content h2 br{
        display:none;
    }

    .final-cta-actions .btn{
        width:100%;
    }

    .final-cta-details{
        padding-left:0;
        padding-top:25px;
        border-left:0;
        border-top:1px solid rgba(54,81,58,.16);
    }


    /* Footer */

    .footer-top{
        flex-direction:column;
        align-items:flex-start;
        gap:24px;
    }

    .footer-nav{
        justify-content:flex-start;
        gap:12px 18px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-bottom div{
        flex-direction:column;
        gap:6px;
    }
}


/* =========================================================
   PETITS ÉCRANS
   ========================================================= */

@media (max-width:420px){

    .container{
        width:calc(100% - 28px);
    }

    h1{
        font-size:33px;
    }

    h2{
        font-size:27px;
    }

    .btn{
        width:100%;
        text-align:center;
    }

    .hero-photo{
        width:78%;
        height:380px;
    }

    .hero-shape{
        height:380px;
    }

    /*
       Sur les très petits écrans,
       le texte reste sous la photo
       et ne peut plus toucher les cheveux.
    */

    .hero-script{
        width:230px;
        max-width:230px;
        margin-top:17px;
        margin-right:0;
        align-self:flex-end;
        font-size:14px;
    }

    .about-card{
        padding:22px 27px;
    }
}


/* =========================================================
   IMAGE APPROCHE
   ========================================================= */

.about-visual .approche-image{
    position:relative;
    z-index:2;
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}