/* Start custom CSS *//* ==========================================================
   SG COMMUNICATION > SO'EASY
   LANDING PASSERELLE
   ========================================================== */


/* ==========================================================
   VARIABLES
   ========================================================== */

.sgse-page {
    --sg-red: #E41C35;
    --sg-black: #000000;
    --sg-dark: #111111;
    --sg-text: #151515;
    --sg-grey: #666666;
    --sg-light: #F4F4F4;
    --sg-white: #FFFFFF;

    /* SO'EASY */
    --easy-blue: #216B80;
    --easy-blue-dark: #18576A;
    --easy-blue-light: #EAF3F5;
    --easy-warm: #F5EEE9;

    --radius: 28px;

    width: 100%;
    margin: 0;
    padding: 0;

    overflow-x: hidden;

    background: var(--sg-white);
    color: var(--sg-text);

    font-family: "Ruda", Arial, sans-serif;
}


/* ==========================================================
   RESET LOCAL
   ========================================================== */

.sgse-page *,
.sgse-page *::before,
.sgse-page *::after {
    box-sizing: border-box;
}

.sgse-page h1,
.sgse-page h2,
.sgse-page h3,
.sgse-page p {
    margin-top: 0;
}

.sgse-page img {
    display: block;
    max-width: 100%;
    height: auto;
}

.sgse-page a {
    text-decoration: none;
}


/* ==========================================================
   CONTENEUR
   ========================================================== */

.sgse-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


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

.sgse-page h1,
.sgse-page h2,
.sgse-page h3 {
    font-family: "Ruda", Arial, sans-serif;
    font-weight: 900;
}

.sgse-page h1 {
    max-width: 790px;

    margin-bottom: 30px;

    font-size: clamp(44px, 5.6vw, 76px);
    line-height: .98;
    letter-spacing: -.055em;
}

