/* ============================================================
   LPROJECT WEB — FIN DE PAGE
============================================================ */

.lp-closing {
    position: relative;

    padding: 125px 0 70px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255,106,0,.06),
            transparent 28%
        ),
        #0a0a0c;

    color: #fff;
}

.lp-closing-inner {
    width: min(1320px, calc(100% - 70px));
    margin: 0 auto;
}


/* ============================================================
   ACCOMPAGNEMENT
============================================================ */

.lp-support {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 100px;

    align-items: center;

    padding-bottom: 110px;
}


/* Texte gauche */

.lp-support-copy h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(46px, 4.7vw, 72px);
    line-height: .98;

    letter-spacing: -.045em;
    font-weight: 650;
}

.lp-support-copy h2 span {
    color: #ff6a00;
}

.lp-support-copy > p {
    max-width: 500px;

    margin: 26px 0 0;

    color: #85858b;

    font-size: 15px;
    line-height: 1.75;
}


/* Points */

.lp-support-points {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    border-top:
        1px solid rgba(255,255,255,.09);

    border-left:
        1px solid rgba(255,255,255,.09);
}

.lp-support-point {
    min-height: 155px;

    padding: 27px;

    display: flex;
    flex-direction: column;

    border-right:
        1px solid rgba(255,255,255,.09);

    border-bottom:
        1px solid rgba(255,255,255,.09);

    background:
        rgba(255,255,255,.012);

    transition:
        background .35s ease,
        border-color .35s ease,
        transform .35s ease;
}

.lp-support-point > span {
    margin-bottom: auto;

    color: #4d4d53;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .18em;
}

.lp-support-point strong {
    color: #f2f2f4;

    font-size: 18px;
    font-weight: 600;
}

.lp-support-point small {
    margin-top: 5px;

    color: #6f6f75;

    font-size: 11px;
    line-height: 1.45;
}

.lp-support-point:hover {
    transform: translateY(-3px);

    background:
        rgba(255,106,0,.035);

    border-color:
        rgba(255,106,0,.18);
}


/* ============================================================
   CONTACT FINAL
============================================================ */

.lp-final-contact {
    position: relative;

    min-height: 320px;

    padding: 55px 58px;

    display: grid;

    grid-template-columns:
        1fr auto;

    gap: 80px;

    align-items: center;

    overflow: hidden;

    border:
        1px solid rgba(255,106,0,.28);

    border-radius: 24px;

    background:
        linear-gradient(
            115deg,
            rgba(255,106,0,.065),
            rgba(255,255,255,.012) 55%,
            rgba(255,106,0,.025)
        );
}


/* Halo */

.lp-final-contact-glow {
    position: absolute;

    width: 370px;
    height: 370px;

    right: -150px;
    top: -190px;

    border-radius: 50%;

    background:
        rgba(255,106,0,.12);

    filter: blur(80px);

    pointer-events: none;
}


/* Texte */

.lp-final-contact-copy {
    position: relative;
    z-index: 2;
}

.lp-final-contact-copy h2 {
    max-width: 850px;

    margin: 0;

    color: #fff;

    font-size: clamp(40px, 4vw, 65px);
    line-height: 1;

    letter-spacing: -.045em;
    font-weight: 650;
}

.lp-final-contact-copy h2 span {
    color: #ff6a00;
}

.lp-final-contact-copy > p {
    max-width: 670px;

    margin: 24px 0 0;

    color: #85858b;

    font-size: 14px;
    line-height: 1.7;
}


/* Action */

.lp-final-contact-action {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 13px;
}

.lp-final-contact-button {
    min-height: 58px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;

    gap: 22px;

    border:
        1px solid rgba(255,106,0,.75);

    border-radius: 999px;

    background:
        #ff6a00;

    color: #09090b !important;

    text-decoration: none !important;

    font-size: 12px;
    font-weight: 750;

    white-space: nowrap;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.lp-final-contact-button span {
    font-size: 18px;

    transition:
        transform .3s ease;
}

.lp-final-contact-button:hover {
    transform:
        translateY(-3px);

    background:
        #ff7b18;

    box-shadow:
        0 18px 50px rgba(255,106,0,.16);
}

.lp-final-contact-button:hover span {
    transform:
        translateX(5px);
}

.lp-final-contact-action small {
    color: #65656a;

    font-size: 9px;

    letter-spacing: .13em;
}


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

@media (max-width: 1000px) {

    .lp-closing {
        padding:
            100px 0 60px;
    }

    .lp-support {
        grid-template-columns: 1fr;

        gap: 60px;

        padding-bottom: 85px;
    }

    .lp-final-contact {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 45px;
    }

    .lp-final-contact-action {
        align-items: flex-start;
    }

}


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

@media (max-width: 700px) {

    .lp-closing {
        padding:
            75px 0 45px;
    }

    .lp-closing-inner {
        width:
            calc(100% - 34px);
    }

    .lp-support {
        gap: 45px;

        padding-bottom: 70px;
    }

    .lp-support-copy h2 {
        font-size:
            clamp(40px, 12vw, 56px);
    }

    .lp-support-copy > p {
        font-size: 14px;
    }


    /* Points */

    .lp-support-points {
        grid-template-columns: 1fr;
    }

    .lp-support-point {
        min-height: 125px;

        padding: 22px;
    }


    /* Contact */

    .lp-final-contact {
        min-height: auto;

        padding: 35px 25px;

        border-radius: 18px;
    }

    .lp-final-contact-copy h2 {
        font-size:
            clamp(36px, 10.5vw, 50px);
    }

    .lp-final-contact-copy > p {
        font-size: 13px;
    }

    .lp-final-contact-action {
        width: 100%;
    }

    .lp-final-contact-button {
        width: 100%;

        justify-content: space-between;
    }

}