.sgse-page h2 {
    max-width: 920px;

    margin-bottom: 30px;

    font-size: clamp(36px, 4.4vw, 60px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.sgse-page h3 {
    margin-bottom: 15px;

    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.sgse-page p {
    font-size: 17px;
    line-height: 1.7;
}

.sgse-red {
    color: var(--sg-red);
}

.sgse-lead {
    max-width: 760px;

    margin-bottom: 18px;

    font-size: clamp(20px, 2vw, 25px) !important;
    line-height: 1.5 !important;
}

.sgse-intro {
    max-width: 730px;
    margin-bottom: 18px;
}


/* ==========================================================
   SURTITRES
   ========================================================== */

.sgse-kicker {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.sgse-kicker::before {
    content: "";

    display: block;

    width: 30px;
    height: 4px;

    flex: 0 0 auto;
}

.sgse-kicker-sg {
    color: var(--sg-red);
}

.sgse-kicker-sg::before {
    background: var(--sg-red);
}

.sgse-kicker-light {
    color: var(--sg-white);
}

.sgse-kicker-light::before {
    background: var(--sg-red);
}

.sgse-kicker-mix {
    color: var(--easy-blue);
}

.sgse-kicker-mix::before {
    background:
        linear-gradient(
            90deg,
            var(--sg-red) 0%,
            var(--sg-red) 45%,
            var(--easy-blue) 45%,
            var(--easy-blue) 100%
        );
}

.sgse-kicker-easy {
    color: var(--easy-blue);
}

.sgse-kicker-easy::before {
    background: var(--easy-blue);
}


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

.sgse-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-height: 58px;

    padding: 16px 25px;

    border: 2px solid;

    border-radius: 999px;

    font-family: "Ruda", Arial, sans-serif;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;

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

.sgse-btn-sg {
    border-color: var(--sg-black);

    background: var(--sg-red);
    color: var(--sg-white) !important;

    box-shadow: 6px 6px 0 var(--sg-black);
}

.sgse-btn-sg:hover {
    transform: translate(-3px, -3px);

    background: var(--sg-black);

    box-shadow: 9px 9px 0 var(--sg-red);
}

.sgse-btn-easy-light {
    border-color: var(--sg-white);

    background: var(--sg-white);
    color: var(--easy-blue) !important;

    box-shadow: 6px 6px 0 var(--easy-blue-dark);
}

.sgse-btn-easy-light:hover {
    transform: translate(-3px, -3px);

    background: var(--easy-blue-dark);
    color: var(--sg-white) !important;

    box-shadow: 9px 9px 0 var(--sg-white);
}

.sgse-btn-final {
    border-color: var(--sg-white);

    background: var(--sg-white);
    color: var(--easy-blue) !important;

    box-shadow: 7px 7px 0 var(--easy-blue-dark);
}

.sgse-btn-final:hover {
    transform: translate(-3px, -3px);

    background: var(--easy-blue-dark);
    color: var(--sg-white) !important;

    box-shadow: 10px 10px 0 var(--sg-white);
}

.sgse-btn:focus-visible {
    outline: 4px solid rgba(228,28,53,.25);
    outline-offset: 5px;
}


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

.sgse-hero {
    position: relative;

    padding: 105px 0 120px;

    background:
        linear-gradient(
            90deg,
            var(--sg-white) 0%,
            var(--sg-white) 76%,
            var(--sg-light) 76%,
            var(--sg-light) 100%
        );
}

.sgse-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(350px, .82fr);
    gap: 75px;
    align-items: center;
}

.sgse-hero-content {
    position: relative;
    z-index: 2;
}

.sgse-hero-content .sgse-btn {
    margin-top: 18px;
}


/* PHOTO */

.sgse-hero-picture {
    position: relative;

    min-height: 540px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.sgse-photo-sg {
    position: relative;

    width: min(430px, 92%);

    border: 3px solid var(--sg-black);
    border-radius: var(--radius);

    overflow: hidden;

    background: var(--sg-black);

    box-shadow: 13px 13px 0 var(--sg-red);

    transform: rotate(2deg);
}

.sgse-photo-sg img {
    width: 100%;
    aspect-ratio: 1 / 1;

    object-fit: cover;
}

.sgse-logo-float {
    position: absolute;
    z-index: 4;

    right: -8px;
    bottom: 0;

    width: 135px;

    padding: 8px;

    border: 2px solid var(--sg-black);
    border-radius: 24px;

    background: var(--sg-white);

    box-shadow: 7px 7px 0 var(--sg-red);

    transform: rotate(-5deg);
}

.sgse-logo-float img {
    width: 100%;
    border-radius: 16px;
}

.sgse-sticker {
    position: absolute;
    z-index: 3;

    padding: 10px 14px;

    border: 2px solid var(--sg-black);

    background: var(--sg-white);
    color: var(--sg-black);

    box-shadow: 5px 5px 0 var(--sg-red);

    font-size: 13px;
    font-weight: 900;
}

.sgse-sticker-a {
    top: 50px;
    left: -5px;

    transform: rotate(-7deg);
}

.sgse-sticker-b {
    right: -8px;
    top: 115px;

    transform: rotate(4deg);
}


/* ==========================================================
   02 TRANSITION - VERSION SANS ROUGE
   ========================================================== */

.sgse-transition {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    color: #FFFFFF;

    background:
        radial-gradient(circle at 82% 18%, rgba(129, 195, 211, 0.18) 0%, rgba(129, 195, 211, 0) 30%),
        radial-gradient(circle at 92% 78%, rgba(33, 107, 128, 0.22) 0%, rgba(33, 107, 128, 0) 34%),
        linear-gradient(
            110deg,
            #000000 0%,
            #000000 42%,
            #07171C 58%,
            #12333D 76%,
            #216B80 100%
        );
}

/* on supprime la bande rouge */
.sgse-transition-red {
    display: none;
}

.sgse-transition-content {
    position: relative;
    z-index: 2;
}

.sgse-transition h2 {
    color: #FFFFFF;
}

.sgse-transition h2 span {
    display: block;
    color: #8FD0DF;
}

.sgse-transition-copy {
    max-width: 850px;
}

.sgse-transition-copy p {
    font-size: clamp(18px, 1.8vw, 22px);
    color: rgba(255,255,255,.84);
}

/* kicker version claire */
.sgse-kicker-light {
    color: #FFFFFF;
}

.sgse-kicker-light::before {
    background: #8FD0DF;
}

/* process cards */
.sgse-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 55px;
}

.sgse-process-item {
    padding: 24px;
    border-radius: 20px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(3px);
}

.sgse-process-item span {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 900;
}

.sgse-process-item strong {
    font-size: 18px;
    color: #FFFFFF;
}

/* 01 : noir profond */
.sgse-process-sg {
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.18);
}

.sgse-process-sg span {
    color: #8FD0DF;
}

/* 02 : zone intermédiaire */
.sgse-process-mix {
    border: 1px solid rgba(143, 208, 223, .45);
    background: linear-gradient(
        135deg,
        rgba(0,0,0,.18) 0%,
        rgba(18,51,61,.45) 100%
    );
}

.sgse-process-mix span {
    color: #A7DCE7;
}

/* 03 / 04 : côté SoEasy */
.sgse-process-easy {
    border: 1px solid rgba(143, 208, 223, .55);
    background: rgba(33, 107, 128, .34);
}

.sgse-process-easy span {
    color: #C8EBF2;
}


/* ==========================================================
   03 MÉTHODE - VERSION SANS ROUGE
   ========================================================== */

.sgse-method {
    padding: 105px 0 120px;
    background:
        linear-gradient(
            180deg,
            #F4F4F4 0%,
            #F4F4F4 68%,
            var(--easy-blue-light) 100%
        );
}

.sgse-method-head {
    margin-bottom: 60px;
}

/* kicker sans rouge */
.sgse-kicker-mix {
    color: var(--easy-blue);
}

.sgse-kicker-mix::before {
    background: var(--easy-blue);
}

.sgse-method-head h2 {
    color: var(--sg-text);
}

.sgse-method-head h2 span {
    display: block;
    color: var(--easy-blue);
}

.sgse-method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sgse-method-card {
    position: relative;
    min-height: 295px;
    padding: 30px;
    border: 2px solid var(--easy-blue);
    border-radius: var(--radius);
    background: var(--sg-white);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.sgse-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0 var(--easy-blue-dark);
}

.sgse-method-card p {
    margin-bottom: 0;
    color: var(--sg-grey);
}

.sgse-method-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;
    margin-bottom: 25px;

    border-radius: 50%;

    background: var(--easy-blue);
    color: var(--sg-white);

    font-size: 14px;
    font-weight: 900;
}

/* toutes les cartes passent en univers bleu */
.sgse-method-red,
.sgse-method-redblue,
.sgse-method-blue {
    border-color: var(--easy-blue);
    box-shadow: 7px 7px 0 var(--easy-blue);
}

.sgse-method-red .sgse-method-number,
.sgse-method-redblue .sgse-method-number,
.sgse-method-blue .sgse-method-number {
    background: var(--easy-blue);
}


/* ==========================================================
   04 FORMATIONS / 100% SOEASY
   ========================================================== */

.sgse-formations {
    position: relative;

    padding: 105px 0 115px;

    background: var(--easy-blue);
    color: var(--sg-white);
}

.sgse-easy-brand {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-bottom: 25px;
}

.sgse-easy-brand img {
    width: 100px;

    border-radius: 20px;

    box-shadow: 7px 7px 0 var(--easy-blue-dark);
}

.sgse-easy-brand div {
    display: flex;
    flex-direction: column;
}

.sgse-easy-brand span {
    margin-bottom: 3px;

    color: rgba(255,255,255,.7);

    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.sgse-easy-brand strong {
    max-width: 720px;

    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.05;
}

.sgse-formations-intro {
    max-width: 800px;

    margin-bottom: 55px;

    color: rgba(255,255,255,.83);

    font-size: clamp(18px, 1.7vw, 21px) !important;
}

.sgse-training-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.sgse-training-card {
    display: flex;
    flex-direction: column;

    min-height: 385px;

    padding: 29px 26px;

    border: 2px solid rgba(255,255,255,.55);
    border-radius: var(--radius);

    background: rgba(255,255,255,.06);
    color: var(--sg-white);

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

.sgse-training-card:hover {
    transform: translateY(-6px);

    background: var(--sg-white);
    color: var(--sg-text);

    box-shadow: 9px 9px 0 var(--easy-blue-dark);
}

.sgse-training-number {
    margin-bottom: 24px;

    color: #B8E2EA;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
}

.sgse-training-category {
    margin-bottom: 10px;

    color: rgba(255,255,255,.68);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.sgse-training-card:hover .sgse-training-category {
    color: var(--easy-blue);
}

.sgse-training-card h3 {
    color: inherit;
}

.sgse-training-card p {
    color: rgba(255,255,255,.76);
}

.sgse-training-card:hover p {
    color: var(--sg-grey);
}

.sgse-training-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    margin-top: auto;
    padding-top: 20px;

    border-bottom: 2px solid rgba(255,255,255,.65);

    color: var(--sg-white);

    font-size: 14px;
    font-weight: 900;
}

.sgse-training-card:hover a {
    border-color: var(--easy-blue);

    color: var(--easy-blue);
}

.sgse-training-card a:hover {
    gap: 13px;
}

.sgse-formations-cta {
    margin-top: 60px;

    text-align: center;
}


/* ==========================================================
   05 DUO
   ========================================================== */

.sgse-duo {
    padding: 115px 0;

    background: var(--easy-warm);
}

.sgse-duo-grid {
    display: grid;
    grid-template-columns: minmax(350px, .85fr) minmax(0, 1.15fr);

    gap: 80px;
    align-items: center;
}

.sgse-duo-picture {
    position: relative;
}

.sgse-duo-photo-frame {
    border: 3px solid var(--easy-blue);
    border-radius: var(--radius);

    overflow: hidden;

    background: var(--easy-blue);

    box-shadow: -12px 12px 0 var(--easy-blue);

    transform: rotate(-2deg);
}

.sgse-duo-photo-frame img {
    width: 100%;
    aspect-ratio: 1 / 1;

    object-fit: cover;
}

.sgse-duo-badge {
    position: absolute;

    right: -25px;
    bottom: -25px;

    padding: 16px 20px;

    border: 2px solid var(--easy-blue);
    border-radius: 18px;

    background: var(--sg-white);
    color: var(--easy-blue-dark);

    box-shadow: 6px 6px 0 var(--easy-blue);

    font-size: 16px;
    line-height: 1.25;
    font-weight: 900;

    transform: rotate(4deg);
}

.sgse-duo-content h2 span {
    display: block;
    color: var(--easy-blue);
}

.sgse-duo-intro {
    max-width: 700px;

    font-size: clamp(18px, 1.7vw, 22px) !important;
}

.sgse-duo-expertise {
    display: grid;
    grid-template-columns: 1fr 45px 1fr;

    gap: 15px;
    align-items: center;

    margin: 38px 0;
}

.sgse-duo-expertise-item {
    min-height: 190px;

    padding: 22px;

    border: 2px solid var(--easy-blue);
    border-radius: 20px;

    background: rgba(255,255,255,.6);
}

.sgse-duo-expertise-item span {
    display: block;

    margin-bottom: 8px;

    color: var(--easy-blue);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.sgse-duo-expertise-item strong {
    display: block;

    margin-bottom: 12px;

    font-size: 18px;
}

.sgse-duo-expertise-item p {
    margin-bottom: 0;

    color: var(--sg-grey);

    font-size: 15px;
}

.sgse-duo-plus {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: var(--easy-blue);
    color: var(--sg-white);

    font-size: 27px;
    font-weight: 900;
}

.sgse-duo-end {
    max-width: 720px;

    color: var(--sg-grey);
}

.sgse-duo-end strong {
    color: var(--easy-blue-dark);
}


/* ==========================================================
   06 FINAL
   ========================================================== */

.sgse-final {
    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background: var(--easy-blue);
    color: var(--sg-white);

    text-align: center;
}

.sgse-final-decoration {
    position: absolute;

    border: 2px dashed rgba(255,255,255,.22);
    border-radius: 50%;
}

.sgse-final-decoration-one {
    width: 430px;
    height: 430px;

    left: -170px;
    top: -150px;
}

.sgse-final-decoration-two {
    width: 330px;
    height: 330px;

    right: -110px;
    bottom: -140px;
}

.sgse-final-inner {
    position: relative;
    z-index: 2;

    max-width: 920px;
}

.sgse-final-logo {
    width: 120px;

    margin: 0 auto 30px;

    border-radius: 24px;

    box-shadow: 8px 8px 0 var(--easy-blue-dark);
}

.sgse-final-kicker {
    margin-bottom: 15px;

    color: rgba(255,255,255,.7);

    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.sgse-final h2 {
    margin-right: auto;
    margin-left: auto;
}

.sgse-final h2 span {
    display: block;
    color: var(--sg-white);
}

.sgse-final p {
    max-width: 760px;

    margin-right: auto;
    margin-left: auto;

    color: rgba(255,255,255,.82);

    font-size: clamp(18px, 1.7vw, 22px);
}

.sgse-final-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;

    margin: 38px 0 42px;
}

.sgse-final-values span {
    padding: 9px 14px;

    border: 1px solid rgba(255,255,255,.5);
    border-radius: 999px;

    font-size: 14px;
    font-weight: 900;
}

.sgse-final-values span:last-child {
    background: var(--sg-white);
    color: var(--easy-blue);

    border-color: var(--sg-white);
}

.sgse-final-note {
    margin-top: 24px;

    color: rgba(255,255,255,.55);

    font-size: 12px;
}


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

@media (max-width: 1024px) {

    .sgse-hero-grid {
        grid-template-columns: minmax(0, 1fr) 350px;
        gap: 45px;
    }

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

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

    .sgse-duo-grid {
        grid-template-columns: 380px 1fr;
        gap: 55px;
    }

}


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

@media (max-width: 767px) {

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


    /* TYPO */

    .sgse-page h1 {
        font-size: clamp(40px, 12vw, 55px);
    }

    .sgse-page h2 {
        font-size: clamp(33px, 10vw, 45px);
    }


    /* HERO */

    .sgse-hero {
        padding: 65px 0 85px;

        background: var(--sg-white);
    }

    .sgse-hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .sgse-hero-picture {
        min-height: auto;

        padding: 15px 5px 65px;
    }

    .sgse-photo-sg {
        width: calc(100% - 22px);

        box-shadow: 8px 8px 0 var(--sg-red);

        transform: rotate(1deg);
    }

    .sgse-logo-float {
        right: 3px;
        bottom: 10px;

        width: 105px;
    }

    .sgse-sticker {
        font-size: 11px;
    }

    .sgse-sticker-a {
        left: 0;
        top: 5px;
    }

    .sgse-sticker-b {
        right: 0;
        top: 60px;
    }


    /* TRANSITION */

    .sgse-transition {
        padding: 75px 0;

        background:
            linear-gradient(
                160deg,
                var(--sg-black) 0%,
                var(--sg-black) 38%,
                var(--easy-blue-dark) 100%
            );
    }

    .sgse-transition-red {
        width: 70px;
        height: 360px;

        top: -100px;
        right: 8%;
    }

    .sgse-process {
        grid-template-columns: 1fr;
    }


    /* METHODE */

    .sgse-method {
        padding: 75px 0 90px;
    }

    .sgse-method-grid {
        grid-template-columns: 1fr;
    }

    .sgse-method-card {
        min-height: auto;
    }


    /* FORMATIONS */

    .sgse-formations {
        padding: 75px 0 85px;
    }

    .sgse-easy-brand {
        align-items: flex-start;
    }

    .sgse-easy-brand img {
        width: 80px;
    }

    .sgse-easy-brand strong {
        font-size: 31px;
    }

    .sgse-training-grid {
        grid-template-columns: 1fr;
    }

    .sgse-training-card {
        min-height: auto;
    }

    .sgse-training-card a {
        margin-top: 25px;
    }


    /* DUO */

    .sgse-duo {
        padding: 85px 0;
    }

    .sgse-duo-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .sgse-duo-picture {
        width: calc(100% - 15px);
    }

    .sgse-duo-photo-frame {
        box-shadow: -7px 7px 0 var(--easy-blue);

        transform: rotate(-1deg);
    }

    .sgse-duo-badge {
        right: -10px;
        bottom: -35px;
    }

    .sgse-duo-expertise {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .sgse-duo-plus {
        margin: -4px auto;
    }


    /* FINAL */

    .sgse-final {
        padding: 85px 0;

        text-align: left;
    }

    .sgse-final-logo {
        margin-left: 0;
    }

    .sgse-final h2,
    .sgse-final p {
        margin-left: 0;
    }

    .sgse-final-values {
        justify-content: flex-start;
    }


    /* BTN */

    .sgse-btn {
        width: 100%;

        text-align: center;
    }

}


/* ==========================================================
   PETITS MOBILES
   ========================================================== */

@media (max-width: 430px) {

    .sgse-page h1 {
        font-size: 39px;
    }

    .sgse-page h2 {
        font-size: 32px;
    }

    .sgse-easy-brand {
        flex-direction: column;
    }

}


/* ==========================================================
   ACCESSIBILITÉ
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    .sgse-page *,
    .sgse-page *::before,
    .sgse-page *::after {
        transition: none !important;
    }

}/* End custom CSS */